This commit is contained in:
Ly-sec
2025-09-24 17:01:41 +02:00
6 changed files with 1247 additions and 11 deletions
-1
View File
@@ -955,7 +955,6 @@
"move-to-right-section": "Zur rechten Sektion verschieben",
"open-settings": "Einstellungen öffnen",
"session-menu": "Sitzungsmenü",
"close-side-panel": "Seitenpanel schließen",
"cancel-timer": "Timer abbrechen",
"start-screen-recording": "Bildschirmaufnahme starten",
"stop-screen-recording": "Bildschirmaufnahme stoppen",
-1
View File
@@ -955,7 +955,6 @@
"move-to-right-section": "Move to right section",
"open-settings": "Open settings",
"session-menu": "Session Menu",
"close-side-panel": "Close side panel",
"cancel-timer": "Cancel timer",
"start-screen-recording": "Start screen recording",
"stop-screen-recording": "Stop screen recording",
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -8,7 +8,7 @@ import qs.Commons
Singleton {
id: root
property bool debug: true
property bool debug: false
property string debugForceLanguage: ""
property bool isLoaded: false
+1 -1
View File
@@ -78,7 +78,7 @@ NBox {
NIconButton {
id: closeButton
icon: "close"
tooltipText: I18n.tr("tooltips.close-side-panel")
tooltipText: I18n.tr("tooltips.close")
onClicked: {
controlCenterPanel.close()
}
+2 -2
View File
@@ -155,10 +155,10 @@ RowLayout {
}
contentItem: NText {
text: (function () {
text: {
var item = root.getItem(index)
return item && item.name ? item.name : ""
})()
}
font.pointSize: Style.fontSizeM * scaling
color: highlighted ? Color.mOnTertiary : Color.mOnSurface
verticalAlignment: Text.AlignVCenter