From 1e1cdd95c1cb81e40c9198ab644badb348332389 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 11 Aug 2025 15:59:39 +1000 Subject: lock/fetch: shell -> uptime + no qsTr --- modules/lock/Fetch.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/lock/Fetch.qml') 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}` } } } -- cgit v1.2.3-freya