1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-30 00:12:50 -05:00

i18n: update translations

This commit is contained in:
bbedward
2025-11-23 12:49:29 -05:00
parent 48f77e1691
commit 991c31ebdb
17 changed files with 1380 additions and 450 deletions

View File

@@ -16,7 +16,7 @@ DankModal {
active: CompositorService.isHyprland && root.shouldHaveFocus active: CompositorService.isHyprland && root.shouldHaveFocus
} }
property string pickerTitle: "Choose Color" property string pickerTitle: I18n.tr("Choose Color")
property color selectedColor: SessionData.recentColors.length > 0 ? SessionData.recentColors[0] : Theme.primary property color selectedColor: SessionData.recentColors.length > 0 ? SessionData.recentColors[0] : Theme.primary
property var onColorSelectedCallback: null property var onColorSelectedCallback: null

View File

@@ -41,7 +41,7 @@ FloatingWindow {
} }
objectName: "processListModal" objectName: "processListModal"
title: "System Monitor" title: I18n.tr("System Monitor", "sysmon window title")
implicitWidth: 900 implicitWidth: 900
implicitHeight: 680 implicitHeight: 680
color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency) color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)

View File

@@ -38,7 +38,7 @@ FloatingWindow {
} }
objectName: "settingsModal" objectName: "settingsModal"
title: "Settings" title: I18n.tr("Settings", "settings window title")
implicitWidth: 800 implicitWidth: 800
implicitHeight: 800 implicitHeight: 800
color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency) color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
@@ -71,7 +71,7 @@ FloatingWindow {
allowStacking: true allowStacking: true
parentModal: settingsModal parentModal: settingsModal
browserTitle: "Select Profile Image" browserTitle: I18n.tr("Select Profile Image", "profile image file browser title")
browserIcon: "person" browserIcon: "person"
browserType: "profile" browserType: "profile"
showHiddenFiles: true showHiddenFiles: true
@@ -90,7 +90,7 @@ FloatingWindow {
allowStacking: true allowStacking: true
parentModal: settingsModal parentModal: settingsModal
browserTitle: "Select Wallpaper" browserTitle: I18n.tr("Select Wallpaper", "wallpaper file browser title")
browserIcon: "wallpaper" browserIcon: "wallpaper"
browserType: "wallpaper" browserType: "wallpaper"
showHiddenFiles: true showHiddenFiles: true

View File

@@ -305,7 +305,7 @@ Item {
Component.onCompleted: { Component.onCompleted: {
open() open()
} }
browserTitle: "Select Wallpaper Directory" browserTitle: I18n.tr("Select Wallpaper Directory", "wallpaper directory file browser title")
browserIcon: "folder_open" browserIcon: "folder_open"
browserType: "wallpaper" browserType: "wallpaper"
showHiddenFiles: false showHiddenFiles: false

View File

@@ -2152,7 +2152,7 @@ Item {
Component.onCompleted: { Component.onCompleted: {
open() open()
} }
browserTitle: "Select Wallpaper" browserTitle: I18n.tr("Select Wallpaper", "wallpaper file browser title")
browserIcon: "wallpaper" browserIcon: "wallpaper"
browserType: "wallpaper" browserType: "wallpaper"
showHiddenFiles: true showHiddenFiles: true
@@ -2181,7 +2181,7 @@ Item {
Component.onCompleted: { Component.onCompleted: {
open() open()
} }
browserTitle: "Select Light Mode Wallpaper" browserTitle: I18n.tr("Select Wallpaper", "light mode wallpaper file browser title")
browserIcon: "light_mode" browserIcon: "light_mode"
browserType: "wallpaper" browserType: "wallpaper"
showHiddenFiles: true showHiddenFiles: true
@@ -2208,7 +2208,7 @@ Item {
Component.onCompleted: { Component.onCompleted: {
open() open()
} }
browserTitle: "Select Dark Mode Wallpaper" browserTitle: I18n.tr("Select Wallpaper", "dark mode wallpaper file browser title")
browserIcon: "dark_mode" browserIcon: "dark_mode"
browserType: "wallpaper" browserType: "wallpaper"
showHiddenFiles: true showHiddenFiles: true

View File

@@ -1452,7 +1452,7 @@ Item {
FileBrowserModal { FileBrowserModal {
id: fileBrowserModal id: fileBrowserModal
browserTitle: "Select Custom Theme" browserTitle: I18n.tr("Select Custom Theme", "custom theme file browser title")
filterExtensions: ["*.json"] filterExtensions: ["*.json"]
showHiddenFiles: true showHiddenFiles: true

View File

@@ -240,11 +240,29 @@ def save_sync_state():
def main(): def main():
if len(sys.argv) < 2: if len(sys.argv) < 2:
error("Usage: i18nsync.py [check|sync]") error("Usage: i18nsync.py [check|sync|test]")
command = sys.argv[1] command = sys.argv[1]
if command == "check": if command == "test":
info("Running in test mode (no POEditor upload/download)")
extract_strings()
current_en = normalize_json(EN_JSON)
current_template = normalize_json(TEMPLATE_JSON)
success(f"✓ Extracted {len(current_en)} terms")
terms_with_context = sum(1 for entry in current_en if entry.get('context') and entry['context'] != entry['term'])
if terms_with_context > 0:
success(f"✓ Found {terms_with_context} terms with custom contexts")
info("\nFiles generated:")
info(f" - {EN_JSON}")
info(f" - {TEMPLATE_JSON}")
sys.exit(0)
elif command == "check":
try: try:
if check_sync_status(): if check_sync_status():
error("i18n out of sync - run 'python3 scripts/i18nsync.py sync' first") error("i18n out of sync - run 'python3 scripts/i18nsync.py sync' first")

File diff suppressed because it is too large Load Diff

View File

@@ -6,9 +6,10 @@ from pathlib import Path
from collections import defaultdict from collections import defaultdict
def extract_qstr_strings(root_dir): def extract_qstr_strings(root_dir):
translations = defaultdict(list) translations = defaultdict(lambda: {'contexts': set(), 'occurrences': []})
qstr_pattern = re.compile(r'qsTr\(["\']([^"\']+)["\']\)') qstr_pattern = re.compile(r'qsTr\(["\']([^"\']+)["\']\)')
i18n_pattern = re.compile(r'I18n\.tr\(["\']([^"\']+)["\']\)') i18n_pattern_with_context = re.compile(r'I18n\.tr\(["\']([^"\']+)["\']\s*,\s*["\']([^"\']+)["\']\)')
i18n_pattern_simple = re.compile(r'I18n\.tr\(["\']([^"\']+)["\']\)')
for qml_file in Path(root_dir).rglob('*.qml'): for qml_file in Path(root_dir).rglob('*.qml'):
relative_path = qml_file.relative_to(root_dir) relative_path = qml_file.relative_to(root_dir)
@@ -17,14 +18,23 @@ def extract_qstr_strings(root_dir):
for line_num, line in enumerate(f, 1): for line_num, line in enumerate(f, 1):
qstr_matches = qstr_pattern.findall(line) qstr_matches = qstr_pattern.findall(line)
for match in qstr_matches: for match in qstr_matches:
translations[match].append({ translations[match]['occurrences'].append({
'file': str(relative_path), 'file': str(relative_path),
'line': line_num 'line': line_num
}) })
i18n_matches = i18n_pattern.findall(line) i18n_with_context = i18n_pattern_with_context.findall(line)
for match in i18n_matches: for term, context in i18n_with_context:
translations[match].append({ translations[term]['contexts'].add(context)
translations[term]['occurrences'].append({
'file': str(relative_path),
'line': line_num
})
i18n_simple = i18n_pattern_simple.findall(line)
for match in i18n_simple:
if not i18n_pattern_with_context.search(line):
translations[match]['occurrences'].append({
'file': str(relative_path), 'file': str(relative_path),
'line': line_num 'line': line_num
}) })
@@ -34,16 +44,19 @@ def extract_qstr_strings(root_dir):
def create_poeditor_json(translations): def create_poeditor_json(translations):
poeditor_data = [] poeditor_data = []
for term, occurrences in sorted(translations.items()): for term, data in sorted(translations.items()):
references = [] references = []
for occ in occurrences: for occ in data['occurrences']:
ref = f"{occ['file']}:{occ['line']}" ref = f"{occ['file']}:{occ['line']}"
references.append(ref) references.append(ref)
contexts = sorted(data['contexts']) if data['contexts'] else []
context_str = " | ".join(contexts) if contexts else term
entry = { entry = {
"term": term, "term": term,
"context": term, "context": context_str,
"reference": ", ".join(references), "reference": ", ".join(references),
"comment": "" "comment": ""
} }
@@ -54,11 +67,14 @@ def create_poeditor_json(translations):
def create_template_json(translations): def create_template_json(translations):
template_data = [] template_data = []
for term in sorted(translations.keys()): for term, data in sorted(translations.items()):
contexts = sorted(data['contexts']) if data['contexts'] else []
context_str = " | ".join(contexts) if contexts else ""
entry = { entry = {
"term": term, "term": term,
"translation": "", "translation": "",
"context": "", "context": context_str,
"reference": "", "reference": "",
"comment": "" "comment": ""
} }
@@ -90,7 +106,8 @@ def main():
print("\nSummary:") print("\nSummary:")
print(f" - Unique strings: {len(translations)}") print(f" - Unique strings: {len(translations)}")
print(f" - Total occurrences: {sum(len(occs) for occs in translations.values())}") print(f" - Total occurrences: {sum(len(data['occurrences']) for data in translations.values())}")
print(f" - Strings with contexts: {sum(1 for data in translations.values() if data['contexts'])}")
print(f" - Source file: {en_json_path}") print(f" - Source file: {en_json_path}")
print(f" - Template file: {template_json_path}") print(f" - Template file: {template_json_path}")

View File

@@ -2,6 +2,12 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 caratteri" "%1 characters": "%1 caratteri"
}, },
"%1 display(s)": {
"%1 display(s)": ""
},
"%1 widgets": {
"%1 widgets": ""
},
"(Unnamed)": { "(Unnamed)": {
"(Unnamed)": "(Senza nome)" "(Unnamed)": "(Senza nome)"
}, },
@@ -47,6 +53,9 @@
"Add": { "Add": {
"Add": "Aggiungi" "Add": "Aggiungi"
}, },
"Add Bar": {
"Add Bar": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "Aggiungi Widget" "Add Widget": "Aggiungi Widget"
}, },
@@ -227,6 +236,12 @@
"Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "Tavolozza bilanciata con accenti focalizzati (default)." "Balanced palette with focused accents (default).": "Tavolozza bilanciata con accenti focalizzati (default)."
}, },
"Bar Configurations": {
"Bar Configurations": ""
},
"Bar Transparency": {
"Bar Transparency": ""
},
"Battery": { "Battery": {
"Battery": "Batteria" "Battery": "Batteria"
}, },
@@ -276,7 +291,7 @@
"Brightness": "Luminosità" "Brightness": "Luminosità"
}, },
"Brightness OSD": { "Brightness OSD": {
"Brightness OSD": "" "Brightness OSD": "OSD Luminosità"
}, },
"Browse": { "Browse": {
"Browse": "Sfoglia" "Browse": "Sfoglia"
@@ -318,7 +333,7 @@
"Caps Lock Indicator": "Indicatore Maiuscolo" "Caps Lock Indicator": "Indicatore Maiuscolo"
}, },
"Caps Lock OSD": { "Caps Lock OSD": {
"Caps Lock OSD": "" "Caps Lock OSD": "OSD Maiuscolo"
}, },
"Center Section": { "Center Section": {
"Center Section": "Sezione Centrale" "Center Section": "Sezione Centrale"
@@ -326,18 +341,27 @@
"Center Tiling": { "Center Tiling": {
"Center Tiling": "Tiling Centrale" "Center Tiling": "Tiling Centrale"
}, },
"Change bar appearance": {
"Change bar appearance": ""
},
"Changes:": { "Changes:": {
"Changes:": "Modifiche:" "Changes:": "Modifiche:"
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Controlla aggiornamenti di sistema" "Check for system updates": "Controlla aggiornamenti di sistema"
}, },
"Choose Color": {
"Choose Color": ""
},
"Choose Launcher Logo Color": { "Choose Launcher Logo Color": {
"Choose Launcher Logo Color": "Scegli Colore Logo Launcher" "Choose Launcher Logo Color": "Scegli Colore Logo Launcher"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "Scegli icona" "Choose icon": "Scegli icona"
}, },
"Choose the background color for widgets": {
"Choose the background color for widgets": ""
},
"Choose the border accent color": { "Choose the border accent color": {
"Choose the border accent color": "Scegli il colore di accento dei bordi" "Choose the border accent color": "Scegli il colore di accento dei bordi"
}, },
@@ -348,7 +372,7 @@
"Choose where notification popups appear on screen": "Scegli dove i popup delle notifiche appaiono sullo schermo" "Choose where notification popups appear on screen": "Scegli dove i popup delle notifiche appaiono sullo schermo"
}, },
"Choose where on-screen displays appear on screen": { "Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "" "Choose where on-screen displays appear on screen": "Scegli dove i messaggi appaiono sullo schermo"
}, },
"Clear": { "Clear": {
"Clear": "Pulisci" "Clear": "Pulisci"
@@ -374,6 +398,9 @@
"Close": { "Close": {
"Close": "Chiudi" "Close": "Chiudi"
}, },
"Close Overview on Launch": {
"Close Overview on Launch": ""
},
"Color Override": { "Color Override": {
"Color Override": "Sostituzione Colore" "Color Override": "Sostituzione Colore"
}, },
@@ -626,6 +653,9 @@
"Dismiss": { "Dismiss": {
"Dismiss": "Dismetti" "Dismiss": "Dismetti"
}, },
"Display Assignment": {
"Display Assignment": ""
},
"Display Name Format": { "Display Name Format": {
"Display Name Format": "" "Display Name Format": ""
}, },
@@ -707,6 +737,9 @@
"Enable Autoconnect": { "Enable Autoconnect": {
"Enable Autoconnect": "Abilita connessione automatica" "Enable Autoconnect": "Abilita connessione automatica"
}, },
"Enable Bar": {
"Enable Bar": ""
},
"Enable GPU Temperature": { "Enable GPU Temperature": {
"Enable GPU Temperature": "Abilita Temperatura GPU" "Enable GPU Temperature": "Abilita Temperatura GPU"
}, },
@@ -765,7 +798,7 @@
"Enter password for ": "Inserisci password per" "Enter password for ": "Inserisci password per"
}, },
"Enter this passkey on ": { "Enter this passkey on ": {
"Enter this passkey on ": "" "Enter this passkey on ": "Inserisci questa passkey su "
}, },
"Error": { "Error": {
"Error": "Errore" "Error": "Errore"
@@ -1001,6 +1034,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "Batterie Individuali" "Individual Batteries": "Batterie Individuali"
}, },
"Individual bar configuration": {
"Individual bar configuration": ""
},
"Inhibit idle timeout when audio or video is playing": { "Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": "Impedisci tempo inattività quando audio o video sono in riproduzione" "Inhibit idle timeout when audio or video is playing": "Impedisci tempo inattività quando audio o video sono in riproduzione"
}, },
@@ -1028,9 +1064,15 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "Lavori:" "Jobs: ": "Lavori:"
}, },
"Keep Awake": {
"Keep Awake": ""
},
"Keep Changes": { "Keep Changes": {
"Keep Changes": "Conserva Modifiche" "Keep Changes": "Conserva Modifiche"
}, },
"Keeping Awake": {
"Keeping Awake": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Nome Layout Tastiera" "Keyboard Layout Name": "Nome Layout Tastiera"
}, },
@@ -1121,6 +1163,9 @@
"Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "Gestione e configurazione plugins per estendere le funzionalità di DMS" "Manage and configure plugins for extending DMS functionality": "Gestione e configurazione plugins per estendere le funzionalità di DMS"
}, },
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": {
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": ""
},
"Manual Coordinates": { "Manual Coordinates": {
"Manual Coordinates": "Coordinate Manuali" "Manual Coordinates": "Coordinate Manuali"
}, },
@@ -1184,6 +1229,9 @@
"Media Players (": { "Media Players (": {
"Media Players (": "Media Players (" "Media Players (": "Media Players ("
}, },
"Media Volume OSD": {
"Media Volume OSD": ""
},
"Memory": { "Memory": {
"Memory": "Memoria" "Memory": "Memoria"
}, },
@@ -1199,6 +1247,9 @@
"Microphone Mute OSD": { "Microphone Mute OSD": {
"Microphone Mute OSD": "" "Microphone Mute OSD": ""
}, },
"Middle Section": {
"Middle Section": ""
},
"Minimal palette built around a single hue.": { "Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Tavolozza minima costruita attorno a una singola tonalità." "Minimal palette built around a single hue.": "Tavolozza minima costruita attorno a una singola tonalità."
}, },
@@ -1368,7 +1419,7 @@
"OS Logo": "Logo OS" "OS Logo": "Logo OS"
}, },
"OSD Position": { "OSD Position": {
"OSD Position": "" "OSD Position": "Posizione OSD"
}, },
"Office": { "Office": {
"Office": "Ufficio" "Office": "Ufficio"
@@ -1530,7 +1581,7 @@
"Power Profile Degradation": "Degradamento profilo energetico" "Power Profile Degradation": "Degradamento profilo energetico"
}, },
"Power Profile OSD": { "Power Profile OSD": {
"Power Profile OSD": "" "Power Profile OSD": "OSD Profilo Alimentazione"
}, },
"Pressure": { "Pressure": {
"Pressure": "Pressione" "Pressure": "Pressione"
@@ -1670,6 +1721,9 @@
"Save Notepad File": { "Save Notepad File": {
"Save Notepad File": "Salva File Notepad" "Save Notepad File": "Salva File Notepad"
}, },
"Save password": {
"Save password": ""
},
"Saved": { "Saved": {
"Saved": "Salvato" "Saved": "Salvato"
}, },
@@ -1821,22 +1875,25 @@
"Show on screens:": "Mostra sullo schermo:" "Show on screens:": "Mostra sullo schermo:"
}, },
"Show on-screen display when brightness changes": { "Show on-screen display when brightness changes": {
"Show on-screen display when brightness changes": "" "Show on-screen display when brightness changes": "Visualizza un messaggio a schermo quando la luminosità cambia"
}, },
"Show on-screen display when caps lock state changes": { "Show on-screen display when caps lock state changes": {
"Show on-screen display when caps lock state changes": "" "Show on-screen display when caps lock state changes": "Visualizza un messaggio a schermo quando lo stato del maiuscolo cambia"
}, },
"Show on-screen display when idle inhibitor state changes": { "Show on-screen display when idle inhibitor state changes": {
"Show on-screen display when idle inhibitor state changes": "" "Show on-screen display when idle inhibitor state changes": ""
}, },
"Show on-screen display when media player volume changes": {
"Show on-screen display when media player volume changes": ""
},
"Show on-screen display when microphone is muted/unmuted": { "Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "" "Show on-screen display when microphone is muted/unmuted": "Visualizza un messaggio a schermo quando il microfono è mutato/aperto"
}, },
"Show on-screen display when power profile changes": { "Show on-screen display when power profile changes": {
"Show on-screen display when power profile changes": "" "Show on-screen display when power profile changes": "Visualizza un messaggio a schermo quando il profilo di alimentazione cambia "
}, },
"Show on-screen display when volume changes": { "Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "" "Show on-screen display when volume changes": "Visualizza un messaggio a schermo quando il volume cambia"
}, },
"Show only apps running in current workspace": { "Show only apps running in current workspace": {
"Show only apps running in current workspace": "Mostra solo apps eseguite nel workspace attuale" "Show only apps running in current workspace": "Mostra solo apps eseguite nel workspace attuale"
@@ -2051,6 +2108,9 @@
"Toggle top bar visibility manually (can be controlled via IPC)": { "Toggle top bar visibility manually (can be controlled via IPC)": {
"Toggle top bar visibility manually (can be controlled via IPC)": "Cambia manualmente visibiltà barra superiore (può essere controllata via IPC)" "Toggle top bar visibility manually (can be controlled via IPC)": "Cambia manualmente visibiltà barra superiore (può essere controllata via IPC)"
}, },
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": ""
},
"Tomorrow": { "Tomorrow": {
"Tomorrow": "Domani" "Tomorrow": "Domani"
}, },
@@ -2199,7 +2259,7 @@
"Volume Changed": "Volume Cambiato" "Volume Changed": "Volume Cambiato"
}, },
"Volume OSD": { "Volume OSD": {
"Volume OSD": "" "Volume OSD": "OSD Volume"
}, },
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Volume, luminosità, e altri OSD di sistema" "Volume, brightness, and other system OSDs": "Volume, luminosità, e altri OSD di sistema"
@@ -2240,12 +2300,21 @@
"WiFi is off": { "WiFi is off": {
"WiFi is off": "WiFi spento" "WiFi is off": "WiFi spento"
}, },
"Widget Background Color": {
"Widget Background Color": ""
},
"Widget Management": { "Widget Management": {
"Widget Management": "Gestione Widget" "Widget Management": "Gestione Widget"
}, },
"Widget Style": {
"Widget Style": ""
},
"Widget Styling": { "Widget Styling": {
"Widget Styling": "Widget Styling" "Widget Styling": "Widget Styling"
}, },
"Widget Transparency": {
"Widget Transparency": ""
},
"Widgets": { "Widgets": {
"Widgets": "Widgets" "Widgets": "Widgets"
}, },
@@ -2279,6 +2348,12 @@
"You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": {
"You have unsaved changes. Save before opening a file?": "Ci sono modifiche non salvate. Salvare prima di aprire un file?" "You have unsaved changes. Save before opening a file?": "Ci sono modifiche non salvate. Salvare prima di aprire un file?"
}, },
"custom theme file browser title": {
"Select Custom Theme": ""
},
"dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": {
"Select Wallpaper": ""
},
"events": { "events": {
"events": "eventi" "events": "eventi"
}, },
@@ -2291,9 +2366,21 @@
"official": { "official": {
"official": "ufficiale" "official": "ufficiale"
}, },
"profile image file browser title": {
"Select Profile Image": ""
},
"settings window title": {
"Settings": ""
},
"sysmon window title": {
"System Monitor": ""
},
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "aggiorna dms per integrazione NM" "update dms for NM integration.": "aggiorna dms per integrazione NM"
}, },
"wallpaper directory file browser title": {
"Select Wallpaper Directory": ""
},
"• Install only from trusted sources": { "• Install only from trusted sources": {
"• Install only from trusted sources": "• Installa solo da sorgenti fidate" "• Install only from trusted sources": "• Installa solo da sorgenti fidate"
}, },

View File

@@ -2,6 +2,12 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 文字" "%1 characters": "%1 文字"
}, },
"%1 display(s)": {
"%1 display(s)": ""
},
"%1 widgets": {
"%1 widgets": ""
},
"(Unnamed)": { "(Unnamed)": {
"(Unnamed)": "(名前なし)" "(Unnamed)": "(名前なし)"
}, },
@@ -47,6 +53,9 @@
"Add": { "Add": {
"Add": "追加" "Add": "追加"
}, },
"Add Bar": {
"Add Bar": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "ウィジェットを追加" "Add Widget": "ウィジェットを追加"
}, },
@@ -227,6 +236,12 @@
"Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "アクセントに焦点を絞ったバランスの取れたパレット(デフォルト)。" "Balanced palette with focused accents (default).": "アクセントに焦点を絞ったバランスの取れたパレット(デフォルト)。"
}, },
"Bar Configurations": {
"Bar Configurations": ""
},
"Bar Transparency": {
"Bar Transparency": ""
},
"Battery": { "Battery": {
"Battery": "バッテリー" "Battery": "バッテリー"
}, },
@@ -326,18 +341,27 @@
"Center Tiling": { "Center Tiling": {
"Center Tiling": "中央タイルリング" "Center Tiling": "中央タイルリング"
}, },
"Change bar appearance": {
"Change bar appearance": ""
},
"Changes:": { "Changes:": {
"Changes:": "変更:" "Changes:": "変更:"
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "システムアップデートを検査" "Check for system updates": "システムアップデートを検査"
}, },
"Choose Color": {
"Choose Color": ""
},
"Choose Launcher Logo Color": { "Choose Launcher Logo Color": {
"Choose Launcher Logo Color": "ランチャーロゴの色を選ぶ" "Choose Launcher Logo Color": "ランチャーロゴの色を選ぶ"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "アイコンを選ぶ" "Choose icon": "アイコンを選ぶ"
}, },
"Choose the background color for widgets": {
"Choose the background color for widgets": ""
},
"Choose the border accent color": { "Choose the border accent color": {
"Choose the border accent color": "ボーダーの強調色を選ぶ" "Choose the border accent color": "ボーダーの強調色を選ぶ"
}, },
@@ -374,6 +398,9 @@
"Close": { "Close": {
"Close": "閉じる" "Close": "閉じる"
}, },
"Close Overview on Launch": {
"Close Overview on Launch": ""
},
"Color Override": { "Color Override": {
"Color Override": "色のオーバーライド" "Color Override": "色のオーバーライド"
}, },
@@ -626,6 +653,9 @@
"Dismiss": { "Dismiss": {
"Dismiss": "解除" "Dismiss": "解除"
}, },
"Display Assignment": {
"Display Assignment": ""
},
"Display Name Format": { "Display Name Format": {
"Display Name Format": "名称形式を表示" "Display Name Format": "名称形式を表示"
}, },
@@ -707,6 +737,9 @@
"Enable Autoconnect": { "Enable Autoconnect": {
"Enable Autoconnect": "自動接続を有効" "Enable Autoconnect": "自動接続を有効"
}, },
"Enable Bar": {
"Enable Bar": ""
},
"Enable GPU Temperature": { "Enable GPU Temperature": {
"Enable GPU Temperature": "GPU温度を有効にする" "Enable GPU Temperature": "GPU温度を有効にする"
}, },
@@ -1001,6 +1034,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "バッテリーごと" "Individual Batteries": "バッテリーごと"
}, },
"Individual bar configuration": {
"Individual bar configuration": ""
},
"Inhibit idle timeout when audio or video is playing": { "Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": "オーディオまたはビデオの再生中のアイドルタイムアウトを禁止" "Inhibit idle timeout when audio or video is playing": "オーディオまたはビデオの再生中のアイドルタイムアウトを禁止"
}, },
@@ -1028,9 +1064,15 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "ジョブ: " "Jobs: ": "ジョブ: "
}, },
"Keep Awake": {
"Keep Awake": ""
},
"Keep Changes": { "Keep Changes": {
"Keep Changes": "変更を保持" "Keep Changes": "変更を保持"
}, },
"Keeping Awake": {
"Keeping Awake": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "キーボードレイアウト名" "Keyboard Layout Name": "キーボードレイアウト名"
}, },
@@ -1121,6 +1163,9 @@
"Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "DMS 機能を拡張するためのプラグインを管理および構成" "Manage and configure plugins for extending DMS functionality": "DMS 機能を拡張するためのプラグインを管理および構成"
}, },
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": {
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": ""
},
"Manual Coordinates": { "Manual Coordinates": {
"Manual Coordinates": "手動座標" "Manual Coordinates": "手動座標"
}, },
@@ -1184,6 +1229,9 @@
"Media Players (": { "Media Players (": {
"Media Players (": "メディアプレーヤー(" "Media Players (": "メディアプレーヤー("
}, },
"Media Volume OSD": {
"Media Volume OSD": ""
},
"Memory": { "Memory": {
"Memory": "メモリ" "Memory": "メモリ"
}, },
@@ -1199,6 +1247,9 @@
"Microphone Mute OSD": { "Microphone Mute OSD": {
"Microphone Mute OSD": "マイクミュートOSD" "Microphone Mute OSD": "マイクミュートOSD"
}, },
"Middle Section": {
"Middle Section": ""
},
"Minimal palette built around a single hue.": { "Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "単一の色相を中心に構築された最小限のパレット。" "Minimal palette built around a single hue.": "単一の色相を中心に構築された最小限のパレット。"
}, },
@@ -1670,6 +1721,9 @@
"Save Notepad File": { "Save Notepad File": {
"Save Notepad File": "メモ帳ファイルを保存" "Save Notepad File": "メモ帳ファイルを保存"
}, },
"Save password": {
"Save password": ""
},
"Saved": { "Saved": {
"Saved": "保存されました" "Saved": "保存されました"
}, },
@@ -1829,6 +1883,9 @@
"Show on-screen display when idle inhibitor state changes": { "Show on-screen display when idle inhibitor state changes": {
"Show on-screen display when idle inhibitor state changes": "アイドルインヒビターの状態が変化した時にOSDを表示" "Show on-screen display when idle inhibitor state changes": "アイドルインヒビターの状態が変化した時にOSDを表示"
}, },
"Show on-screen display when media player volume changes": {
"Show on-screen display when media player volume changes": ""
},
"Show on-screen display when microphone is muted/unmuted": { "Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "マイクがミュート/ミュート解除された時にOSDを表示" "Show on-screen display when microphone is muted/unmuted": "マイクがミュート/ミュート解除された時にOSDを表示"
}, },
@@ -2051,6 +2108,9 @@
"Toggle top bar visibility manually (can be controlled via IPC)": { "Toggle top bar visibility manually (can be controlled via IPC)": {
"Toggle top bar visibility manually (can be controlled via IPC)": "トップバーの表示を手動で切り替えるIPC 経由で制御可能)" "Toggle top bar visibility manually (can be controlled via IPC)": "トップバーの表示を手動で切り替えるIPC 経由で制御可能)"
}, },
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": ""
},
"Tomorrow": { "Tomorrow": {
"Tomorrow": "明日" "Tomorrow": "明日"
}, },
@@ -2240,12 +2300,21 @@
"WiFi is off": { "WiFi is off": {
"WiFi is off": "Wi-Fiはオフ中" "WiFi is off": "Wi-Fiはオフ中"
}, },
"Widget Background Color": {
"Widget Background Color": ""
},
"Widget Management": { "Widget Management": {
"Widget Management": "ウィジェット管理" "Widget Management": "ウィジェット管理"
}, },
"Widget Style": {
"Widget Style": ""
},
"Widget Styling": { "Widget Styling": {
"Widget Styling": "ウィジェットのスタイル" "Widget Styling": "ウィジェットのスタイル"
}, },
"Widget Transparency": {
"Widget Transparency": ""
},
"Widgets": { "Widgets": {
"Widgets": "ウィジェット" "Widgets": "ウィジェット"
}, },
@@ -2279,6 +2348,12 @@
"You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": {
"You have unsaved changes. Save before opening a file?": "保存されていない変更があります。ファイルを開く前に保存しますか?" "You have unsaved changes. Save before opening a file?": "保存されていない変更があります。ファイルを開く前に保存しますか?"
}, },
"custom theme file browser title": {
"Select Custom Theme": ""
},
"dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": {
"Select Wallpaper": ""
},
"events": { "events": {
"events": "イベント" "events": "イベント"
}, },
@@ -2291,9 +2366,21 @@
"official": { "official": {
"official": "公式" "official": "公式"
}, },
"profile image file browser title": {
"Select Profile Image": ""
},
"settings window title": {
"Settings": ""
},
"sysmon window title": {
"System Monitor": ""
},
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "NM統合のためにDMSを更新します。" "update dms for NM integration.": "NM統合のためにDMSを更新します。"
}, },
"wallpaper directory file browser title": {
"Select Wallpaper Directory": ""
},
"• Install only from trusted sources": { "• Install only from trusted sources": {
"• Install only from trusted sources": "• 信頼できるソースからのみインストールする" "• Install only from trusted sources": "• 信頼できるソースからのみインストールする"
}, },

View File

@@ -2,6 +2,12 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 znaków" "%1 characters": "%1 znaków"
}, },
"%1 display(s)": {
"%1 display(s)": ""
},
"%1 widgets": {
"%1 widgets": ""
},
"(Unnamed)": { "(Unnamed)": {
"(Unnamed)": "(Bez nazwy)" "(Unnamed)": "(Bez nazwy)"
}, },
@@ -47,6 +53,9 @@
"Add": { "Add": {
"Add": "Dodaj" "Add": "Dodaj"
}, },
"Add Bar": {
"Add Bar": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "Dodaj widżet" "Add Widget": "Dodaj widżet"
}, },
@@ -227,6 +236,12 @@
"Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "Zrównoważona paleta ze skupionymi akcentami (domyślnie)." "Balanced palette with focused accents (default).": "Zrównoważona paleta ze skupionymi akcentami (domyślnie)."
}, },
"Bar Configurations": {
"Bar Configurations": ""
},
"Bar Transparency": {
"Bar Transparency": ""
},
"Battery": { "Battery": {
"Battery": "Bateria" "Battery": "Bateria"
}, },
@@ -326,18 +341,27 @@
"Center Tiling": { "Center Tiling": {
"Center Tiling": "Płytki środkowe" "Center Tiling": "Płytki środkowe"
}, },
"Change bar appearance": {
"Change bar appearance": ""
},
"Changes:": { "Changes:": {
"Changes:": "Zmiany:" "Changes:": "Zmiany:"
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Sprawdź aktualizacje systemu" "Check for system updates": "Sprawdź aktualizacje systemu"
}, },
"Choose Color": {
"Choose Color": ""
},
"Choose Launcher Logo Color": { "Choose Launcher Logo Color": {
"Choose Launcher Logo Color": "Wybierz kolor logo launchera" "Choose Launcher Logo Color": "Wybierz kolor logo launchera"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "Wybierz ikonę" "Choose icon": "Wybierz ikonę"
}, },
"Choose the background color for widgets": {
"Choose the background color for widgets": ""
},
"Choose the border accent color": { "Choose the border accent color": {
"Choose the border accent color": "Wybierz kolor akcentu obramowania" "Choose the border accent color": "Wybierz kolor akcentu obramowania"
}, },
@@ -374,6 +398,9 @@
"Close": { "Close": {
"Close": "Zamknij" "Close": "Zamknij"
}, },
"Close Overview on Launch": {
"Close Overview on Launch": ""
},
"Color Override": { "Color Override": {
"Color Override": "Nadpisanie koloru" "Color Override": "Nadpisanie koloru"
}, },
@@ -626,6 +653,9 @@
"Dismiss": { "Dismiss": {
"Dismiss": "Odrzuć" "Dismiss": "Odrzuć"
}, },
"Display Assignment": {
"Display Assignment": ""
},
"Display Name Format": { "Display Name Format": {
"Display Name Format": "Format nazwy wyświetlanej" "Display Name Format": "Format nazwy wyświetlanej"
}, },
@@ -707,6 +737,9 @@
"Enable Autoconnect": { "Enable Autoconnect": {
"Enable Autoconnect": "Włącz automatyczne łączenie" "Enable Autoconnect": "Włącz automatyczne łączenie"
}, },
"Enable Bar": {
"Enable Bar": ""
},
"Enable GPU Temperature": { "Enable GPU Temperature": {
"Enable GPU Temperature": "Pokaż temperaturę GPU" "Enable GPU Temperature": "Pokaż temperaturę GPU"
}, },
@@ -765,7 +798,7 @@
"Enter password for ": "Wprowadź hasło dla " "Enter password for ": "Wprowadź hasło dla "
}, },
"Enter this passkey on ": { "Enter this passkey on ": {
"Enter this passkey on ": "" "Enter this passkey on ": "Wprowadź ten klucz dostępu "
}, },
"Error": { "Error": {
"Error": "Błąd" "Error": "Błąd"
@@ -1001,6 +1034,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "Pojedyncze akumulatory" "Individual Batteries": "Pojedyncze akumulatory"
}, },
"Individual bar configuration": {
"Individual bar configuration": ""
},
"Inhibit idle timeout when audio or video is playing": { "Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": "Blokuj limit czasu bezczynności podczas odtwarzania dźwięku lub obrazu" "Inhibit idle timeout when audio or video is playing": "Blokuj limit czasu bezczynności podczas odtwarzania dźwięku lub obrazu"
}, },
@@ -1028,9 +1064,15 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "Zadania: " "Jobs: ": "Zadania: "
}, },
"Keep Awake": {
"Keep Awake": ""
},
"Keep Changes": { "Keep Changes": {
"Keep Changes": "Zachowaj zmiany" "Keep Changes": "Zachowaj zmiany"
}, },
"Keeping Awake": {
"Keeping Awake": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Nazwa układu klawiatury" "Keyboard Layout Name": "Nazwa układu klawiatury"
}, },
@@ -1121,6 +1163,9 @@
"Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "Zarządzaj i konfiguruj wtyczki rozszerzające funkcjonalność DMS" "Manage and configure plugins for extending DMS functionality": "Zarządzaj i konfiguruj wtyczki rozszerzające funkcjonalność DMS"
}, },
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": {
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": ""
},
"Manual Coordinates": { "Manual Coordinates": {
"Manual Coordinates": "Ręczne współrzędne" "Manual Coordinates": "Ręczne współrzędne"
}, },
@@ -1184,6 +1229,9 @@
"Media Players (": { "Media Players (": {
"Media Players (": "Odtwarzacze multimediów (" "Media Players (": "Odtwarzacze multimediów ("
}, },
"Media Volume OSD": {
"Media Volume OSD": ""
},
"Memory": { "Memory": {
"Memory": "Pamięć" "Memory": "Pamięć"
}, },
@@ -1199,6 +1247,9 @@
"Microphone Mute OSD": { "Microphone Mute OSD": {
"Microphone Mute OSD": "OSD Wyciszenia Mikrofonu" "Microphone Mute OSD": "OSD Wyciszenia Mikrofonu"
}, },
"Middle Section": {
"Middle Section": ""
},
"Minimal palette built around a single hue.": { "Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Minimalna paleta zbudowana wokół jednego odcienia." "Minimal palette built around a single hue.": "Minimalna paleta zbudowana wokół jednego odcienia."
}, },
@@ -1670,6 +1721,9 @@
"Save Notepad File": { "Save Notepad File": {
"Save Notepad File": "Zapisz plik notatnika" "Save Notepad File": "Zapisz plik notatnika"
}, },
"Save password": {
"Save password": ""
},
"Saved": { "Saved": {
"Saved": "Zapisano" "Saved": "Zapisano"
}, },
@@ -1829,6 +1883,9 @@
"Show on-screen display when idle inhibitor state changes": { "Show on-screen display when idle inhibitor state changes": {
"Show on-screen display when idle inhibitor state changes": "Wyświetlaj powiadomienie ekranowe przy zmianie stanu inhibitora bezczynności" "Show on-screen display when idle inhibitor state changes": "Wyświetlaj powiadomienie ekranowe przy zmianie stanu inhibitora bezczynności"
}, },
"Show on-screen display when media player volume changes": {
"Show on-screen display when media player volume changes": ""
},
"Show on-screen display when microphone is muted/unmuted": { "Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "Wyświetlaj powiadomienie ekranowe przy wyciszaniu/włączaniu mikrofonu" "Show on-screen display when microphone is muted/unmuted": "Wyświetlaj powiadomienie ekranowe przy wyciszaniu/włączaniu mikrofonu"
}, },
@@ -2051,6 +2108,9 @@
"Toggle top bar visibility manually (can be controlled via IPC)": { "Toggle top bar visibility manually (can be controlled via IPC)": {
"Toggle top bar visibility manually (can be controlled via IPC)": "Ręczne przełączanie widoczności górnego paska (można kontrolować przez IPC)" "Toggle top bar visibility manually (can be controlled via IPC)": "Ręczne przełączanie widoczności górnego paska (można kontrolować przez IPC)"
}, },
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": ""
},
"Tomorrow": { "Tomorrow": {
"Tomorrow": "Jutro" "Tomorrow": "Jutro"
}, },
@@ -2240,12 +2300,21 @@
"WiFi is off": { "WiFi is off": {
"WiFi is off": "WiFi jest wyłączone" "WiFi is off": "WiFi jest wyłączone"
}, },
"Widget Background Color": {
"Widget Background Color": ""
},
"Widget Management": { "Widget Management": {
"Widget Management": "Zarządzanie widżetami" "Widget Management": "Zarządzanie widżetami"
}, },
"Widget Style": {
"Widget Style": ""
},
"Widget Styling": { "Widget Styling": {
"Widget Styling": "Stylizacja widżetów" "Widget Styling": "Stylizacja widżetów"
}, },
"Widget Transparency": {
"Widget Transparency": ""
},
"Widgets": { "Widgets": {
"Widgets": "Widżety" "Widgets": "Widżety"
}, },
@@ -2279,6 +2348,12 @@
"You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": {
"You have unsaved changes. Save before opening a file?": "Masz niezapisane zmiany. Zapisać przed otwarciem pliku?" "You have unsaved changes. Save before opening a file?": "Masz niezapisane zmiany. Zapisać przed otwarciem pliku?"
}, },
"custom theme file browser title": {
"Select Custom Theme": ""
},
"dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": {
"Select Wallpaper": ""
},
"events": { "events": {
"events": "wydarzenia" "events": "wydarzenia"
}, },
@@ -2291,9 +2366,21 @@
"official": { "official": {
"official": "oficjalny" "official": "oficjalny"
}, },
"profile image file browser title": {
"Select Profile Image": ""
},
"settings window title": {
"Settings": ""
},
"sysmon window title": {
"System Monitor": ""
},
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "zaktualizuj dms dla integracji z NM." "update dms for NM integration.": "zaktualizuj dms dla integracji z NM."
}, },
"wallpaper directory file browser title": {
"Select Wallpaper Directory": ""
},
"• Install only from trusted sources": { "• Install only from trusted sources": {
"• Install only from trusted sources": "• Instaluj tylko z zaufanych źródeł" "• Install only from trusted sources": "• Instaluj tylko z zaufanych źródeł"
}, },

View File

@@ -2,6 +2,12 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 caracteres" "%1 characters": "%1 caracteres"
}, },
"%1 display(s)": {
"%1 display(s)": ""
},
"%1 widgets": {
"%1 widgets": ""
},
"(Unnamed)": { "(Unnamed)": {
"(Unnamed)": "(Sem nome)" "(Unnamed)": "(Sem nome)"
}, },
@@ -47,6 +53,9 @@
"Add": { "Add": {
"Add": "Adicionar" "Add": "Adicionar"
}, },
"Add Bar": {
"Add Bar": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "Adicionar Widget" "Add Widget": "Adicionar Widget"
}, },
@@ -227,6 +236,12 @@
"Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "Paleta equilibrada com destaques de cor focados (padrão)." "Balanced palette with focused accents (default).": "Paleta equilibrada com destaques de cor focados (padrão)."
}, },
"Bar Configurations": {
"Bar Configurations": ""
},
"Bar Transparency": {
"Bar Transparency": ""
},
"Battery": { "Battery": {
"Battery": "Bateria" "Battery": "Bateria"
}, },
@@ -326,18 +341,27 @@
"Center Tiling": { "Center Tiling": {
"Center Tiling": "" "Center Tiling": ""
}, },
"Change bar appearance": {
"Change bar appearance": ""
},
"Changes:": { "Changes:": {
"Changes:": "" "Changes:": ""
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Verificar por atualizações de sistema" "Check for system updates": "Verificar por atualizações de sistema"
}, },
"Choose Color": {
"Choose Color": ""
},
"Choose Launcher Logo Color": { "Choose Launcher Logo Color": {
"Choose Launcher Logo Color": "Escolher a cor para a logo do Lançador" "Choose Launcher Logo Color": "Escolher a cor para a logo do Lançador"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "Escolher Ícone" "Choose icon": "Escolher Ícone"
}, },
"Choose the background color for widgets": {
"Choose the background color for widgets": ""
},
"Choose the border accent color": { "Choose the border accent color": {
"Choose the border accent color": "Escolha a cor de realce da borda" "Choose the border accent color": "Escolha a cor de realce da borda"
}, },
@@ -374,6 +398,9 @@
"Close": { "Close": {
"Close": "Fechar" "Close": "Fechar"
}, },
"Close Overview on Launch": {
"Close Overview on Launch": ""
},
"Color Override": { "Color Override": {
"Color Override": "Sobrescrever Cor" "Color Override": "Sobrescrever Cor"
}, },
@@ -626,6 +653,9 @@
"Dismiss": { "Dismiss": {
"Dismiss": "Descartar" "Dismiss": "Descartar"
}, },
"Display Assignment": {
"Display Assignment": ""
},
"Display Name Format": { "Display Name Format": {
"Display Name Format": "" "Display Name Format": ""
}, },
@@ -707,6 +737,9 @@
"Enable Autoconnect": { "Enable Autoconnect": {
"Enable Autoconnect": "" "Enable Autoconnect": ""
}, },
"Enable Bar": {
"Enable Bar": ""
},
"Enable GPU Temperature": { "Enable GPU Temperature": {
"Enable GPU Temperature": "Habilitar Temperatura da GPU" "Enable GPU Temperature": "Habilitar Temperatura da GPU"
}, },
@@ -1001,6 +1034,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "Baterias Individuais" "Individual Batteries": "Baterias Individuais"
}, },
"Individual bar configuration": {
"Individual bar configuration": ""
},
"Inhibit idle timeout when audio or video is playing": { "Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": "" "Inhibit idle timeout when audio or video is playing": ""
}, },
@@ -1028,9 +1064,15 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "" "Jobs: ": ""
}, },
"Keep Awake": {
"Keep Awake": ""
},
"Keep Changes": { "Keep Changes": {
"Keep Changes": "" "Keep Changes": ""
}, },
"Keeping Awake": {
"Keeping Awake": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Nome de Layout do Teclado" "Keyboard Layout Name": "Nome de Layout do Teclado"
}, },
@@ -1121,6 +1163,9 @@
"Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "Gerencia e configure plugins para extender funcionalidades do DMS" "Manage and configure plugins for extending DMS functionality": "Gerencia e configure plugins para extender funcionalidades do DMS"
}, },
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": {
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": ""
},
"Manual Coordinates": { "Manual Coordinates": {
"Manual Coordinates": "Coordenadas Manuais" "Manual Coordinates": "Coordenadas Manuais"
}, },
@@ -1184,6 +1229,9 @@
"Media Players (": { "Media Players (": {
"Media Players (": "Reprodutores de Mídia(" "Media Players (": "Reprodutores de Mídia("
}, },
"Media Volume OSD": {
"Media Volume OSD": ""
},
"Memory": { "Memory": {
"Memory": "Memória" "Memory": "Memória"
}, },
@@ -1199,6 +1247,9 @@
"Microphone Mute OSD": { "Microphone Mute OSD": {
"Microphone Mute OSD": "" "Microphone Mute OSD": ""
}, },
"Middle Section": {
"Middle Section": ""
},
"Minimal palette built around a single hue.": { "Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Paleta mínima construída ao redor de um único tom." "Minimal palette built around a single hue.": "Paleta mínima construída ao redor de um único tom."
}, },
@@ -1670,6 +1721,9 @@
"Save Notepad File": { "Save Notepad File": {
"Save Notepad File": "Salvar Arquivo do Bloco de Notas" "Save Notepad File": "Salvar Arquivo do Bloco de Notas"
}, },
"Save password": {
"Save password": ""
},
"Saved": { "Saved": {
"Saved": "Salvo" "Saved": "Salvo"
}, },
@@ -1829,6 +1883,9 @@
"Show on-screen display when idle inhibitor state changes": { "Show on-screen display when idle inhibitor state changes": {
"Show on-screen display when idle inhibitor state changes": "" "Show on-screen display when idle inhibitor state changes": ""
}, },
"Show on-screen display when media player volume changes": {
"Show on-screen display when media player volume changes": ""
},
"Show on-screen display when microphone is muted/unmuted": { "Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "" "Show on-screen display when microphone is muted/unmuted": ""
}, },
@@ -2051,6 +2108,9 @@
"Toggle top bar visibility manually (can be controlled via IPC)": { "Toggle top bar visibility manually (can be controlled via IPC)": {
"Toggle top bar visibility manually (can be controlled via IPC)": "Alternar visibilidade da barra superior manualmente (controle via IPC é possível)" "Toggle top bar visibility manually (can be controlled via IPC)": "Alternar visibilidade da barra superior manualmente (controle via IPC é possível)"
}, },
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": ""
},
"Tomorrow": { "Tomorrow": {
"Tomorrow": "Amanhã" "Tomorrow": "Amanhã"
}, },
@@ -2240,12 +2300,21 @@
"WiFi is off": { "WiFi is off": {
"WiFi is off": "WiFi desligado" "WiFi is off": "WiFi desligado"
}, },
"Widget Background Color": {
"Widget Background Color": ""
},
"Widget Management": { "Widget Management": {
"Widget Management": "Gerenciamento de Widgets" "Widget Management": "Gerenciamento de Widgets"
}, },
"Widget Style": {
"Widget Style": ""
},
"Widget Styling": { "Widget Styling": {
"Widget Styling": "Estilo dos Widgets" "Widget Styling": "Estilo dos Widgets"
}, },
"Widget Transparency": {
"Widget Transparency": ""
},
"Widgets": { "Widgets": {
"Widgets": "Widgets" "Widgets": "Widgets"
}, },
@@ -2279,6 +2348,12 @@
"You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": {
"You have unsaved changes. Save before opening a file?": "Você tem mudanças não salvas. Deseja salvar antes de abrir um arquivo?" "You have unsaved changes. Save before opening a file?": "Você tem mudanças não salvas. Deseja salvar antes de abrir um arquivo?"
}, },
"custom theme file browser title": {
"Select Custom Theme": ""
},
"dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": {
"Select Wallpaper": ""
},
"events": { "events": {
"events": "eventos" "events": "eventos"
}, },
@@ -2291,9 +2366,21 @@
"official": { "official": {
"official": "oficial" "official": "oficial"
}, },
"profile image file browser title": {
"Select Profile Image": ""
},
"settings window title": {
"Settings": ""
},
"sysmon window title": {
"System Monitor": ""
},
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "atualize dms para integração com o NM." "update dms for NM integration.": "atualize dms para integração com o NM."
}, },
"wallpaper directory file browser title": {
"Select Wallpaper Directory": ""
},
"• Install only from trusted sources": { "• Install only from trusted sources": {
"• Install only from trusted sources": "Instale apenas de fontes confiáveis" "• Install only from trusted sources": "Instale apenas de fontes confiáveis"
}, },

View File

@@ -2,6 +2,12 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 karakter" "%1 characters": "%1 karakter"
}, },
"%1 display(s)": {
"%1 display(s)": ""
},
"%1 widgets": {
"%1 widgets": ""
},
"(Unnamed)": { "(Unnamed)": {
"(Unnamed)": "(İsimsiz)" "(Unnamed)": "(İsimsiz)"
}, },
@@ -47,6 +53,9 @@
"Add": { "Add": {
"Add": "Ekle" "Add": "Ekle"
}, },
"Add Bar": {
"Add Bar": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "Widget Ekle" "Add Widget": "Widget Ekle"
}, },
@@ -227,6 +236,12 @@
"Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)." "Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)."
}, },
"Bar Configurations": {
"Bar Configurations": ""
},
"Bar Transparency": {
"Bar Transparency": ""
},
"Battery": { "Battery": {
"Battery": "Batarya" "Battery": "Batarya"
}, },
@@ -326,18 +341,27 @@
"Center Tiling": { "Center Tiling": {
"Center Tiling": "Merkez Döşeme" "Center Tiling": "Merkez Döşeme"
}, },
"Change bar appearance": {
"Change bar appearance": ""
},
"Changes:": { "Changes:": {
"Changes:": "Değişiklikler:" "Changes:": "Değişiklikler:"
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Sistem güncellemelerini kontrol et" "Check for system updates": "Sistem güncellemelerini kontrol et"
}, },
"Choose Color": {
"Choose Color": ""
},
"Choose Launcher Logo Color": { "Choose Launcher Logo Color": {
"Choose Launcher Logo Color": "Başlatıcı Logo Rengini Seçin" "Choose Launcher Logo Color": "Başlatıcı Logo Rengini Seçin"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "Simge seçin" "Choose icon": "Simge seçin"
}, },
"Choose the background color for widgets": {
"Choose the background color for widgets": ""
},
"Choose the border accent color": { "Choose the border accent color": {
"Choose the border accent color": "Kenarlık vurgu rengini seç" "Choose the border accent color": "Kenarlık vurgu rengini seç"
}, },
@@ -374,6 +398,9 @@
"Close": { "Close": {
"Close": "Kapat" "Close": "Kapat"
}, },
"Close Overview on Launch": {
"Close Overview on Launch": ""
},
"Color Override": { "Color Override": {
"Color Override": "Renk Değiştirme" "Color Override": "Renk Değiştirme"
}, },
@@ -626,6 +653,9 @@
"Dismiss": { "Dismiss": {
"Dismiss": "Reddet" "Dismiss": "Reddet"
}, },
"Display Assignment": {
"Display Assignment": ""
},
"Display Name Format": { "Display Name Format": {
"Display Name Format": "Ekran İsim Formatı" "Display Name Format": "Ekran İsim Formatı"
}, },
@@ -707,6 +737,9 @@
"Enable Autoconnect": { "Enable Autoconnect": {
"Enable Autoconnect": "Otomatik Bağlanmayı Etkinleştir" "Enable Autoconnect": "Otomatik Bağlanmayı Etkinleştir"
}, },
"Enable Bar": {
"Enable Bar": ""
},
"Enable GPU Temperature": { "Enable GPU Temperature": {
"Enable GPU Temperature": "GPU Sıcaklığını Etkinleştir" "Enable GPU Temperature": "GPU Sıcaklığını Etkinleştir"
}, },
@@ -765,7 +798,7 @@
"Enter password for ": "Parolayı girin " "Enter password for ": "Parolayı girin "
}, },
"Enter this passkey on ": { "Enter this passkey on ": {
"Enter this passkey on ": "" "Enter this passkey on ": "Bu şifreyi şuraya gir: "
}, },
"Error": { "Error": {
"Error": "Hata" "Error": "Hata"
@@ -1001,6 +1034,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "Tekil Piller" "Individual Batteries": "Tekil Piller"
}, },
"Individual bar configuration": {
"Individual bar configuration": ""
},
"Inhibit idle timeout when audio or video is playing": { "Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": "Ses veya video oynatılırken boşta kalma süresini engelle" "Inhibit idle timeout when audio or video is playing": "Ses veya video oynatılırken boşta kalma süresini engelle"
}, },
@@ -1028,9 +1064,15 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "İşler:" "Jobs: ": "İşler:"
}, },
"Keep Awake": {
"Keep Awake": ""
},
"Keep Changes": { "Keep Changes": {
"Keep Changes": "Değişiklikleri Tut" "Keep Changes": "Değişiklikleri Tut"
}, },
"Keeping Awake": {
"Keeping Awake": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Klavye Düzeni Adı" "Keyboard Layout Name": "Klavye Düzeni Adı"
}, },
@@ -1121,6 +1163,9 @@
"Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "DMS işlevselliğini genişletmek için eklentileri yönetin ve yapılandırın" "Manage and configure plugins for extending DMS functionality": "DMS işlevselliğini genişletmek için eklentileri yönetin ve yapılandırın"
}, },
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": {
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": ""
},
"Manual Coordinates": { "Manual Coordinates": {
"Manual Coordinates": "Manuel Koordinatlar" "Manual Coordinates": "Manuel Koordinatlar"
}, },
@@ -1184,6 +1229,9 @@
"Media Players (": { "Media Players (": {
"Media Players (": "Medya Oynatıcıları (" "Media Players (": "Medya Oynatıcıları ("
}, },
"Media Volume OSD": {
"Media Volume OSD": ""
},
"Memory": { "Memory": {
"Memory": "Bellek" "Memory": "Bellek"
}, },
@@ -1199,6 +1247,9 @@
"Microphone Mute OSD": { "Microphone Mute OSD": {
"Microphone Mute OSD": "Mikrofon Sessiz OSD" "Microphone Mute OSD": "Mikrofon Sessiz OSD"
}, },
"Middle Section": {
"Middle Section": ""
},
"Minimal palette built around a single hue.": { "Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Tek bir renk tonu etrafında oluşturulmuş minimal palet." "Minimal palette built around a single hue.": "Tek bir renk tonu etrafında oluşturulmuş minimal palet."
}, },
@@ -1670,6 +1721,9 @@
"Save Notepad File": { "Save Notepad File": {
"Save Notepad File": "Not Defteri Dosyasını Kaydet" "Save Notepad File": "Not Defteri Dosyasını Kaydet"
}, },
"Save password": {
"Save password": ""
},
"Saved": { "Saved": {
"Saved": "Kaydedildi" "Saved": "Kaydedildi"
}, },
@@ -1829,6 +1883,9 @@
"Show on-screen display when idle inhibitor state changes": { "Show on-screen display when idle inhibitor state changes": {
"Show on-screen display when idle inhibitor state changes": "Boşta kalma engelleyici durumu değiştiğinde ekran gösterimi göster" "Show on-screen display when idle inhibitor state changes": "Boşta kalma engelleyici durumu değiştiğinde ekran gösterimi göster"
}, },
"Show on-screen display when media player volume changes": {
"Show on-screen display when media player volume changes": ""
},
"Show on-screen display when microphone is muted/unmuted": { "Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "Mikrofon sessize alındığında/sessizden çıkarıldığında ekran gösterimi göster" "Show on-screen display when microphone is muted/unmuted": "Mikrofon sessize alındığında/sessizden çıkarıldığında ekran gösterimi göster"
}, },
@@ -2051,6 +2108,9 @@
"Toggle top bar visibility manually (can be controlled via IPC)": { "Toggle top bar visibility manually (can be controlled via IPC)": {
"Toggle top bar visibility manually (can be controlled via IPC)": "Üst çubuğun görünürlüğünü manuel olarak değiştirin (IPC ile kontrol edilebilir)" "Toggle top bar visibility manually (can be controlled via IPC)": "Üst çubuğun görünürlüğünü manuel olarak değiştirin (IPC ile kontrol edilebilir)"
}, },
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": ""
},
"Tomorrow": { "Tomorrow": {
"Tomorrow": "Yarın" "Tomorrow": "Yarın"
}, },
@@ -2240,12 +2300,21 @@
"WiFi is off": { "WiFi is off": {
"WiFi is off": "WiFi kapalı" "WiFi is off": "WiFi kapalı"
}, },
"Widget Background Color": {
"Widget Background Color": ""
},
"Widget Management": { "Widget Management": {
"Widget Management": "Widget Yönetimi" "Widget Management": "Widget Yönetimi"
}, },
"Widget Style": {
"Widget Style": ""
},
"Widget Styling": { "Widget Styling": {
"Widget Styling": "Widget Stili" "Widget Styling": "Widget Stili"
}, },
"Widget Transparency": {
"Widget Transparency": ""
},
"Widgets": { "Widgets": {
"Widgets": "Widgetlar" "Widgets": "Widgetlar"
}, },
@@ -2279,6 +2348,12 @@
"You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": {
"You have unsaved changes. Save before opening a file?": "Kaydedilmemiş değişiklikleriniz var. Yeni dosya açmadan önce kaydedelim mi?" "You have unsaved changes. Save before opening a file?": "Kaydedilmemiş değişiklikleriniz var. Yeni dosya açmadan önce kaydedelim mi?"
}, },
"custom theme file browser title": {
"Select Custom Theme": ""
},
"dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": {
"Select Wallpaper": ""
},
"events": { "events": {
"events": "etkinlikler" "events": "etkinlikler"
}, },
@@ -2291,9 +2366,21 @@
"official": { "official": {
"official": "resmi" "official": "resmi"
}, },
"profile image file browser title": {
"Select Profile Image": ""
},
"settings window title": {
"Settings": ""
},
"sysmon window title": {
"System Monitor": ""
},
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "NM entegrasyonu için dms'yi güncelle" "update dms for NM integration.": "NM entegrasyonu için dms'yi güncelle"
}, },
"wallpaper directory file browser title": {
"Select Wallpaper Directory": ""
},
"• Install only from trusted sources": { "• Install only from trusted sources": {
"• Install only from trusted sources": "• Yalnızca güvenilir kaynaklardan yükle" "• Install only from trusted sources": "• Yalnızca güvenilir kaynaklardan yükle"
}, },

View File

@@ -2,6 +2,12 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1个字符" "%1 characters": "%1个字符"
}, },
"%1 display(s)": {
"%1 display(s)": ""
},
"%1 widgets": {
"%1 widgets": ""
},
"(Unnamed)": { "(Unnamed)": {
"(Unnamed)": "(未命名)" "(Unnamed)": "(未命名)"
}, },
@@ -47,6 +53,9 @@
"Add": { "Add": {
"Add": "添加" "Add": "添加"
}, },
"Add Bar": {
"Add Bar": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "添加小组件" "Add Widget": "添加小组件"
}, },
@@ -227,6 +236,12 @@
"Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "均衡配色,强调重点(默认)" "Balanced palette with focused accents (default).": "均衡配色,强调重点(默认)"
}, },
"Bar Configurations": {
"Bar Configurations": ""
},
"Bar Transparency": {
"Bar Transparency": ""
},
"Battery": { "Battery": {
"Battery": "电池" "Battery": "电池"
}, },
@@ -326,18 +341,27 @@
"Center Tiling": { "Center Tiling": {
"Center Tiling": "中心平铺" "Center Tiling": "中心平铺"
}, },
"Change bar appearance": {
"Change bar appearance": ""
},
"Changes:": { "Changes:": {
"Changes:": "更改:" "Changes:": "更改:"
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "检查系统更新" "Check for system updates": "检查系统更新"
}, },
"Choose Color": {
"Choose Color": ""
},
"Choose Launcher Logo Color": { "Choose Launcher Logo Color": {
"Choose Launcher Logo Color": "设置启动器 Logo 颜色" "Choose Launcher Logo Color": "设置启动器 Logo 颜色"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "选择图标" "Choose icon": "选择图标"
}, },
"Choose the background color for widgets": {
"Choose the background color for widgets": ""
},
"Choose the border accent color": { "Choose the border accent color": {
"Choose the border accent color": "选择边框强调色" "Choose the border accent color": "选择边框强调色"
}, },
@@ -374,6 +398,9 @@
"Close": { "Close": {
"Close": "关闭" "Close": "关闭"
}, },
"Close Overview on Launch": {
"Close Overview on Launch": ""
},
"Color Override": { "Color Override": {
"Color Override": "覆盖颜色" "Color Override": "覆盖颜色"
}, },
@@ -626,6 +653,9 @@
"Dismiss": { "Dismiss": {
"Dismiss": "忽略" "Dismiss": "忽略"
}, },
"Display Assignment": {
"Display Assignment": ""
},
"Display Name Format": { "Display Name Format": {
"Display Name Format": "显示名称格式" "Display Name Format": "显示名称格式"
}, },
@@ -707,6 +737,9 @@
"Enable Autoconnect": { "Enable Autoconnect": {
"Enable Autoconnect": "启用自动连接" "Enable Autoconnect": "启用自动连接"
}, },
"Enable Bar": {
"Enable Bar": ""
},
"Enable GPU Temperature": { "Enable GPU Temperature": {
"Enable GPU Temperature": "显示 GPU 温度" "Enable GPU Temperature": "显示 GPU 温度"
}, },
@@ -1001,6 +1034,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "分别显示电池" "Individual Batteries": "分别显示电池"
}, },
"Individual bar configuration": {
"Individual bar configuration": ""
},
"Inhibit idle timeout when audio or video is playing": { "Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": "在播放音频或视频时,禁止待机超时" "Inhibit idle timeout when audio or video is playing": "在播放音频或视频时,禁止待机超时"
}, },
@@ -1028,9 +1064,15 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "任务: " "Jobs: ": "任务: "
}, },
"Keep Awake": {
"Keep Awake": ""
},
"Keep Changes": { "Keep Changes": {
"Keep Changes": "保持更改" "Keep Changes": "保持更改"
}, },
"Keeping Awake": {
"Keeping Awake": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "键盘布局名称" "Keyboard Layout Name": "键盘布局名称"
}, },
@@ -1121,6 +1163,9 @@
"Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "管理和配置插件以扩展 DMS 功能" "Manage and configure plugins for extending DMS functionality": "管理和配置插件以扩展 DMS 功能"
}, },
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": {
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": ""
},
"Manual Coordinates": { "Manual Coordinates": {
"Manual Coordinates": "手动设置坐标" "Manual Coordinates": "手动设置坐标"
}, },
@@ -1184,6 +1229,9 @@
"Media Players (": { "Media Players (": {
"Media Players (": "媒体播放器 (" "Media Players (": "媒体播放器 ("
}, },
"Media Volume OSD": {
"Media Volume OSD": ""
},
"Memory": { "Memory": {
"Memory": "内存" "Memory": "内存"
}, },
@@ -1199,6 +1247,9 @@
"Microphone Mute OSD": { "Microphone Mute OSD": {
"Microphone Mute OSD": "OSD麦克风静音" "Microphone Mute OSD": "OSD麦克风静音"
}, },
"Middle Section": {
"Middle Section": ""
},
"Minimal palette built around a single hue.": { "Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "围绕单一色调构建的简约配色。" "Minimal palette built around a single hue.": "围绕单一色调构建的简约配色。"
}, },
@@ -1670,6 +1721,9 @@
"Save Notepad File": { "Save Notepad File": {
"Save Notepad File": "保存便签" "Save Notepad File": "保存便签"
}, },
"Save password": {
"Save password": ""
},
"Saved": { "Saved": {
"Saved": "已保存" "Saved": "已保存"
}, },
@@ -1829,6 +1883,9 @@
"Show on-screen display when idle inhibitor state changes": { "Show on-screen display when idle inhibitor state changes": {
"Show on-screen display when idle inhibitor state changes": "当空闲抑制状态改变时显示OSD" "Show on-screen display when idle inhibitor state changes": "当空闲抑制状态改变时显示OSD"
}, },
"Show on-screen display when media player volume changes": {
"Show on-screen display when media player volume changes": ""
},
"Show on-screen display when microphone is muted/unmuted": { "Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "当麦克风静音状态切换时显示OSD" "Show on-screen display when microphone is muted/unmuted": "当麦克风静音状态切换时显示OSD"
}, },
@@ -2051,6 +2108,9 @@
"Toggle top bar visibility manually (can be controlled via IPC)": { "Toggle top bar visibility manually (can be controlled via IPC)": {
"Toggle top bar visibility manually (can be controlled via IPC)": "手动切换顶栏可见性(可通过 IPC 控制)" "Toggle top bar visibility manually (can be controlled via IPC)": "手动切换顶栏可见性(可通过 IPC 控制)"
}, },
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": ""
},
"Tomorrow": { "Tomorrow": {
"Tomorrow": "明日" "Tomorrow": "明日"
}, },
@@ -2240,12 +2300,21 @@
"WiFi is off": { "WiFi is off": {
"WiFi is off": "Wi-Fi 已关闭" "WiFi is off": "Wi-Fi 已关闭"
}, },
"Widget Background Color": {
"Widget Background Color": ""
},
"Widget Management": { "Widget Management": {
"Widget Management": "小组件管理" "Widget Management": "小组件管理"
}, },
"Widget Style": {
"Widget Style": ""
},
"Widget Styling": { "Widget Styling": {
"Widget Styling": "小组件样式" "Widget Styling": "小组件样式"
}, },
"Widget Transparency": {
"Widget Transparency": ""
},
"Widgets": { "Widgets": {
"Widgets": "小组件" "Widgets": "小组件"
}, },
@@ -2279,6 +2348,12 @@
"You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": {
"You have unsaved changes. Save before opening a file?": "检测到未保存的更改,是否在打开文件前保存?" "You have unsaved changes. Save before opening a file?": "检测到未保存的更改,是否在打开文件前保存?"
}, },
"custom theme file browser title": {
"Select Custom Theme": ""
},
"dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": {
"Select Wallpaper": ""
},
"events": { "events": {
"events": "事件" "events": "事件"
}, },
@@ -2291,9 +2366,21 @@
"official": { "official": {
"official": "官方" "official": "官方"
}, },
"profile image file browser title": {
"Select Profile Image": ""
},
"settings window title": {
"Settings": ""
},
"sysmon window title": {
"System Monitor": ""
},
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "更新 DMS 以集成 NM" "update dms for NM integration.": "更新 DMS 以集成 NM"
}, },
"wallpaper directory file browser title": {
"Select Wallpaper Directory": ""
},
"• Install only from trusted sources": { "• Install only from trusted sources": {
"• Install only from trusted sources": "• 仅从可信来源安装" "• Install only from trusted sources": "• 仅从可信来源安装"
}, },

View File

@@ -2,6 +2,12 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 個字元" "%1 characters": "%1 個字元"
}, },
"%1 display(s)": {
"%1 display(s)": ""
},
"%1 widgets": {
"%1 widgets": ""
},
"(Unnamed)": { "(Unnamed)": {
"(Unnamed)": "(未命名)" "(Unnamed)": "(未命名)"
}, },
@@ -47,6 +53,9 @@
"Add": { "Add": {
"Add": "新增" "Add": "新增"
}, },
"Add Bar": {
"Add Bar": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "新增部件" "Add Widget": "新增部件"
}, },
@@ -227,6 +236,12 @@
"Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "顏色平衡且帶有重點點綴的調色板 (預設)。" "Balanced palette with focused accents (default).": "顏色平衡且帶有重點點綴的調色板 (預設)。"
}, },
"Bar Configurations": {
"Bar Configurations": ""
},
"Bar Transparency": {
"Bar Transparency": ""
},
"Battery": { "Battery": {
"Battery": "電池" "Battery": "電池"
}, },
@@ -326,18 +341,27 @@
"Center Tiling": { "Center Tiling": {
"Center Tiling": "居中平鋪" "Center Tiling": "居中平鋪"
}, },
"Change bar appearance": {
"Change bar appearance": ""
},
"Changes:": { "Changes:": {
"Changes:": "變更:" "Changes:": "變更:"
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "檢查系統更新" "Check for system updates": "檢查系統更新"
}, },
"Choose Color": {
"Choose Color": ""
},
"Choose Launcher Logo Color": { "Choose Launcher Logo Color": {
"Choose Launcher Logo Color": "選擇啟動器 Logo 顏色" "Choose Launcher Logo Color": "選擇啟動器 Logo 顏色"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "選擇圖示" "Choose icon": "選擇圖示"
}, },
"Choose the background color for widgets": {
"Choose the background color for widgets": ""
},
"Choose the border accent color": { "Choose the border accent color": {
"Choose the border accent color": "選擇邊框強調色" "Choose the border accent color": "選擇邊框強調色"
}, },
@@ -374,6 +398,9 @@
"Close": { "Close": {
"Close": "關閉" "Close": "關閉"
}, },
"Close Overview on Launch": {
"Close Overview on Launch": ""
},
"Color Override": { "Color Override": {
"Color Override": "顏色覆蓋" "Color Override": "顏色覆蓋"
}, },
@@ -626,6 +653,9 @@
"Dismiss": { "Dismiss": {
"Dismiss": "忽略" "Dismiss": "忽略"
}, },
"Display Assignment": {
"Display Assignment": ""
},
"Display Name Format": { "Display Name Format": {
"Display Name Format": "顯示名稱格式" "Display Name Format": "顯示名稱格式"
}, },
@@ -707,6 +737,9 @@
"Enable Autoconnect": { "Enable Autoconnect": {
"Enable Autoconnect": "啟用自動連線" "Enable Autoconnect": "啟用自動連線"
}, },
"Enable Bar": {
"Enable Bar": ""
},
"Enable GPU Temperature": { "Enable GPU Temperature": {
"Enable GPU Temperature": "啟用 GPU 溫度" "Enable GPU Temperature": "啟用 GPU 溫度"
}, },
@@ -1001,6 +1034,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "獨立電池" "Individual Batteries": "獨立電池"
}, },
"Individual bar configuration": {
"Individual bar configuration": ""
},
"Inhibit idle timeout when audio or video is playing": { "Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": "當音訊或視訊播放時禁止閒置逾時" "Inhibit idle timeout when audio or video is playing": "當音訊或視訊播放時禁止閒置逾時"
}, },
@@ -1028,9 +1064,15 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "工作: " "Jobs: ": "工作: "
}, },
"Keep Awake": {
"Keep Awake": ""
},
"Keep Changes": { "Keep Changes": {
"Keep Changes": "保留變更" "Keep Changes": "保留變更"
}, },
"Keeping Awake": {
"Keeping Awake": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "鍵盤布局名稱" "Keyboard Layout Name": "鍵盤布局名稱"
}, },
@@ -1121,6 +1163,9 @@
"Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "管理和配置用於擴展 DMS 功能的插件" "Manage and configure plugins for extending DMS functionality": "管理和配置用於擴展 DMS 功能的插件"
}, },
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": {
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": ""
},
"Manual Coordinates": { "Manual Coordinates": {
"Manual Coordinates": "手動設定座標" "Manual Coordinates": "手動設定座標"
}, },
@@ -1184,6 +1229,9 @@
"Media Players (": { "Media Players (": {
"Media Players (": "媒體播放 (" "Media Players (": "媒體播放 ("
}, },
"Media Volume OSD": {
"Media Volume OSD": ""
},
"Memory": { "Memory": {
"Memory": "記憶體" "Memory": "記憶體"
}, },
@@ -1199,6 +1247,9 @@
"Microphone Mute OSD": { "Microphone Mute OSD": {
"Microphone Mute OSD": "麥克風靜音 OSD" "Microphone Mute OSD": "麥克風靜音 OSD"
}, },
"Middle Section": {
"Middle Section": ""
},
"Minimal palette built around a single hue.": { "Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "圍繞單一色調構建的最小調色板。" "Minimal palette built around a single hue.": "圍繞單一色調構建的最小調色板。"
}, },
@@ -1670,6 +1721,9 @@
"Save Notepad File": { "Save Notepad File": {
"Save Notepad File": "儲存記事本" "Save Notepad File": "儲存記事本"
}, },
"Save password": {
"Save password": ""
},
"Saved": { "Saved": {
"Saved": "已儲存" "Saved": "已儲存"
}, },
@@ -1829,6 +1883,9 @@
"Show on-screen display when idle inhibitor state changes": { "Show on-screen display when idle inhibitor state changes": {
"Show on-screen display when idle inhibitor state changes": "閒置抑制器狀態改變時顯示螢幕顯示" "Show on-screen display when idle inhibitor state changes": "閒置抑制器狀態改變時顯示螢幕顯示"
}, },
"Show on-screen display when media player volume changes": {
"Show on-screen display when media player volume changes": ""
},
"Show on-screen display when microphone is muted/unmuted": { "Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "麥克風靜音/取消靜音時顯示螢幕顯示" "Show on-screen display when microphone is muted/unmuted": "麥克風靜音/取消靜音時顯示螢幕顯示"
}, },
@@ -2051,6 +2108,9 @@
"Toggle top bar visibility manually (can be controlled via IPC)": { "Toggle top bar visibility manually (can be controlled via IPC)": {
"Toggle top bar visibility manually (can be controlled via IPC)": "手動切換頂部欄可見性 (可透過 IPC 控制)" "Toggle top bar visibility manually (can be controlled via IPC)": "手動切換頂部欄可見性 (可透過 IPC 控制)"
}, },
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": ""
},
"Tomorrow": { "Tomorrow": {
"Tomorrow": "明天" "Tomorrow": "明天"
}, },
@@ -2240,12 +2300,21 @@
"WiFi is off": { "WiFi is off": {
"WiFi is off": "WiFi 關閉" "WiFi is off": "WiFi 關閉"
}, },
"Widget Background Color": {
"Widget Background Color": ""
},
"Widget Management": { "Widget Management": {
"Widget Management": "部件管理" "Widget Management": "部件管理"
}, },
"Widget Style": {
"Widget Style": ""
},
"Widget Styling": { "Widget Styling": {
"Widget Styling": "部件樣式" "Widget Styling": "部件樣式"
}, },
"Widget Transparency": {
"Widget Transparency": ""
},
"Widgets": { "Widgets": {
"Widgets": "部件" "Widgets": "部件"
}, },
@@ -2279,6 +2348,12 @@
"You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": {
"You have unsaved changes. Save before opening a file?": "您有未儲存的變更。是否先保存再開檔案?" "You have unsaved changes. Save before opening a file?": "您有未儲存的變更。是否先保存再開檔案?"
}, },
"custom theme file browser title": {
"Select Custom Theme": ""
},
"dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": {
"Select Wallpaper": ""
},
"events": { "events": {
"events": "活動" "events": "活動"
}, },
@@ -2291,9 +2366,21 @@
"official": { "official": {
"official": "官方" "official": "官方"
}, },
"profile image file browser title": {
"Select Profile Image": ""
},
"settings window title": {
"Settings": ""
},
"sysmon window title": {
"System Monitor": ""
},
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "更新 dms 以進行 NM 整合。" "update dms for NM integration.": "更新 dms 以進行 NM 整合。"
}, },
"wallpaper directory file browser title": {
"Select Wallpaper Directory": ""
},
"• Install only from trusted sources": { "• Install only from trusted sources": {
"• Install only from trusted sources": "• 僅從受信任的來源安裝" "• Install only from trusted sources": "• 僅從受信任的來源安裝"
}, },

View File

@@ -6,6 +6,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "%1 display(s)",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "%1 widgets",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "(Unnamed)", "term": "(Unnamed)",
"translation": "", "translation": "",
@@ -111,6 +125,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Add Bar",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Add Widget", "term": "Add Widget",
"translation": "", "translation": "",
@@ -531,6 +552,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Bar Configurations",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Bar Transparency",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Battery", "term": "Battery",
"translation": "", "translation": "",
@@ -755,6 +790,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Change bar appearance",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Changes:", "term": "Changes:",
"translation": "", "translation": "",
@@ -769,6 +811,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Choose Color",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Choose Launcher Logo Color", "term": "Choose Launcher Logo Color",
"translation": "", "translation": "",
@@ -783,6 +832,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Choose the background color for widgets",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Choose the border accent color", "term": "Choose the border accent color",
"translation": "", "translation": "",
@@ -867,6 +923,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Close Overview on Launch",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Color Override", "term": "Color Override",
"translation": "", "translation": "",
@@ -1070,20 +1133,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Controls opacity of individual widgets inside DankBar",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Controls opacity of the DankBar panel background",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Copied to clipboard", "term": "Copied to clipboard",
"translation": "", "translation": "",
@@ -1280,20 +1329,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Dank Bar Transparency",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Dank Bar Widget Transparency",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "DankBar Font Scale", "term": "DankBar Font Scale",
"translation": "", "translation": "",
@@ -1455,6 +1490,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Display Assignment",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Display Name Format", "term": "Display Name Format",
"translation": "", "translation": "",
@@ -1644,6 +1686,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Enable Bar",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Enable GPU Temperature", "term": "Enable GPU Temperature",
"translation": "", "translation": "",
@@ -2323,6 +2372,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Individual bar configuration",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Inhibit idle timeout when audio or video is playing", "term": "Inhibit idle timeout when audio or video is playing",
"translation": "", "translation": "",
@@ -2386,6 +2442,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Keep Awake",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Keep Changes", "term": "Keep Changes",
"translation": "", "translation": "",
@@ -2393,6 +2456,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Keeping Awake",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Keyboard Layout Name", "term": "Keyboard Layout Name",
"translation": "", "translation": "",
@@ -2603,6 +2673,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Manual Coordinates", "term": "Manual Coordinates",
"translation": "", "translation": "",
@@ -2750,6 +2827,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Media Volume OSD",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Memory", "term": "Memory",
"translation": "", "translation": "",
@@ -2785,6 +2869,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Middle Section",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Minimal palette built around a single hue.", "term": "Minimal palette built around a single hue.",
"translation": "", "translation": "",
@@ -3877,6 +3968,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Save password",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Saved", "term": "Saved",
"translation": "", "translation": "",
@@ -3968,6 +4066,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Select Custom Theme",
"translation": "",
"context": "custom theme file browser title",
"reference": "",
"comment": ""
},
{ {
"term": "Select Launcher Logo", "term": "Select Launcher Logo",
"translation": "", "translation": "",
@@ -3975,6 +4080,27 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Select Profile Image",
"translation": "",
"context": "profile image file browser title",
"reference": "",
"comment": ""
},
{
"term": "Select Wallpaper",
"translation": "",
"context": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title",
"reference": "",
"comment": ""
},
{
"term": "Select Wallpaper Directory",
"translation": "",
"context": "wallpaper directory file browser title",
"reference": "",
"comment": ""
},
{ {
"term": "Select a color from the palette or use custom sliders", "term": "Select a color from the palette or use custom sliders",
"translation": "", "translation": "",
@@ -4083,7 +4209,7 @@
{ {
"term": "Settings", "term": "Settings",
"translation": "", "translation": "",
"context": "", "context": "settings window title",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -4248,6 +4374,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Show on-screen display when media player volume changes",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Show on-screen display when microphone is muted/unmuted", "term": "Show on-screen display when microphone is muted/unmuted",
"translation": "", "translation": "",
@@ -4538,7 +4671,7 @@
{ {
"term": "System Monitor", "term": "System Monitor",
"translation": "", "translation": "",
"context": "", "context": "sysmon window title",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -4584,13 +4717,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "System bar with widgets and system information",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "System notification area icons", "term": "System notification area icons",
"translation": "", "translation": "",
@@ -4766,6 +4892,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Toggle visibility of this bar configuration",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Tomorrow", "term": "Tomorrow",
"translation": "", "translation": "",
@@ -5193,6 +5326,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Widget Background Color",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Widget Management", "term": "Widget Management",
"translation": "", "translation": "",
@@ -5200,6 +5340,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Widget Style",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Widget Styling", "term": "Widget Styling",
"translation": "", "translation": "",
@@ -5207,6 +5354,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Widget Transparency",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Widgets", "term": "Widgets",
"translation": "", "translation": "",