diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-17 10:43:20 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-17 10:43:20 -0500 |
| commit | 1850a844eef715147fa747209fe4d5d1e7cbd7a5 (patch) | |
| tree | 07cc905559b6629a1879e75b8896a8adf5f555dd /modules/controlcenter/taskbar | |
| parent | controlcenter: refined connected button groups (diff) | |
| download | caelestia-shell-1850a844eef715147fa747209fe4d5d1e7cbd7a5.tar.gz caelestia-shell-1850a844eef715147fa747209fe4d5d1e7cbd7a5.tar.bz2 caelestia-shell-1850a844eef715147fa747209fe4d5d1e7cbd7a5.zip | |
controlcenter: relabled buttons in connected group
Diffstat (limited to 'modules/controlcenter/taskbar')
| -rw-r--r-- | modules/controlcenter/taskbar/TaskbarPane.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/controlcenter/taskbar/TaskbarPane.qml b/modules/controlcenter/taskbar/TaskbarPane.qml index 0ec27e5..915e611 100644 --- a/modules/controlcenter/taskbar/TaskbarPane.qml +++ b/modules/controlcenter/taskbar/TaskbarPane.qml @@ -208,7 +208,7 @@ Item { } }, { - label: qsTr("Mic"), + label: qsTr("Microphone"), propertyName: "showMicrophone", onToggled: function(checked) { root.showMicrophone = checked; @@ -216,7 +216,7 @@ Item { } }, { - label: qsTr("KB"), + label: qsTr("Keyboard"), propertyName: "showKbLayout", onToggled: function(checked) { root.showKbLayout = checked; @@ -232,7 +232,7 @@ Item { } }, { - label: qsTr("BT"), + label: qsTr("Bluetooth"), propertyName: "showBluetooth", onToggled: function(checked) { root.showBluetooth = checked; @@ -248,7 +248,7 @@ Item { } }, { - label: qsTr("Lock"), + label: qsTr("Capslock"), propertyName: "showLockStatus", onToggled: function(checked) { root.showLockStatus = checked; |