diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-05 21:47:30 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-05 21:47:30 +1000 |
| commit | 017b1b4ce017600953f35a528660cca1f67dc86a (patch) | |
| tree | 45f82a1f7a7a4319107e94797e67f2dd4f2669a6 /modules/dashboard/Performance.qml | |
| parent | popouts: battery add perf degradation warning (diff) | |
| download | caelestia-shell-017b1b4ce017600953f35a528660cca1f67dc86a.tar.gz caelestia-shell-017b1b4ce017600953f35a528660cca1f67dc86a.tar.bz2 caelestia-shell-017b1b4ce017600953f35a528660cca1f67dc86a.zip | |
feat: network popout
Also qstr dashboard performance pane labels
Diffstat (limited to 'modules/dashboard/Performance.qml')
| -rw-r--r-- | modules/dashboard/Performance.qml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/dashboard/Performance.qml b/modules/dashboard/Performance.qml index 9334874..8513d19 100644 --- a/modules/dashboard/Performance.qml +++ b/modules/dashboard/Performance.qml @@ -18,8 +18,8 @@ Row { label1: `${Math.ceil(SystemUsage.gpuTemp)}°C` label2: `${Math.round(SystemUsage.gpuPerc * 100)}%` - sublabel1: "GPU temp" - sublabel2: "Usage" + sublabel1: qsTr("GPU temp") + sublabel2: qsTr("Usage") } Resource { @@ -31,8 +31,8 @@ Row { label1: `${Math.ceil(SystemUsage.cpuTemp)}°C` label2: `${Math.round(SystemUsage.cpuPerc * 100)}%` - sublabel1: "CPU temp" - sublabel2: "Usage" + sublabel1: qsTr("CPU temp") + sublabel2: qsTr("Usage") } Resource { @@ -48,8 +48,8 @@ Row { return `${Math.floor(fmt.value)}${fmt.unit}`; } - sublabel1: "Memory" - sublabel2: "Storage" + sublabel1: qsTr("Memory") + sublabel2: qsTr("Storage") } component Resource: Item { |