diff --git a/Assets/Translations/de.json b/Assets/Translations/de.json index 369eee4a..6ba6381a 100644 --- a/Assets/Translations/de.json +++ b/Assets/Translations/de.json @@ -266,6 +266,10 @@ "label": "Schwebende Statusleiste", "description": "Statusleiste als schwebende 'Pille' anzeigen. Hinweis: Dies verschiebt die Bildschirmecken an die Ränder." }, + "auto-hide": { + "label": "Automatisch ausblenden", + "description": "Blendet die Leiste automatisch aus, wenn sie nicht verwendet wird." + }, "margins": { "label": "Ränder", "description": "Ränder um die schwebende Statusleiste anpassen.", diff --git a/Assets/Translations/en.json b/Assets/Translations/en.json index a90e24a7..361903a8 100644 --- a/Assets/Translations/en.json +++ b/Assets/Translations/en.json @@ -266,6 +266,10 @@ "label": "Floating bar", "description": "Displays the bar as a floating 'pill'. Note: This will move the screen corners to the edges." }, + "auto-hide": { + "label": "Auto hide", + "description": "Automatically hide the bar when not in use." + }, "margins": { "label": "Margins", "description": "Adjust the margins around the floating bar.", diff --git a/Assets/Translations/es.json b/Assets/Translations/es.json index 8c79a64f..08d7aac8 100644 --- a/Assets/Translations/es.json +++ b/Assets/Translations/es.json @@ -266,6 +266,10 @@ "label": "Barra flotante", "description": "Muestra la barra como una 'píldora' flotante. Nota: Esto moverá las esquinas de la pantalla a los bordes." }, + "auto-hide": { + "label": "Ocultar automáticamente", + "description": "Oculta automáticamente la barra cuando no esté en uso." + }, "margins": { "label": "Márgenes", "description": "Ajusta los márgenes alrededor de la barra flotante.", diff --git a/Assets/Translations/fr.json b/Assets/Translations/fr.json index 32c01982..5f7bec3a 100644 --- a/Assets/Translations/fr.json +++ b/Assets/Translations/fr.json @@ -266,6 +266,10 @@ "label": "Barre flottante", "description": "Affiche la barre sous forme de 'pilule' flottante. Note : Ceci déplacera les coins de l'écran vers les bords." }, + "auto-hide": { + "label": "Masquer automatiquement", + "description": "Masquer automatiquement la barre lorsqu’elle n’est pas utilisée." + }, "margins": { "label": "Marges", "description": "Ajustez les marges autour de la barre flottante.", diff --git a/Assets/Translations/pt.json b/Assets/Translations/pt.json index 67fa8ead..e46f67cb 100644 --- a/Assets/Translations/pt.json +++ b/Assets/Translations/pt.json @@ -266,6 +266,10 @@ "label": "Barra flutuante", "description": "Exibe a barra como uma 'pílula' flutuante. Nota: Isso moverá os cantos da tela para as bordas." }, + "auto-hide": { + "label": "Ocultar automaticamente", + "description": "Oculta automaticamente a barra quando não estiver em uso." + }, "margins": { "label": "Margens", "description": "Ajuste as margens ao redor da barra flutuante.", diff --git a/Assets/Translations/zh-CN.json b/Assets/Translations/zh-CN.json index 9f421d69..c6ff1c0f 100644 --- a/Assets/Translations/zh-CN.json +++ b/Assets/Translations/zh-CN.json @@ -266,6 +266,10 @@ "label": "浮动状态栏", "description": "将状态栏显示为浮动样式(类似于一个药丸)。注意:这会将屏幕边角移动到边缘。" }, + "auto-hide": { + "label": "自动隐藏", + "description": "在不使用时自动隐藏状态栏。" + }, "margins": { "label": "边距", "description": "调整浮动状态栏周围的边距。", diff --git a/Modules/Settings/Tabs/BarTab.qml b/Modules/Settings/Tabs/BarTab.qml index be5687ec..272740f3 100644 --- a/Modules/Settings/Tabs/BarTab.qml +++ b/Modules/Settings/Tabs/BarTab.qml @@ -122,8 +122,8 @@ ColumnLayout { NToggle { Layout.fillWidth: true - label: "Auto Hide" - description: "Automatically hide the bar when not in use." + label: I18n.tr("settings.bar.appearance.auto-hide.label") + description: I18n.tr("settings.bar.appearance.auto-hide.description") checked: Settings.data.bar.autoHide onToggled: checked => Settings.data.bar.autoHide = checked }