summaryrefslogtreecommitdiff
path: root/modules/lock/Fetch.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/lock/Fetch.qml')
-rw-r--r--modules/lock/Fetch.qml8
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}`
}
}
}