mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
translations cleanup
This commit is contained in:
@@ -509,6 +509,7 @@
|
||||
"on-hover": "On hover"
|
||||
},
|
||||
"hide-modes": {
|
||||
"auto-hide": "Auto-hide",
|
||||
"hidden": "Hide when empty",
|
||||
"idle": "Hide when idle",
|
||||
"transparent": "Transparent when empty",
|
||||
@@ -600,7 +601,6 @@
|
||||
"density-mini": "Mini",
|
||||
"density-spacious": "Spacious",
|
||||
"display-mode-always-visible": "Always Visible",
|
||||
"display-mode-auto-hide": "Auto-hide",
|
||||
"type-floating": "Floating",
|
||||
"type-framed": "Framed",
|
||||
"type-simple": "Simple"
|
||||
@@ -722,6 +722,11 @@
|
||||
"volumes-volume-overdrive-label": "Allow volume overdrive"
|
||||
},
|
||||
"bar": {
|
||||
"appearance-auto-hide-delay-description": "Time before bar hides after mouse leaves",
|
||||
"appearance-auto-hide-delay-label": "Hide Delay",
|
||||
"appearance-auto-hide-exclusive-note": "Note: Exclusive zone is automatically disabled when auto-hide is active",
|
||||
"appearance-auto-show-delay-description": "Time before bar shows when mouse enters edge",
|
||||
"appearance-auto-show-delay-label": "Show Delay",
|
||||
"appearance-background-opacity-description": "Set the background opacity specifically for the bar.",
|
||||
"appearance-background-opacity-label": "Bar background opacity",
|
||||
"appearance-capsule-opacity-description": "Set the opacity level for widget backgrounds when capsule is shown.",
|
||||
@@ -729,19 +734,14 @@
|
||||
"appearance-density-description": "Adjust the bar's padding for a compact or spacious look.",
|
||||
"appearance-density-label": "Bar density",
|
||||
"appearance-desc": "Customize the bar's appearance and position.",
|
||||
"appearance-display-mode-description": "Choose when the bar is visible",
|
||||
"appearance-display-mode-label": "Display Mode",
|
||||
"appearance-floating-description": "Display the bar as a floating 'pill'.",
|
||||
"appearance-floating-label": "Floating bar",
|
||||
"appearance-frame-radius": "Inner Radius",
|
||||
"appearance-frame-settings-description": "Adjust frame thickness and inner corner radius",
|
||||
"appearance-frame-settings-label": "Frame Settings",
|
||||
"appearance-frame-thickness": "Thickness",
|
||||
"appearance-auto-hide-delay-description": "Time before bar hides after mouse leaves",
|
||||
"appearance-auto-hide-delay-label": "Hide Delay",
|
||||
"appearance-auto-hide-exclusive-note": "Note: Exclusive zone is automatically disabled when auto-hide is active",
|
||||
"appearance-auto-show-delay-description": "Time before bar shows when mouse enters edge",
|
||||
"appearance-auto-show-delay-label": "Show Delay",
|
||||
"appearance-display-mode-description": "Choose when the bar is visible",
|
||||
"appearance-display-mode-label": "Display Mode",
|
||||
"appearance-hide-on-overview-description": "Hide the bar and close panels when the compositor overview is active.",
|
||||
"appearance-hide-on-overview-label": "Hide bar on overview",
|
||||
"appearance-margins-description": "Adjust the margins around the floating bar.",
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"hideOnOverview": false,
|
||||
"displayMode": "always_visible",
|
||||
"autoHideDelay": 500,
|
||||
"autoShowDelay": 100,
|
||||
"autoShowDelay": 150,
|
||||
"widgets": {
|
||||
"left": [
|
||||
{
|
||||
|
||||
@@ -203,7 +203,7 @@ Singleton {
|
||||
// Auto-hide settings
|
||||
property string displayMode: "always_visible" // "always_visible", "auto_hide"
|
||||
property int autoHideDelay: 500 // ms before hiding after mouse leaves
|
||||
property int autoShowDelay: 100 // ms before showing when mouse enters
|
||||
property int autoShowDelay: 150 // ms before showing when mouse enters
|
||||
|
||||
// Widget configuration for modular bar system
|
||||
property JsonObject widgets
|
||||
|
||||
@@ -124,20 +124,20 @@ ColumnLayout {
|
||||
|
||||
NComboBox {
|
||||
Layout.fillWidth: true
|
||||
label: I18n.tr("panels.bar.appearance-type-label") ?? "Bar Type"
|
||||
description: I18n.tr("panels.bar.appearance-type-description") ?? "Choose the style of the bar: Simple, Floating or Framed"
|
||||
label: I18n.tr("panels.bar.appearance-type-label")
|
||||
description: I18n.tr("panels.bar.appearance-type-description")
|
||||
model: [
|
||||
{
|
||||
"key": "simple",
|
||||
"name": I18n.tr("options.bar.type-simple") ?? "Simple"
|
||||
"name": I18n.tr("options.bar.type-simple")
|
||||
},
|
||||
{
|
||||
"key": "floating",
|
||||
"name": I18n.tr("options.bar.type-floating") ?? "Floating"
|
||||
"name": I18n.tr("options.bar.type-floating")
|
||||
},
|
||||
{
|
||||
"key": "framed",
|
||||
"name": I18n.tr("options.bar.type-framed") ?? "Framed"
|
||||
"name": I18n.tr("options.bar.type-framed")
|
||||
}
|
||||
]
|
||||
currentKey: Settings.data.bar.barType
|
||||
@@ -164,8 +164,8 @@ ColumnLayout {
|
||||
Layout.fillWidth: true
|
||||
|
||||
NLabel {
|
||||
label: I18n.tr("panels.bar.appearance-frame-settings-label") ?? "Frame Settings"
|
||||
description: I18n.tr("panels.bar.appearance-frame-settings-description") ?? "Adjust frame thickness and inner corner radius"
|
||||
label: I18n.tr("panels.bar.appearance-frame-settings-label")
|
||||
description: I18n.tr("panels.bar.appearance-frame-settings-description")
|
||||
}
|
||||
|
||||
RowLayout {
|
||||
@@ -174,7 +174,7 @@ ColumnLayout {
|
||||
|
||||
NValueSlider {
|
||||
Layout.fillWidth: true
|
||||
label: I18n.tr("panels.bar.appearance-frame-thickness") ?? "Thickness"
|
||||
label: I18n.tr("panels.bar.appearance-frame-thickness")
|
||||
from: 4
|
||||
to: 24
|
||||
stepSize: 1
|
||||
@@ -186,7 +186,7 @@ ColumnLayout {
|
||||
|
||||
NValueSlider {
|
||||
Layout.fillWidth: true
|
||||
label: I18n.tr("panels.bar.appearance-frame-radius") ?? "Inner Radius"
|
||||
label: I18n.tr("panels.bar.appearance-frame-radius")
|
||||
from: 4
|
||||
to: 24
|
||||
stepSize: 1
|
||||
@@ -245,16 +245,16 @@ ColumnLayout {
|
||||
|
||||
NComboBox {
|
||||
Layout.fillWidth: true
|
||||
label: I18n.tr("panels.bar.appearance-display-mode-label") ?? "Display Mode"
|
||||
description: I18n.tr("panels.bar.appearance-display-mode-description") ?? "Choose when the bar is visible"
|
||||
label: I18n.tr("panels.bar.appearance-display-mode-label")
|
||||
description: I18n.tr("panels.bar.appearance-display-mode-description")
|
||||
model: [
|
||||
{
|
||||
"key": "always_visible",
|
||||
"name": I18n.tr("options.bar.display-mode-always-visible") ?? "Always Visible"
|
||||
"name": I18n.tr("hide-modes.visible")
|
||||
},
|
||||
{
|
||||
"key": "auto_hide",
|
||||
"name": I18n.tr("options.bar.display-mode-auto-hide") ?? "Auto-hide"
|
||||
"name": I18n.tr("hide-modes.auto-hide")
|
||||
}
|
||||
]
|
||||
currentKey: Settings.data.bar.displayMode
|
||||
@@ -269,8 +269,8 @@ ColumnLayout {
|
||||
|
||||
NValueSlider {
|
||||
Layout.fillWidth: true
|
||||
label: I18n.tr("panels.bar.appearance-auto-hide-delay-label") ?? "Hide Delay"
|
||||
description: I18n.tr("panels.bar.appearance-auto-hide-delay-description") ?? "Time before bar hides after mouse leaves"
|
||||
label: I18n.tr("panels.bar.appearance-auto-hide-delay-label")
|
||||
description: I18n.tr("panels.bar.appearance-auto-hide-delay-description")
|
||||
from: 100
|
||||
to: 2000
|
||||
stepSize: 100
|
||||
@@ -282,8 +282,8 @@ ColumnLayout {
|
||||
|
||||
NValueSlider {
|
||||
Layout.fillWidth: true
|
||||
label: I18n.tr("panels.bar.appearance-auto-show-delay-label") ?? "Show Delay"
|
||||
description: I18n.tr("panels.bar.appearance-auto-show-delay-description") ?? "Time before bar shows when mouse enters edge"
|
||||
label: I18n.tr("panels.bar.appearance-auto-show-delay-label")
|
||||
description: I18n.tr("panels.bar.appearance-auto-show-delay-description")
|
||||
from: 0
|
||||
to: 500
|
||||
stepSize: 50
|
||||
@@ -296,7 +296,7 @@ ColumnLayout {
|
||||
NLabel {
|
||||
visible: Settings.data.bar.exclusive
|
||||
label: ""
|
||||
description: I18n.tr("panels.bar.appearance-auto-hide-exclusive-note") ?? "Note: Exclusive zone is automatically disabled when auto-hide is active"
|
||||
description: I18n.tr("panels.bar.appearance-auto-hide-exclusive-note")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user