mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2025-12-06 06:36:15 +00:00
i18n: add brightness tooltip translation
This commit is contained in:
@@ -1358,6 +1358,7 @@
|
||||
"open-control-center": "Kontrollzentrum öffnen",
|
||||
"volume-at": "Lautstärke bei {volume}%\nLinksklick zum Stumm-/Lautschalten. Rechtsklick für Einstellungen.\nScrollen zum Ändern der Lautstärke.",
|
||||
"microphone-volume-at": "Mikrofon-Lautstärke bei {volume}%\nLinksklick zum Stumm-/Lautschalten. Rechtsklick für Einstellungen.\nScrollen zum Ändern der Lautstärke.",
|
||||
"brightness-at": "Helligkeit: {brightness}%\nRechtsklick für Einstellungen.\nScrollen zum Ändern der Helligkeit.",
|
||||
"manage-wifi": "WLAN verwalten",
|
||||
"bluetooth-devices": "Bluetooth-Geräte",
|
||||
"open-notification-history-enable-dnd": "Benachrichtigungsverlauf öffnen\nRechtsklick um 'Nicht stören' zu aktivieren.",
|
||||
|
||||
@@ -1333,6 +1333,7 @@
|
||||
"open-control-center": "Open control center",
|
||||
"volume-at": "Volume at {volume}%\nLeft click to toggle mute. Right click for settings.\nScroll to modify volume.",
|
||||
"microphone-volume-at": "Microphone volume at {volume}%\nLeft click to toggle mute. Right click for settings.\nScroll to modify volume.",
|
||||
"brightness-at": "Brightness: {brightness}%\nRight click for settings.\nScroll to modify brightness.",
|
||||
"manage-wifi": "Manage Wi-Fi",
|
||||
"bluetooth-devices": "Bluetooth devices",
|
||||
"open-notification-history-enable-dnd": "Open notification history\nRight-click to enable \"Do not disturb\".",
|
||||
|
||||
@@ -1341,6 +1341,7 @@
|
||||
"open-control-center": "Abrir el centro de control",
|
||||
"volume-at": "Volumen al {volume}%\nClic izquierdo para silenciar. Clic derecho para configuración.\nDesplaza para modificar el volumen.",
|
||||
"microphone-volume-at": "Volumen del micrófono al {volume}%\nClic izquierdo para silenciar. Clic derecho para configuración.\nDesplaza para modificar el volumen.",
|
||||
"brightness-at": "Brillo: {brightness}%\nClic derecho para configuración.\nDesplaza para modificar el brillo.",
|
||||
"manage-wifi": "Gestionar Wi-Fi",
|
||||
"bluetooth-devices": "Dispositivos Bluetooth",
|
||||
"open-notification-history-enable-dnd": "Abrir historial de notificaciones\nClic derecho para activar \"No molestar\".",
|
||||
|
||||
@@ -1341,6 +1341,7 @@
|
||||
"open-control-center": "Ouvrir le centre de contrôle",
|
||||
"volume-at": "Volume à {volume}%\nClic gauche pour couper/rétablir le son. Clic droit pour les paramètres.\nFaites défiler pour modifier le volume.",
|
||||
"microphone-volume-at": "Volume du microphone à {volume}%\nClic gauche pour couper/rétablir le son. Clic droit pour les paramètres.\nFaites défiler pour modifier le volume.",
|
||||
"brightness-at": "Luminosité : {brightness}%\nClic droit pour les paramètres.\nFaites défiler pour modifier la luminosité.",
|
||||
"manage-wifi": "Gérer le Wi-Fi",
|
||||
"bluetooth-devices": "Appareils Bluetooth",
|
||||
"open-notification-history-enable-dnd": "Ouvrir l'historique des notifications\nClic droit pour activer \"Ne pas déranger\".",
|
||||
|
||||
@@ -1341,6 +1341,7 @@
|
||||
"open-control-center": "Abrir central de controle",
|
||||
"volume-at": "Volume em {volume}%\nClique esquerdo para silenciar. Clique direito para configurações.\nRole para modificar o volume.",
|
||||
"microphone-volume-at": "Volume do microfone em {volume}%\nClique esquerdo para silenciar. Clique direito para configurações.\nRole para modificar o volume.",
|
||||
"brightness-at": "Brilho: {brightness}%\nClique direito para configurações.\nRole para modificar o brilho.",
|
||||
"manage-wifi": "Gerenciar Wi-Fi",
|
||||
"bluetooth-devices": "Dispositivos Bluetooth",
|
||||
"open-notification-history-enable-dnd": "Abrir histórico de notificações\nClique direito para ativar \"Não perturbe\".",
|
||||
|
||||
@@ -1341,6 +1341,7 @@
|
||||
"open-control-center": "打开控制中心",
|
||||
"volume-at": "音量 {volume}%\n左键点击切换静音。右键点击进入设置。\n滚动调整音量。",
|
||||
"microphone-volume-at": "麦克风音量 {volume}%\n左键点击切换静音。右键点击进入设置。\n滚动调整音量。",
|
||||
"brightness-at": "亮度:{brightness}%\n右键点击进入设置。\n滚动调整亮度。",
|
||||
"manage-wifi": "管理 Wi-Fi",
|
||||
"bluetooth-devices": "蓝牙设备",
|
||||
"open-notification-history-enable-dnd": "打开通知历史记录\n右键点击启用\"勿扰模式\"。",
|
||||
|
||||
@@ -91,7 +91,9 @@ Item {
|
||||
var monitor = getMonitor()
|
||||
if (!monitor)
|
||||
return ""
|
||||
return "Brightness: " + Math.round(monitor.brightness * 100) + "%\nRight click for settings.\nScroll to modify brightness."
|
||||
return I18n.tr("tooltips.brightness-at", {
|
||||
"brightness": Math.round(monitor.brightness * 100)
|
||||
})
|
||||
}
|
||||
|
||||
onWheel: function (angle) {
|
||||
|
||||
Reference in New Issue
Block a user