mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
Merge branch 'i18n' of https://github.com/noctalia-dev/noctalia-shell into i18n
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
+1243
-5
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -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
|
||||
|
||||
@@ -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()
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user