mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
Merge pull request #598 from acdcbyl/main
i18n: Fix translations of new audio panel tooltips
This commit is contained in:
@@ -1362,7 +1362,9 @@
|
||||
"play": "Wiedergeben",
|
||||
"next-media": "Nächstes Medium",
|
||||
"power-profile": "'{profile}' Energieprofil",
|
||||
"keyboard-layout": "{layout} Tastaturlayout"
|
||||
"keyboard-layout": "{layout} Tastaturlayout",
|
||||
"output-muted": "Audio-Ausgabe stummschalten",
|
||||
"input-muted": "Audio-Eingabe stummschalten"
|
||||
},
|
||||
"clock": {
|
||||
"tooltip": "Kalender öffnen"
|
||||
|
||||
+14
-12
@@ -509,16 +509,16 @@
|
||||
},
|
||||
"matugen-scheme-type": {
|
||||
"label": "Matugen scheme type",
|
||||
"description": {
|
||||
"scheme-content": "Derives colors that closely match the underlying image",
|
||||
"scheme-expressive": "Vibrant palette with playful saturation",
|
||||
"scheme-fidelity": "High-fidelity palette that preserves source hues",
|
||||
"scheme-fruit-salad": "Colorful mix of bright contrasting accents",
|
||||
"scheme-monochrome": "Minimal palette built around a single hue",
|
||||
"scheme-neutral": "Muted palette with subdued and calming tones",
|
||||
"scheme-rainbow": "Diverse palette spanning the full spectrum",
|
||||
"scheme-tonal-spot": "Balanced palette with focused accents"
|
||||
}
|
||||
"description": {
|
||||
"scheme-content": "Derives colors that closely match the underlying image",
|
||||
"scheme-expressive": "Vibrant palette with playful saturation",
|
||||
"scheme-fidelity": "High-fidelity palette that preserves source hues",
|
||||
"scheme-fruit-salad": "Colorful mix of bright contrasting accents",
|
||||
"scheme-monochrome": "Minimal palette built around a single hue",
|
||||
"scheme-neutral": "Muted palette with subdued and calming tones",
|
||||
"scheme-rainbow": "Diverse palette spanning the full spectrum",
|
||||
"scheme-tonal-spot": "Balanced palette with focused accents"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dark-mode": {
|
||||
@@ -1337,7 +1337,9 @@
|
||||
"play": "Play",
|
||||
"next-media": "Next media",
|
||||
"power-profile": "'{profile}' power profile",
|
||||
"keyboard-layout": "{layout} keyboard layout"
|
||||
"keyboard-layout": "{layout} keyboard layout",
|
||||
"output-muted": "Muted audio output",
|
||||
"input-muted": "Muted audio input"
|
||||
},
|
||||
"clock": {
|
||||
"tooltip": "Open calendar"
|
||||
@@ -1761,4 +1763,4 @@
|
||||
"note": "Just a few basics to get you started - full options are in Settings"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1345,7 +1345,9 @@
|
||||
"play": "Reproducir",
|
||||
"next-media": "Siguiente medio",
|
||||
"power-profile": "Perfil de energía '{profile}'",
|
||||
"keyboard-layout": "Distribución de teclado {layout}"
|
||||
"keyboard-layout": "Distribución de teclado {layout}",
|
||||
"output-muted": "Silenciar salida de audio",
|
||||
"input-muted": "Silenciar entrada de audio"
|
||||
},
|
||||
"clock": {
|
||||
"tooltip": "Abrir calendario"
|
||||
|
||||
@@ -1345,7 +1345,9 @@
|
||||
"play": "Lecture",
|
||||
"next-media": "Média suivant",
|
||||
"power-profile": "Profil d'alimentation '{profile}'",
|
||||
"keyboard-layout": "Disposition du clavier {layout}"
|
||||
"keyboard-layout": "Disposition du clavier {layout}",
|
||||
"output-muted": "Couper la sortie audio",
|
||||
"input-muted": "Couper l'entrée audio"
|
||||
},
|
||||
"clock": {
|
||||
"tooltip": "Ouvrir le calendrier"
|
||||
|
||||
@@ -1345,7 +1345,9 @@
|
||||
"play": "Reproduzir",
|
||||
"next-media": "Próxima mídia",
|
||||
"power-profile": "Perfil de energia '{profile}'",
|
||||
"keyboard-layout": "Layout de teclado {layout}"
|
||||
"keyboard-layout": "Layout de teclado {layout}",
|
||||
"output-muted": "Silenciar saída de áudio",
|
||||
"input-muted": "Silenciar entrada de áudio"
|
||||
},
|
||||
"clock": {
|
||||
"tooltip": "Abrir calendário"
|
||||
|
||||
@@ -1345,7 +1345,9 @@
|
||||
"play": "播放",
|
||||
"next-media": "下一媒体",
|
||||
"power-profile": "'{profile}' 电源模式",
|
||||
"keyboard-layout": "{layout} 键盘布局"
|
||||
"keyboard-layout": "{layout} 键盘布局",
|
||||
"output-muted": "静音输出设备",
|
||||
"input-muted": "静音输入设备"
|
||||
},
|
||||
"clock": {
|
||||
"tooltip": "打开日历"
|
||||
|
||||
@@ -83,7 +83,7 @@ NPanel {
|
||||
|
||||
NIconButton {
|
||||
icon: AudioService.getOutputIcon()
|
||||
tooltipText: I18n.tr("tooltips.output-devices")
|
||||
tooltipText: I18n.tr("tooltips.output-muted")
|
||||
baseSize: Style.baseWidgetSize * 0.8
|
||||
onClicked: {
|
||||
AudioService.setOutputMuted(!AudioService.muted)
|
||||
@@ -92,7 +92,7 @@ NPanel {
|
||||
|
||||
NIconButton {
|
||||
icon: AudioService.getInputIcon()
|
||||
tooltipText: I18n.tr("tooltips.refresh-devices")
|
||||
tooltipText: I18n.tr("tooltips.input-muted")
|
||||
baseSize: Style.baseWidgetSize * 0.8
|
||||
onClicked: {
|
||||
AudioService.setInputMuted(!AudioService.inputMuted)
|
||||
|
||||
Reference in New Issue
Block a user