diff --git a/Assets/Translations/de.json b/Assets/Translations/de.json index d713d3b1..d4148acd 100644 --- a/Assets/Translations/de.json +++ b/Assets/Translations/de.json @@ -604,6 +604,10 @@ "alacritty": { "description": "Schreibe {Dateipfad} und lade neu", "description-missing": "Benötigt die Installation von {app}" + }, + "wezterm": { + "description": "Schreibe {Dateipfad} und lade neu.", + "description-missing": "Erfordert die Installation von {app}" } }, "programs": { diff --git a/Assets/Translations/es.json b/Assets/Translations/es.json index c8888ad5..c1b662b0 100644 --- a/Assets/Translations/es.json +++ b/Assets/Translations/es.json @@ -604,6 +604,10 @@ "alacritty": { "description": "Escribe {filepath} y recarga", "description-missing": "Requiere que {app} esté instalado/a." + }, + "wezterm": { + "description": "Escribe {filepath} y recarga.", + "description-missing": "Requiere que {app} esté instalado/a." } }, "programs": { diff --git a/Assets/Translations/fr.json b/Assets/Translations/fr.json index e1639ed6..6ae6057f 100644 --- a/Assets/Translations/fr.json +++ b/Assets/Translations/fr.json @@ -604,6 +604,10 @@ "alacritty": { "description": "Écrire {filepath} et recharger.", "description-missing": "Nécessite l'installation de {app}" + }, + "wezterm": { + "description": "Écrire {filepath} et recharger.", + "description-missing": "Nécessite l'installation de {app}" } }, "programs": { diff --git a/Assets/Translations/pt.json b/Assets/Translations/pt.json index c9483c6c..15a280dd 100644 --- a/Assets/Translations/pt.json +++ b/Assets/Translations/pt.json @@ -566,6 +566,10 @@ "alacritty": { "description": "Escreva {filepath} e recarregue.", "description-missing": "Requer que o {app} esteja instalado." + }, + "wezterm": { + "description": "Escreva {filepath} e recarregue.", + "description-missing": "Requer que o {app} esteja instalado." } }, "programs": { diff --git a/Assets/Translations/uk-UA.json b/Assets/Translations/uk-UA.json index 8b4f6c84..4b1f55ef 100644 --- a/Assets/Translations/uk-UA.json +++ b/Assets/Translations/uk-UA.json @@ -608,6 +608,10 @@ "alacritty": { "description": "Записати {filepath} та перезавантажити", "description-missing": "Потрібно встановити {app}" + }, + "wezterm": { + "description": "Запишіть {filepath} та перезавантажте", + "description-missing": "Потрібно встановити {app}" } }, "programs": { @@ -1290,18 +1294,6 @@ } }, "lock-keys": { - "indicator-style": { - "label": "Стиль індикатора", - "description": "Стиль значків для індикаторів клавіш блокування", - "large": "Великі літери", - "small": "Малі літери", - "square": "Квадратні літери", - "square-round": "Заокруглені квадратні літери", - "circle": "Круглі літери", - "circle-dash": "Пунктирні круглі літери", - "circle-dot": "Точкові круглі літери", - "hex": "Шестикутні літери" - }, "show-caps-lock": { "label": "Caps Lock", "description": "Відображати стан caps lock." @@ -1313,7 +1305,8 @@ "show-scroll-lock": { "label": "Scroll Lock", "description": "Відображати стан scroll lock." - } + }, + "browse": "Перегляд" } } }, diff --git a/Assets/Translations/zh-CN.json b/Assets/Translations/zh-CN.json index cbba59f2..8504cfa8 100644 --- a/Assets/Translations/zh-CN.json +++ b/Assets/Translations/zh-CN.json @@ -604,6 +604,10 @@ "alacritty": { "description": "写入 {filepath} 并重新加载", "description-missing": "需要安装 {app}" + }, + "wezterm": { + "description": "写入 {filepath} 并重新加载", + "description-missing": "需要安装{app}" } }, "programs": { diff --git a/Modules/Settings/Tabs/ColorSchemeTab.qml b/Modules/Settings/Tabs/ColorSchemeTab.qml index e94d5870..bc225cbd 100644 --- a/Modules/Settings/Tabs/ColorSchemeTab.qml +++ b/Modules/Settings/Tabs/ColorSchemeTab.qml @@ -600,19 +600,19 @@ ColumnLayout { NCheckbox { label: "Wezterm" description: ProgramCheckerService.weztermAvailable ? I18n.tr("settings.color-scheme.templates.terminal.wezterm.description", { - "filepath": "~/.config/wezterm/colors/Noctalia.toml" - }) : I18n.tr("settings.color-scheme.templates.terminal.wezterm.description-missing", { - "app": "wezterm" - }) + "filepath": "~/.config/wezterm/colors/Noctalia.toml" + }) : I18n.tr("settings.color-scheme.templates.terminal.wezterm.description-missing", { + "app": "wezterm" + }) checked: Settings.data.templates.wezterm enabled: ProgramCheckerService.weztermAvailable opacity: ProgramCheckerService.weztermAvailable ? 1.0 : 0.6 onToggled: checked => { - if (ProgramCheckerService.weztermAvailable) { - Settings.data.templates.wezterm = checked - AppThemeService.generate() - } - } + if (ProgramCheckerService.weztermAvailable) { + Settings.data.templates.wezterm = checked + AppThemeService.generate() + } + } } }