diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-11 15:59:39 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-11 15:59:39 +1000 |
| commit | 1e1cdd95c1cb81e40c9198ab644badb348332389 (patch) | |
| tree | 85bfc01b6d7bb366e57891426f57024955d8d303 /modules/lock | |
| parent | lock: better scaling for weather & fetch (diff) | |
| download | caelestia-shell-1e1cdd95c1cb81e40c9198ab644badb348332389.tar.gz caelestia-shell-1e1cdd95c1cb81e40c9198ab644badb348332389.tar.bz2 caelestia-shell-1e1cdd95c1cb81e40c9198ab644badb348332389.zip | |
lock/fetch: shell -> uptime + no qsTr
Diffstat (limited to 'modules/lock')
| -rw-r--r-- | modules/lock/Fetch.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/lock/Fetch.qml b/modules/lock/Fetch.qml index fd954b1..b855cdc 100644 --- a/modules/lock/Fetch.qml +++ b/modules/lock/Fetch.qml @@ -87,19 +87,19 @@ ColumnLayout { spacing: Appearance.spacing.normal FetchText { - text: qsTr("OS : %1").arg(SysInfo.osPrettyName || SysInfo.osName) + text: `OS : ${SysInfo.osPrettyName || SysInfo.osName}` } FetchText { - text: qsTr("WM : %1").arg(SysInfo.wm) + text: `WM : ${SysInfo.wm}` } FetchText { - text: qsTr("USER: %1").arg(SysInfo.user) + text: `USER: ${SysInfo.user}` } FetchText { - text: qsTr("SH : %1").arg(SysInfo.shell) + text: `UP : ${SysInfo.uptime}` } } } |