From 5697d98862efa81a8ad3651e9ef68d754a58ea90 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 27 Jun 2024 11:46:47 +0300 Subject: treewide: fix package structure The static files need to be inside the module to be installed correctly as part of the module. --- backend/decky_loader/loader.py | 4 +- backend/decky_loader/locales/ar-AA.json | 110 +++++++++++++ backend/decky_loader/locales/bg-BG.json | 252 ++++++++++++++++++++++++++++ backend/decky_loader/locales/cs-CZ.json | 277 +++++++++++++++++++++++++++++++ backend/decky_loader/locales/de-DE.json | 270 ++++++++++++++++++++++++++++++ backend/decky_loader/locales/el-GR.json | 260 +++++++++++++++++++++++++++++ backend/decky_loader/locales/en-US.json | 283 ++++++++++++++++++++++++++++++++ backend/decky_loader/locales/es-ES.json | 217 ++++++++++++++++++++++++ backend/decky_loader/locales/fi-FI.json | 260 +++++++++++++++++++++++++++++ backend/decky_loader/locales/fr-FR.json | 277 +++++++++++++++++++++++++++++++ backend/decky_loader/locales/it-IT.json | 277 +++++++++++++++++++++++++++++++ backend/decky_loader/locales/ja-JP.json | 253 ++++++++++++++++++++++++++++ backend/decky_loader/locales/ko-KR.json | 263 +++++++++++++++++++++++++++++ backend/decky_loader/locales/nl-NL.json | 270 ++++++++++++++++++++++++++++++ backend/decky_loader/locales/pl-PL.json | 277 +++++++++++++++++++++++++++++++ backend/decky_loader/locales/pt-BR.json | 268 ++++++++++++++++++++++++++++++ backend/decky_loader/locales/pt-PT.json | 267 ++++++++++++++++++++++++++++++ backend/decky_loader/locales/ru-RU.json | 277 +++++++++++++++++++++++++++++++ backend/decky_loader/locales/sq-AL.json | 131 +++++++++++++++ backend/decky_loader/locales/sv-SE.json | 68 ++++++++ backend/decky_loader/locales/tr-TR.json | 225 +++++++++++++++++++++++++ backend/decky_loader/locales/uk-UA.json | 222 +++++++++++++++++++++++++ backend/decky_loader/locales/zh-CN.json | 263 +++++++++++++++++++++++++++++ backend/decky_loader/locales/zh-TW.json | 263 +++++++++++++++++++++++++++++ backend/decky_loader/main.py | 2 +- backend/locales/ar-AA.json | 110 ------------- backend/locales/bg-BG.json | 252 ---------------------------- backend/locales/cs-CZ.json | 277 ------------------------------- backend/locales/de-DE.json | 270 ------------------------------ backend/locales/el-GR.json | 260 ----------------------------- backend/locales/en-US.json | 283 -------------------------------- backend/locales/es-ES.json | 217 ------------------------ backend/locales/fi-FI.json | 260 ----------------------------- backend/locales/fr-FR.json | 277 ------------------------------- backend/locales/it-IT.json | 277 ------------------------------- backend/locales/ja-JP.json | 253 ---------------------------- backend/locales/ko-KR.json | 263 ----------------------------- backend/locales/nl-NL.json | 270 ------------------------------ backend/locales/pl-PL.json | 277 ------------------------------- backend/locales/pt-BR.json | 268 ------------------------------ backend/locales/pt-PT.json | 267 ------------------------------ backend/locales/ru-RU.json | 277 ------------------------------- backend/locales/sq-AL.json | 131 --------------- backend/locales/sv-SE.json | 68 -------- backend/locales/tr-TR.json | 225 ------------------------- backend/locales/uk-UA.json | 222 ------------------------- backend/locales/zh-CN.json | 263 ----------------------------- backend/locales/zh-TW.json | 263 ----------------------------- backend/pyinstaller.spec | 4 +- backend/pyproject.toml | 5 +- 50 files changed, 5539 insertions(+), 5536 deletions(-) create mode 100644 backend/decky_loader/locales/ar-AA.json create mode 100644 backend/decky_loader/locales/bg-BG.json create mode 100644 backend/decky_loader/locales/cs-CZ.json create mode 100644 backend/decky_loader/locales/de-DE.json create mode 100644 backend/decky_loader/locales/el-GR.json create mode 100644 backend/decky_loader/locales/en-US.json create mode 100644 backend/decky_loader/locales/es-ES.json create mode 100644 backend/decky_loader/locales/fi-FI.json create mode 100644 backend/decky_loader/locales/fr-FR.json create mode 100644 backend/decky_loader/locales/it-IT.json create mode 100644 backend/decky_loader/locales/ja-JP.json create mode 100644 backend/decky_loader/locales/ko-KR.json create mode 100644 backend/decky_loader/locales/nl-NL.json create mode 100644 backend/decky_loader/locales/pl-PL.json create mode 100644 backend/decky_loader/locales/pt-BR.json create mode 100644 backend/decky_loader/locales/pt-PT.json create mode 100644 backend/decky_loader/locales/ru-RU.json create mode 100644 backend/decky_loader/locales/sq-AL.json create mode 100644 backend/decky_loader/locales/sv-SE.json create mode 100644 backend/decky_loader/locales/tr-TR.json create mode 100644 backend/decky_loader/locales/uk-UA.json create mode 100644 backend/decky_loader/locales/zh-CN.json create mode 100644 backend/decky_loader/locales/zh-TW.json delete mode 100644 backend/locales/ar-AA.json delete mode 100644 backend/locales/bg-BG.json delete mode 100644 backend/locales/cs-CZ.json delete mode 100644 backend/locales/de-DE.json delete mode 100644 backend/locales/el-GR.json delete mode 100644 backend/locales/en-US.json delete mode 100644 backend/locales/es-ES.json delete mode 100644 backend/locales/fi-FI.json delete mode 100644 backend/locales/fr-FR.json delete mode 100644 backend/locales/it-IT.json delete mode 100644 backend/locales/ja-JP.json delete mode 100644 backend/locales/ko-KR.json delete mode 100644 backend/locales/nl-NL.json delete mode 100644 backend/locales/pl-PL.json delete mode 100644 backend/locales/pt-BR.json delete mode 100644 backend/locales/pt-PT.json delete mode 100644 backend/locales/ru-RU.json delete mode 100644 backend/locales/sq-AL.json delete mode 100644 backend/locales/sv-SE.json delete mode 100644 backend/locales/tr-TR.json delete mode 100644 backend/locales/uk-UA.json delete mode 100644 backend/locales/zh-CN.json delete mode 100644 backend/locales/zh-TW.json (limited to 'backend') diff --git a/backend/decky_loader/loader.py b/backend/decky_loader/loader.py index 4fc03237..e8a073a9 100644 --- a/backend/decky_loader/loader.py +++ b/backend/decky_loader/loader.py @@ -106,12 +106,12 @@ class Loader: self.watcher.disabled = False async def handle_frontend_assets(self, request: web.Request): - file = Path(__file__).parents[1].joinpath("static").joinpath(request.match_info["path"]) + file = Path(__file__).parent.joinpath("static").joinpath(request.match_info["path"]) return web.FileResponse(file, headers={"Cache-Control": "no-cache"}) async def handle_frontend_locales(self, request: web.Request): req_lang = request.match_info["path"] - file = Path(__file__).parents[1].joinpath("locales").joinpath(req_lang) + file = Path(__file__).parent.joinpath("locales").joinpath(req_lang) if exists(file): return web.FileResponse(file, headers={"Cache-Control": "no-cache", "Content-Type": "application/json"}) else: diff --git a/backend/decky_loader/locales/ar-AA.json b/backend/decky_loader/locales/ar-AA.json new file mode 100644 index 00000000..f5c11016 --- /dev/null +++ b/backend/decky_loader/locales/ar-AA.json @@ -0,0 +1,110 @@ +{ + "FilePickerIndex": { + "files": { + "file_type": "نوع الملف", + "show_hidden": "أظهر الملفات المخفية", + "all_files": "جميع الملفات" + }, + "filter": { + "created_asce": "المنشئة (الأقدم)", + "modified_asce": "المعدلة (الأقدم)", + "modified_desc": "المعدلة (الأحدث)", + "name_asce": "أ-ي", + "name_desc": "أ-ي", + "size_asce": "الحجم ( الأصغر)", + "size_desc": "الحجم ( الأكبر)", + "created_desc": "المنشئة (الأحدث)" + }, + "folder": { + "label": "المجلد", + "show_more": "أظهر المزيد من الملفات", + "select": "إستخدم هذا المجلد" + }, + "file": { + "select": "إختر هذا الملف" + } + }, + "MultiplePluginsInstallModal": { + "confirm": "هل أنت متأكد من التعديلات التالية؟", + "description": { + "reinstall": "إعادة تنصيب {{name}} {{version}}", + "update": "تحديث {{name}} إلى {{version}}", + "install": "تنصيب {{name}} {{version}}" + }, + "ok_button": { + "idle": "تأكيد" + } + }, + "DropdownMultiselect": { + "button": { + "back": "الخلف" + } + }, + "BranchSelect": { + "update_channel": { + "label": "قناة التحديثات", + "prerelease": "الإصدار التجريبي", + "stable": "إصدار مستقر", + "testing": "إصدار تحت الإختبار" + } + }, + "PluginCard": { + "plugin_full_access": "هذه الإضافة لديها الصلاحية للوصول لمحتويات Steam Deck.", + "plugin_install": "تنصيب", + "plugin_version_label": "رقم إصدار الإضافة", + "plugin_no_desc": "لا يوجد وصف متاح." + }, + "PluginInstallModal": { + "install": { + "button_idle": "تنصيب", + "button_processing": "يتم التنصيب", + "title": "تنصيب {{artifact}}", + "desc": "هل أنت متأكد من رغبتك في تنصيب {{artifact}} {{version}}؟" + }, + "reinstall": { + "button_idle": "إعادة تنصيب", + "button_processing": "تتم إعادة التنصيب", + "desc": "هل أنت متأكد من رغبتك في إعادة تنصيب {{artifact}} {{version}}؟", + "title": "إعادة تنصيب {{artifact}}" + }, + "update": { + "button_idle": "تحديث", + "button_processing": "يتم التحديث", + "title": "تحديث {{artifact}}", + "desc": "هل أنت متأكد من رغبتك في تحديث {{artifact}} {{version}}؟" + } + }, + "PluginListIndex": { + "hide": "إخفاء من قائمة الوصول السريع", + "reinstall": "إعادة التنصيب", + "reload": "إعادة التحميل", + "show": "إظهار في قائمة الوصول السريع", + "unfreeze": "السماح بالتحديثات", + "uninstall": "إزالة التنصيب", + "update_to": "التحديث إلى {{name}}" + }, + "PluginListLabel": { + "hidden": "مخفي من قائمة الوصول السريع" + }, + "PluginLoader": { + "decky_title": "Decky", + "error": "خطا", + "plugin_uninstall": { + "button": "إزالة التنصيب", + "title": "إزالة التنصيب {{name}}" + } + }, + "SettingsDeveloperIndex": { + "react_devtools": { + "ip_label": "عنوان الشبكة" + }, + "third_party_plugins": { + "button_zip": "تصفح", + "button_install": "تنصيب" + }, + "header": "أخرى" + }, + "Developer": { + "5secreload": "إعادة التحميل في 5 ثواني" + } +} diff --git a/backend/decky_loader/locales/bg-BG.json b/backend/decky_loader/locales/bg-BG.json new file mode 100644 index 00000000..b9c4d803 --- /dev/null +++ b/backend/decky_loader/locales/bg-BG.json @@ -0,0 +1,252 @@ +{ + "BranchSelect": { + "update_channel": { + "stable": "Стабилен", + "testing": "Тестване", + "label": "Канал за обновления", + "prerelease": "Предварителни издания" + } + }, + "Developer": { + "5secreload": "Презареждане след 5 секунди", + "disabling": "Изключване на React DevTools", + "enabling": "Включване на React DevTools" + }, + "DropdownMultiselect": { + "button": { + "back": "Назад" + } + }, + "FilePickerError": { + "errors": { + "unknown": "Възникна неизвестна грешка. Грешката в суров вид е: {{raw_error}}", + "file_not_found": "Посоченият път е неправилен. Проверете го и го въведете правилно.", + "perm_denied": "Нямате достъп до посочената папка. Проверете дали потребителят (deck на Steam Deck) има съответните правомощия за достъп до посочената папка/файл." + } + }, + "FilePickerIndex": { + "file": { + "select": "Избиране на този файл" + }, + "files": { + "all_files": "Всички файлове", + "file_type": "Файлов тип", + "show_hidden": "Показване на скритите файлове" + }, + "filter": { + "created_asce": "Дата на създаване (първо най-старите)", + "created_desc": "Дата на създаване (първо най-новите)", + "modified_asce": "Дата на промяна (първо най-старите)", + "modified_desc": "Дата на промяна (първо най-новите)", + "name_asce": "Я-А", + "name_desc": "А-Я", + "size_asce": "Размер (първо най-малките)", + "size_desc": "Размер (първо най-големите)" + }, + "folder": { + "label": "Папка", + "show_more": "Показване на още файлове", + "select": "Използване на тази папка" + } + }, + "MultiplePluginsInstallModal": { + "description": { + "install": "Инсталиране на {{name}} {{version}}", + "reinstall": "Преинсталиране на {{name}} {{version}}", + "update": "Обновяване на {{name}} до {{version}}" + }, + "ok_button": { + "idle": "Потвърждаване", + "loading": "В процес на работа" + }, + "title": { + "mixed_one": "Промяна на {{count}} добавка", + "mixed_other": "Промяна на {{count}} добавки", + "update_one": "Обновяване на 1 добавка", + "update_other": "Обновяване на {{count}} добавки", + "install_one": "Инсталиране на 1 добавка", + "install_other": "Инсталиране на {{count}} добавки", + "reinstall_one": "Преинсталиране на 1 добавка", + "reinstall_other": "Преинсталиране на {{count}} добавки" + }, + "confirm": "Наистина ли искате да направите следните промени?" + }, + "PluginCard": { + "plugin_full_access": "Тази добавка има пълен достъп до Вашия Steam Deck.", + "plugin_install": "Инсталиране", + "plugin_no_desc": "Няма описание.", + "plugin_version_label": "Версия на добавката" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Инсталиране", + "desc": "Наистина ли искате да инсталирате {{artifact}} {{version}}?", + "title": "Инсталиране на {{artifact}}", + "button_processing": "Инсталиране" + }, + "reinstall": { + "button_idle": "Преинсталиране", + "button_processing": "Преинсталиране", + "desc": "Наистина ли искате да преинсталирате {{artifact}} {{version}}?", + "title": "Преинсталиране на {{artifact}}" + }, + "update": { + "button_idle": "Обновяване", + "title": "Обновяване на {{artifact}}", + "button_processing": "Обновяване", + "desc": "Наистина ли искате да обновите {{artifact}} {{version}}?" + }, + "no_hash": "Тази добавка няма хеш. Инсталирате я на свой собствен риск." + }, + "PluginListIndex": { + "hide": "Бърз достъп: Скриване", + "no_plugin": "Няма инсталирани добавки!", + "plugin_actions": "Действия с добавката", + "reinstall": "Преинсталиране", + "uninstall": "Деинсталиране", + "update_to": "Обновяване до {{name}}", + "reload": "Презареждане", + "show": "Бърз достъп: Показване", + "update_all_one": "Обновяване на 1 добавка", + "update_all_other": "Обновяване на {{count}} добавки" + }, + "PluginListLabel": { + "hidden": "Скрито от менюто за бърз достъп" + }, + "PluginLoader": { + "decky_title": "Decky", + "error": "Грешка", + "plugin_load_error": { + "message": "Грешка при зареждането на добавката {{name}}", + "toast": "Грешка при зареждането на {{name}}" + }, + "plugin_uninstall": { + "button": "Деинсталиране", + "desc": "Наистина ли искате да деинсталирате {{name}}?", + "title": "Деинсталиране на {{name}}" + }, + "plugin_update_one": "Има налично обновление за 1 добавка!", + "plugin_update_other": "Има налични обновления за {{count}} добавки!", + "decky_update_available": "Има налично обновление до {{tag_name}}!", + "plugin_error_uninstall": "Зареждането на {{name}} предизвика грешка, както се вижда по-горе. Това обикновено означава, че добавката изисква обновяване на новата версия на SteamUI. Проверете дали има обновление или изберете да я премахнете в настройките на Decky, в раздела с добавките." + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Разрешаване на достъп без удостоверяване до дебъгера на CEF на всеки от Вашата мрежа", + "label": "Разрешаване на отдалеченото дебъгване на CEF" + } + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Отваряне на конзолата", + "label": "Конзола на CEF", + "desc": "Отваря конзолата на CEF. Това има смисъл единствено за дебъгване. Нещата тук може да са опасни и трябва да бъдат използвани само ако Вие сте разработчик на добавка, или получавате насоки от такъв." + }, + "header": "Други", + "react_devtools": { + "ip_label": "IP", + "label": "Включване на React DevTools", + "desc": "Включва свързването към компютър, на който работи React DevTools. Промяната на тази настройка ще презареди Steam. Задайте IP адреса преди да включите това." + }, + "third_party_plugins": { + "button_install": "Инсталиране", + "button_zip": "Разглеждане", + "header": "Добавки от външен източник", + "label_desc": "Адрес", + "label_zip": "Инсталиране на добавка от файл ZIP", + "label_url": "Инсталиране на добавка от адрес в Интернет" + }, + "valve_internal": { + "desc2": "Не пипайте нищо в това меню, освен ако не знаете какво правите.", + "label": "Включване на вътрешното меню на Valve", + "desc1": "Включва вътрешното меню за разработчици на Valve." + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Версия на Decky", + "header": "Относно" + }, + "developer_mode": { + "label": "Режим за разработчици" + }, + "notifications": { + "decky_updates_label": "Има налично обновление на Decky", + "header": "Известия", + "plugin_updates_label": "Има налични обновления на добавките" + }, + "other": { + "header": "Други" + }, + "updates": { + "header": "Обновления" + }, + "beta": { + "header": "Участие в бета-версии" + } + }, + "SettingsIndex": { + "developer_title": "Разработчик", + "general_title": "Общи", + "plugins_title": "Добавки" + }, + "Store": { + "store_contrib": { + "label": "Допринасяне", + "desc": "Ако искате да допринесете към магазина за добавки на Decky, разгледайте хранилището SteamDeckHomebrew/decky-plugin-template в GitHub. Може да намерите информация относно разработката и разпространението във файла README." + }, + "store_filter": { + "label": "Филтър", + "label_def": "Всички" + }, + "store_search": { + "label": "Търсене" + }, + "store_sort": { + "label": "Подредба", + "label_def": "Последно обновление (първо най-новите)" + }, + "store_source": { + "label": "Изходен код", + "desc": "Целият изходен код е наличен в хранилището SteamDeckHomebrew/decky-plugin-database в GitHub." + }, + "store_tabs": { + "about": "Относно", + "alph_asce": "По азбучен ред (Я -> А)", + "alph_desc": "По азбучен ред (А -> Я)", + "title": "Разглеждане" + }, + "store_testing_cta": "Помислете дали искате да тествате новите добавки, за да помогнете на екипа на Decky Loader!" + }, + "StoreSelect": { + "custom_store": { + "label": "Персонализиран магазин", + "url_label": "Адрес" + }, + "store_channel": { + "custom": "Персонализиран", + "default": "По подразбиране", + "label": "Канал за магазина", + "testing": "Тестване" + } + }, + "Updater": { + "decky_updates": "Обновления на Decky", + "patch_notes_desc": "Бележки за промените", + "updates": { + "check_button": "Проверка за обновления", + "checking": "Проверяване", + "cur_version": "Текуща версия: {{ver}}", + "label": "Обновления", + "lat_version": "Използвате най-новата версия: {{ver}}", + "reloading": "Презареждане", + "updating": "Обновяване", + "install_button": "Инсталиране на обновлението" + }, + "no_patch_notes_desc": "няма бележки за промените в тази версия" + }, + "PluginView": { + "hidden_one": "1 добавка е скрита от този списък", + "hidden_other": "{{count}} добавки са скрити от този списък" + } +} diff --git a/backend/decky_loader/locales/cs-CZ.json b/backend/decky_loader/locales/cs-CZ.json new file mode 100644 index 00000000..ca8114e4 --- /dev/null +++ b/backend/decky_loader/locales/cs-CZ.json @@ -0,0 +1,277 @@ +{ + "BranchSelect": { + "update_channel": { + "label": "Aktualizační kanál", + "prerelease": "Předběžná vydání", + "stable": "Stabilní", + "testing": "Testování" + } + }, + "Developer": { + "disabling": "Vypínám React DevTools", + "enabling": "Zapínám React DevTools", + "5secreload": "Znovu načtení za 5 vteřin" + }, + "FilePickerIndex": { + "folder": { + "select": "Použít tuto složku", + "label": "Složka", + "show_more": "Zobrazit více souborů" + }, + "filter": { + "created_asce": "Vytvořeno (Nejstarší)", + "created_desc": "Vytvořeno (Nejnovější)", + "modified_asce": "Upraveno (Nejstarší)", + "modified_desc": "Upraveno (Nejnovější)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Velikost (Nejmenší)", + "size_desc": "Velikost (Největší)" + }, + "files": { + "show_hidden": "Zobrazit skryté soubory", + "all_files": "Všechny soubory", + "file_type": "Typ souboru" + }, + "file": { + "select": "Vybrat tento soubor" + } + }, + "PluginView": { + "hidden_one": "1 plugin je v tomto seznamu skrytý", + "hidden_few": "{{count}} pluginů je v tomto seznamu skryto", + "hidden_other": "{{count}} pluginů je v tomto seznamu skryto" + }, + "PluginListLabel": { + "hidden": "Skryto z nabídky rychlého přístupu" + }, + "PluginCard": { + "plugin_full_access": "Tento plugin má plný přístup k vašemu Steam Decku.", + "plugin_install": "Instalovat", + "plugin_no_desc": "Nebyl uveden žádný popis.", + "plugin_version_label": "Verze pluginu" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Instalovat", + "button_processing": "Instalování", + "title": "Instalovat {{artifact}}", + "desc": "Jste si jisti, že chcete nainstalovat {{artifact}} {{version}}?" + }, + "no_hash": "Tento plugin nemá hash, instalujete jej na vlastní nebezpečí.", + "reinstall": { + "button_idle": "Přeinstalovat", + "button_processing": "Přeinstalování", + "title": "Přeinstalovat {{artifact}}", + "desc": "Jste si jisti, že chcete přeinstalovat {{artifact}} {{version}}?" + }, + "update": { + "button_idle": "Aktualizovat", + "button_processing": "Aktualizování", + "desc": "Jste si jisti, že chcete aktualizovat {{artifact}} {{version}}?", + "title": "Aktualizovat {{artifact}}" + } + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_one": "Upravit {{count}} plugin", + "mixed_few": "Upravit {{count}} pluginů", + "mixed_other": "Upravit {{count}} pluginů", + "reinstall_one": "Přeinstalovat 1 plugin", + "reinstall_few": "Přeinstalovat {{count}} pluginů", + "reinstall_other": "Přeinstalovat {{count}} pluginů", + "install_one": "Instalovat 1 plugin", + "install_few": "Instalovat {{count}} pluginů", + "install_other": "Instalovat {{count}} pluginů", + "update_one": "Aktualizovat 1 plugin", + "update_few": "Aktualizovat {{count}} pluginů", + "update_other": "Aktualizovat {{count}} pluginů" + }, + "ok_button": { + "idle": "Potvrdit", + "loading": "Probíhá" + }, + "description": { + "install": "Instalovat {{name}} {{version}}", + "update": "Aktualizovat {{name}} na {{version}}", + "reinstall": "Přeinstalovat {{name}} {{version}}" + }, + "confirm": "Jste si jisti, že chcete udělat následující úpravy?" + }, + "PluginListIndex": { + "no_plugin": "Nejsou nainstalovány žádné pluginy!", + "plugin_actions": "Akce pluginu", + "reinstall": "Přeinstalovat", + "reload": "Znovu načíst", + "uninstall": "Odinstalovat", + "update_to": "Aktualizovat na {{name}}", + "show": "Rychlý přístup: Zobrazit", + "hide": "Rychlý přístup: Skrýt", + "update_all_one": "Aktualizovat 1 plugin", + "update_all_few": "Aktualizovat {{count}} pluginů", + "update_all_other": "Aktualizovat {{count}} pluginů", + "freeze": "Pozastavit aktualizace", + "unfreeze": "Povolit aktualizace" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "Aktualizace na {{tag_name}} dostupná!", + "error": "Chyba", + "plugin_load_error": { + "message": "Chyba při načítání pluginu {{name}}", + "toast": "Chyba při načítání {{name}}" + }, + "plugin_uninstall": { + "button": "Odinstalovat", + "desc": "Opravdu chcete odinstalovat {{name}}?", + "title": "Odinstalovat {{name}}" + }, + "plugin_update_one": "Je dostupná aktualizace pro 1 plugin!", + "plugin_update_few": "Jsou dostupné aktualizace pro {{count}} pluginů!", + "plugin_update_other": "Jsou dostupné aktualizace pro {{count}} pluginů!", + "plugin_error_uninstall": "Načítání {{name}} způsobilo chybu uvedenou výše. To obvykle znamená, že plugin vyžaduje aktualizaci SteamUI. Zkontrolujte, zda je aktualizace k dispozici, nebo zvažte odstranění pluginu v nastavení Decky v sekci Pluginy." + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Otevřít konzoli", + "label": "CEF konzole", + "desc": "Otevře CEF konzoli. Užitečné pouze pro účely ladění. Věci zde jsou potenciálně nebezpečné a měly by být používány pouze v případě, že jste vývojář pluginů, nebo vás sem nějaký nasměroval." + }, + "header": "Ostatní", + "react_devtools": { + "desc": "Umožňuje připojení k počítači, na kterém běží React DevTools. Změnou tohoto nastavení se znovu načte Steam. Před povolením nastavte IP adresu.", + "ip_label": "IP adresa", + "label": "Zapnout React DevTools" + }, + "third_party_plugins": { + "button_install": "Instalovat", + "button_zip": "Procházet", + "header": "Pluginy třetí strany", + "label_desc": "URL", + "label_url": "Instalovat plugin z URL", + "label_zip": "Instalovat plugin ze ZIP souboru" + }, + "valve_internal": { + "desc1": "Zapíná interní vývojářské menu Valve.", + "desc2": "Nedotýkejte se ničeho v této nabídce, pokud nevíte, co děláte.", + "label": "Zapnout Valve Internal" + } + }, + "RemoteDebugging": { + "remote_cef": { + "label": "Povolit vzdálené CEF ladění", + "desc": "Umožní neověřený přístup k CEF ladění komukoli ve vaší síti" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Decky verze", + "header": "O Decky" + }, + "beta": { + "header": "Účast v betě" + }, + "developer_mode": { + "label": "Vývojářský režim" + }, + "other": { + "header": "Ostatní" + }, + "updates": { + "header": "Aktualizace" + }, + "notifications": { + "decky_updates_label": "Dostupná aktualizace Decky", + "header": "Notifikace", + "plugin_updates_label": "Dostupná aktualizace pluginu" + } + }, + "SettingsIndex": { + "developer_title": "Vývojář", + "general_title": "Obecné", + "plugins_title": "Pluginy", + "testing_title": "Testování" + }, + "Store": { + "store_contrib": { + "label": "Přispívání", + "desc": "Pokud byste chtěli přispět do obchodu Decky Plugin Store, podívejte se na repozitář SteamDeckHomebrew/decky-plugin-template na GitHubu. Informace o vývoji a distribuci jsou k dispozici v README." + }, + "store_filter": { + "label": "Filtr", + "label_def": "Vše" + }, + "store_search": { + "label": "Hledat" + }, + "store_sort": { + "label": "Seřadit", + "label_def": "Naposledy aktualizováno (Nejnovější)" + }, + "store_source": { + "desc": "Veškerý zdrojový kód pluginu je dostupný v repozitáři SteamDeckHomebrew/decky-plugin-database na GitHubu.", + "label": "Zdrojový kód" + }, + "store_tabs": { + "about": "O Decky Plugin Store", + "alph_asce": "Abecedně (Z do A)", + "alph_desc": "Abecedně (A do Z)", + "title": "Procházet", + "date_asce": "Nejstarší", + "downloads_desc": "Nejvíce stažené", + "date_desc": "Nejnovější", + "downloads_asce": "Nejméně stažené" + }, + "store_testing_cta": "Zvažte prosím testování nových pluginů, pomůžete tím týmu Decky Loader!", + "store_testing_warning": { + "desc": "Tento kanál obchodu můžete použít k testování nejnovějších verzí pluginů. Nezapomeňte zanechat zpětnou vazbu na GitHubu, aby bylo možné plugin aktualizovat pro všechny uživatele.", + "label": "Vítejte na testovacím kanálu obchodu" + } + }, + "StoreSelect": { + "custom_store": { + "label": "Vlastní obchod", + "url_label": "URL" + }, + "store_channel": { + "custom": "Vlastní", + "default": "Výchozí", + "label": "Kanál obchodu", + "testing": "Testování" + } + }, + "Updater": { + "updates": { + "lat_version": "Aktuální: běží na verzi {{ver}}", + "reloading": "Znovu načítání", + "updating": "Aktualizování", + "check_button": "Zkontrolovat aktualizace", + "checking": "Kontrolování", + "cur_version": "Aktuální verze: {{ver}}", + "install_button": "Instalovat aktualizaci", + "label": "Aktualizace" + }, + "decky_updates": "Aktualizace Decky", + "patch_notes_desc": "Poznámky k verzi", + "no_patch_notes_desc": "žádné poznámky pro tuto verzi" + }, + "DropdownMultiselect": { + "button": { + "back": "Zpět" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "Zadaná cesta není platná. Zkontrolujte ji a zadejte znovu správně.", + "unknown": "Nastala neznámá chyba. Nezpracovaná chyba je: {{raw_error}}", + "perm_denied": "Nemáte přístup k zadanému adresáři. Zkontrolujte, zda jako uživatel (deck na Steam Decku) máte odpovídající oprávnění pro přístup k dané složce/souboru." + } + }, + "TitleView": { + "settings_desc": "Otevřít nastavení Decky", + "decky_store_desc": "Otevřít obchod Decky" + }, + "Testing": { + "download": "Stáhnout" + } +} diff --git a/backend/decky_loader/locales/de-DE.json b/backend/decky_loader/locales/de-DE.json new file mode 100644 index 00000000..e0013bc7 --- /dev/null +++ b/backend/decky_loader/locales/de-DE.json @@ -0,0 +1,270 @@ +{ + "BranchSelect": { + "update_channel": { + "label": "Updatekanal", + "prerelease": "Vorabveröffentlichung", + "stable": "Standard", + "testing": "Test" + } + }, + "Developer": { + "disabling": "Deaktiviere React DevTools", + "enabling": "Aktiviere React DevTools", + "5secreload": "Neu laden in 5 Sekunden" + }, + "FilePickerIndex": { + "folder": { + "select": "Diesen Ordner verwenden", + "label": "Ordner", + "show_more": "Mehr Dateien anzeigen" + }, + "filter": { + "name_desc": "A-Z", + "size_asce": "Größe (Kleinste)", + "size_desc": "Größe (Größte)", + "created_asce": "Erstellt (Älteste)", + "created_desc": "Erstellt (Neuste)", + "modified_asce": "Geändert (Älteste)", + "modified_desc": "Geändert (Neuste)", + "name_asce": "Z-A" + }, + "file": { + "select": "Diese Datei auswählen" + }, + "files": { + "all_files": "Alle Dateien", + "file_type": "Dateityp", + "show_hidden": "Versteckte Dateien anzeigen" + } + }, + "PluginCard": { + "plugin_install": "Installieren", + "plugin_no_desc": "Keine Beschreibung angegeben.", + "plugin_version_label": "Erweiterungs Version", + "plugin_full_access": "Diese Erweiterung hat uneingeschränkten Zugriff auf dein Steam Deck." + }, + "PluginInstallModal": { + "install": { + "button_idle": "Installieren", + "button_processing": "Wird installiert", + "desc": "Bist du dir sicher, dass du {{artifact}} {{version}} installieren willst?", + "title": "Installiere {{artifact}}" + }, + "reinstall": { + "button_idle": "Neu installieren", + "button_processing": "Wird neu installiert", + "desc": "Bist du dir sicher, dass du {{artifact}} {{version}} neu installieren willst?", + "title": "Neu installation {{artifact}}" + }, + "update": { + "button_idle": "Aktualisieren", + "button_processing": "Wird aktualisiert", + "title": "Aktualisiere {{artifact}}", + "desc": "Bist du dir sicher, dass du {{artifact}} {{version}} aktualisieren willst?" + }, + "no_hash": "Diese Erweiterung besitzt keine Prüfsumme, Installation auf eigene Gefahr." + }, + "PluginListIndex": { + "no_plugin": "Keine Erweiterungen installiert!", + "plugin_actions": "Erweiterungs Aktionen", + "reinstall": "Neu installieren", + "reload": "Neu laden", + "uninstall": "Deinstallieren", + "update_to": "Aktualisieren zu {{name}}", + "update_all_one": "{{count}} Plugin aktualisieren", + "update_all_other": "{{count}} Plugins aktualisieren", + "show": "Schnellzugriff: Anzeigen", + "hide": "Schnellzugriff: Ausblenden", + "freeze": "Updates einfrieren", + "unfreeze": "Updates erlauben" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "Eine neue Version ({{tag_name}}) ist verfügbar!", + "error": "Fehler", + "plugin_load_error": { + "toast": "Fehler beim Laden von {{name}}", + "message": "Fehler beim Laden von {{name}}" + }, + "plugin_uninstall": { + "button": "Deinstallieren", + "desc": "Bist du dir sicher, dass du {{name}} deinstallieren willst?", + "title": "Deinstalliere {{name}}" + }, + "plugin_error_uninstall": "Das Laden von {{name}} hat einen Fehler verursacht. Dies bedeutet normalerweise, dass die Erweiterung ein Update für die neue Version von SteamUI benötigt. Prüfe in den Decky-Einstellungen im Bereich Erweiterungen, ob ein Update vorhanden ist.", + "plugin_update_one": "1 Erweiterung kann aktualisiert werden!", + "plugin_update_other": "{{count}} Erweiterungen können aktualisiert werden!" + }, + "RemoteDebugging": { + "remote_cef": { + "label": "Remote CEF Debugging Zugriff", + "desc": "Erlaubt jedem aus dem Neztwerk unautorisierten Zugriff auf den CEF Debugger" + } + }, + "SettingsDeveloperIndex": { + "header": "Sonstiges", + "react_devtools": { + "ip_label": "IP", + "label": "Aktiviere React DevTools", + "desc": "Erlaubt die Verbindung mit einem anderen Rechner, auf welchem React DevTools läuft. Eine Änderung startet Steam neu. Die IP Adresse muss vor Aktivierung ausgefüllt sein." + }, + "third_party_plugins": { + "button_zip": "Durchsuchen", + "header": "Erweiterungen von Drittanbietern", + "label_desc": "URL", + "label_zip": "Installiere Erweiterung via ZIP Datei", + "button_install": "Installieren", + "label_url": "Installiere Erweiterung via URL" + }, + "valve_internal": { + "desc2": "Fasse in diesem Menü nichts an, es sei denn, du weißt was du tust.", + "label": "Aktiviere Valve-internes Menü", + "desc1": "Aktiviert das Valve-interne Entwickler Menü." + }, + "cef_console": { + "button": "Konsole öffnen", + "label": "CEF Konsole", + "desc": "Öffnet die CEF Konsole. Nur für Debugzwecke. Dinge hier sind potentiell gefährlich und sollten nur durch oder unter Anleitung von Pluginentwickler/innen geschehen." + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Decky Version", + "header": "Über" + }, + "beta": { + "header": "Beta Teilnahme" + }, + "developer_mode": { + "label": "Entwickleroptionen" + }, + "other": { + "header": "Sonstiges" + }, + "updates": { + "header": "Aktualisierungen" + }, + "notifications": { + "decky_updates_label": "Decky Update verfügbar", + "header": "Benachrichtigungen", + "plugin_updates_label": "Plugin Updates verfügbar" + } + }, + "SettingsIndex": { + "developer_title": "Entwickler", + "general_title": "Allgemein", + "plugins_title": "Erweiterungen", + "testing_title": "Testen" + }, + "Store": { + "store_contrib": { + "label": "Mitwirken", + "desc": "Wenn du Erweiterungen im Decky Store veröffentlichen willst, besuche die SteamDeckHomebrew/decky-plugin-template Repository auf GitHub. Informationen rund um Entwicklung und Veröffentlichung findest du in der README." + }, + "store_filter": { + "label": "Filter", + "label_def": "Alle" + }, + "store_search": { + "label": "Suche" + }, + "store_sort": { + "label": "Sortierung", + "label_def": "Zuletzt aktualisiert" + }, + "store_source": { + "desc": "Jeder Erweiterungs Quellcode ist in der SteamDeckHomebrew/decky-plugin-database Repository auf GitHub verfügbar.", + "label": "Quellcode" + }, + "store_tabs": { + "about": "Über", + "alph_asce": "Alphabetisch (Z zu A)", + "alph_desc": "Alphabetisch (A zu Z)", + "title": "Durchstöbern", + "date_desc": "Neuste Zuerst", + "downloads_asce": "Wenigste Downloads Zuerst", + "downloads_desc": "Meiste Downloads Zuerst", + "date_asce": "Älteste Zuerst" + }, + "store_testing_cta": "Unterstütze das Decky Loader Team mit dem Testen von neuen Erweiterungen!", + "store_testing_warning": { + "label": "Willkommen zum Test Store Kanal", + "desc": "Du kannst diesen Store Kanal nutzen, um brandneue Testversionen von Plugins auszuprobieren. Denk daran Feedback auf GitHub zu hinterlassen, sodass das Plugin für alle Nutzer verbessert werden kann." + } + }, + "StoreSelect": { + "custom_store": { + "label": "Benutzerdefiniertes Store", + "url_label": "URL" + }, + "store_channel": { + "custom": "Benutzerdefiniert", + "default": "Standard", + "label": "Store Kanal", + "testing": "Test" + } + }, + "Updater": { + "decky_updates": "Decky Aktualisierungen", + "patch_notes_desc": "Patchnotizen", + "updates": { + "check_button": "Auf Aktualisierungen prüfen", + "checking": "Wird überprüft", + "cur_version": "Aktualle Version: {{ver}}", + "install_button": "Aktualisierung installieren", + "label": "Aktualisierungen", + "lat_version": "{{ver}} ist die aktuellste", + "reloading": "Lade neu", + "updating": "Aktualisiere" + }, + "no_patch_notes_desc": "Für diese Version gibt es keine Patchnotizen" + }, + "PluginView": { + "hidden_one": "{{count}} Plugin ist in dieser Liste ausgeblendet", + "hidden_other": "{{count}} Plugins sind in dieser Liste ausgeblendet" + }, + "MultiplePluginsInstallModal": { + "title": { + "install_one": "{{count}} Plugin installieren", + "install_other": "{{count}} Plugins installieren", + "mixed_one": "{{count}} Plugin bearbeiten", + "mixed_other": "{{count}} Plugins bearbeiten", + "update_one": "{{count}} Plugin aktualisieren", + "update_other": "{{count}} Plugins aktualisieren", + "reinstall_one": "{{count}} Plugin neu installieren", + "reinstall_other": "{{count}} Plugins neu installieren" + }, + "description": { + "install": "{{name}} {{version}} installieren", + "update": "{{name}} auf {{version}} aktualisieren", + "reinstall": "{{name}} {{version}} neu installieren" + }, + "confirm": "Bist du sicher, dass du die folgenden Änderungen vornehmen möchtest?", + "ok_button": { + "loading": "An der Arbeit", + "idle": "Bestätigen" + } + }, + "PluginListLabel": { + "hidden": "Im Schnellzugriff-Menu ausgeblendet" + }, + "TitleView": { + "decky_store_desc": "Decky Store Öffnen", + "settings_desc": "Decky Einstellungen Öffnen" + }, + "DropdownMultiselect": { + "button": { + "back": "Zurück" + } + }, + "FilePickerError": { + "errors": { + "unknown": "Ein unbekannter Fehler ist aufgetreten. Die ursprüngliche Fehlermeldung ist: {{raw_error}}", + "file_not_found": "Der Pfad ist ungültig. Bitte prüfen und erneut eingeben.", + "perm_denied": "Kein Zugriff auf den angegebenen Dateipfad. Bitte prüfen, ob der Nutzer (deck auf dem Steam Deck) die entsprechenden Zugriffsrechte auf den angegebenen Ordner/die angegebene Datei hat." + } + }, + "Testing": { + "download": "Download" + } +} diff --git a/backend/decky_loader/locales/el-GR.json b/backend/decky_loader/locales/el-GR.json new file mode 100644 index 00000000..62562935 --- /dev/null +++ b/backend/decky_loader/locales/el-GR.json @@ -0,0 +1,260 @@ +{ + "SettingsDeveloperIndex": { + "react_devtools": { + "desc": "Επιτρέπει την σύνδεση με υπολογιστή που τρέχει React DevTools. Η αλλαγή αυτής της ρύθμισης θα προκαλέσει επαναφόρτωση του Steam. Ωρίστε την διεύθυνση IP πριν την ενεργοποιήσετε.", + "ip_label": "IP", + "label": "Ενεργοποίηση React DevTools" + }, + "third_party_plugins": { + "button_install": "Εγκατάσταση", + "button_zip": "Περιήγηση", + "header": "Επεκτάσεις τρίτων", + "label_desc": "URL", + "label_url": "Εγκατάσταση επέκτασης απο URL", + "label_zip": "Εγκατάσταση επέκτασης από αρχείο ZIP" + }, + "valve_internal": { + "desc1": "Ενεργοποιεί το μενού προγραμματιστή της Valve.", + "desc2": "Μην αγγίξετε τίποτα σε αυτό το μενού εκτός και αν ξέρετε τι κάνει.", + "label": "Ενεργοποιήση εσωτερικού μενού Valve" + }, + "cef_console": { + "button": "Άνοιγμα Κονσόλας", + "desc": "Ανοίγει την Κονσόλα CEF. Χρήσιμο μόνο για εντοπισμό σφαλμάτων. Τα πράγματα εδώ είναι δυνητικά επικίνδυνα και θα πρέπει να χρησιμοποιηθεί μόνο εάν είστε προγραμματιστής επεκτάσεων, ή κατευθυνθήκατε εδώ από έναν προγραμματιστή.", + "label": "Κονσόλα CEF" + }, + "header": "Άλλα" + }, + "BranchSelect": { + "update_channel": { + "prerelease": "Προ-κυκλοφορία", + "stable": "Σταθερό", + "label": "Κανάλι ενημερώσεων", + "testing": "Δοκιμαστικό" + } + }, + "Developer": { + "5secreload": "Γίνεται επαναφόρτωση σε 5 δευτερόλεπτα", + "disabling": "Γίνεται απενεργοποίηση των React DevTools", + "enabling": "Γίνεται ενεργοποίηση των React DevTools" + }, + "PluginCard": { + "plugin_no_desc": "Δεν υπάρχει περιγραφή.", + "plugin_full_access": "Αυτή η επέκταση έχει πλήρη πρόσβαση στο Steam Deck σας.", + "plugin_install": "Εγκατάσταση", + "plugin_version_label": "Έκδοση επέκτασης" + }, + "PluginInstallModal": { + "install": { + "desc": "Σίγουρα θέλετε να εγκαταστήσετε το {{artifact}}{{version}};", + "button_idle": "Εγκατάσταση", + "button_processing": "Γίνεται εγκατάσταση", + "title": "Εγκατάσταση {{artifact}}" + }, + "no_hash": "Αυτή η επέκταση δεν έχει υπογραφή, την εγκαθηστάτε με δικό σας ρίσκο.", + "reinstall": { + "button_idle": "Επανεγκατάσταση", + "button_processing": "Γίνεται επανεγκατάσταση", + "desc": "Σίγουρα θέλετε να επανεγκαταστήσετε το {{artifact}}{{version}};", + "title": "Επανεγκατάσταση {{artifact}}" + }, + "update": { + "button_idle": "Ενημέρωση", + "desc": "Σίγουρα θέλετε να ενημερώσετε το {{artifact}} {{version}};", + "title": "Ενημέρωση {{artifact}}", + "button_processing": "Γίνεται ενημέρωση" + } + }, + "PluginListIndex": { + "no_plugin": "Δεν υπάρχουν εγκατεστημένες επεκτάσεις!", + "plugin_actions": "Ενέργειες επεκτάσεων", + "reinstall": "Επανεγκατάσταση", + "reload": "Επαναφόρτωση", + "uninstall": "Απεγκατάσταση", + "update_to": "Ενημέρωση σε {{name}}", + "update_all_one": "Ενημέρωση 1 επέκτασης", + "update_all_other": "Ενημέρωση {{count}} επεκτάσεων", + "show": "Γρήγορη πρόσβαση: Εμφάνιση", + "hide": "Γρήγορη πρόσβαση: Απόκρυψη" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "Ενημέρωση σε {{tag_name}} διαθέσιμη!", + "error": "Σφάλμα", + "plugin_error_uninstall": "Η φόρτωση του {{name}} προκάλεσε το παραπάνω σφάλμα. Αυτό συνήθως σημαίνει ότι η επέκταση απαιτεί ενημέρωση για τη νέα έκδοση του SteamUI. Ελέγξτε εάν υπάρχει ενημέρωση ή αξιολογήστε την απεγκαταστήσετε της επέκτασης στις ρυθμίσεις του Decky, στην ενότητα Επεκτάσεις.", + "plugin_load_error": { + "message": "Σφάλμα στη φόρτωση της επέκτασης {{name}}", + "toast": "Σφάλμα φόρτωσης {{name}}" + }, + "plugin_uninstall": { + "button": "Απεγκατάσταση", + "desc": "Σίγουρα θέλετε να απεγκαταστήσετε το {{name}};", + "title": "Απεγκατάσταση {{name}}" + }, + "plugin_update_one": "Διαθέσιμη ενημέρωση για 1 επέκταση!", + "plugin_update_other": "Διαθέσιμες ενημερώσεις για {{count}} επεκτάσεις!" + }, + "RemoteDebugging": { + "remote_cef": { + "label": "Να επιτρέπεται η απομακρυσμένη πρόσβαση στον CEF debugger", + "desc": "Να επιτρέπεται η ανεξέλεγκτη πρόσβαση στον CEF debugger σε οποιονδήποτε στο τοπικό δίκτυο" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Έκδοση Decky", + "header": "Σχετικά" + }, + "developer_mode": { + "label": "Λειτουργία προγραμματιστή" + }, + "other": { + "header": "Άλλα" + }, + "updates": { + "header": "Ενημερώσεις" + }, + "beta": { + "header": "Συμμετοχή στη Beta" + }, + "notifications": { + "decky_updates_label": "Διαθέσιμη ενημέρωση του Decky", + "header": "Ειδοποιήσεις", + "plugin_updates_label": "Διαθέσιμες ενημερώσεις επεκτάσεων" + } + }, + "SettingsIndex": { + "plugins_title": "Επεκτάσεις", + "developer_title": "Προγραμματιστής", + "general_title": "Γενικά" + }, + "Store": { + "store_contrib": { + "label": "Συνεισφέροντας", + "desc": "Αν θέλετε να συνεισφέρετε στο κατάστημα επεκτάσεων του Decky, τσεκάρετε το SteamDeckHomebrew/decky-plugin-template repository στο GitHub. Πληροφορίες σχετικά με τη δημιουργία και τη διανομή επεκτάσεων είναι διαθέσιμες στο README." + }, + "store_filter": { + "label": "Φίλτρο", + "label_def": "Όλα" + }, + "store_search": { + "label": "Αναζήτηση" + }, + "store_sort": { + "label": "Ταξινόμηση", + "label_def": "Τελευταία ενημέρωση (Νεότερα)" + }, + "store_source": { + "desc": "Ο πηγαίος κώδικας όλων των επεκτάσεων είναι διαθέσιμος στο SteamDeckHomebrew/decky-plugin-database repository στο GitHub.", + "label": "Πηγαίος κώδικας" + }, + "store_tabs": { + "about": "Σχετικά", + "alph_asce": "Αλφαβητικά (Ζ σε Α)", + "alph_desc": "Αλφαβητικά (Α σε Ζ)", + "title": "Περιήγηση" + }, + "store_testing_cta": "Παρακαλώ σκεφτείτε να τεστάρετε νέες επεκτάσεις για να βοηθήσετε την ομάδα του Decky Loader!", + "store_testing_warning": { + "desc": "Μπορείτε να χρησιμοποιήσετε αυτό το κανάλι του καταστήματος για να δοκιμάσετε τις νεότερες εκδόσεις των επεκτάσεων. Φροντίστε να αφήσετε σχόλια στο GitHub, ώστε να βοηθήσετε στην ενημέρωση της εκάστοτε επέκταση για όλους τους χρήστες.", + "label": "Καλώς ήρθατε στο Δοκιμαστικό Κανάλι τους Καταστήματος" + } + }, + "StoreSelect": { + "custom_store": { + "label": "Προσαρμοσμένο κατάστημα", + "url_label": "URL" + }, + "store_channel": { + "custom": "Προσαρμοσμένο", + "default": "Προεπιλεγμένο", + "label": "Κανάλι καταστήματος", + "testing": "Δοκιμαστικό" + } + }, + "Updater": { + "no_patch_notes_desc": "Κανένα ενημερωτικό σημείωμα για αυτή την έκδοση", + "patch_notes_desc": "Σημειώσεις ενημέρωσης", + "updates": { + "check_button": "Έλεγχος για ενημερώσεις", + "checking": "Γίνεται έλεγχος", + "cur_version": "Τρέχουσα έκδοση: {{ver}}", + "install_button": "Εγκατάσταση ενημέρωσης", + "label": "Ενημερώσεις", + "updating": "Γίνεται ενημέρωση", + "lat_version": "Ενημερωμένο: τρέχουσα έκδοση {{ver}}", + "reloading": "Γίνεται επαναφόρτωση" + }, + "decky_updates": "Ενημερώσεις Decky" + }, + "FilePickerIndex": { + "folder": { + "select": "Χρησιμοποιήστε αυτό το φάκελο", + "label": "Φάκελος", + "show_more": "Εμφάνιση περισσότερων αρχείων" + }, + "filter": { + "modified_asce": "Τροποποιήθηκε (Παλαιότερο)", + "modified_desc": "Τροποποιήθηκε (Νεότερο)", + "created_desc": "Δημιουργήθηκε (Νεότερο)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "created_asce": "Δημιουργήθηκε (Παλαιότερο)", + "size_asce": "Μέγεθος (Μικρότερο)", + "size_desc": "Μέγεθος (Μεγαλύτερο)" + }, + "file": { + "select": "Επιλογή αυτού του αρχείου" + }, + "files": { + "show_hidden": "Εμφάνιση Κρυφών Αρχείων", + "all_files": "Όλα Τα Αρχεία", + "file_type": "Τύπος Αρχείου" + } + }, + "PluginView": { + "hidden_one": "1 επέκταση είναι κρυμμένη σε αυτήν τη λίστα", + "hidden_other": "{{count}} επεκτάσεις είναι κρυμμένες σε αυτήν τη λίστα" + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_one": "Τροποποίηση 1 επέκτασης", + "mixed_other": "Τροποποίηση {{count}} επεκτάσεων", + "update_one": "Ενημέρωση 1 επέκτασης", + "update_other": "Ενημέρωση {{count}} επεκτάσεων", + "reinstall_one": "Επανεγκατάσταση 1 επέκτασης", + "reinstall_other": "Επανεγκατάσταση {{count}} επεκτάσεων", + "install_one": "Εγκατάσταση 1 επέκτασης", + "install_other": "Εγκατάσταση {{count}} επεκτάσεων" + }, + "confirm": "Είστε βέβαιοι ότι θέλετε να κάνετε τις ακόλουθες τροποποιήσεις;", + "description": { + "reinstall": "Επανεγκατάσταση {{name}} {{version}}", + "update": "Ενημέρωση {{name}} to {{version}}", + "install": "Εγκατάσταση {{name}} {{version}}" + }, + "ok_button": { + "idle": "Επιβεβαίωση", + "loading": "Φόρτωση" + } + }, + "PluginListLabel": { + "hidden": "Κρυφό στο μενού γρήγορης πρόσβασης" + }, + "TitleView": { + "settings_desc": "Άνοιγμα Ρυθμίσεων Decky", + "decky_store_desc": "Άνοιγμα Καταστήματος Decky" + }, + "DropdownMultiselect": { + "button": { + "back": "Πίσω" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "Η καθορισμένη διαδρομή δεν είναι έγκυρη. Παρακαλούμε ελέγξτε τη και εισάγετέ τη ξανά σωστά.", + "perm_denied": "Δεν έχετε πρόσβαση στην καθορισμένη διαδρομή. Ελέγξτε εάν ο χρήστης σας (deck στο Steam Deck) έχει τα αντίστοιχα δικαιώματα πρόσβασης στον καθορισμένο φάκελο/αρχείο.", + "unknown": "Παρουσιάστηκε άγνωστο σφάλμα. Το σφάλμα είναι: {{raw_error}}" + } + } +} diff --git a/backend/decky_loader/locales/en-US.json b/backend/decky_loader/locales/en-US.json new file mode 100644 index 00000000..94e1ed3d --- /dev/null +++ b/backend/decky_loader/locales/en-US.json @@ -0,0 +1,283 @@ +{ + "BranchSelect": { + "update_channel": { + "label": "Update Channel", + "prerelease": "Prerelease", + "stable": "Stable", + "testing": "Testing" + } + }, + "Developer": { + "5secreload": "Reloading in 5 seconds", + "disabling": "Disabling React DevTools", + "enabling": "Enabling React DevTools" + }, + "DropdownMultiselect": { + "button": { + "back": "Back" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "The path specified is not valid. Please check it and reenter it correctly.", + "perm_denied": "You do not have access to the specified directory. Please check if your user (deck on Steam Deck) has the corresponding permission to access the specified folder/file.", + "unknown": "An unknown error occurred. The raw error is: {{raw_error}}" + } + }, + "FilePickerIndex": { + "file": { + "select": "Select this file" + }, + "files": { + "all_files": "All Files", + "file_type": "File Type", + "show_hidden": "Show Hidden Files" + }, + "filter": { + "created_asce": "Created (Oldest)", + "created_desc": "Created (Newest)", + "modified_asce": "Modified (Oldest)", + "modified_desc": "Modified (Newest)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Size (Smallest)", + "size_desc": "Size (Largest)" + }, + "folder": { + "label": "Folder", + "select": "Use this folder", + "show_more": "Show more files" + } + }, + "MultiplePluginsInstallModal": { + "confirm": "Are you sure you want to make the following modifications?", + "description": { + "install": "Install {{name}} {{version}}", + "reinstall": "Reinstall {{name}} {{version}}", + "update": "Update {{name}} to {{version}}" + }, + "ok_button": { + "idle": "Confirm", + "loading": "Working" + }, + "title": { + "install_one": "Install 1 plugin", + "install_other": "Install {{count}} plugins", + "mixed_one": "Modify {{count}} plugin", + "mixed_other": "Modify {{count}} plugins", + "reinstall_one": "Reinstall 1 plugin", + "reinstall_other": "Reinstall {{count}} plugins", + "update_one": "Update 1 plugin", + "update_other": "Update {{count}} plugins" + } + }, + "PluginCard": { + "plugin_full_access": "This plugin has full access to your Steam Deck.", + "plugin_install": "Install", + "plugin_no_desc": "No description provided.", + "plugin_version_label": "Plugin Version" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Install", + "button_processing": "Installing", + "desc": "Are you sure you want to install {{artifact}} {{version}}?", + "title": "Install {{artifact}}" + }, + "no_hash": "This plugin does not have a hash, you are installing it at your own risk.", + "reinstall": { + "button_idle": "Reinstall", + "button_processing": "Reinstalling", + "desc": "Are you sure you want to reinstall {{artifact}} {{version}}?", + "title": "Reinstall {{artifact}}" + }, + "update": { + "button_idle": "Update", + "button_processing": "Updating", + "desc": "Are you sure you want to update {{artifact}} {{version}}?", + "title": "Update {{artifact}}" + } + }, + "PluginListIndex": { + "freeze": "Freeze updates", + "hide": "Quick access: Hide", + "no_plugin": "No plugins installed!", + "plugin_actions": "Plugin Actions", + "reinstall": "Reinstall", + "reload": "Reload", + "show": "Quick access: Show", + "unfreeze": "Allow updates", + "uninstall": "Uninstall", + "update_all_one": "Update 1 plugin", + "update_all_other": "Update {{count}} plugins", + "update_to": "Update to {{name}}" + }, + "PluginListLabel": { + "hidden": "Hidden from the quick access menu" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "Update to {{tag_name}} available!", + "error": "Error", + "plugin_error_uninstall": "Loading {{name}} caused an exception as shown above. This usually means that the plugin requires an update for the new version of SteamUI. Check if an update is present or evaluate its removal in the Decky settings, in the Plugins section.", + "plugin_load_error": { + "message": "Error loading plugin {{name}}", + "toast": "Error loading {{name}}" + }, + "plugin_uninstall": { + "button": "Uninstall", + "desc": "Are you sure you want to uninstall {{name}}?", + "title": "Uninstall {{name}}" + }, + "plugin_update_one": "Updates available for 1 plugin!", + "plugin_update_other": "Updates available for {{count}} plugins!" + }, + "PluginView": { + "hidden_one": "1 plugin is hidden from this list", + "hidden_other": "{{count}} plugins are hidden from this list" + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Allow unauthenticated access to the CEF debugger to anyone in your network", + "label": "Allow Remote CEF Debugging" + } + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Open Console", + "desc": "Opens the CEF Console. Only useful for debugging purposes. Stuff here is potentially dangerous and should only be used if you are a plugin dev, or are directed here by one.", + "label": "CEF Console" + }, + "header": "Other", + "react_devtools": { + "desc": "Enables connection to a computer running React DevTools. Changing this setting will reload Steam. Set the IP address before enabling.", + "ip_label": "IP", + "label": "Enable React DevTools" + }, + "third_party_plugins": { + "button_install": "Install", + "button_zip": "Browse", + "header": "Third-Party Plugins", + "label_desc": "URL", + "label_url": "Install Plugin from URL", + "label_zip": "Install Plugin from ZIP File" + }, + "valve_internal": { + "desc1": "Enables the Valve internal developer menu.", + "desc2": "Do not touch anything in this menu unless you know what it does.", + "label": "Enable Valve Internal" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Decky Version", + "header": "About" + }, + "beta": { + "header": "Beta participation" + }, + "developer_mode": { + "label": "Developer mode" + }, + "notifications": { + "decky_updates_label": "Decky update available", + "header": "Notifications", + "plugin_updates_label": "Plugin updates available" + }, + "other": { + "header": "Other" + }, + "updates": { + "header": "Updates" + } + }, + "SettingsIndex": { + "developer_title": "Developer", + "general_title": "General", + "plugins_title": "Plugins", + "testing_title": "Testing" + }, + "Store": { + "store_contrib": { + "desc": "If you would like to contribute to the Decky Plugin Store, check the SteamDeckHomebrew/decky-plugin-template repository on GitHub. Information on development and distribution is available in the README.", + "label": "Contributing" + }, + "store_filter": { + "label": "Filter", + "label_def": "All" + }, + "store_search": { + "label": "Search" + }, + "store_sort": { + "label": "Sort", + "label_def": "Last Updated (Newest)" + }, + "store_source": { + "desc": "All plugin source code is available on SteamDeckHomebrew/decky-plugin-database repository on GitHub.", + "label": "Source Code" + }, + "store_tabs": { + "about": "About", + "alph_asce": "Alphabetical (Z to A)", + "alph_desc": "Alphabetical (A to Z)", + "date_asce": "Oldest First", + "date_desc": "Newest First", + "downloads_asce": "Least Downloaded First", + "downloads_desc": "Most Downloaded First", + "title": "Browse" + }, + "store_testing_cta": "Please consider testing new plugins to help the Decky Loader team!", + "store_testing_warning": { + "desc": "You can use this store channel to test bleeding-edge plugin versions. Be sure to leave feedback on GitHub so the plugin can be updated for all users.", + "label": "Welcome to the Testing Store Channel" + }, + "download_progress_info": { + "start": "Initializing", + "open_zip": "Opening zip file", + "download_zip": "Downloading plugin", + "increment_count": "Incrementing download count", + "parse_zip": "Parsing zip file", + "uninstalling_previous": "Uninstalling previous copy", + "installing_plugin": "Installing plugin" + } + }, + "StoreSelect": { + "custom_store": { + "label": "Custom Store", + "url_label": "URL" + }, + "store_channel": { + "custom": "Custom", + "default": "Default", + "label": "Store Channel", + "testing": "Testing" + } + }, + "TitleView": { + "decky_store_desc": "Open Decky Store", + "settings_desc": "Open Decky Settings" + }, + "Updater": { + "decky_updates": "Decky Updates", + "no_patch_notes_desc": "no patch notes for this version", + "patch_notes_desc": "Patch Notes", + "updates": { + "check_button": "Check For Updates", + "checking": "Checking", + "cur_version": "Current version: {{ver}}", + "install_button": "Install Update", + "label": "Updates", + "lat_version": "Up to date: running {{ver}}", + "reloading": "Reloading", + "updating": "Updating" + } + }, + "Testing": { + "download": "Download", + "header": "The following versions of Decky Loader are built from open third-party Pull Requests. The Decky Loader team has not verified their functionality or security, and they may be outdated.", + "loading": "Loading open Pull Requests...", + "error": "Error Installing PR", + "start_download_toast": "Downloading PR #{{id}}" + } +} diff --git a/backend/decky_loader/locales/es-ES.json b/backend/decky_loader/locales/es-ES.json new file mode 100644 index 00000000..6c47eb06 --- /dev/null +++ b/backend/decky_loader/locales/es-ES.json @@ -0,0 +1,217 @@ +{ + "SettingsDeveloperIndex": { + "third_party_plugins": { + "button_install": "Instalar", + "button_zip": "Navegar", + "label_desc": "URL", + "label_url": "Instalar plugin desde URL", + "label_zip": "Instalar plugin desde archivo ZIP", + "header": "Plugins de terceros" + }, + "valve_internal": { + "desc2": "No toques nada en este menú a menos que sepas lo que haces.", + "label": "Activar menú interno de Valve", + "desc1": "Activa el menú interno de desarrollo de Valve." + }, + "cef_console": { + "button": "Abrir consola", + "label": "Consola CEF", + "desc": "Abre la consola del CEF. Solamente es útil para propósitos de depuración. Las cosas que hagas aquí pueden ser potencialmente peligrosas y solo se debería usar si eres un desarrollador de plugins, o uno te ha dirigido aquí." + }, + "react_devtools": { + "ip_label": "IP", + "label": "Activar DevTools de React", + "desc": "Permite la conexión a un ordenador ejecutando las DevTools de React. Cambiar este ajuste recargará Steam. Configura la dirección IP antes de activarlo." + }, + "header": "Otros" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Instalar", + "button_processing": "Instalando", + "title": "Instalar {{artifact}}", + "desc": "¿Estás seguro de que quieres instalar {{artifact}} {{version}}?" + }, + "reinstall": { + "button_idle": "Reinstalar", + "button_processing": "Reinstalando", + "desc": "¿Estás seguro de que quieres reinstalar {{artifact}} {{version}}?", + "title": "Reinstalar {{artifact}}" + }, + "update": { + "button_processing": "Actualizando", + "button_idle": "Actualizar", + "desc": "¿Estás seguro de que quieres actualizar {{artifact}} {{version}}?", + "title": "Actualizar {{artifact}}" + }, + "no_hash": "Este plugin no tiene un hash, lo estás instalando bajo tu propia responsabilidad." + }, + "Developer": { + "disabling": "Desactivando DevTools de React", + "enabling": "Activando DevTools de React", + "5secreload": "Recargando en 5 segundos" + }, + "BranchSelect": { + "update_channel": { + "prerelease": "Prelanzamiento", + "stable": "Estable", + "label": "Canal de actualización", + "testing": "Pruebas" + } + }, + "PluginCard": { + "plugin_full_access": "Este plugin tiene acceso completo a su Steam Deck.", + "plugin_install": "Instalar", + "plugin_version_label": "Versión de Plugin", + "plugin_no_desc": "No se proporcionó una descripción." + }, + "FilePickerIndex": { + "folder": { + "select": "Usar esta carpeta" + } + }, + "PluginListIndex": { + "uninstall": "Desinstalar", + "reinstall": "Reinstalar", + "reload": "Recargar", + "plugin_actions": "Acciones de plugin", + "no_plugin": "¡No hay plugins instalados!", + "update_all_one": "Actualizar 1 plugin", + "update_all_many": "Actualizar {{count}} plugins", + "update_all_other": "Actualizar {{count}} plugins", + "update_to": "Actualizar a {{name}}" + }, + "PluginLoader": { + "error": "Error", + "plugin_uninstall": { + "button": "Desinstalar", + "desc": "¿Estás seguro de que quieres desinstalar {{name}}?", + "title": "Desinstalar {{name}}" + }, + "decky_title": "Decky", + "plugin_update_one": "¡Actualización disponible para 1 plugin!", + "plugin_update_many": "¡Actualizaciones disponibles para {{count}} plugins!", + "plugin_update_other": "¡Actualizaciones disponibles para {{count}} plugins!", + "decky_update_available": "¡Actualización {{tag_name}} disponible!", + "plugin_load_error": { + "message": "Se ha producido un error al cargar el plugin {{name}}", + "toast": "Se ha producido un error al cargar {{name}}" + }, + "plugin_error_uninstall": "Al cargar {{name}} se ha producido una excepción como se muestra arriba. Esto suele significar que el plugin requiere una actualización para la nueva versión de SteamUI. Comprueba si hay una actualización disponible o valora eliminarlo en los ajustes de Decky, en la sección Plugins." + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Permitir acceso no autenticado al CEF debugger a cualquier persona en su red", + "label": "Permitir depuración remota del CEF" + } + }, + "SettingsGeneralIndex": { + "updates": { + "header": "Actualizaciones" + }, + "about": { + "header": "Acerca de", + "decky_version": "Versión de Decky" + }, + "developer_mode": { + "label": "Modo desarrollador" + }, + "beta": { + "header": "Participación en la beta" + }, + "other": { + "header": "Otros" + } + }, + "SettingsIndex": { + "developer_title": "Desarrollador", + "general_title": "General", + "plugins_title": "Plugins" + }, + "Store": { + "store_search": { + "label": "Buscar" + }, + "store_sort": { + "label": "Ordenar", + "label_def": "Actualizado por última vez (Nuevos)" + }, + "store_contrib": { + "desc": "Si desea contribuir a la tienda de plugins de Decky, mira el repositorio SteamDeckHomebrew/decky-plugin-template en GitHub. Hay información acerca del desarrollo y distribución en el archivo README.", + "label": "Contribuyendo" + }, + "store_tabs": { + "about": "Información", + "title": "Navegar", + "alph_asce": "Alfabéticamente (Z-A)", + "alph_desc": "Alfabéticamente (A-Z)" + }, + "store_testing_cta": "¡Por favor considera probar plugins nuevos para ayudar al equipo de Decky Loader!", + "store_source": { + "desc": "El código fuente de los plugins está disponible en el repositiorio SteamDeckHomebrew/decky-plugin-database en GitHub.", + "label": "Código fuente" + }, + "store_filter": { + "label_def": "Todos", + "label": "Filtrar" + } + }, + "Updater": { + "updates": { + "reloading": "Recargando", + "updating": "Actualizando", + "checking": "Buscando", + "check_button": "Buscar actualizaciones", + "install_button": "Instalar actualización", + "label": "Actualizaciones", + "lat_version": "Actualizado: ejecutando {{ver}}", + "cur_version": "Versión actual: {{ver}}" + }, + "decky_updates": "Actualizaciones de Decky", + "no_patch_notes_desc": "No hay notas de parche para esta versión", + "patch_notes_desc": "Notas de parche" + }, + "MultiplePluginsInstallModal": { + "title": { + "reinstall_one": "Reinstalar 1 plugin", + "reinstall_many": "Reinstalar {{count}} plugins", + "reinstall_other": "Reinstalar {{count}} plugins", + "update_one": "Actualizar 1 plugin", + "update_many": "Actualizar {{count}} plugins", + "update_other": "Actualizar {{count}} plugins", + "mixed_one": "Modificar 1 plugin", + "mixed_many": "Modificar {{count}} plugins", + "mixed_other": "Modificar {{count}} plugins", + "install_one": "Instalar 1 plugin", + "install_many": "Instalar {{count}} plugins", + "install_other": "Instalar {{count}} plugins" + }, + "ok_button": { + "idle": "Confirmar", + "loading": "Trabajando" + }, + "confirm": "¿Estás seguro de que quieres hacer las siguientes modificaciones?", + "description": { + "install": "Instalar {{name}} {{version}}", + "update": "Actualizar {{name}} a {{version}}", + "reinstall": "Reinstalar {{name}} {{version}}" + } + }, + "StoreSelect": { + "custom_store": { + "url_label": "URL", + "label": "Tienda personalizada" + }, + "store_channel": { + "custom": "Personalizada", + "default": "Por defecto", + "label": "Canál de la tienda", + "testing": "Pruebas" + } + }, + "PluginView": { + "hidden_one": "", + "hidden_many": "", + "hidden_other": "" + } +} diff --git a/backend/decky_loader/locales/fi-FI.json b/backend/decky_loader/locales/fi-FI.json new file mode 100644 index 00000000..b0ff1309 --- /dev/null +++ b/backend/decky_loader/locales/fi-FI.json @@ -0,0 +1,260 @@ +{ + "BranchSelect": { + "update_channel": { + "prerelease": "Esijulkaisu", + "testing": "Testiversio", + "stable": "Vakaa versio", + "label": "Päivityskanava" + } + }, + "Developer": { + "5secreload": "Uudelleenladataan 5 sekunin kuluttua", + "disabling": "Poistetaan React DevTools käytöstä", + "enabling": "Otetaan React DevTools käyttöön" + }, + "FilePickerError": { + "errors": { + "perm_denied": "Sinulla ei ole käyttöoikeutta määritettyyn hakemistoon. Tarkista, onko käyttäjälläsi (käyttäjä 'deck' Steam Deckillä) vastaavat oikeudet käyttää määritettyä kansiota/tiedostoa.", + "unknown": "Tapahtui tuntematon virhe. Raaka virhe on: {{raw_error}}", + "file_not_found": "Määritetty polku ei kelpaa. Tarkista se ja kirjoita se uudelleen oikein." + } + }, + "FilePickerIndex": { + "file": { + "select": "Valitse tämä tiedosto" + }, + "files": { + "all_files": "Kaikki tiedostot", + "file_type": "Tiedostotyyppi", + "show_hidden": "Näytä piilotetut tiedostot" + }, + "filter": { + "created_desc": "Luotu (uusin ensin)", + "modified_asce": "Muokattu (vanhin)", + "modified_desc": "Muokattu (uusin)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Koko (pienin ensin)", + "size_desc": "Koko (suurin ensin)", + "created_asce": "Luotu (vanhin ensin)" + }, + "folder": { + "label": "Kansio", + "select": "Käytä tätä kansiota", + "show_more": "Näytä lisää tiedostoja" + } + }, + "MultiplePluginsInstallModal": { + "confirm": "Haluatko varmasti tehdä seuraavat muutokset?", + "description": { + "reinstall": "Uudelleenasenna {{name}} {{version}}", + "update": "Päivitä {{name}} versioon {{version}}", + "install": "Asenna {{name}} {{version}}" + }, + "ok_button": { + "idle": "Vahvista", + "loading": "Ladataan" + }, + "title": { + "install_one": "Asenna yksi laajennus", + "install_other": "Asenna {{count}} laajennusta", + "update_one": "Päivitä yksi laajennus", + "update_other": "Päivitä {{count}} laajennusta", + "mixed_one": "Muuta yhtä laajennusta", + "mixed_other": "Muuta {{count}} laajennusta", + "reinstall_one": "Uudelleenasenna yksi laajennus", + "reinstall_other": "Uudelleenasenna {{count}} laajennusta" + } + }, + "PluginCard": { + "plugin_install": "Asenna", + "plugin_no_desc": "Ei kuvausta.", + "plugin_version_label": "Laajennuksen versio", + "plugin_full_access": "Tällä laajennuksella on täysi pääsy Steam Deckkiisi." + }, + "PluginInstallModal": { + "install": { + "button_idle": "Asenna", + "button_processing": "Asennetaan", + "desc": "Haluatko varmasti asentaa {{artifact}} {{version}}?", + "title": "Asenna {{artifact}}" + }, + "no_hash": "Tällä laajennuksella ei ole hashia, asennat sen omalla vastuullasi.", + "reinstall": { + "button_idle": "Uudelleenasenna", + "button_processing": "Uudelleenasennetaan", + "desc": "Haluatko varmasti uudelleenasentaa {{artifact}} {{version}}?", + "title": "Uudelleenasenna {{artifact}}" + }, + "update": { + "button_idle": "Päivitä", + "button_processing": "Päivitetään", + "desc": "Haluatko varmasti päivittää {{artifact}} {{version}}?", + "title": "Päivitä {{artifact}}" + } + }, + "DropdownMultiselect": { + "button": { + "back": "Takaisin" + } + }, + "PluginListIndex": { + "no_plugin": "Ei asennettuja laajennuksia!", + "plugin_actions": "Laajennustoiminnot", + "reinstall": "Uudelleenasenna", + "reload": "Lataa uudelleen", + "uninstall": "Poista asennus", + "update_all_one": "Päivitä yksi laajennus", + "update_all_other": "Päivitä {{count}} laajennusta", + "update_to": "Päivitä versioon {{name}}", + "hide": "Pikavalikko: Piilota", + "show": "Pikavalikko: Näytä" + }, + "PluginListLabel": { + "hidden": "Piilotettu pikavalikosta" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "Päivitys versioon {{tag_name}} on saatavilla!", + "error": "Virhe", + "plugin_load_error": { + "message": "Virhe ladattaessa {{name}}-laajennusta", + "toast": "Virhe ladattaessa {{name}}" + }, + "plugin_uninstall": { + "button": "Poista asennus", + "desc": "Haluatko varmasti poistaa {{name}} asennuksen?", + "title": "Poista {{name}}" + }, + "plugin_update_one": "Päivityksiä saatavilla yhdelle laajennukselle!", + "plugin_update_other": "Päivityksiä saatavilla {{count}} laajennukselle!", + "plugin_error_uninstall": "{{name}} lataaminen aiheutti yllä olevan poikkeuksen. Tämä tarkoittaa yleensä sitä, että laajennus vaatii päivityksen uudelle SteamUI-versiolle. Tarkista, onko päivitystä saatavilla, tai harkitse laajennuksen poistoa Decky-asetuksista, laajennukset-osiosta." + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Salli todentamaton pääsy CEF-debuggeriin kenelle tahansa verkossasi", + "label": "Salli CEF-etädebugaus" + } + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Avaa konsoli", + "desc": "Avaa CEF-konsolin. Hyödyllinen vain debugaustarkoituksiin. Täällä olevat jutut ovat mahdollisesti vaarallisia, ja niitä tulisi käyttää vain, jos olet laajennuksen kehittäjä tai jos kehittäjä on ohjannut sinut tänne.", + "label": "CEF-konsoli" + }, + "header": "Muu", + "react_devtools": { + "desc": "Mahdollistaa yhteyden tietokoneeseen, jossa on käytössä React DevTools. Tämän asetuksen muuttaminen lataa Steamin uudelleen. Aseta IP-osoite ennen käyttöönottoa.", + "ip_label": "IP-osoite", + "label": "Ota React DevTools käyttöön" + }, + "third_party_plugins": { + "button_install": "Asenna", + "button_zip": "Selaa", + "header": "Kolmannen osapuolen laajennukset", + "label_desc": "URL-osoite", + "label_zip": "Asenna laajennus ZIP-tiedostosta", + "label_url": "Asenna laajennus URL-osoitteesta" + }, + "valve_internal": { + "desc2": "Älä koske mihinkään tässä valikossa, ellet tiedä mitä se tekee.", + "label": "Ota Valve Internal käyttöön", + "desc1": "Ottaa käyttöön Valven sisäisen kehittäjävalikon." + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Decky-versio", + "header": "Tietoja" + }, + "beta": { + "header": "Beta-osallistuminen" + }, + "developer_mode": { + "label": "Kehittäjätila" + }, + "notifications": { + "decky_updates_label": "Decky-päivitys saatavilla", + "header": "Ilmoitukset", + "plugin_updates_label": "Laajennuspäivityksiä saatavilla" + }, + "other": { + "header": "Muu" + }, + "updates": { + "header": "Päivitykset" + } + }, + "SettingsIndex": { + "developer_title": "Kehittäjä", + "general_title": "Yleinen", + "plugins_title": "Laajennukset" + }, + "Store": { + "store_contrib": { + "label": "Osallistuminen", + "desc": "Mikäli haluat julkaista Decky Plugin Storeen, tarkista GitHubin SteamDeckHomebrew/decky-plugin-template -esimerkkitietovarasto. Tietoa kehityksestä ja jakelusta löytyy README:stä." + }, + "store_filter": { + "label": "Suodin", + "label_def": "Kaikki" + }, + "store_search": { + "label": "Hae" + }, + "store_sort": { + "label": "Järjestä", + "label_def": "Viimeksi päivitetty (uusin ensin)" + }, + "store_source": { + "desc": "Kaikken laajennusten lähdekoodit ovat saatavilla SteamDeckHomebrew/decky-plugin-database -arkistosta GitHubissa.", + "label": "Lähdekoodi" + }, + "store_tabs": { + "about": "Tietoja", + "alph_asce": "Aakkosjärjestyksessä (Z–A)", + "alph_desc": "Aakkosjärjestyksessä (A–Z)", + "title": "Selaa" + }, + "store_testing_cta": "Harkitse uusien lisäosien testaamista auttaaksesi Decky Loader -tiimiä!", + "store_testing_warning": { + "label": "Tervetuloa testausmyymälä-kanavalle", + "desc": "Voit käyttää tätä myymäläkanavaa testataksesi uusimpia laajennusversioita. Muista jättää palautetta GitHubissa, jotta laajennus voidaan päivittää kaikille käyttäjille." + } + }, + "StoreSelect": { + "custom_store": { + "label": "Mukautettu myymälä", + "url_label": "URL-osoite" + }, + "store_channel": { + "custom": "Mukautettu", + "default": "Oletus", + "label": "Myymäläkanava", + "testing": "Testaus" + } + }, + "TitleView": { + "decky_store_desc": "Avaa Decky-myymälä", + "settings_desc": "Avaa Decky-asetukset" + }, + "Updater": { + "decky_updates": "Decky-päivitykset", + "no_patch_notes_desc": "tälle versiolle ei ole korjausmerkintöjä", + "patch_notes_desc": "Korjausmerkinnät", + "updates": { + "check_button": "Tarkista päivitykset", + "checking": "Tarkistetaan", + "cur_version": "Nykyinen versio: {{ver}}", + "install_button": "Asenna päivitys", + "label": "Päivitykset", + "lat_version": "Ajan tasalla: versio {{ver}}", + "reloading": "Uudelleenladataan", + "updating": "Päivitetään" + } + }, + "PluginView": { + "hidden_one": "Yksi laajennus on piilotettu tästä luettelosta", + "hidden_other": "{{count}} laajennusta on piilotettu tästä luettelosta" + } +} diff --git a/backend/decky_loader/locales/fr-FR.json b/backend/decky_loader/locales/fr-FR.json new file mode 100644 index 00000000..d3f37b9c --- /dev/null +++ b/backend/decky_loader/locales/fr-FR.json @@ -0,0 +1,277 @@ +{ + "SettingsDeveloperIndex": { + "react_devtools": { + "desc": "Permet la connexion à un ordinateur exécutant React DevTools. Changer ce paramètre rechargera Steam. Définissez l'adresse IP avant l'activation.", + "ip_label": "IP", + "label": "Activer React DevTools" + }, + "third_party_plugins": { + "button_install": "Installer", + "button_zip": "Parcourir", + "header": "Plugins tiers", + "label_desc": "URL", + "label_url": "Installer le plugin à partir d'un URL", + "label_zip": "Installer le plugin à partir d'un fichier ZIP" + }, + "valve_internal": { + "desc1": "Active le menu développeur interne de Valve.", + "desc2": "Ne touchez à rien dans ce menu à moins que vous ne sachiez ce qu'il fait.", + "label": "Activer Valve Internal" + }, + "cef_console": { + "button": "Ouvrir la console", + "label": "CEF Console", + "desc": "Ouvre la console CEF. Utile uniquement à des fins de débogage. Les éléments présentés ici sont potentiellement dangereux et ne doivent être utilisés que si vous êtes un développeur de plugins ou si vous êtes dirigé ici par un de ces développeurs." + }, + "header": "Autre" + }, + "BranchSelect": { + "update_channel": { + "prerelease": "Avant-première", + "label": "Canal de mise à jour", + "stable": "Stable", + "testing": "Test" + } + }, + "StoreSelect": { + "store_channel": { + "label": "Canal du Plugin Store", + "testing": "Test", + "custom": "Personnalisé", + "default": "Par défaut" + }, + "custom_store": { + "label": "Plugin Store personnalisé", + "url_label": "URL" + } + }, + "Updater": { + "decky_updates": "Mises à jour de Decky", + "no_patch_notes_desc": "pas de notes de mise à jour pour cette version", + "patch_notes_desc": "Notes de mise à jour", + "updates": { + "check_button": "Chercher les mises à jour", + "checking": "Recherche", + "cur_version": "Version actuelle: {{ver}}", + "install_button": "Installer la mise à jour", + "label": "Mises à jour", + "lat_version": "À jour: version {{ver}}", + "reloading": "Rechargement", + "updating": "Mise à jour en cours" + } + }, + "Developer": { + "5secreload": "Rechargement dans 5 secondes", + "disabling": "Désactivation des React DevTools", + "enabling": "Activation des React DevTools" + }, + "FilePickerIndex": { + "folder": { + "select": "Utiliser ce dossier", + "label": "Dossier", + "show_more": "Afficher plus de fichiers" + }, + "files": { + "show_hidden": "Afficher les fichiers cachés", + "all_files": "Tout les fichiers", + "file_type": "Type de fichier" + }, + "file": { + "select": "Sélectionner ce fichier" + }, + "filter": { + "created_desc": "Création (Plus récent)", + "modified_asce": "Modifié (Plus vieux)", + "modified_desc": "Modifié (Plus récent)", + "created_asce": "Création (Plus vieux)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Taille (Plus petit)", + "size_desc": "Taille (Plus grand)" + } + }, + "PluginCard": { + "plugin_full_access": "Ce plugin a un accès complet à votre Steam Deck.", + "plugin_install": "Installer", + "plugin_no_desc": "Aucune description fournie.", + "plugin_version_label": "Version du plugin" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Installer", + "button_processing": "Installation en cours", + "title": "Installer {{artifact}}", + "desc": "Êtes-vous sûr de vouloir installer {{artifact}} {{version}} ?" + }, + "no_hash": "Ce plugin n'a pas de somme de contrôle, vous l'installez à vos risques et périls.", + "reinstall": { + "button_idle": "Réinstaller", + "button_processing": "Réinstallation en cours", + "desc": "Êtes-vous sûr de vouloir réinstaller {{artifact}} {{version}} ?", + "title": "Réinstaller {{artifact}}" + }, + "update": { + "button_idle": "Mettre à jour", + "button_processing": "Mise à jour", + "title": "Mettre à jour {{artifact}}", + "desc": "Êtes-vous sûr de vouloir mettre à jour {{artifact}} {{version}} ?" + } + }, + "PluginListIndex": { + "plugin_actions": "Plugin Actions", + "reinstall": "Réinstaller", + "reload": "Recharger", + "uninstall": "Désinstaller", + "update_to": "Mettre à jour vers {{name}}", + "no_plugin": "Aucun plugin installé !", + "update_all_one": "Mettre à jour 1 plugin", + "update_all_many": "Mettre à jour {{count}} plugins", + "update_all_other": "Mettre à jour {{count}} plugins", + "show": "Accès Rapide : Afficher", + "hide": "Accès rapide : Cacher", + "unfreeze": "Autoriser les mises à jour", + "freeze": "Geler les mises à jour" + }, + "PluginLoader": { + "decky_title": "Decky", + "error": "Erreur", + "plugin_error_uninstall": "Allez sur {{name}} dans le menu de Decky si vous voulez désinstaller ce plugin.", + "plugin_load_error": { + "message": "Erreur lors du chargement du plugin {{name}}", + "toast": "Erreur lors du chargement de {{name}}" + }, + "decky_update_available": "Mise à jour vers {{tag_name}} disponible !", + "plugin_uninstall": { + "button": "Désinstaller", + "title": "Désinstaller {{name}}", + "desc": "Êtes-vous sûr.e de vouloir désinstaller {{name}} ?" + }, + "plugin_update_one": "Mise à jour disponible pour 1 plugin !", + "plugin_update_many": "Mises à jour disponible pour {{count}} plugins !", + "plugin_update_other": "Mises à jour disponible pour {{count}} plugins !" + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Autoriser l'accès non authentifié au débogueur CEF à toute personne de votre réseau", + "label": "Autoriser le débogage CEF à distance" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Version de Decky", + "header": "À propos" + }, + "beta": { + "header": "Participation à la Bêta" + }, + "developer_mode": { + "label": "Mode développeur" + }, + "other": { + "header": "Autre" + }, + "updates": { + "header": "Mises à jour" + }, + "notifications": { + "decky_updates_label": "Mise à jour Decky disponible", + "header": "Notifications", + "plugin_updates_label": "Mises à jour du plugin disponibles" + } + }, + "SettingsIndex": { + "developer_title": "Développeur", + "general_title": "Général", + "plugins_title": "Plugins", + "testing_title": "Essai" + }, + "Store": { + "store_contrib": { + "desc": "Si vous souhaitez contribuer au Decky Plugin Store, consultez le dépôt SteamDeckHomebrew/decky-plugin-template sur GitHub. Des informations sur le développement et la distribution sont disponibles dans le fichier README.", + "label": "Contributions" + }, + "store_filter": { + "label": "Filtrer", + "label_def": "Tous" + }, + "store_search": { + "label": "Rechercher" + }, + "store_sort": { + "label": "Trier", + "label_def": "Mises à jour (Plus récentes)" + }, + "store_source": { + "desc": "Tout le code source des plugins est disponible sur le dépôt SteamDeckHomebrew/decky-plugin-database sur GitHub.", + "label": "Code Source" + }, + "store_tabs": { + "about": "À propos", + "alph_asce": "Alphabétique (Z à A)", + "alph_desc": "Alphabétique (A à Z)", + "title": "Explorer", + "date_asce": "Plus ancien en premier", + "date_desc": "Le plus récent d'abord", + "downloads_asce": "Le moins téléchargé en premier", + "downloads_desc": "Les plus téléchargés en premier" + }, + "store_testing_cta": "Pensez à tester de nouveaux plugins pour aider l'équipe Decky Loader !", + "store_testing_warning": { + "label": "Bienvenue sur la chaîne du magasin de tests", + "desc": "Vous pouvez utiliser cette chaîne de magasin pour tester des versions de plugins. Assurez-vous de laisser des commentaires sur GitHub afin que le plugin puisse être mis à jour pour tous les utilisateurs." + } + }, + "PluginView": { + "hidden_one": "1 plugin est masqué dans cette liste", + "hidden_many": "{{count}} plugins sont masqués de cette liste", + "hidden_other": "{{count}} plugins sont masqués de cette liste" + }, + "MultiplePluginsInstallModal": { + "title": { + "reinstall_one": "Réinstaller 1 plugin", + "reinstall_many": "Réinstaller {{count}} plugins", + "reinstall_other": "Réinstaller {{count}} plugins", + "install_one": "Installer 1 plugin", + "install_many": "Installer {{count}} plugins", + "install_other": "Installer {{count}} plugins", + "mixed_one": "Modifier {{count}} plugin", + "mixed_many": "Modifier {{count}} plugins", + "mixed_other": "Modifier {{count}} plugins", + "update_one": "Mettre à jour 1 plugin", + "update_many": "Mettre à jour {{count}} plugins", + "update_other": "Mettre à jour {{count}} plugins" + }, + "confirm": "Êtes-vous sûr de vouloir apporter les modifications suivantes ?", + "description": { + "install": "Installer {{name}} {{version}}", + "update": "Mettre à jour {{name}} à {{version}}", + "reinstall": "Réinstaller {{name}} {{version}}" + }, + "ok_button": { + "idle": "Confirmer", + "loading": "En cours" + } + }, + "PluginListLabel": { + "hidden": "Caché du menu d'accès rapide" + }, + "FilePickerError": { + "errors": { + "perm_denied": "Vous n'avez pas accès au dossier spécifié. Veuillez vérifier que votre utilisateur (deck sur un Steam Deck) possède les permissions requises pour accéder au dossier/fichier spécifié.", + "file_not_found": "Le chemin spécifié n'est pas valide. Veuillez vérifier et essayer à nouveau.", + "unknown": "Une erreur inconnue est survenue. L'erreur est : {{raw_error}}" + } + }, + "DropdownMultiselect": { + "button": { + "back": "Retour" + } + }, + "TitleView": { + "decky_store_desc": "Ouvrir le magasin Decky", + "settings_desc": "Ouvrir les paramètres de Decky" + }, + "Testing": { + "download": "Télécharger" + } +} diff --git a/backend/decky_loader/locales/it-IT.json b/backend/decky_loader/locales/it-IT.json new file mode 100644 index 00000000..26bf39fd --- /dev/null +++ b/backend/decky_loader/locales/it-IT.json @@ -0,0 +1,277 @@ +{ + "BranchSelect": { + "update_channel": { + "label": "Canale di aggiornamento", + "prerelease": "Prerilascio", + "stable": "Stabile", + "testing": "In prova" + } + }, + "Developer": { + "5secreload": "Ricarico tra 5 secondi", + "disabling": "Disabilito i tools di React", + "enabling": "Abilito i tools di React" + }, + "DropdownMultiselect": { + "button": { + "back": "Indietro" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "Il percorso specificato non è valido. Controllalo e prova a reinserirlo di nuovo.", + "unknown": "È avvenuto un'errore sconosciuto. L'errore segnalato è {{raw_error}}", + "perm_denied": "Il tuo utente non ha accesso alla directory specificata. Verifica se l'utente corrente (è deck su Steam Deck di default) ha i permessi corrispondenti per accedere alla cartella/file desiderato." + } + }, + "FilePickerIndex": { + "file": { + "select": "Seleziona questo file" + }, + "files": { + "all_files": "Tutti i file", + "file_type": "Tipo di file", + "show_hidden": "Mostra nascosti" + }, + "filter": { + "created_asce": "Creazione (meno recente)", + "created_desc": "Creazione (più recente)", + "modified_asce": "Modifica (meno recente)", + "modified_desc": "Modifica (più recente)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Dimensione (più piccolo)", + "size_desc": "Dimensione (più grande)" + }, + "folder": { + "label": "Cartella", + "select": "Usa questa cartella", + "show_more": "Mostra più file" + } + }, + "MultiplePluginsInstallModal": { + "confirm": "Sei sicuro di voler effettuare le modifiche seguenti?", + "description": { + "install": "Installa {{name}} {{version}}", + "reinstall": "Reinstalla {{name}} {{version}}", + "update": "Aggiorna {{name}} alla versione {{version}}" + }, + "ok_button": { + "idle": "Conferma", + "loading": "Elaboro" + }, + "title": { + "install_one": "Installa un plugin", + "install_many": "Installa {{count}} plugins", + "install_other": "Installa {{count}} plugins", + "mixed_one": "Modifica un plugin", + "mixed_many": "Modifica {{count}} plugins", + "mixed_other": "Modifica {{count}} plugins", + "reinstall_one": "Reinstalla un plugin", + "reinstall_many": "Reinstalla {{count}} plugins", + "reinstall_other": "Reinstalla {{count}} plugins", + "update_one": "Aggiorna un plugin", + "update_many": "Aggiorna {{count}} plugins", + "update_other": "Aggiorna {{count}} plugins" + } + }, + "PluginCard": { + "plugin_full_access": "Questo plugin ha accesso completo al tuo Steam Deck.", + "plugin_install": "Installa", + "plugin_no_desc": "Nessuna descrizione fornita.", + "plugin_version_label": "Versione Plugin" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Installa", + "button_processing": "Installando", + "desc": "Sei sicuro di voler installare {{artifact}} {{version}}?", + "title": "Installa {{artifact}}" + }, + "no_hash": "Questo plugin non ha un hash associato, lo stai installando a tuo rischio e pericolo.", + "reinstall": { + "button_idle": "Reinstalla", + "button_processing": "Reinstallando", + "desc": "Sei sicuro di voler reinstallare {{artifact}} {{version}}?", + "title": "Reinstalla {{artifact}}" + }, + "update": { + "button_idle": "Aggiorna", + "button_processing": "Aggiornando", + "desc": "Sei sicuro di voler aggiornare {{artifact}} {{version}}?", + "title": "Aggiorna {{artifact}}" + } + }, + "PluginListIndex": { + "hide": "Accesso rapido: Nascondi", + "no_plugin": "Nessun plugin installato!", + "plugin_actions": "Operazioni sui plugins", + "reinstall": "Reinstalla", + "reload": "Ricarica", + "show": "Accesso rapido: Mostra", + "uninstall": "Rimuovi", + "update_all_one": "Aggiorna un plugin", + "update_all_many": "Aggiorna {{count}} plugins", + "update_all_other": "Aggiorna {{count}} plugins", + "update_to": "Aggiorna a {{name}}", + "unfreeze": "Permetti aggiornamenti", + "freeze": "Congela aggiornamenti" + }, + "PluginListLabel": { + "hidden": "Nascosto dal menu di accesso rapido" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "Disponibile aggiornamento a {{tag_name}}!", + "error": "Errore", + "plugin_error_uninstall": "Il plugin {{name}} ha causato un'eccezione che è descritta sopra. Questo tipicamente significa che il plugin deve essere aggiornato per funzionare sulla nuova versione di SteamUI. Controlla se è disponibile un aggiornamento o valutane la rimozione andando nelle impostazioni di Decky nella sezione Plugins.", + "plugin_load_error": { + "message": "Errore caricando il plugin {{name}}", + "toast": "Errore caricando {{name}}" + }, + "plugin_uninstall": { + "button": "Rimuovi", + "desc": "Sei sicuro di voler rimuovere {{name}}?", + "title": "Rimuovi {{name}}" + }, + "plugin_update_one": "Aggiornamento disponibile per 1 plugin!", + "plugin_update_many": "Aggiornamenti disponibili per {{count}} plugins!", + "plugin_update_other": "Aggiornamenti disponibili per {{count}} plugins!" + }, + "PluginView": { + "hidden_one": "Un plugin è nascosto dalla lista", + "hidden_many": "Sono nascosti {{count}} plugin dalla lista", + "hidden_other": "Sono nascosti {{count}} plugin dalla lista" + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Permetti l'accesso non autenticato al debugger di CEF da tutti gli indirizzi sulla tua rete locale", + "label": "Permetti il debug remoto di CEF" + } + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Apri la console", + "desc": "Apri la console di CEF. Utile solamente per ragioni di debug. Questa opzione deve essere usata solo se sei uno sviluppatore di plugin o se uno di questi ti ha chiesto di farlo, visto che questa feature potrebbe essere potenzialmente pericolosa.", + "label": "Console CEF" + }, + "header": "Altro", + "react_devtools": { + "desc": "Abilita la connessione ad un computer che esegue i DevTools di React. Steam verrà ricaricato se lo stato cambia. Imposta il tuo indirizzo IP prima di abilitarlo.", + "ip_label": "IP", + "label": "Abilita i DevTools di React" + }, + "third_party_plugins": { + "button_install": "Installa", + "button_zip": "Seleziona", + "header": "Plugin di terze parti", + "label_desc": "URL", + "label_url": "Installa plugin da un'indirizzo web", + "label_zip": "Installa plugin da un file ZIP" + }, + "valve_internal": { + "desc1": "Abilita il menu di sviluppo interno di Valve.", + "desc2": "Non toccare nulla in questo menu se non sai quello che fa.", + "label": "Abilita Menu Sviluppatore" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Versione di Decky", + "header": "Riguardo a" + }, + "beta": { + "header": "Partecipazione alla beta" + }, + "developer_mode": { + "label": "Modalità sviluppatore" + }, + "other": { + "header": "Altro" + }, + "updates": { + "header": "Aggiornamenti" + }, + "notifications": { + "header": "Notifiche", + "decky_updates_label": "Aggiornamenti di Decky", + "plugin_updates_label": "Aggiornamenti dei plugins" + } + }, + "SettingsIndex": { + "developer_title": "Sviluppatore", + "general_title": "Generali", + "plugins_title": "Plugins", + "testing_title": "Testing" + }, + "Store": { + "store_contrib": { + "desc": "Se desideri contribuire allo store di Decky, puoi trovare un template caricato su GitHub all'indirizzo SteamDeckHomebrew/decky-plugin-template. Informazioni riguardo sviluppo e distribuzione sono disponibili nel README.", + "label": "Contribuisci" + }, + "store_filter": { + "label": "Filtra", + "label_def": "Tutto" + }, + "store_search": { + "label": "Cerca" + }, + "store_sort": { + "label": "Ordina", + "label_def": "Ultimo aggiornato (Più recente)" + }, + "store_source": { + "desc": "Tutto il codice sorgente dei plugin è disponibile su GitHub all'indirizzo SteamDeckHomebrew/decky-plugin-database.", + "label": "Codice Sorgente" + }, + "store_tabs": { + "about": "Riguardo a", + "alph_asce": "Alfabetico (Z a A)", + "alph_desc": "Alfabetico (A a Z)", + "title": "Sfoglia", + "date_desc": "Per più recente", + "date_asce": "Per più vecchio", + "downloads_desc": "Per più scaricato", + "downloads_asce": "Per meno scaricato" + }, + "store_testing_cta": "Valuta la possibilità di testare nuovi plugin per aiutare il team di Decky Loader!", + "store_testing_warning": { + "label": "Benvenuto nel Negozio di Test dei Plugins", + "desc": "Puoi usare questo canale del negozio per testare versioni di plugin sperimentali. Assicurati di lasciare un feedback su Github dopo averlo testato in modo che il plugin possa essere promosso a stabile per tutti gli altri utenti o per permettere allo sviluppatore di plugin di correggere eventuali errori." + } + }, + "StoreSelect": { + "custom_store": { + "label": "Negozio custom", + "url_label": "URL" + }, + "store_channel": { + "custom": "Personalizzato", + "default": "Default", + "label": "Canale del negozio", + "testing": "In prova" + } + }, + "Updater": { + "decky_updates": "Aggiornamento di Decky", + "no_patch_notes_desc": "nessuna patch notes per questa versione", + "patch_notes_desc": "Cambiamenti", + "updates": { + "check_button": "Cerca aggiornamenti", + "checking": "Controllando", + "cur_version": "Versione attuale: {{ver}}", + "install_button": "Installa aggiornamento", + "label": "Aggiornamenti", + "lat_version": "Aggiornato. Eseguendo {{ver}}", + "reloading": "Ricaricando", + "updating": "Aggiornando" + } + }, + "TitleView": { + "settings_desc": "Apri le impostazioni di Decky", + "decky_store_desc": "Apri lo store di Decky" + }, + "Testing": { + "download": "Scarica" + } +} diff --git a/backend/decky_loader/locales/ja-JP.json b/backend/decky_loader/locales/ja-JP.json new file mode 100644 index 00000000..251807fb --- /dev/null +++ b/backend/decky_loader/locales/ja-JP.json @@ -0,0 +1,253 @@ +{ + "BranchSelect": { + "update_channel": { + "stable": "安定", + "testing": "テスト", + "label": "アップデートチャンネル", + "prerelease": "プレリリース" + } + }, + "DropdownMultiselect": { + "button": { + "back": "戻る" + } + }, + "FilePickerIndex": { + "file": { + "select": "ファイルを選択" + }, + "files": { + "all_files": "すべてのファイル", + "file_type": "ファイルタイプ", + "show_hidden": "非表示ファイルを表示する" + }, + "filter": { + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "サイズ(小さい順)", + "size_desc": "サイズ(大きい順)", + "created_asce": "作成日(古い順)", + "created_desc": "作成日(新しい順)", + "modified_asce": "更新日(古い順)", + "modified_desc": "更新日(新しい順)" + }, + "folder": { + "label": "フォルダ", + "select": "このフォルダを使用", + "show_more": "その他のファイルを表示" + } + }, + "MultiplePluginsInstallModal": { + "description": { + "install": "インストール {{name}} {{version}}", + "reinstall": "再インストール {{name}} {{version}}", + "update": "アップデート {{name}} {{version}}" + }, + "ok_button": { + "idle": "確認", + "loading": "作業中" + }, + "title": { + "install_other": "{{count}} 個のプラグインをインストール", + "mixed_other": "{{count}} 個のプラグインを修正", + "update_other": "{{count}} 個のプラグインをアップデート", + "reinstall_other": "{{count}} 個のプラグインを再インストール" + }, + "confirm": "以下の変更を加えてもよろしいですか?" + }, + "Developer": { + "enabling": "React DevToolsを有効", + "disabling": "React DevToolsを無効", + "5secreload": "5秒以内に再読み込みされます" + }, + "PluginInstallModal": { + "install": { + "button_idle": "インストール", + "title": "{{artifact}} をインストール", + "button_processing": "インストール中", + "desc": "{{artifact}} {{version}} をインストールしてもよろしいですか?" + }, + "no_hash": "このプラグインにはハッシュがありません。ご自身の責任でインストールしてください。", + "reinstall": { + "button_idle": "再インストール", + "button_processing": "再インストール中", + "desc": "{{artifact}} {{version}} を再インストールしてもよろしいですか?", + "title": "{{artifact}} を再インストール" + }, + "update": { + "button_idle": "アップデート", + "title": "{{artifact}} をアップデート", + "desc": "{{artifact}} {{version}} をアップデートしてもよろしいですか?", + "button_processing": "アップデート中" + } + }, + "PluginListIndex": { + "hide": "クイックアクセス: 非表示", + "no_plugin": "プラグインがインストールされていません!", + "reinstall": "再インストール", + "reload": "再読み込み", + "uninstall": "アンインストール", + "plugin_actions": "プラグインアクション", + "update_all_other": "{{count}} 個のプラグインをアップデート", + "show": "クイックアクセス: 表示", + "update_to": "{{name}} を更新" + }, + "PluginListLabel": { + "hidden": "クイックアクセスメニューから表示されません" + }, + "PluginLoader": { + "error": "エラー", + "plugin_load_error": { + "message": "プラグイン {{name}} の読み込みエラー", + "toast": "{{name}} の読み込みエラー" + }, + "plugin_uninstall": { + "button": "アンインストール", + "desc": "{{name}} をアンインストールしてもよろしいですか?", + "title": "{{name}} をアンインストール" + }, + "decky_title": "Decky", + "decky_update_available": "{{tag_name}} のアップデートが利用可能です!", + "plugin_update_other": "{{count}} 個のプラグインのアップデートが利用可能です!", + "plugin_error_uninstall": "{{name}} プラグインを読み込む際に上記のような例外が発生しました。 これは通常、SteamUIの最新バージョンに合ったプラグインのアップデートが必要な場合に発生します。Decky設定のプラグインセクションでアップデートがあるかどうかを確認するか、アンインストールをお試しください。" + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "コンソールを開く", + "label": "CEFコンソール", + "desc": "CEFコンソールを開きます。デバッグ目的でのみ使用してください。これらの項目は危険な可能性があるので、プラグイン開発者であるか、開発者のガイドに従う場合のみ使用する必要があります。" + }, + "react_devtools": { + "ip_label": "IP", + "label": "React DevTools を有効化", + "desc": "React DevToolsを実行しているコンピューターへの接続を有効にします。この設定を変更すると、Steam が再ロードされます。有効にする前にIPアドレスを設定してください。" + }, + "third_party_plugins": { + "button_install": "インストール", + "button_zip": "開く", + "header": "サードパーティプラグイン", + "label_desc": "URL", + "label_url": "URLからプラグインをインストール", + "label_zip": "ZIPファイルからプラグインをインストール" + }, + "valve_internal": { + "desc1": "Valveの内部開発者メニューを有効にします。", + "desc2": "このメニューの機能が分からない場合、このメニューには触れないでください。", + "label": "Valve Internalを有効" + }, + "header": "その他" + }, + "PluginView": { + "hidden_other": "{{count}} 個のプラグインがこのリストから非表示になっています" + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Deckyバージョン", + "header": "情報" + }, + "developer_mode": { + "label": "開発者モード" + }, + "notifications": { + "header": "通知", + "plugin_updates_label": "プラグインのアップデートが利用可能な場合に通知", + "decky_updates_label": "Deckyのアップデートが利用可能な場合に通知" + }, + "beta": { + "header": "ベータ版への参加" + }, + "other": { + "header": "その他" + }, + "updates": { + "header": "アップデート" + } + }, + "SettingsIndex": { + "developer_title": "開発者", + "plugins_title": "プラグイン", + "general_title": "一般" + }, + "Store": { + "store_filter": { + "label": "フィルター", + "label_def": "すべて" + }, + "store_search": { + "label": "検索" + }, + "store_sort": { + "label": "並べ替え", + "label_def": "直近のアップデート(新しい順)" + }, + "store_source": { + "desc": "すべてのプラグインのソース コードは、GitHubのSteamDeckHomebrew/decky-plugin-databaseリポジトリで入手できます。", + "label": "ソースコード" + }, + "store_tabs": { + "alph_asce": "アルファベット(Z to A)", + "alph_desc": "アルファベット(A to Z)", + "title": "閲覧", + "about": "概要" + }, + "store_testing_warning": { + "label": "テストストア チャンネルへようこそ", + "desc": "このストアチャンネルを使用して、最先端のプラグイン バージョンをテストできます。 すべてのユーザーがプラグインを更新できるように、必ずGitHubにフィードバックを残してください。" + }, + "store_contrib": { + "desc": "Decky Plugin Storeに貢献したい場合は、GitHubのSteamDeckHomebrew/decky-plugin-templateリポジトリを確認してください。 開発と配布に関する情報は README で入手できます。", + "label": "貢献" + }, + "store_testing_cta": "Decky Loaderチームを支援するために、新しいプラグインのテストを検討してください!" + }, + "StoreSelect": { + "custom_store": { + "label": "カスタムストア", + "url_label": "URL" + }, + "store_channel": { + "custom": "カスタム", + "default": "デフォルト", + "label": "ストアチャンネル", + "testing": "テスト" + } + }, + "TitleView": { + "decky_store_desc": "Deckyストアを開く", + "settings_desc": "Decky設定を開く" + }, + "Updater": { + "decky_updates": "Deckyアップデート", + "no_patch_notes_desc": "このバージョンのパッチノートはありません", + "patch_notes_desc": "パッチノート", + "updates": { + "check_button": "アップデートを確認", + "checking": "確認中", + "cur_version": "現在のバージョン: {{ver}}", + "install_button": "アップデートをインストール", + "label": "アップデート", + "lat_version": "アップデート: {{ver}} を実行中", + "reloading": "再読み込み中", + "updating": "アップデート中" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "指定されたパスは無効です。 内容をご確認の上、正しく入力し直してください。", + "unknown": "不明なエラーが発生しました。 エラー内容は次のとおりです: {{raw_error}}", + "perm_denied": "選択したパスへのアクセス権がありません。選択したフォルダ/ファイルのアクセス権がユーザー(Steam Deckのdeckユーザー)に合わせて正しく設定されていることを確認してください。" + } + }, + "PluginCard": { + "plugin_version_label": "プラグインバージョン", + "plugin_no_desc": "説明はありません。", + "plugin_full_access": "このプラグインはSteam Deckの全てのアクセス権を持ちます。", + "plugin_install": "インストール" + }, + "RemoteDebugging": { + "remote_cef": { + "label": "リモート CEF デバッグを許可する", + "desc": "ネットワーク上のすべてのユーザーにCEFデバッガへの非認証アクセスを許可します" + } + } +} diff --git a/backend/decky_loader/locales/ko-KR.json b/backend/decky_loader/locales/ko-KR.json new file mode 100644 index 00000000..b2c6dbac --- /dev/null +++ b/backend/decky_loader/locales/ko-KR.json @@ -0,0 +1,263 @@ +{ + "BranchSelect": { + "update_channel": { + "label": "업데이트 배포 채널", + "stable": "안정", + "testing": "테스트", + "prerelease": "사전 출시" + } + }, + "Developer": { + "disabling": "React DevTools 비활성화", + "enabling": "React DevTools 활성화", + "5secreload": "5초 내로 다시 로드 됩니다" + }, + "FilePickerIndex": { + "folder": { + "select": "이 폴더 사용", + "label": "폴더", + "show_more": "더 많은 파일 표시" + }, + "filter": { + "created_asce": "만든 날짜 (오름차순)", + "modified_asce": "수정한 날짜 (오름차순)", + "created_desc": "만든 날짜 (내림차 순)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "크기 (오름차순)", + "modified_desc": "수정한 날짜 (내림차순)", + "size_desc": "크기 (내림차순)" + }, + "files": { + "all_files": "모든 파일", + "show_hidden": "숨김 파일 표시", + "file_type": "파일 형식" + }, + "file": { + "select": "이 파일 선택" + } + }, + "PluginView": { + "hidden_other": "플러그인 {{count}}개 숨김" + }, + "PluginListLabel": { + "hidden": "빠른 액세스 메뉴에서 숨김" + }, + "PluginCard": { + "plugin_install": "설치", + "plugin_no_desc": "플러그인 설명이 제공되지 않았습니다.", + "plugin_version_label": "플러그인 버전", + "plugin_full_access": "이 플러그인은 Steam Deck의 모든 접근 권한을 가집니다." + }, + "PluginInstallModal": { + "install": { + "button_idle": "설치", + "button_processing": "설치 중", + "desc": "{{artifact}} {{version}}을(를) 설치하겠습니까?", + "title": "{{artifact}} 설치" + }, + "reinstall": { + "button_idle": "재설치", + "button_processing": "재설치 중", + "desc": "{{artifact}} {{version}}을(를) 재설치하겠습니까?", + "title": "{{artifact}} 재설치" + }, + "update": { + "button_idle": "업데이트", + "button_processing": "업데이트 중", + "title": "{{artifact}} 업데이트", + "desc": "{{artifact}} {{version}} 업데이트를 설치하겠습니까?" + }, + "no_hash": "이 플러그인은 해시 확인을 하지 않습니다, 설치에 따른 위험은 사용자가 감수해야 합니다." + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_other": "플러그인 {{count}}개 수정", + "update_other": "플러그인 {{count}}개 업데이트", + "reinstall_other": "플러그인 {{count}}개 재설치", + "install_other": "플러그인 {{count}}개 설치" + }, + "ok_button": { + "idle": "확인", + "loading": "작업 중" + }, + "confirm": "해당 수정을 적용하겠습니까?", + "description": { + "install": "{{name}} {{version}} 플러그인 설치", + "update": "{{name}}의 {{version}} 업데이트 설치", + "reinstall": "{{name}} {{version}} 재설치" + } + }, + "PluginListIndex": { + "plugin_actions": "플러그인 동작", + "reinstall": "재설치", + "reload": "다시 로드", + "uninstall": "설치 제거", + "show": "빠른 액세스 메뉴: 표시", + "hide": "빠른 액세스 메뉴: 숨김", + "update_all_other": "플러그인 {{count}}개 업데이트", + "no_plugin": "설치된 플러그인이 없습니다!", + "update_to": "{{name}}(으)로 업데이트", + "freeze": "업데이트 일시 중지", + "unfreeze": "업데이트 허용" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "{{tag_name}} 업데이트를 설치할 수 있습니다!", + "error": "오류", + "plugin_load_error": { + "message": "{{name}} 플러그인 불러오기 오류", + "toast": "{{name}} 불러오기 오류" + }, + "plugin_uninstall": { + "button": "설치 제거", + "desc": "{{name}}을(를) 설치 제거하겠습니까?", + "title": "{{name}} 설치 제거" + }, + "plugin_update_other": "플러그인 {{count}}개를 업데이트 할 수 있습니다!", + "plugin_error_uninstall": "{{name}} 플러그인을 불러올 때 위와 같은 예외가 발생했습니다. 이는 보통 SteamUI 최신 버전에 맞는 플러그인 업데이트가 필요할 때 발생합니다. Decky 설정의 플러그인 섹션에서 업데이트가 있는지 확인하거나 설치 제거를 시도 해 보세요." + }, + "RemoteDebugging": { + "remote_cef": { + "label": "리모트 CEF 디버그 허용", + "desc": "네트워크의 모든 사용자에게 CEF 디버거에 대한 인증되지 않은 액세스 허용" + } + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "콘솔 열기", + "label": "CEF 콘솔", + "desc": "CEF 콘솔을 엽니다. 디버그 전용입니다. 이 항목들은 위험 가능성이 있으므로 플러그인 개발자이거나 개발자의 가이드를 따를 경우에만 사용해야 합니다." + }, + "header": "기타", + "react_devtools": { + "ip_label": "IP", + "label": "React DevTools 활성화", + "desc": "React DevTools를 실행하고 있는 컴퓨터에 연결을 활성화합니다. 이 설정을 변경하면 Steam이 다시 로드됩니다. 활성화하기 전에 IP 주소를 설정하세요." + }, + "third_party_plugins": { + "button_install": "설치", + "button_zip": "검색", + "header": "서드파티 플러그인", + "label_desc": "URL", + "label_url": "URL에서 플러그인 설치", + "label_zip": "ZIP 파일에서 플러그인 설치" + }, + "valve_internal": { + "desc1": "Valve 내부 개발자 메뉴를 활성화합니다.", + "label": "Valve 내부 개발자 메뉴 활성화", + "desc2": "이 메뉴의 기능을 모른다면 어떤 것도 건드리지 마세요." + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Decky 버전", + "header": "정보" + }, + "beta": { + "header": "베타 참가" + }, + "developer_mode": { + "label": "개발자 모드" + }, + "other": { + "header": "기타" + }, + "updates": { + "header": "업데이트" + }, + "notifications": { + "header": "알림", + "plugin_updates_label": "플러그인 업데이트 가능", + "decky_updates_label": "Decky 업데이트 가능" + } + }, + "SettingsIndex": { + "developer_title": "개발자", + "general_title": "일반", + "plugins_title": "플러그인", + "testing_title": "테스트" + }, + "Store": { + "store_contrib": { + "desc": "Decky 플러그인 스토어에 기여하고 싶다면 SteamDeckHomebrew/decky-plugin-template Github 저장소를 확인하세요. 개발 및 배포에 대한 정보는 README에서 확인할 수 있습니다.", + "label": "기여하기" + }, + "store_filter": { + "label": "필터", + "label_def": "모두" + }, + "store_search": { + "label": "검색" + }, + "store_sort": { + "label": "정렬", + "label_def": "최근 업데이트 순" + }, + "store_source": { + "desc": "모든 플러그인 소스 코드는 SteamDeckHomebrew/decky-plugin-database Github 저장소에서 확인할 수 있습니다.", + "label": "소스 코드" + }, + "store_tabs": { + "about": "정보", + "alph_asce": "알파벳순 (Z-A)", + "alph_desc": "알파벳순 (A-Z)", + "title": "검색", + "downloads_asce": "다운로드 수 낮은 순", + "date_desc": "최신 순", + "date_asce": "오래된 순", + "downloads_desc": "다운로드 많은 순" + }, + "store_testing_cta": "새로운 플러그인을 테스트하여 Decky Loader 팀을 도와주세요!", + "store_testing_warning": { + "desc": "이 스토어 채널을 사용하여 가장 최신 버전의 플러그인을 테스트할 수 있습니다. GitHub에 피드백을 남겨서 모든 사용자가 업데이트 할 수 있게 해주세요.", + "label": "테스트 스토어 채널에 오신 것을 환영합니다" + } + }, + "StoreSelect": { + "custom_store": { + "label": "사용자 지정 스토어", + "url_label": "URL" + }, + "store_channel": { + "custom": "사용자 지정", + "label": "스토어 배포 채널", + "default": "기본", + "testing": "테스트" + } + }, + "Updater": { + "decky_updates": "Decky 업데이트", + "no_patch_notes_desc": "이 버전에는 패치 노트가 없습니다", + "patch_notes_desc": "패치 노트", + "updates": { + "check_button": "업데이트 확인", + "checking": "확인 중", + "cur_version": "현재 버전: {{ver}}", + "install_button": "업데이트 설치", + "label": "업데이트", + "lat_version": "최신 상태: {{ver}} 실행 중", + "reloading": "다시 로드 중", + "updating": "업데이트 중" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "지정된 경로가 잘못되었습니다. 확인 후에 다시 입력해 주세요.", + "unknown": "알 수 없는 오류가 발생했습니다. Raw 오류: {{raw_error}}", + "perm_denied": "선택한 경로에 접근 할 수 없습니다. 선택한 폴더/파일 접근 권한이 유저(Steam Deck의 deck 유저)에 맞게 올바르게 설정 되었는지 확인하세요." + } + }, + "DropdownMultiselect": { + "button": { + "back": "뒤로" + } + }, + "TitleView": { + "settings_desc": "Decky 설정 열기", + "decky_store_desc": "Decky 스토어 열기" + }, + "Testing": { + "download": "다운로드" + } +} diff --git a/backend/decky_loader/locales/nl-NL.json b/backend/decky_loader/locales/nl-NL.json new file mode 100644 index 00000000..68256c7a --- /dev/null +++ b/backend/decky_loader/locales/nl-NL.json @@ -0,0 +1,270 @@ +{ + "BranchSelect": { + "update_channel": { + "prerelease": "Prerelease", + "stable": "Stabiel", + "label": "Updatekanaal", + "testing": "Testing" + } + }, + "Developer": { + "5secreload": "Bezig met herstarten in 5 seconden", + "disabling": "Bezig met uitschakelen van React DevTools", + "enabling": "Bezig met inschakelen van React DevTools" + }, + "DropdownMultiselect": { + "button": { + "back": "Terug" + } + }, + "FilePickerError": { + "errors": { + "unknown": "Er is een onbekende fout opgetreden. De foutmelding is: {{raw_error}}", + "file_not_found": "Het opgegeven pad is niet geldig. Controleer het en voer het opnieuw correct in.", + "perm_denied": "U heeft geen toegang tot de opgegeven map. Controleer of uw gebruiker (deck op Steam Deck) de juiste permissies heeft om toegang te krijgen tot de opgegeven map/het opgegeven bestand." + } + }, + "FilePickerIndex": { + "files": { + "all_files": "Alle bestanden", + "file_type": "Bestandstype", + "show_hidden": "Verborgen bestanden tonen" + }, + "filter": { + "created_desc": "Aanmaakdatum (nieuwste)", + "modified_asce": "Gewijzigd op (oudste)", + "modified_desc": "Gewijzigd op (nieuwste)", + "name_asce": "Naam (Z-A)", + "name_desc": "Naam (A-Z)", + "size_asce": "Grootte (kleinste)", + "size_desc": "Grootte (grootste)", + "created_asce": "Aanmaakdatum (oudste)" + }, + "folder": { + "label": "Map", + "select": "Deze map gebruiken", + "show_more": "Meer bestanden tonen" + }, + "file": { + "select": "Dit bestand selecteren" + } + }, + "PluginView": { + "hidden_one": "1 plug-in is verborgen in deze lijst", + "hidden_other": "{{count}} plug-ins zijn verborgen in deze lijst" + }, + "PluginListLabel": { + "hidden": "Verborgen in snelle toegang" + }, + "PluginCard": { + "plugin_install": "Installeren", + "plugin_no_desc": "Geen beschrijving gegeven.", + "plugin_version_label": "Plug-inversie", + "plugin_full_access": "Deze plug-in heeft volledige toegang tot uw Steam Deck." + }, + "PluginInstallModal": { + "install": { + "button_idle": "Installeren", + "button_processing": "Bezig met installeren", + "title": "Installeer {{artifact}}", + "desc": "Weet je zeker dat je {{artifact}} {{version}} wilt installeren?" + }, + "no_hash": "Deze plug-in heeft geen hash, je installeert deze op eigen risico.", + "reinstall": { + "button_idle": "Opnieuw installeren", + "button_processing": "Bezig met opnieuw te installeren", + "desc": "Weet je zeker dat je {{artifact}} {{version}} opnieuw wilt installeren?", + "title": "Installeer {{artifact}} opnieuw" + }, + "update": { + "button_idle": "Bijwerken", + "button_processing": "Bezig met bijwerken", + "title": "{{artifact}} bijwerken", + "desc": "Weet je zeker dat je {{artifact}} {{version}} wilt bijwerken?" + } + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_one": "Wijzig 1 plug-in", + "mixed_other": "Wijzig {{count}} plug-ins", + "update_one": "Werk 1 plug-in bij", + "update_other": "Werk {{count}} plug-ins bij", + "install_one": "Installeer 1 plug-in", + "install_other": "Installeer {{count}} plug-ins", + "reinstall_one": "Installeer 1 plug-in opnieuw", + "reinstall_other": "Installeer {{count}} plug-ins opnieuw" + }, + "ok_button": { + "idle": "Bevestigen", + "loading": "Bezig" + }, + "confirm": "Weet je zeker dat je de volgende wijzigingen wilt aanbrengen?", + "description": { + "install": "Installeer {{name}} {{version}}", + "update": "Werk {{name}} bij naar {{version}}", + "reinstall": "Installeer {{name}} {{version}} opnieuw" + } + }, + "PluginListIndex": { + "no_plugin": "Geen plug-ins geïnstalleerd!", + "plugin_actions": "Plug-inacties", + "reload": "Herstarten", + "uninstall": "Verwijderen", + "update_to": "Bijwerken naar {{name}}", + "hide": "Verberg in snelle toegang", + "update_all_one": "Werk 1 plug-in bij", + "update_all_other": "Werk {{count}} plug-ins bij", + "reinstall": "Opnieuw installeren", + "show": "Toon in snelle toegang", + "unfreeze": "Updates toestaan", + "freeze": "Updates bevriezen" + }, + "PluginLoader": { + "decky_title": "Decky", + "error": "Fout", + "plugin_load_error": { + "message": "Fout bij het laden van plug-in {{name}}", + "toast": "Fout bij het laden van {{name}}" + }, + "plugin_uninstall": { + "button": "Verwijderen", + "desc": "Weet je zeker dat je {{name}} wilt verwijderen?", + "title": "Verwijder {{name}}" + }, + "plugin_update_one": "Updates beschikbaar voor 1 plug-in!", + "plugin_update_other": "Updates beschikbaar voor {{count}} plug-ins!", + "decky_update_available": "Update naar {{tag_name}} beschikbaar!", + "plugin_error_uninstall": "Het laden van {{name}} veroorzaakte een fout zoals hierboven weergegeven. Dit betekent meestal dat de plug-in moet worden bijgewerkt voor de nieuwe versie van SteamUI. Controleer of er een update aanwezig is of evalueer de verwijdering ervan in de Decky-instellingen, in het gedeelte Plug-ins." + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Sta ongeauthenticeerde toegang tot de CEF-debugger toe aan iedereen in uw netwerk", + "label": "Externe CEF-debugging toestaan" + } + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Console openen", + "label": "CEF-console", + "desc": "Opent de CEF-console. Alleen nuttig voor foutopsporingsdoeleinden. Dingen hier zijn potentieel gevaarlijk en mogen alleen worden gebruikt als je een ontwikkelaar van plug-ins bent, of hier door een ontwikkelaar naartoe wordt geleid." + }, + "header": "Overige", + "react_devtools": { + "ip_label": "IP-adres", + "label": "React DevTools inschakelen", + "desc": "Maakt verbinding met een computer met React DevTools mogelijk. Als je deze instelling wijzigt, wordt Steam opnieuw geladen. Stel het IP-adres in voordat je het inschakelt." + }, + "third_party_plugins": { + "header": "Plug-ins van derden", + "label_desc": "URL", + "label_url": "Installeer plug-in via een URL", + "label_zip": "Installeer plug-in via een ZIP-bestand", + "button_install": "Installeren", + "button_zip": "Bladeren" + }, + "valve_internal": { + "desc1": "Schakelt het interne ontwikkelaarsmenu van Valve in.", + "desc2": "Pas niets in dit menu aan, tenzij je weet wat het doet.", + "label": "Valve Internal inschakelen" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Decky-versie", + "header": "Over" + }, + "beta": { + "header": "Beta-deelname" + }, + "developer_mode": { + "label": "Ontwikkelaarsmodus" + }, + "other": { + "header": "Overige" + }, + "updates": { + "header": "Updates" + }, + "notifications": { + "decky_updates_label": "Wanneer er een Decky-update beschikbaar is", + "header": "Meldingen", + "plugin_updates_label": "Wanneer er plug-in-updates beschikbaar zijn" + } + }, + "SettingsIndex": { + "developer_title": "Ontwikkelaar", + "general_title": "Algemeen", + "plugins_title": "Plug-ins", + "testing_title": "Testen" + }, + "Store": { + "store_filter": { + "label": "Filter", + "label_def": "Alles" + }, + "store_search": { + "label": "Zoeken" + }, + "store_sort": { + "label": "Sorteren", + "label_def": "Laatst bijgewerkt (nieuwste)" + }, + "store_source": { + "label": "Broncode", + "desc": "Alle broncode van de plug-in is beschikbaar in de SteamDeckHomebrew/decky-plugin-database-repository op GitHub." + }, + "store_tabs": { + "about": "Over", + "alph_asce": "Alfabetisch (Z naar A)", + "alph_desc": "Alfabetisch (A naar Z)", + "title": "Bladeren", + "date_desc": "Nieuwste eerst", + "downloads_asce": "Minste gedownload eerst", + "downloads_desc": "Meeste gedownload eerst", + "date_asce": "Oudste eerst" + }, + "store_testing_cta": "Overweeg om nieuwe plug-ins te testen om het Decky Loader-team te helpen!", + "store_contrib": { + "desc": "Als je wilt bijdragen aan de Decky Plugin Store, kijk dan in de SteamDeckHomebrew/decky-plugin-template repository op GitHub. Informatie over ontwikkeling en distributie is beschikbaar in de README.", + "label": "Bijdragen" + }, + "store_testing_warning": { + "label": "Welkom bij het Testing-winkelkanaal", + "desc": "Je kunt dit winkelkanaal gebruiken om nog in ontwikkeling zijnde plug-inversies te testen. Zorg ervoor dat je feedback geeft op GitHub, zodat de plug-in voor alle gebruikers kan worden bijgewerkt." + } + }, + "StoreSelect": { + "custom_store": { + "label": "Aangepaste winkel", + "url_label": "URL" + }, + "store_channel": { + "custom": "Aangepast", + "default": "Standaard", + "label": "Winkelkanaal", + "testing": "Testing" + } + }, + "Updater": { + "patch_notes_desc": "Patch-opmerkingen", + "updates": { + "check_button": "Op updates controleren", + "checking": "Bezig met controleren op updates", + "cur_version": "Huidige versie: {{ver}}", + "install_button": "Bijwerken", + "label": "Updates", + "lat_version": "Bijwerkt: versie {{ver}}", + "reloading": "Bezig met herstarten", + "updating": "Bezig met bijwerken" + }, + "decky_updates": "Decky-updates", + "no_patch_notes_desc": "geen patch-opmerkingen voor deze versie" + }, + "TitleView": { + "decky_store_desc": "Decky Store openen", + "settings_desc": "Decky-instellingen openen" + }, + "Testing": { + "download": "Downloaden" + } +} diff --git a/backend/decky_loader/locales/pl-PL.json b/backend/decky_loader/locales/pl-PL.json new file mode 100644 index 00000000..c7cec3d7 --- /dev/null +++ b/backend/decky_loader/locales/pl-PL.json @@ -0,0 +1,277 @@ +{ + "BranchSelect": { + "update_channel": { + "testing": "Testowy", + "label": "Kanał aktualizacji", + "stable": "Stabilny", + "prerelease": "Przedpremierowy" + } + }, + "Developer": { + "enabling": "Włączanie React DevTools", + "5secreload": "Ponowne załadowanie za 5 sekund", + "disabling": "Wyłączanie React DevTools" + }, + "DropdownMultiselect": { + "button": { + "back": "Powrót" + } + }, + "FilePickerError": { + "errors": { + "perm_denied": "Nie masz dostępu do podanego katalogu. Sprawdź, czy twój użytkownik (deck na Steam Deck) ma odpowiednie uprawnienia dostępu do określonego katalogu/pliku.", + "unknown": "Wystąpił nieznany błąd. Surowy błąd to {{raw_error}}", + "file_not_found": "Podana ścieżka jest nieprawidłowa. Sprawdź ją i wprowadź ponownie poprawnie." + } + }, + "FilePickerIndex": { + "file": { + "select": "Wybierz ten plik" + }, + "files": { + "all_files": "Wszystkie pliki", + "file_type": "Typ pliku", + "show_hidden": "Pokaż ukryte pliki" + }, + "filter": { + "created_asce": "Utworzono (najstarszy)", + "created_desc": "Utworzono (najnowszy)", + "modified_asce": "Zmodyfikowany (najstarszy)", + "modified_desc": "Zmodyfikowany (najnowszy)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Rozmiar (najmniejszy)", + "size_desc": "Rozmiar (największy)" + }, + "folder": { + "label": "Katalog", + "select": "Użyj tego katalogu", + "show_more": "Pokaż więcej plików" + } + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_one": "Zmodyfikuj {{count}} plugin", + "mixed_few": "Zmodyfikuj {{count}} pluginy", + "mixed_many": "Zmodyfikuj {{count}} pluginów", + "reinstall_one": "Reinstaluj 1 plugin", + "reinstall_few": "Reinstaluj {{count}} pluginy", + "reinstall_many": "Reinstaluj {{count}} pluginów", + "install_one": "Zainstaluj 1 plugin", + "install_few": "Zainstaluj {{count}} pluginy", + "install_many": "Zainstaluj {{count}} pluginów", + "update_one": "Zaktualizuj 1 plugin", + "update_few": "Zaktualizuj {{count}} pluginy", + "update_many": "Zaktualizuj {{count}} pluginów" + }, + "confirm": "Czy na pewno chcesz wprowadzić następujące modyfikacje?", + "description": { + "install": "Zainstaluj {{name}} {{version}}", + "reinstall": "Reinstaluj {{name}} {{version}}", + "update": "Zaktualizuj {{name}} do {{version}}" + }, + "ok_button": { + "idle": "Potwierdź", + "loading": "W toku" + } + }, + "PluginCard": { + "plugin_install": "Zainstaluj", + "plugin_no_desc": "Brak opisu.", + "plugin_version_label": "Wersja pluginu", + "plugin_full_access": "Ten plugin ma pełny dostęp do twojego Steam Decka." + }, + "PluginInstallModal": { + "install": { + "button_idle": "Zainstaluj", + "button_processing": "Instalowanie", + "desc": "Czy na pewno chcesz zainstalować {{artifact}} {{version}}?", + "title": "Zainstaluj {{artifact}}" + }, + "reinstall": { + "button_idle": "Reinstaluj", + "button_processing": "Reinstalowanie", + "desc": "Czy na pewno chcesz ponownie zainstalować {{artifact}} {{version}}?", + "title": "Reinstaluj {{artifact}}" + }, + "update": { + "button_idle": "Aktualizacja", + "button_processing": "Aktualizowanie", + "desc": "Czy na pewno chcesz zaktualizować {{artifact}} {{version}}?", + "title": "Zaktualizuj {{artifact}}" + }, + "no_hash": "Ten plugin nie ma hasha, instalujesz go na własne ryzyko." + }, + "PluginListIndex": { + "hide": "Szybki dostęp: Ukryj", + "no_plugin": "Brak zainstalowanych pluginów!", + "reload": "Załaduj ponownie", + "update_all_one": "Zaktualizuj 1 plugin", + "update_all_few": "Zaktualizuj {{count}} pluginy", + "update_all_many": "Zaktualizuj {{count}} pluginów", + "plugin_actions": "Akcje pluginów", + "reinstall": "Reinstalacja", + "show": "Szybki dostęp: Pokaż", + "uninstall": "Odinstaluj", + "update_to": "Zaktualizuj do {{name}}", + "unfreeze": "Odblokuj aktualizacje", + "freeze": "Zablokuj aktualizacje" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "Dostępna aktualizacja do {{tag_name}}!", + "error": "Błąd", + "plugin_error_uninstall": "Ładowanie {{name}} spowodowało wyjątek, jak pokazano powyżej. Zwykle oznacza to, że plugin wymaga aktualizacji do nowej wersji SteamUI. Sprawdź, czy aktualizacja jest obecna lub rozważ usunięcie go w ustawieniach Decky, w sekcji Pluginy.", + "plugin_load_error": { + "message": "Błąd ładowania plugin {{name}}", + "toast": "Błąd ładowania {{name}}" + }, + "plugin_uninstall": { + "button": "Odinstaluj", + "title": "Odinstaluj {{name}}", + "desc": "Czy na pewno chcesz odinstalować {{name}}?" + }, + "plugin_update_one": "Aktualizacje dostępne dla 1 pluginu!", + "plugin_update_few": "Aktualizacje dostępne dla {{count}} pluginów!", + "plugin_update_many": "Aktualizacje dostępne dla {{count}} pluginów!" + }, + "PluginListLabel": { + "hidden": "Ukryty w menu szybkiego dostępu" + }, + "PluginView": { + "hidden_one": "1 plugin jest ukryty na tej liście", + "hidden_few": "{{count}} pluginy jest ukryty na tej liście", + "hidden_many": "{{count}} pluginów jest ukryty na tej liście" + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Zezwalaj na nieuwierzytelniony dostęp do debugera CEF wszystkim osobom w Twojej sieci", + "label": "Zezwól na zdalne debugowanie CEF" + } + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Otwórz konsolę", + "desc": "Otwiera konsolę CEF. Przydatne tylko do celów debugowania. Rzeczy tutaj są potencjalnie niebezpieczne i powinny być używane tylko wtedy, gdy jesteś twórcą wtyczek lub zostałeś tu przez kogoś skierowany.", + "label": "Konsola CEF" + }, + "header": "Inne", + "react_devtools": { + "desc": "Umożliwia połączenie z komputerem z uruchomionym React DevTools. Zmiana tego ustawienia spowoduje ponowne załadowanie Steam. Ustaw adres IP przed włączeniem.", + "ip_label": "IP", + "label": "Włącz React DevTools" + }, + "third_party_plugins": { + "button_install": "Zainstaluj", + "button_zip": "Przeglądaj", + "header": "Pluginy zewnętrzne", + "label_desc": "URL", + "label_url": "Zainstaluj plugin z adresu URL", + "label_zip": "Zainstaluj plugin z pliku ZIP" + }, + "valve_internal": { + "desc1": "Włącza wewnętrzne menu programisty Valve.", + "desc2": "Nie dotykaj niczego w tym menu, chyba że wiesz, co robi.", + "label": "Włącz Valve Internal" + } + }, + "SettingsGeneralIndex": { + "notifications": { + "decky_updates_label": "Dostępna aktualizacja Decky", + "header": "Powiadomienia", + "plugin_updates_label": "Dostępne aktualizacje pluginów" + }, + "other": { + "header": "Inne" + }, + "updates": { + "header": "Aktualizacje" + }, + "about": { + "header": "Informacje", + "decky_version": "Wersja Decky" + }, + "beta": { + "header": "Udział w becie" + }, + "developer_mode": { + "label": "Tryb dewelopera" + } + }, + "SettingsIndex": { + "developer_title": "Deweloper", + "general_title": "Ogólne", + "plugins_title": "Pluginy", + "testing_title": "Testowanie" + }, + "Store": { + "store_contrib": { + "desc": "Jeśli chcesz przyczynić się do rozwoju Decky Plugin Store, sprawdź repozytorium SteamDeckHomebrew/decky-plugin-template na GitHub. Informacje na temat rozwoju i dystrybucji są dostępne w pliku README.", + "label": "Współtworzenie" + }, + "store_filter": { + "label": "Filtr", + "label_def": "Wszystko" + }, + "store_search": { + "label": "Szukaj" + }, + "store_sort": { + "label": "Sortowanie", + "label_def": "Ostatnia aktualizacja (najnowsza)" + }, + "store_source": { + "desc": "Cały kod źródłowy pluginów jest dostępny w repozytorium SteamDeckHomebrew/decky-plugin-database na GitHub.", + "label": "Kod źródłowy" + }, + "store_tabs": { + "alph_asce": "Alfabetycznie (od Z do A)", + "alph_desc": "Alfabetycznie (od A do Z)", + "title": "Przeglądaj", + "about": "Informacje", + "date_desc": "Od najnowszych", + "downloads_desc": "Najwięcej pobrań", + "downloads_asce": "Najmniej pobrań", + "date_asce": "Od najstarszych" + }, + "store_testing_cta": "Rozważ przetestowanie nowych pluginów, aby pomóc zespołowi Decky Loader!", + "store_testing_warning": { + "label": "Witamy w Testowym Kanale Sklepu", + "desc": "Możesz użyć tego kanału sklepu do testowania najnowszych wersji pluginów. Pamiętaj, aby zostawić opinię na GitHub, aby plugin mogła zostać zaktualizowana dla wszystkich użytkowników." + } + }, + "StoreSelect": { + "custom_store": { + "label": "Niestandardowy sklep", + "url_label": "URL" + }, + "store_channel": { + "custom": "Niestandardowy", + "default": "Domyślny", + "label": "Kanał sklepu", + "testing": "Testowy" + } + }, + "Updater": { + "decky_updates": "Aktualizacje Decky", + "no_patch_notes_desc": "Brak informacji o poprawkach dla tej wersji", + "patch_notes_desc": "Opis zmian", + "updates": { + "check_button": "Sprawdź aktualizacje", + "checking": "Sprawdzanie", + "cur_version": "Aktualna wersja: {{ver}}", + "install_button": "Zainstaluj aktualizację", + "label": "Aktualizacje", + "lat_version": "Aktualizacje zainstalowane. Aktualna wersja: {{ver}}", + "reloading": "Ponowne ładowanie", + "updating": "Aktualizowanie" + } + }, + "TitleView": { + "settings_desc": "Otwórz ustawienia Decky", + "decky_store_desc": "Otwórz sklep Decky" + }, + "Testing": { + "download": "Pobierz" + } +} diff --git a/backend/decky_loader/locales/pt-BR.json b/backend/decky_loader/locales/pt-BR.json new file mode 100644 index 00000000..53fdb6fe --- /dev/null +++ b/backend/decky_loader/locales/pt-BR.json @@ -0,0 +1,268 @@ +{ + "BranchSelect": { + "update_channel": { + "prerelease": "Pré-lançamento", + "stable": "Estável", + "testing": "Em Teste", + "label": "Canal de Atualização" + } + }, + "Developer": { + "5secreload": "Recarregando em 5 segundos", + "enabling": "Habilitando React DevTools", + "disabling": "Desabilitando React DevTools" + }, + "FilePickerIndex": { + "folder": { + "select": "Use esta pasta", + "label": "Pasta", + "show_more": "Mostrar mais arquivos" + }, + "files": { + "show_hidden": "Mostrar Arquivos Ocultos", + "all_files": "Todos os arquivos", + "file_type": "Formato de arquivo" + }, + "filter": { + "created_asce": "Criado (Mais antigo)", + "created_desc": "Criado (Mais recente)", + "modified_asce": "Alterado (Mais antigo)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Tamanho (Menor)", + "size_desc": "Tamanho (Maior)", + "modified_desc": "Alterado (Mais recente)" + }, + "file": { + "select": "Selecione este arquivo" + } + }, + "PluginListLabel": { + "hidden": "Oculto no menu de acesso rápido" + }, + "PluginCard": { + "plugin_full_access": "Este plugin tem acesso total ao seu Steam Deck.", + "plugin_install": "Instalar", + "plugin_no_desc": "Nenhuma descrição fornecida.", + "plugin_version_label": "Versão do plugin" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Instalar", + "button_processing": "Instalando", + "desc": "Você tem certeza que deseja instalar {{artifact}} {{version}}?", + "title": "Instalar {{artifact}}" + }, + "reinstall": { + "button_idle": "Reinstalar", + "button_processing": "Reinstalando", + "desc": "Tem certeza que voce deseja reinstalar {{artifact}} {{version}}?", + "title": "Reinstalar {{artifact}}" + }, + "update": { + "button_idle": "Atualizar", + "button_processing": "Atualizando", + "desc": "Tem certeza que voce deseja atualizar {{artifact}} {{version}}?", + "title": "Atualizar {{artifact}}" + }, + "no_hash": "Este plugin não tem um hash, você o está instalando por sua conta em risco." + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_one": "Modificar {{count}} plugin", + "mixed_many": "Modificar {{count}} plugins", + "mixed_other": "Modificar {{count}} plugins", + "update_one": "Atualizar 1 plugin", + "update_many": "Atualizar {{count}} plugins", + "update_other": "Atualizar {{count}} plugins", + "install_one": "Instalar 1 plugin", + "install_many": "Instalar {{count}} plugins", + "install_other": "Instalar {{count}} plugins", + "reinstall_one": "Reinstalar 1 plugin", + "reinstall_many": "Reinstalar {{count}} plugins", + "reinstall_other": "Reinstalar {{count}} plugins" + }, + "ok_button": { + "idle": "Confirmar", + "loading": "Carregando" + }, + "description": { + "install": "Instalar {{name}} {{version}}", + "update": "Atualizar {{name}} para {{version}}", + "reinstall": "Reinstalar {{name}} {{version}}" + }, + "confirm": "Tem certeza que deseja fazer as seguintes modificações?" + }, + "PluginListIndex": { + "no_plugin": "Nenhum plugin instalado!", + "plugin_actions": "Ações do plugin", + "reinstall": "Reinstalar", + "reload": "Recarregar", + "uninstall": "Desinstalar", + "update_to": "Atualizar para {{name}}", + "show": "Acesso Rápido: Mostrar", + "update_all_one": "Atualizar 1 plugin", + "update_all_many": "Atualizar {{count}} plugins", + "update_all_other": "Atualizar {{count}} plugins", + "hide": "Acesso Rápido: Ocultar", + "freeze": "Congelar updates" + }, + "PluginLoader": { + "decky_title": "Decky", + "error": "Erro", + "plugin_load_error": { + "message": "Erro ao carregar o plugin {{name}}", + "toast": "Erro ao carregar {{name}}" + }, + "plugin_uninstall": { + "button": "Desinstalar", + "desc": "Você tem certeza que deseja desinstalar {{name}}?", + "title": "Desinstalar {{name}}" + }, + "decky_update_available": "Atualização para {{tag_name}} disponível!", + "plugin_error_uninstall": "Um erro aconteceu ao carregar {{name}}, como mostrado acima. Isso normalmente significa que o plugin precisa de uma atualização para a nova versão do SteamUI. Confira se existe uma atualização ou avalie a remoção do plugin nas configurações do Decky, na sessão de plugins.", + "plugin_update_one": "Atualização disponível para 1 plugin!", + "plugin_update_many": "Atualizações disponíveis para {{count}} plugins!", + "plugin_update_other": "Atualizações disponíveis para {{count}} plugins!" + }, + "RemoteDebugging": { + "remote_cef": { + "label": "Permitir Depuração CEF Demota", + "desc": "Permitir acesso não autenticato ao depurador CEF para qualquer um na sua rede" + } + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Abrir o Console", + "label": "Console CEF", + "desc": "Abre o Console CEF. Somente útil para fins de depuração. O material aqui é potencialmente perigoso e só deve ser usado se você for um desenvolvedor de plugin, ou direcionado até aqui por um." + }, + "header": "Outros", + "react_devtools": { + "desc": "Habilita a conexão a um computador executando React DevTools. Alterar essa configuração irá recarregar a Steam. Defina o endereço IP antes de habilitar.", + "ip_label": "IP", + "label": "Habilitar React DevTools" + }, + "third_party_plugins": { + "button_install": "Instalar", + "button_zip": "Navegar", + "header": "Plugins de terceiros", + "label_url": "Instalar Plugin a partir da URL", + "label_zip": "Instalar Plugin a partir de um arquivo ZIP", + "label_desc": "URL" + }, + "valve_internal": { + "desc1": "Habilita o menu interno de desenvolvedor da Valve.", + "desc2": "Não toque em nada neste menu, a não ser que você saiba o que está fazendo.", + "label": "Habilitar Menu Interno da Valve" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Versão do Decky", + "header": "Sobre" + }, + "developer_mode": { + "label": "Modo Deselvolvedor" + }, + "other": { + "header": "Outros" + }, + "updates": { + "header": "Atualizações" + }, + "beta": { + "header": "Participação no Beta" + }, + "notifications": { + "decky_updates_label": "Atualização do Decky disponível", + "header": "Noificações", + "plugin_updates_label": "Atualizações de Plugin disponíveis" + } + }, + "SettingsIndex": { + "developer_title": "Desenvolvedor", + "general_title": "Geral", + "plugins_title": "Plugins" + }, + "Store": { + "store_contrib": { + "label": "Contribuindo", + "desc": "Se você deseja contribuir para a Loja de Plugins para o Decky, confira o repositório SteamDeckHomebrew/decky-plugin-template no GitHub. Informações sobre o desenvolvimento e distribuição estão disponíveis no README." + }, + "store_filter": { + "label": "Filtros", + "label_def": "Todos" + }, + "store_search": { + "label": "Buscar" + }, + "store_sort": { + "label": "Ordenar", + "label_def": "Último atualizado (Mais recente)" + }, + "store_source": { + "desc": "Todos os códigos fonte dos plugins estão disponíveis no repositório SteamDeckHomebrew/decky-plugin-database no GitHub.", + "label": "Código Fonte" + }, + "store_tabs": { + "about": "Sobre", + "alph_desc": "Alfabética (A - Z)", + "title": "Navegar", + "alph_asce": "Alfabética (Z - A)" + }, + "store_testing_cta": "Por favor, considere testar os novos plugins para ajudar o time do Decky Loader!", + "store_testing_warning": { + "desc": "Você pode usar este canal da loja para testar versões avançadas do plugin. Certifique-se de deixar feedback no GitHub para que o plugin possa ser atualizado para todos os usuários.", + "label": "Bem-vindo ao Canal de Testes da Loja" + } + }, + "StoreSelect": { + "custom_store": { + "label": "Loja Personalizada", + "url_label": "URL" + }, + "store_channel": { + "custom": "Personalizada", + "default": "Padrão", + "label": "Canal da Loja", + "testing": "Em Teste" + } + }, + "Updater": { + "no_patch_notes_desc": "nenhuma nota de alteração para esta versão", + "patch_notes_desc": "Notas de alteração", + "updates": { + "check_button": "Buscar Atualizações", + "checking": "Buscando", + "cur_version": "Versão atual: {{ver}}", + "install_button": "Instalar Atualização", + "label": "Atualizações", + "lat_version": "Atualizado: rodando {{ver}}", + "reloading": "Recarregando", + "updating": "Atualizando" + }, + "decky_updates": "Atualizações do Decky" + }, + "PluginView": { + "hidden_one": "1 plugin está oculto nesta lista", + "hidden_many": "{{count}} plugins estão ocultos nesta lista", + "hidden_other": "{{count}} plugins estão ocultos nesta lista" + }, + "DropdownMultiselect": { + "button": { + "back": "Voltar" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "O caminho especificado não é válido. Por favor, confira e reinsira corretamente.", + "unknown": "Ocorreu um erro desconhecido. O erro completo é: {{raw_error}}", + "perm_denied": "Você não tem acesso à este diretório. Por favor, verifiquei se seu usuário (deck no Steam Deck) tem as permissões necessárias para acessar este arquivo/pasta." + } + }, + "TitleView": { + "decky_store_desc": "Abrir Loja Decky", + "settings_desc": "Abrir Definições Decky" + } +} diff --git a/backend/decky_loader/locales/pt-PT.json b/backend/decky_loader/locales/pt-PT.json new file mode 100644 index 00000000..b4e0ab9a --- /dev/null +++ b/backend/decky_loader/locales/pt-PT.json @@ -0,0 +1,267 @@ +{ + "FilePickerIndex": { + "folder": { + "select": "Usar esta pasta", + "label": "Pasta", + "show_more": "Mostrar mais ficheiros" + }, + "file": { + "select": "Selecionar este ficheiro" + }, + "filter": { + "size_desc": "Tamanho (maior)", + "created_asce": "Criado (mais antigo)", + "created_desc": "Criado (mais recente)", + "modified_asce": "Modificado (mais antigo)", + "modified_desc": "Modificado (mais recente)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Tamanho (mais pequeno)" + }, + "files": { + "file_type": "Tipo de ficheiro", + "show_hidden": "Mostrar ficheiros ocultos", + "all_files": "Todos os ficheiros" + } + }, + "PluginView": { + "hidden_one": "1 plugin está oculto desta lista", + "hidden_many": "{{count}} plugins estão ocultos desta lista", + "hidden_other": "{{count}} plugins estão ocultos desta lista" + }, + "PluginCard": { + "plugin_full_access": "Este plugin tem acesso total à tua Steam Deck.", + "plugin_install": "Instalar", + "plugin_version_label": "Versão do plugin", + "plugin_no_desc": "Não tem descrição." + }, + "PluginInstallModal": { + "install": { + "button_idle": "Instalar", + "button_processing": "Instalação em curso", + "title": "Instalar {{artifact}}", + "desc": "De certeza que queres instalar {{artifact}} {{version}}?" + }, + "reinstall": { + "button_idle": "Reinstalar", + "button_processing": "Reinstalação em curso", + "title": "Reinstalar {{artifact}}", + "desc": "De certeza que queres reinstalar {{artifact}} {{version}}?" + }, + "update": { + "button_idle": "Actualizar", + "button_processing": "Actualização em curso", + "title": "Actualizar {{artifact}}", + "desc": "De certeza que queres actualizar {{artifact}} {{version}}?" + }, + "no_hash": "Este plugin não tem um hash, estás a instalá-lo por tua conta e risco." + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_one": "Alterar 1 plugin", + "mixed_many": "Alterar {{count}} plugins", + "mixed_other": "Alterar {{count}} plugins", + "update_one": "Actualizar 1 plugin", + "update_many": "Actualizar {{count}} plugins", + "update_other": "Actualizar {{count}} plugins", + "reinstall_one": "Reinstalar 1 plugin", + "reinstall_many": "Reinstalar {{count}} plugins", + "reinstall_other": "Reinstalar {{count}} plugins", + "install_one": "Instalar 1 plugin", + "install_many": "Instalar {{count}} plugins", + "install_other": "Instalar {{count}} plugins" + }, + "ok_button": { + "idle": "Confirmar", + "loading": "Em curso" + }, + "description": { + "install": "Instalar {{name}} {{version}}", + "update": "Actualizar {{name}} para {{version}}", + "reinstall": "Reinstalar {{name}} {{version}}" + }, + "confirm": "De certeza que queres fazer as seguintes alterações?" + }, + "PluginListIndex": { + "no_plugin": "Nenhum plugin instalado!", + "reinstall": "Reinstalar", + "uninstall": "Desinstalar", + "update_to": "Actualizar para {{name}}", + "update_all_one": "Actualizar 1 plugin", + "update_all_many": "Actualizar {{count}} plugins", + "update_all_other": "Actualizar {{count}} plugins", + "plugin_actions": "Operações de plugin", + "reload": "Recarregar", + "show": "Acesso rápido: Mostrar", + "hide": "Acesso rápido: Ocultar" + }, + "BranchSelect": { + "update_channel": { + "stable": "Estável", + "testing": "Em teste", + "label": "Canal de actualização", + "prerelease": "Pré-lançamento" + } + }, + "Developer": { + "5secreload": "Vai recarregar em 5 segundos", + "disabling": "Desactivando React DevTools", + "enabling": "Activando React DevTools" + }, + "PluginListLabel": { + "hidden": "Oculto do menu de acesso rápido" + }, + "PluginLoader": { + "decky_title": "Decky", + "error": "Erro", + "plugin_load_error": { + "message": "Erro ao carregar o plugin {{name}}", + "toast": "Erro ao carregar {{name}}" + }, + "plugin_uninstall": { + "button": "Desinstalar", + "title": "Desinstalar {{name}}", + "desc": "De certeza que queres desinstalar {{name}}?" + }, + "decky_update_available": "Está disponível uma nova versão de {{tag_name}} !", + "plugin_update_one": "1 plugin tem actualizações disponíveis!", + "plugin_update_many": "{{count}} plugins têm actualizações disponíveis!", + "plugin_update_other": "{{count}} plugins têm actualizações disponíveis!", + "plugin_error_uninstall": "Houve uma excepção ao carregar {{name}}, como mostrado em cima. Pode ter sido porque o plugin requere a última versão do SteamUI. Verifica se há uma actualização disponível ou desinstala o plugin nas definições do Decky." + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Abrir consola", + "label": "Consola CEF", + "desc": "Abre a consola do CEF. Só é útil para efeitos de debugging. Pode ser perigosa e só deve ser usada se és um desenvolvedor de plugins, ou se foste aqui indicado por um desenvolvedor." + }, + "header": "Outros", + "react_devtools": { + "desc": "Permite a conecção a um computador que está a correr React DevTools. Mudar esta definição vai recarregar o Steam. Define o endereço de IP antes de activar.", + "ip_label": "IP", + "label": "Activar React DevTools" + }, + "third_party_plugins": { + "button_install": "Instalar", + "button_zip": "Navegar", + "header": "Plugins de terceiros", + "label_desc": "URl", + "label_url": "Instalar plugin a partir dum URL", + "label_zip": "Instalar plugin a partir dum ficheiro ZIP" + }, + "valve_internal": { + "label": "Activar menu interno da Valve", + "desc1": "Activa o menu interno de programador da Valve.", + "desc2": "Não toques em nada deste menu se não souberes a sua função." + } + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Permitir acesso não autenticado ao debugger do CEF a qualquer pessoa na tua rede", + "label": "Permitir debugging remoto do CEF" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Versão do Decky", + "header": "Sobre" + }, + "beta": { + "header": "Participação na versão Beta" + }, + "developer_mode": { + "label": "Modo de programador" + }, + "other": { + "header": "Outros" + }, + "updates": { + "header": "Actualizações" + }, + "notifications": { + "decky_updates_label": "Atualização Decky disponível", + "header": "Notificações", + "plugin_updates_label": "Atualizações de plugins disponíveis" + } + }, + "SettingsIndex": { + "developer_title": "Programador", + "general_title": "Geral", + "plugins_title": "Plugins" + }, + "Store": { + "store_contrib": { + "label": "Contribuir", + "desc": "Se queres contribuir com um novo plugin, vai ao repositório SteamDeckHomebrew/decky-plugin-template no GitHub. No README, podes encontrar mais informação sobre desenvolvimento e distribuição." + }, + "store_filter": { + "label": "Filtro", + "label_def": "Todos" + }, + "store_search": { + "label": "Procurar" + }, + "store_sort": { + "label": "Ordenar", + "label_def": "Última actualização (mais recente)" + }, + "store_source": { + "label": "Código fonte", + "desc": "O código fonte de cada plugin está disponível no repositório SteamDeckHomebrew/decky-plugin-database no GitHub." + }, + "store_tabs": { + "about": "Sobre", + "alph_asce": "Alfabeticamente (Z-A)", + "alph_desc": "Alfabeticamente (A-Z)", + "title": "Navegar" + }, + "store_testing_cta": "Testa novos plugins e ajuda a equipa do Decky Loader!", + "store_testing_warning": { + "desc": "Pode usar esta versão da loja para testar versões experimentais de plugins. Certifique-se de deixar feedback no GitHub para que o plugin possa ser atualizado para todos os utilizadores.", + "label": "Bem-vindo ao Canal de Testes da Loja" + } + }, + "StoreSelect": { + "custom_store": { + "url_label": "URL", + "label": "Loja personalizada" + }, + "store_channel": { + "custom": "Personalizada", + "default": "Standard", + "testing": "Em teste", + "label": "Canal de loja" + } + }, + "Updater": { + "decky_updates": "Actualizações do Decky", + "no_patch_notes_desc": "sem registo de alterações desta versão", + "patch_notes_desc": "Registo de alterações", + "updates": { + "check_button": "Procurar actualizações", + "checking": "Busca de actualizações em curso", + "cur_version": "Versão actual: {{ver}}", + "label": "Actualizações", + "lat_version": "Actualizado: a correr {{ver}}", + "updating": "Actualização em curso", + "reloading": "Recarregar", + "install_button": "Instalar actualização" + } + }, + "FilePickerError": { + "errors": { + "perm_denied": "Não tem acesso ao diretório especificado. Por favor, verifique se o seu utilizador (deck na Steam Deck) possui as permissões correspondentes para aceder à pasta/ficheiro especificado.", + "unknown": "Ocorreu um erro desconhecido. O erro é: {{raw_error}}", + "file_not_found": "O caminho especificado não é válido. Por favor, verifique e insira-o corretamente." + } + }, + "TitleView": { + "decky_store_desc": "Abrir a Loja Decky", + "settings_desc": "Abrir as Definições Decky" + }, + "DropdownMultiselect": { + "button": { + "back": "Voltar" + } + } +} diff --git a/backend/decky_loader/locales/ru-RU.json b/backend/decky_loader/locales/ru-RU.json new file mode 100644 index 00000000..af8c0a38 --- /dev/null +++ b/backend/decky_loader/locales/ru-RU.json @@ -0,0 +1,277 @@ +{ + "MultiplePluginsInstallModal": { + "title": { + "update_one": "Переустановить {{count}} плагин", + "update_few": "Переустановить {{count}} плагинов", + "update_many": "Переустановить {{count}} плагинов", + "reinstall_one": "Переустановить {{count}} плагин", + "reinstall_few": "Переустановить {{count}} плагинов", + "reinstall_many": "Переустановить {{count}} плагинов", + "install_one": "Установить {{count}} плагин", + "install_few": "Установить {{count}} плагинов", + "install_many": "Установить {{count}} плагинов", + "mixed_one": "Изменить {{count}} плагин", + "mixed_few": "Изменить {{count}} плагинов", + "mixed_many": "Изменить {{count}} плагинов" + }, + "description": { + "install": "Установить {{name}} {{version}}", + "reinstall": "Переустановить {{name}} {{version}}", + "update": "Обновить с {{name}} на {{version}}" + }, + "confirm": "Вы уверены, что хотите внести следующие изменения?", + "ok_button": { + "idle": "Подтвердить", + "loading": "В процессе" + } + }, + "PluginListIndex": { + "update_all_one": "Обновить {{count}} плагин", + "update_all_few": "Обновить {{count}} плагинов", + "update_all_many": "Обновить {{count}} плагинов", + "hide": "Быстрый доступ: Скрыть", + "reload": "Перезагрузить", + "uninstall": "Удалить", + "update_to": "Обновить на {{name}}", + "show": "Быстрый доступ: Показать", + "plugin_actions": "Действия с плагинами", + "no_plugin": "Не установлено ни одного плагина!", + "reinstall": "Переустановить", + "freeze": "Остановить обновления", + "unfreeze": "Разрешить обновления" + }, + "PluginLoader": { + "plugin_update_one": "Обновления доступны для {{count}} плагина!", + "plugin_update_few": "Обновления доступны для {{count}} плагинов!", + "plugin_update_many": "Обновления доступны для {{count}} плагинов!", + "plugin_error_uninstall": "Загрузка {{name}} вызвала исключение, указанное выше. Обычно это означает, что плагин требует обновления для новой версии SteamUI. Проверьте наличие обновления или попробуйте его удалить в настройках Decky, в разделе Плагины.", + "plugin_load_error": { + "message": "Ошибка загрузки плагина {{name}}", + "toast": "Ошибка загрузки {{name}}" + }, + "plugin_uninstall": { + "button": "Удалить", + "desc": "Вы уверены, что хотите удалить {{name}}?", + "title": "Удалить {{name}}" + }, + "decky_title": "Decky", + "decky_update_available": "Доступно обновление на {{tag_name}}!", + "error": "Ошибка" + }, + "PluginView": { + "hidden_one": "{{count}} плагин скрыт из списка", + "hidden_few": "{{count}} плагинов скрыт из списка", + "hidden_many": "{{count}} плагинов скрыт из списка" + }, + "FilePickerIndex": { + "files": { + "show_hidden": "Показать скрытые файлы", + "all_files": "Все файлы", + "file_type": "Тип файла" + }, + "filter": { + "created_asce": "Создан (самый старый)", + "modified_asce": "Модифицирован (самый новый)", + "modified_desc": "Модифицирован (самый старый)", + "size_asce": "Размер (самый малый)", + "size_desc": "Размер (самый большой)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "created_desc": "Создан (самый новый)" + }, + "folder": { + "label": "Папка", + "show_more": "Показать больше файлов", + "select": "Использовать этот каталог" + }, + "file": { + "select": "Выберите этот файл" + } + }, + "PluginCard": { + "plugin_install": "Установить", + "plugin_no_desc": "Нет описания.", + "plugin_version_label": "Версия плагина", + "plugin_full_access": "Этот плагин имеет полный доступ к вашему Steam Deck." + }, + "PluginInstallModal": { + "install": { + "button_processing": "Установка", + "title": "Установить {{artifact}}", + "button_idle": "Установить", + "desc": "Вы уверены, что хотите установить {{artifact}} {{version}}?" + }, + "no_hash": "У данного плагина отсутствует хэш, устанавливайте на свой страх и риск.", + "reinstall": { + "title": "Переустановить {{artifact}}", + "desc": "Вы уверены, что хотите переустановить {{artifact}} {{version}}?", + "button_idle": "Переустановить", + "button_processing": "Переустановка" + }, + "update": { + "button_idle": "Обновить", + "button_processing": "Обновление", + "desc": "Вы уверены, что хотите обновить {{artifact}} {{version}}?", + "title": "Обновить {{artifact}}" + } + }, + "PluginListLabel": { + "hidden": "Скрыто из меню быстрого доступа" + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Разрешить неаутентифицированный доступ к отладчику CEF всем в вашей сети", + "label": "Разрешить удаленную отладку CEF" + } + }, + "SettingsDeveloperIndex": { + "header": "Другое", + "third_party_plugins": { + "button_install": "Установить", + "label_zip": "Установить плагин из ZIP файла", + "label_url": "Установить плагин из URL", + "button_zip": "Обзор", + "header": "Сторонние плагины", + "label_desc": "Ссылка" + }, + "react_devtools": { + "ip_label": "IP", + "desc": "Позволяет подключиться к компьютеру, на котором работает React DevTools. Изменение этого параметра приведет к перезагрузке Steam. Установите IP-адрес перед включением.", + "label": "Включить React DevTools" + }, + "cef_console": { + "button": "Открыть консоль", + "desc": "Открывает консоль CEF. Полезно только для целей отладки. Настройки здесь потенциально опасны и должны использоваться только в том случае, если вы являетесь разработчиком плагинов или направленны сюда одним из них.", + "label": "CEF Консоль" + }, + "valve_internal": { + "desc1": "Включает внутреннее меню разработчика Valve.", + "label": "Включить Valve Internal", + "desc2": "Ничего не трогайте в этом меню, если не знаете, что оно делает." + } + }, + "SettingsGeneralIndex": { + "beta": { + "header": "Бета программа" + }, + "developer_mode": { + "label": "Режим разработчика" + }, + "other": { + "header": "Другое" + }, + "about": { + "decky_version": "Версия Decky", + "header": "Информация" + }, + "updates": { + "header": "Обновления" + }, + "notifications": { + "decky_updates_label": "Обновление Decky доступно", + "header": "Уведомления", + "plugin_updates_label": "Доступны обновления плагинов" + } + }, + "Store": { + "store_sort": { + "label": "Сортировка", + "label_def": "Последнее обновление(самые новые)" + }, + "store_source": { + "label": "Исходный код", + "desc": "Весь исходный код плагина доступен в репозитории SteamDeckHomebrew/decky-plugin-database на GitHub." + }, + "store_tabs": { + "about": "Информация", + "alph_desc": "По алфавиту (A - Z)", + "title": "Обзор", + "alph_asce": "По алфавиту (Z - A)", + "date_asce": "Сначала старые", + "date_desc": "Сначала новые", + "downloads_asce": "Наименее загружаемые сначала", + "downloads_desc": "Наиболее загружаемые сначала" + }, + "store_testing_cta": "Пожалуйста, рассмотрите возможность тестирования новых плагинов, чтобы помочь команде Decky Loader!", + "store_contrib": { + "desc": "Если вы хотите внести свой вклад в магазин плагинов Decky, проверьте репозиторий SteamDeckHomebrew/decky-plugin-template на GitHub. Информация о разработке и распространении доступна в README.", + "label": "Помощь проекту" + }, + "store_filter": { + "label": "Фильтр", + "label_def": "Все" + }, + "store_search": { + "label": "Поиск" + }, + "store_testing_warning": { + "label": "Добро пожаловать в тестовый канал магазина", + "desc": "Вы можете использовать этот канал магазина для тестирования новейших версий плагинов. Не забудьте оставить отзыв на GitHub, чтобы плагин можно было обновить для всех пользователей." + } + }, + "StoreSelect": { + "custom_store": { + "label": "Сторонний магазин", + "url_label": "URL" + }, + "store_channel": { + "custom": "Сторонний", + "default": "По-умолчанию", + "label": "Канал магазина", + "testing": "Тестовый" + } + }, + "Updater": { + "decky_updates": "Обновления Decky", + "no_patch_notes_desc": "нет примечаний к патчу для этой версии", + "updates": { + "check_button": "Проверить обновления", + "checking": "Проверка", + "cur_version": "Текущая версия: {{ver}}", + "updating": "Обновление", + "install_button": "Установить обновление", + "label": "Обновления", + "lat_version": "Обновлено: версия {{ver}}", + "reloading": "Перезагрузка" + }, + "patch_notes_desc": "Примечания к патчу" + }, + "FilePickerError": { + "errors": { + "perm_denied": "У вас нет доступа к указанному каталогу.. Пожалуйста, проверьте имеет ли пользователь (deck на Steam Deck) соответствующие права доступа к указанной папке/файлу.", + "file_not_found": "Указан недействительный путь. Пожалуйста, проверьте его и повторите ввод.", + "unknown": "Произошла неизвестная ошибка. Текст ошибки: {{raw_error}}" + } + }, + "DropdownMultiselect": { + "button": { + "back": "Назад" + } + }, + "BranchSelect": { + "update_channel": { + "prerelease": "Предрелиз", + "stable": "Стабильный", + "testing": "Тестовый", + "label": "Канал обновлений" + } + }, + "Developer": { + "5secreload": "Перезагрузка через 5 секунд", + "disabling": "Выключение React DevTools", + "enabling": "Включение React DevTools" + }, + "SettingsIndex": { + "developer_title": "Разработчик", + "general_title": "Общее", + "plugins_title": "Плагины", + "testing_title": "Тестирование" + }, + "TitleView": { + "decky_store_desc": "Открыть магазин Decky", + "settings_desc": "Открыть настройки Decky" + }, + "Testing": { + "download": "Загрузить" + } +} diff --git a/backend/decky_loader/locales/sq-AL.json b/backend/decky_loader/locales/sq-AL.json new file mode 100644 index 00000000..fe9d7eec --- /dev/null +++ b/backend/decky_loader/locales/sq-AL.json @@ -0,0 +1,131 @@ +{ + "SettingsDeveloperIndex": { + "react_devtools": { + "ip_label": "IP", + "label": "Aktivizo React DevTools" + }, + "third_party_plugins": { + "button_zip": "Kërko", + "header": "Shtesa të Huaj", + "button_install": "Instalo", + "label_desc": "URL", + "label_url": "Instalo Shtes Nga URL", + "label_zip": "Instalo Shtes Nga ZIP" + } + }, + "BranchSelect": { + "update_channel": { + "stable": "Fiksuar", + "label": "Kanali Përditësimet" + } + }, + "FilePickerIndex": { + "folder": { + "select": "Përdore këtë folder" + } + }, + "PluginCard": { + "plugin_install": "Instalo", + "plugin_version_label": "Versioni Shteses" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Instalo", + "button_processing": "Instalohet", + "desc": "Je i sigurt që don ta instalojsh {{artifact}} {{version}}?", + "title": "Instalo {{artifact}}" + }, + "no_hash": "Ky shtesë nuk ka hash, ti e instalon me rrezikun tuaj.", + "reinstall": { + "button_idle": "Riinstalo", + "button_processing": "Riinstalohet", + "desc": "Je i sigurt a don ta riinstalojsh {{artifact}} {{version}}?", + "title": "Riinstalo {{artifact}}" + }, + "update": { + "button_processing": "Përditësohet", + "desc": "Je i sigurt a don ta përditësojsh {{artifact}} {{version}}?", + "title": "Përditëso {{artifact}}" + } + }, + "PluginLoader": { + "decky_title": "Decky", + "plugin_uninstall": { + "title": "Çinstalo {{name}}", + "button": "Çinstalo", + "desc": "Je i sigurt që don ta çinstalojsh {{name}}?" + }, + "error": "Gabim", + "plugin_error_uninstall": "Ju lutem shko nga {{name}} në Decky menu nëse don ta çinstalojsh këtë shtese.", + "plugin_update_one": "", + "plugin_update_other": "" + }, + "PluginListIndex": { + "no_plugin": "Nuk ka shtesa të instaluar!", + "uninstall": "Çinstalo", + "update_all_one": "", + "update_all_other": "" + }, + "SettingsGeneralIndex": { + "other": { + "header": "Të Tjera" + }, + "about": { + "decky_version": "Versioni Decky" + }, + "updates": { + "header": "Përmirësimet" + } + }, + "SettingsIndex": { + "developer_title": "Zhvillues", + "general_title": "Gjeneral" + }, + "Store": { + "store_sort": { + "label": "Rendit" + }, + "store_tabs": { + "title": "Kërko" + }, + "store_contrib": { + "label": "Kontributi" + }, + "store_filter": { + "label": "Filtro", + "label_def": "Të Gjitha" + }, + "store_search": { + "label": "Kërko" + }, + "store_source": { + "label": "Kodin Burimor" + } + }, + "StoreSelect": { + "store_channel": { + "label": "Kanali Dyqanit" + } + }, + "Updater": { + "updates": { + "cur_version": "Versioni e tanishëme: {{ver}}" + } + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_one": "", + "mixed_other": "", + "update_one": "", + "update_other": "", + "reinstall_one": "", + "reinstall_other": "", + "install_one": "", + "install_other": "" + } + }, + "PluginView": { + "hidden_one": "", + "hidden_other": "" + } +} diff --git a/backend/decky_loader/locales/sv-SE.json b/backend/decky_loader/locales/sv-SE.json new file mode 100644 index 00000000..4961956a --- /dev/null +++ b/backend/decky_loader/locales/sv-SE.json @@ -0,0 +1,68 @@ +{ + "BranchSelect": { + "update_channel": { + "prerelease": "Förhandsversion", + "stable": "Stabil", + "testing": "Testning", + "label": "Uppdateringskanal" + } + }, + "Developer": { + "5secreload": "Omladdning på 5 sekunder", + "disabling": "Inaktivera React DevTools", + "enabling": "Aktivera React DevTools" + }, + "DropdownMultiselect": { + "button": { + "back": "Tillbaka" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "Den angivna sökvägen är inte giltig. Kontrollera den och ange den korrekt igen.", + "unknown": "Ett okänt fel har inträffat. Det råa felet är: {{raw_error}}", + "perm_denied": "Du har inte tillgång till den angivna katalogen. Kontrollera om din användare (deck på Steam Deck) har motsvarande behörighet för att komma åt den angivna mappen/filen." + } + }, + "FilePickerIndex": { + "file": { + "select": "Välj denna fil" + }, + "files": { + "all_files": "Alla Filer", + "file_type": "Filtyp", + "show_hidden": "Visa dolda filer" + }, + "filter": { + "created_asce": "Skapad (Äldst)", + "created_desc": "Skapad (nyast)", + "modified_asce": "Modifierad (Äldst)", + "modified_desc": "Modifierad (nyaste)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Storlek (minst)", + "size_desc": "Storlek (Störst)" + }, + "folder": { + "label": "Mapp", + "select": "Använd denna mapp", + "show_more": "Visa fler filer" + } + }, + "MultiplePluginsInstallModal": { + "description": { + "install": "Installera {{name}} {{version}}", + "reinstall": "Installera om {{name}} {{version}}", + "update": "Uppdatera {{name}} {{version}}" + }, + "ok_button": { + "idle": "Bekräfta", + "loading": "Arbetar" + }, + "title": { + "install_one": "Install 1 tillägg", + "install_other": "Installerar {{count}} tillägg" + }, + "confirm": "Är du säker på att du vill göra följande ändringar?" + } +} diff --git a/backend/decky_loader/locales/tr-TR.json b/backend/decky_loader/locales/tr-TR.json new file mode 100644 index 00000000..501f6c78 --- /dev/null +++ b/backend/decky_loader/locales/tr-TR.json @@ -0,0 +1,225 @@ +{ + "BranchSelect": { + "update_channel": { + "prerelease": "Önsürüm", + "stable": "Stabil", + "testing": "Test", + "label": "Güncelleme Kanalı" + } + }, + "DropdownMultiselect": { + "button": { + "back": "Geri" + } + }, + "FilePickerIndex": { + "file": { + "select": "Bu dosyayı seçin" + }, + "files": { + "all_files": "Tüm Dosyalar", + "file_type": "Dosya Türü", + "show_hidden": "Gizli Dosyaları Göster" + }, + "filter": { + "created_asce": "Oluşturuldu (En Eski)", + "created_desc": "Oluşturuldu (En Yeni)", + "modified_asce": "Değiştirildi (En Eski)", + "modified_desc": "Değiştirildi (En Yeni)", + "name_asce": "Z-A", + "name_desc": "A-Z", + "size_asce": "Boyut (En Küçük)", + "size_desc": "Boyut (En Büyük)" + }, + "folder": { + "label": "Klasör", + "select": "Bu klasörü kullan", + "show_more": "Daha fazla dosya göster" + } + }, + "MultiplePluginsInstallModal": { + "confirm": "Aşağıdaki değişiklikleri yapmak istediğinizden emin misiniz?", + "description": { + "install": "Yükle {{name}} {{version}}", + "reinstall": "Yeniden yükle {{name}} {{version}}" + }, + "ok_button": { + "idle": "Onayla", + "loading": "Çalışıyor" + }, + "title": { + "reinstall_one": "1 eklentiyi yeniden yükle", + "reinstall_other": "{{count}} eklentiyi yeniden yükle", + "install_one": "1 eklenti yükle", + "install_other": "{{count}} eklenti yükle" + } + }, + "PluginCard": { + "plugin_full_access": "Bu eklenti Steam Deck'inize tam erişime sahiptir.", + "plugin_install": "Yükle", + "plugin_version_label": "Eklenti Versiyonu" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Yükle", + "button_processing": "Yükleniyor", + "title": "Yükle {{artifact}}", + "desc": "Yüklemek istediğinizden emin misiniz {{artifact}} {{version}}?" + }, + "reinstall": { + "button_idle": "Yeniden Yükle", + "desc": "Yeniden yüklemek istediğinizden emin misiniz {{artifact}} {{version}}?", + "title": "Yeniden Yükle {{artifact}}", + "button_processing": "Yeniden Yükleniyor" + }, + "update": { + "button_idle": "Güncelle", + "button_processing": "Güncelleniyor", + "title": "Güncelle {{artifact}}", + "desc": "Güncellemek istediğinizden emin misiniz {{artifact}} {{version}}?" + } + }, + "PluginListIndex": { + "freeze": "Güncellemeleri durdur", + "hide": "Hızlı erişim: Gizle", + "no_plugin": "Yüklü eklenti yok!", + "plugin_actions": "Eklenti İşlemleri", + "reinstall": "Yeniden Yükle", + "show": "Hızlı erişim: Göster", + "unfreeze": "Güncellemelere izin ver", + "uninstall": "Kaldır", + "update_all_one": "1 eklentiyi güncelle", + "update_all_other": "{{count}} eklentiyi güncelle" + }, + "PluginListLabel": { + "hidden": "Hızlı erişim menüsünden gizlenmiş" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "{{tag_name}} güncellemesi mevcut!", + "error": "Hata", + "plugin_load_error": { + "toast": "{{name}} yüklenirken hata oluştu", + "message": "{{name}} eklentisi yüklenirken bir hata oluştu" + }, + "plugin_uninstall": { + "button": "Kaldır", + "desc": "{{name}} kaldırmak istediğinizden emin misiniz?", + "title": "Kaldır {{name}}" + }, + "plugin_update_one": "1 eklenti için güncelleme mevcut!", + "plugin_update_other": "{{count}} eklenti için güncelleme mevcut!" + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Konsolu Aç" + }, + "header": "Diğer", + "react_devtools": { + "ip_label": "IP" + }, + "third_party_plugins": { + "button_install": "Yükle", + "button_zip": "Gözat", + "header": "Üçüncü Parti Eklentiler", + "label_desc": "URL", + "label_url": "URL'den Eklenti Yükle", + "label_zip": "ZIP Dosyasından Eklenti Yükle" + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Decky Versiyonu", + "header": "Hakkında" + }, + "beta": { + "header": "Betaya katılım" + }, + "developer_mode": { + "label": "Geliştirici modu" + }, + "notifications": { + "decky_updates_label": "Decky güncellemesi mevcut", + "header": "Bildirimler", + "plugin_updates_label": "Eklenti güncellemesi mevcut" + }, + "other": { + "header": "Diğer" + }, + "updates": { + "header": "Güncellemeler" + } + }, + "SettingsIndex": { + "developer_title": "Geliştirici", + "general_title": "Genel", + "plugins_title": "Eklentiler" + }, + "Store": { + "store_contrib": { + "label": "Katkıda Bulunma" + }, + "store_filter": { + "label": "Filtre", + "label_def": "Tümü" + }, + "store_search": { + "label": "Ara" + }, + "store_sort": { + "label": "Sırala", + "label_def": "Son Güncellenme (En Yeni)" + }, + "store_source": { + "label": "Kaynak Kodu" + }, + "store_tabs": { + "about": "Hakkında", + "alph_asce": "Alfabetik (Z'den A'ya)", + "alph_desc": "Alfabetik (A'dan Z'ye)", + "date_asce": "Önce En Eski", + "date_desc": "Önce En Yeni", + "downloads_desc": "Önce En Çok İndirilen", + "title": "Gözat", + "downloads_asce": "Önce En Az İndirilen" + } + }, + "StoreSelect": { + "custom_store": { + "url_label": "URL" + }, + "store_channel": { + "custom": "Özel", + "default": "Varsayılan" + } + }, + "TitleView": { + "decky_store_desc": "Decky Mağazasını Aç", + "settings_desc": "Decky Ayarlarını Aç" + }, + "Updater": { + "decky_updates": "Decky Güncellemeleri", + "patch_notes_desc": "Yama Notları", + "no_patch_notes_desc": "bu sürüm için yama notları mevcut değil", + "updates": { + "check_button": "Güncellemeleri Kontrol Et", + "checking": "Kontrol ediliyor", + "cur_version": "Mevcut Versiyon: {{ver}}", + "install_button": "Güncellemeyi Yükle", + "label": "Güncellemeler", + "updating": "Güncelleniyor" + } + }, + "Testing": { + "download": "İndir" + }, + "FilePickerError": { + "errors": { + "file_not_found": "Belirtilen yol geçerli değil. Lütfen yolu kontrol edin ve doğru şekilde yeniden girin." + } + }, + "PluginView": { + "hidden_one": "1 eklenti bu listeden gizlenmiştir", + "hidden_other": "{{count}} eklenti bu listeden gizlenmiştir" + } +} diff --git a/backend/decky_loader/locales/uk-UA.json b/backend/decky_loader/locales/uk-UA.json new file mode 100644 index 00000000..09fbca1b --- /dev/null +++ b/backend/decky_loader/locales/uk-UA.json @@ -0,0 +1,222 @@ +{ + "BranchSelect": { + "update_channel": { + "prerelease": "Передреліз", + "testing": "Тестовий", + "label": "Канал оновлень", + "stable": "Стабільний" + } + }, + "Developer": { + "5secreload": "Перезавантаження за 5 секунд", + "enabling": "Увімкнення React DevTools", + "disabling": "Вимкнення React DevTools" + }, + "FilePickerIndex": { + "folder": { + "select": "Використовувати цю папку" + } + }, + "PluginListLabel": { + "hidden": "Приховано з меню швидкого доступу" + }, + "PluginCard": { + "plugin_full_access": "Цей плагін має повний доступ до вашого Steam Deck.", + "plugin_install": "Встановити", + "plugin_no_desc": "Опис не надано.", + "plugin_version_label": "Версія плагіна" + }, + "PluginInstallModal": { + "install": { + "button_idle": "Встановити", + "button_processing": "Встановлення", + "title": "Встановити {{artifact}}", + "desc": "Ви впевнені, що хочете встановити {{artifact}} {{version}}?" + }, + "reinstall": { + "button_idle": "Перевстановити", + "desc": "Ви впевнені, що хочете перевстановити {{artifact}} {{version}}?", + "title": "Перевстановити {{artifact}}", + "button_processing": "Перевстановлення" + }, + "update": { + "button_idle": "Оновити", + "button_processing": "Оновлення", + "title": "Оновити {{artifact}}", + "desc": "Ви впевнені, що хочете оновити {{artifact}} {{version}}?" + }, + "no_hash": "Цей плагін не має хешу, ви встановлюєте його на власний ризик." + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_one": "Модифікувати 1 плагін", + "mixed_few": "Модифікувати {{count}} плагінів", + "mixed_many": "", + "reinstall_one": "Перевстановити 1 плагін", + "reinstall_few": "Перевстановити {{count}} плагінів", + "reinstall_many": "Перевстановити {{count}} плагінів", + "update_one": "Оновити 1 плагін", + "update_few": "Оновити {{count}} плагінів", + "update_many": "Оновити {{count}} плагінів", + "install_one": "Встановити 1 плагін", + "install_few": "Встановити {{count}} плагінів", + "install_many": "Встановити {{count}} плагінів" + }, + "ok_button": { + "idle": "Підтвердити", + "loading": "Опрацювання" + }, + "description": { + "install": "Встановити {{name}} {{version}}", + "update": "Оновити {{name}} до {{version}}", + "reinstall": "Перевстановити {{name}} {{version}}" + }, + "confirm": "Ви впевнені, що хочете застосувати такі модифікації?" + }, + "PluginListIndex": { + "no_plugin": "Плагінів не встановлено!", + "plugin_actions": "Дії плагінів", + "reinstall": "Перевстановити", + "reload": "Перезавантажити", + "update_to": "Оновити {{name}}", + "show": "Швидкий доступ: Показати", + "hide": "Швидкий доступ: Приховати", + "uninstall": "Видалити", + "update_all_one": "Оновити 1 плагін", + "update_all_few": "Оновити {{count}} плагінів", + "update_all_many": "Оновити {{count}} плагінів" + }, + "PluginLoader": { + "decky_title": "Decky", + "decky_update_available": "Доступне оновлення до {{tag_name}}!", + "error": "Помилка", + "plugin_load_error": { + "message": "Помилка завантаження плагіна {{name}}", + "toast": "Помилка завантаження {{name}}" + }, + "plugin_uninstall": { + "desc": "Ви впевнені, що хочете видалити {{name}}?", + "title": "Видалити {{name}}", + "button": "Видалення" + }, + "plugin_error_uninstall": "Завантаження {{name}} спровокувало помилку показану вище. Зазвичай це означає, що плагін вимагає оновлення до нової версії SteamUI. Перевірте чи таке оновлення доступне або виконайте його видалення у налаштуваннях Decky, у секції Плагіни.", + "plugin_update_one": "Доступне оновлення для 1 плагіна!", + "plugin_update_few": "Доступне оновлення для {{count}} плагінів!", + "plugin_update_many": "Доступне оновлення для {{count}} плагінів!" + }, + "SettingsDeveloperIndex": { + "cef_console": { + "button": "Відкрити консоль", + "label": "CEF-консоль", + "desc": "Відкрити CEF-консоль. Корисно тільки для дебагу. Ця штука потенційно небезпечна і повинна використовувати виключно якщо ви розробник плагіна, або якщо розробник спрямував вас сюди." + }, + "header": "Інше", + "react_devtools": { + "desc": "Вмикає доступ до компʼютера із запущеним React DevTools. Зміна цього налаштування перезавантажить Steam. Вкажіть IP перед увімкненням.", + "label": "Увімкнути React DevTools", + "ip_label": "IP" + }, + "third_party_plugins": { + "button_install": "Встановити", + "header": "Сторонні плагіни", + "label_desc": "URL", + "label_url": "Встановити плагін з URL", + "label_zip": "Встановити плагін з ZIP-файлу", + "button_zip": "Огляд" + }, + "valve_internal": { + "desc1": "Вмикає внутрішнє розробницьке меню Valve.", + "label": "Увімкнути Valve Internal", + "desc2": "Нічого не торкайтесь у цьому меню, якщо не розумієте, що ви робите." + } + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Версія Decky", + "header": "Про нас" + }, + "beta": { + "header": "Участь у Beta" + }, + "developer_mode": { + "label": "Розробницький режим" + }, + "other": { + "header": "Інше" + }, + "updates": { + "header": "Оновлення" + } + }, + "SettingsIndex": { + "developer_title": "Розробник", + "general_title": "Загальне", + "plugins_title": "Плагіни" + }, + "Store": { + "store_contrib": { + "label": "Зробити внесок", + "desc": "Якщо ви бажаєте додати щось у Decky Plugin Store, завітайте у репозиторій SteamDeckHomebrew/decky-plugin-template на GitHub. Інформація про розробку та поширення доступна у README." + }, + "store_filter": { + "label": "Фільтр", + "label_def": "Усе" + }, + "store_search": { + "label": "Пошук" + }, + "store_sort": { + "label": "Сортування", + "label_def": "Востаннє оновлені (Найновіші)" + }, + "store_source": { + "label": "Вихідний код", + "desc": "Код усіх плагінів доступний у репозиторії SteamDeckHomebrew/decky-plugin-database на GitHub." + }, + "store_tabs": { + "about": "Інформація", + "alph_asce": "За алфавітом (Z до A)", + "alph_desc": "За алфавітом (A до Z)", + "title": "Огляд" + }, + "store_testing_cta": "Розгляньте можливість тестування нових плагінів, щоб допомогти команді Decky Loader!" + }, + "StoreSelect": { + "custom_store": { + "label": "Власний магазин", + "url_label": "URL" + }, + "store_channel": { + "custom": "Власний", + "default": "За замовчуванням", + "testing": "Тестування", + "label": "Канал магазину" + } + }, + "Updater": { + "decky_updates": "Оновлення Decky", + "no_patch_notes_desc": "Немає нотаток до цієї версії", + "patch_notes_desc": "Перелік змін", + "updates": { + "checking": "Перевірка", + "cur_version": "Поточна версія: {{ver}}", + "install_button": "Встановити оновлення", + "label": "Оновлення", + "reloading": "Перезавантаження", + "updating": "Оновлення", + "check_button": "Перевірити оновлення", + "lat_version": "Оновлено: використовується {{ver}}" + } + }, + "PluginView": { + "hidden_one": "{{count}} плагін приховано з цього списку", + "hidden_few": "{{count}} плагінів приховано з цього списку", + "hidden_many": "{{count}} плагінів приховано з цього списку" + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "Дозволити доступ до CEF-дебагера без аутентифікації для будь-кого у вашій мережі", + "label": "Дозволити віддалений CEF-дебагінг" + } + } +} diff --git a/backend/decky_loader/locales/zh-CN.json b/backend/decky_loader/locales/zh-CN.json new file mode 100644 index 00000000..3f414d99 --- /dev/null +++ b/backend/decky_loader/locales/zh-CN.json @@ -0,0 +1,263 @@ +{ + "BranchSelect": { + "update_channel": { + "prerelease": "发布候选", + "stable": "稳定", + "testing": "测试", + "label": "更新通道" + } + }, + "Developer": { + "5secreload": "5 秒钟后重新加载", + "disabling": "正在禁用 React DevTools", + "enabling": "正在启用 React DevTools" + }, + "FilePickerIndex": { + "folder": { + "select": "使用这个文件夹", + "label": "文件夹", + "show_more": "显示更多文件" + }, + "filter": { + "created_asce": "创建日期(最旧)", + "created_desc": "创建日期(最新)", + "modified_asce": "修改日期(最旧)", + "modified_desc": "修改日期(最新)", + "name_asce": "字母降序", + "name_desc": "字母升序", + "size_asce": "大小(最小)", + "size_desc": "大小(最大)" + }, + "files": { + "all_files": "全部文件", + "file_type": "文件类型", + "show_hidden": "显示隐藏文件" + }, + "file": { + "select": "选择此文件" + } + }, + "PluginCard": { + "plugin_install": "安装", + "plugin_no_desc": "无描述提供。", + "plugin_version_label": "插件版本", + "plugin_full_access": "此插件可以完全访问你的 Steam Deck。" + }, + "PluginInstallModal": { + "install": { + "button_idle": "安装", + "button_processing": "安装中", + "desc": "你确定要安装 {{artifact}} {{version}} 吗?", + "title": "安装 {{artifact}}" + }, + "reinstall": { + "button_idle": "重新安装", + "button_processing": "正在重新安装", + "desc": "你确定要重新安装 {{artifact}} {{version}} 吗?", + "title": "重新安装 {{artifact}}" + }, + "update": { + "button_idle": "更新", + "button_processing": "正在更新", + "desc": "你确定要更新 {{artifact}} {{version}} 吗?", + "title": "更新 {{artifact}}" + }, + "no_hash": "此插件没有哈希校验值,你需要自行承担安装风险。" + }, + "PluginListIndex": { + "no_plugin": "没有安装插件!", + "plugin_actions": "插件操作", + "reinstall": "重新安装", + "reload": "重新加载", + "uninstall": "卸载", + "update_to": "更新 {{name}}", + "update_all_other": "更新 {{count}} 个插件", + "show": "在快速访问菜单中显示", + "hide": "在快速访问菜单中隐藏", + "unfreeze": "允许更新", + "freeze": "暂停更新" + }, + "PluginLoader": { + "decky_title": "Decky", + "error": "错误", + "plugin_error_uninstall": "加载 {{name}} 时引起了上述异常。这通常意味着插件需要更新以适应 SteamUI 的新版本。请检查插件是否有更新,或在 Decky 设置中的插件部分将其移除。", + "plugin_load_error": { + "message": "加载插件 {{name}} 错误", + "toast": "加载插件 {{name}} 发生了错误" + }, + "plugin_uninstall": { + "button": "卸载", + "title": "卸载 {{name}}", + "desc": "你确定要卸载 {{name}} 吗?" + }, + "decky_update_available": "新版本 {{tag_name}} 可用!", + "plugin_update_other": "{{count}} 个插件有更新!" + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "允许你的网络中的任何人无需身份验证即可访问 CEF 调试器", + "label": "允许 CEF 远程调试" + } + }, + "SettingsDeveloperIndex": { + "react_devtools": { + "ip_label": "IP", + "label": "启用 React DevTools", + "desc": "允许连接到运行着 React DevTools 的计算机。更改此设置将重新加载 Steam。请在启用前设置 IP 地址。" + }, + "third_party_plugins": { + "button_install": "安装", + "button_zip": "浏览文件", + "header": "第三方插件", + "label_desc": "URL", + "label_url": "从 URL 安装插件", + "label_zip": "从 ZIP 压缩文件安装插件" + }, + "valve_internal": { + "desc1": "启用 Valve 内部开发者菜单。", + "desc2": "除非你知道你在干什么,否则请不要修改此菜单中的任何内容。", + "label": "启用 Valve 内部开发者" + }, + "cef_console": { + "button": "打开控制台", + "label": "CEF 控制台", + "desc": "打开 CEF 控制台。仅在调试目的下使用。这列选项均有风险,请仅在您是插件开发者或是在插件开发者指导时访问使用。" + }, + "header": "其他" + }, + "SettingsGeneralIndex": { + "about": { + "decky_version": "Decky 版本", + "header": "关于" + }, + "beta": { + "header": "参与测试" + }, + "developer_mode": { + "label": "开发者模式" + }, + "other": { + "header": "其他" + }, + "updates": { + "header": "更新" + }, + "notifications": { + "header": "通知", + "decky_updates_label": "Decky 更新可用", + "plugin_updates_label": "插件更新可用" + } + }, + "SettingsIndex": { + "developer_title": "开发者", + "general_title": "通用", + "plugins_title": "插件", + "testing_title": "测试" + }, + "Store": { + "store_contrib": { + "label": "贡献", + "desc": "如果你想要提交你的插件到 Decky 插件商店,请访问 GitHub 上的 SteamDeckHomebrew/decky-plugin-template 存储库。有关开发和分发插件的信息,请查看 README 文件。" + }, + "store_filter": { + "label": "过滤器", + "label_def": "全部" + }, + "store_search": { + "label": "搜索" + }, + "store_sort": { + "label": "排序", + "label_def": "最后更新 (最新)" + }, + "store_source": { + "label": "源代码", + "desc": "所有插件的源代码都可从 GitHub 上的 SteamDeckHomebrew/decky-plugin-database 存储库中获得。" + }, + "store_tabs": { + "about": "关于", + "alph_asce": "字母排序 (Z 到 A)", + "alph_desc": "字母排序 (A 到 Z)", + "title": "浏览", + "downloads_desc": "下载量倒序", + "date_asce": "更新时间正序", + "date_desc": "更新时间倒序", + "downloads_asce": "下载量正序" + }, + "store_testing_cta": "请考虑测试新插件以帮助 Decky Loader 团队!", + "store_testing_warning": { + "desc": "你可以使用该商店频道以体验最新版本的插件。 请在插件 Github 页面留言以使插件可以正式面向所有用户。", + "label": "欢迎来到商店测试频道" + } + }, + "StoreSelect": { + "store_channel": { + "default": "默认", + "label": "商店通道", + "testing": "测试", + "custom": "自定义" + }, + "custom_store": { + "label": "自定义商店", + "url_label": "URL" + } + }, + "Updater": { + "decky_updates": "Decky 更新", + "no_patch_notes_desc": "此版本没有补丁说明", + "patch_notes_desc": "补丁说明", + "updates": { + "check_button": "检查更新", + "checking": "检查中", + "cur_version": "当前版本: {{ver}}", + "install_button": "安装更新", + "label": "更新", + "lat_version": "已是最新版本: {{ver}} 运行中", + "reloading": "重新加载中", + "updating": "更新中" + } + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_other": "更改 {{count}} 个插件", + "update_other": "更新 {{count}} 个插件", + "reinstall_other": "重装 {{count}} 个插件", + "install_other": "安装 {{count}} 个插件" + }, + "ok_button": { + "idle": "确认", + "loading": "工作中" + }, + "confirm": "确定要进行以下修改吗?", + "description": { + "install": "安装 {{name}} {{version}}", + "update": "更新 {{name}} to {{version}}", + "reinstall": "重装 {{name}} {{version}}" + } + }, + "PluginListLabel": { + "hidden": "在快速访问菜单中已隐藏" + }, + "PluginView": { + "hidden_other": "此列表隐藏了 {{count}} 个插件" + }, + "DropdownMultiselect": { + "button": { + "back": "返回" + } + }, + "FilePickerError": { + "errors": { + "file_not_found": "指定路径无效。请检查并输入正确的路径。", + "unknown": "发生了一个未知错误。原始错误为:{{raw_error}}", + "perm_denied": "你没有访问特定目录的权限。请检查你的用户(Steam Deck 中的 deck 账户)是否有权访问特定的文件夹或文件。" + } + }, + "TitleView": { + "decky_store_desc": "打开 Decky 商店", + "settings_desc": "打开 Decky 设置" + }, + "Testing": { + "download": "下载" + } +} diff --git a/backend/decky_loader/locales/zh-TW.json b/backend/decky_loader/locales/zh-TW.json new file mode 100644 index 00000000..091eb9d0 --- /dev/null +++ b/backend/decky_loader/locales/zh-TW.json @@ -0,0 +1,263 @@ +{ + "BranchSelect": { + "update_channel": { + "testing": "測試版", + "label": "更新頻道", + "prerelease": "預發佈", + "stable": "穩定版" + } + }, + "Developer": { + "5secreload": "5 秒後重新載入", + "disabling": "正在停用 React DevTools", + "enabling": "正在啟用 React DevTools" + }, + "FilePickerIndex": { + "folder": { + "select": "使用此資料夾", + "show_more": "顯示更多檔案", + "label": "資料夾" + }, + "filter": { + "modified_asce": "修改日期(舊到新)", + "created_desc": "建立日期(新到舊)", + "modified_desc": "修改日期(新到舊)", + "name_desc": "子母排序(A到Z)", + "name_asce": "子母排序(Z到A)", + "size_asce": "檔案大小(小到大)", + "size_desc": "檔案大小(大到小)", + "created_asce": "建立日期(舊到新)" + }, + "file": { + "select": "選擇此檔案" + }, + "files": { + "all_files": "所有檔案", + "file_type": "檔案類型", + "show_hidden": "顯示隱藏檔" + } + }, + "PluginCard": { + "plugin_install": "安裝", + "plugin_no_desc": "未提供描述。", + "plugin_version_label": "外掛程式版本", + "plugin_full_access": "此外掛程式擁有您的 Steam Deck 的完整存取權。" + }, + "PluginInstallModal": { + "install": { + "button_idle": "安裝", + "button_processing": "正在安裝", + "title": "安裝 {{artifact}}", + "desc": "您確定要安裝 {{artifact}} {{version}} 嗎?" + }, + "reinstall": { + "button_idle": "重新安裝", + "button_processing": "正在重新安裝", + "desc": "您確定要重新安裝 {{artifact}} {{version}} 嗎?", + "title": "重新安裝 {{artifact}}" + }, + "update": { + "button_idle": "更新", + "button_processing": "正在更新", + "desc": "您確定要更新 {{artifact}} {{version}} 嗎?", + "title": "更新 {{artifact}}" + }, + "no_hash": "此外掛程式沒有提供 hash 驗證,安裝可能有風險。" + }, + "PluginListIndex": { + "no_plugin": "未安裝外掛程式!", + "plugin_actions": "外掛程式操作", + "uninstall": "解除安裝", + "update_to": "更新到 {{name}}", + "reinstall": "重新安裝", + "reload": "重新載入", + "show": "快速存取:顯示", + "hide": "快速存取:隱藏", + "update_all_other": "更新 {{count}} 個外掛程式", + "freeze": "禁止更新", + "unfreeze": "允許更新" + }, + "PluginLoader": { + "decky_title": "Decky", + "error": "錯誤", + "plugin_error_uninstall": "載入 {{name}} 導致上述異常。這通常意味著該外掛程式需要針對新版本的 SteamUI 進行更新。在 Decky 設定中檢查是否存在更新,或評估刪除此外掛程式。", + "plugin_load_error": { + "message": "載入外掛程式 {{name}} 發生錯誤", + "toast": "{{name}} 載入出錯" + }, + "plugin_uninstall": { + "button": "解除安裝", + "title": "解除安裝 {{name}}", + "desc": "您確定要解除安裝 {{name}} 嗎?" + }, + "decky_update_available": "可更新至版本 {{tag_name}}!", + "plugin_update_other": "可更新 {{count}} 個外掛程式!" + }, + "RemoteDebugging": { + "remote_cef": { + "desc": "允許您的網路中的任何人未經認證地存取 CEF 偵錯器", + "label": "允許 CEF 遠端偵錯" + } + }, + "SettingsDeveloperIndex": { + "third_party_plugins": { + "button_zip": "瀏覽", + "label_desc": "網址", + "label_url": "從網址安裝外掛程式", + "label_zip": "從 ZIP 檔案安裝外掛程式", + "button_install": "安裝", + "header": "第三方外掛程式" + }, + "valve_internal": { + "desc2": "除非您知道它的作用,否則不要碰這個選單中的任何東西。", + "desc1": "啟用 Valve 內建開發人員選單。", + "label": "啟用 Valve 內建" + }, + "react_devtools": { + "desc": "啟用與執行 React DevTools 的電腦的連接。改變這個設定將重新載入 Steam。啟用前必須設定 IP 位址。", + "ip_label": "IP", + "label": "啟用 React DevTools" + }, + "header": "其他", + "cef_console": { + "button": "開啟控制台", + "label": "CEF 控制台", + "desc": "開啟 CEF 控制台。僅用於偵錯。這裡的東西有潛在的風險,只有當您是一個外掛程式開發者或者被外掛程式開發者引導到這裡時,才應該使用。" + } + }, + "SettingsGeneralIndex": { + "about": { + "header": "關於", + "decky_version": "Decky 版本" + }, + "beta": { + "header": "參與測試" + }, + "developer_mode": { + "label": "開發人員模式" + }, + "other": { + "header": "其他" + }, + "updates": { + "header": "更新" + }, + "notifications": { + "decky_updates_label": "Decky 可更新", + "header": "通知", + "plugin_updates_label": "外掛程式有更新" + } + }, + "SettingsIndex": { + "developer_title": "開發人員", + "general_title": "一般", + "plugins_title": "外掛程式", + "testing_title": "測試" + }, + "Store": { + "store_contrib": { + "label": "貢獻", + "desc": "如果您想為 Decky 外掛程式商店做貢獻,請查看 GitHub 上的 SteamDeckHomebrew/decky-plugin-template 儲存庫。README 中提供了有關開發和發佈的資訊。" + }, + "store_filter": { + "label": "過濾", + "label_def": "全部" + }, + "store_search": { + "label": "搜尋" + }, + "store_sort": { + "label": "排序", + "label_def": "最後更新 (最新)" + }, + "store_source": { + "label": "原始碼", + "desc": "所有外掛程式原始碼可以在 GitHub 的 SteamDeckHomebrew/decky-plugin-database 儲存庫查看。" + }, + "store_tabs": { + "about": "關於", + "alph_asce": "依字母排序 (Z 到 A)", + "alph_desc": "依字母排序 (A 到 Z)", + "title": "瀏覽", + "downloads_desc": "下載量高到低", + "downloads_asce": "下載量低到高", + "date_asce": "日期舊到新", + "date_desc": "日期新到舊" + }, + "store_testing_cta": "請考慮測試新的外掛程式來幫助 Decky Loader 團隊!", + "store_testing_warning": { + "label": "歡迎來到測試頻道", + "desc": "您可以使用此商店頻道來體驗測試外掛版本。請務必在 GitHub 上留下回饋,以便為所有用戶更新該外掛程式。" + } + }, + "StoreSelect": { + "custom_store": { + "label": "自訂商店", + "url_label": "網址" + }, + "store_channel": { + "custom": "自訂", + "default": "預設", + "label": "商店頻道", + "testing": "測試" + } + }, + "Updater": { + "decky_updates": "Decky 更新", + "no_patch_notes_desc": "這個版本沒有更新日誌", + "patch_notes_desc": "更新日誌", + "updates": { + "checking": "正在檢查", + "install_button": "安裝更新", + "label": "更新", + "lat_version": "已是最新:執行 {{ver}}", + "reloading": "正在重新載入", + "check_button": "檢查更新", + "cur_version": "目前版本:{{ver}}", + "updating": "正在更新" + } + }, + "PluginView": { + "hidden_other": "{{count}} 個外掛程式已隱藏" + }, + "PluginListLabel": { + "hidden": "已從快速存取選單中移除" + }, + "MultiplePluginsInstallModal": { + "title": { + "mixed_other": "修改 {{count}} 個外掛程式", + "update_other": "更新 {{count}} 個外掛程式", + "reinstall_other": "重新安裝 {{count}} 個外掛程式", + "install_other": "安裝 {{count}} 個外掛程式" + }, + "ok_button": { + "idle": "確定", + "loading": "執行中" + }, + "confirm": "您確定要進行以下的修改嗎?", + "description": { + "install": "安裝 {{name}} {{version}}", + "update": "更新 {{name}} 的版本到 {{version}}", + "reinstall": "重新安裝 {{name}} {{version}}" + } + }, + "FilePickerError": { + "errors": { + "perm_denied": "您沒有瀏覽此目錄的權限。請檢查您的使用者(Steam Deck 中的 deck 帳號)有權限瀏覽特定的資料夾或檔案。", + "unknown": "發生未知錯誤。錯誤詳細資料:{{raw_error}}", + "file_not_found": "指定路徑無效。請檢查並輸入正確路徑。" + } + }, + "DropdownMultiselect": { + "button": { + "back": "返回" + } + }, + "TitleView": { + "decky_store_desc": "開啟 Decky 商店", + "settings_desc": "開啟 Decky 設定" + }, + "Testing": { + "download": "下載" + } +} diff --git a/backend/decky_loader/main.py b/backend/decky_loader/main.py index a1e683da..fe93c11b 100644 --- a/backend/decky_loader/main.py +++ b/backend/decky_loader/main.py @@ -88,7 +88,7 @@ class PluginManager: for route in list(self.web_app.router.routes()): self.cors.add(route) # pyright: ignore [reportUnknownMemberType] - self.web_app.add_routes([static("/static", path.join(path.dirname(__file__), '..', 'static'))]) + self.web_app.add_routes([static("/static", path.join(path.dirname(__file__), 'static'))]) def exception_handler(self, loop: AbstractEventLoop, context: Dict[str, str]): if context["message"] == "Unclosed connection": diff --git a/backend/locales/ar-AA.json b/backend/locales/ar-AA.json deleted file mode 100644 index f5c11016..00000000 --- a/backend/locales/ar-AA.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "FilePickerIndex": { - "files": { - "file_type": "نوع الملف", - "show_hidden": "أظهر الملفات المخفية", - "all_files": "جميع الملفات" - }, - "filter": { - "created_asce": "المنشئة (الأقدم)", - "modified_asce": "المعدلة (الأقدم)", - "modified_desc": "المعدلة (الأحدث)", - "name_asce": "أ-ي", - "name_desc": "أ-ي", - "size_asce": "الحجم ( الأصغر)", - "size_desc": "الحجم ( الأكبر)", - "created_desc": "المنشئة (الأحدث)" - }, - "folder": { - "label": "المجلد", - "show_more": "أظهر المزيد من الملفات", - "select": "إستخدم هذا المجلد" - }, - "file": { - "select": "إختر هذا الملف" - } - }, - "MultiplePluginsInstallModal": { - "confirm": "هل أنت متأكد من التعديلات التالية؟", - "description": { - "reinstall": "إعادة تنصيب {{name}} {{version}}", - "update": "تحديث {{name}} إلى {{version}}", - "install": "تنصيب {{name}} {{version}}" - }, - "ok_button": { - "idle": "تأكيد" - } - }, - "DropdownMultiselect": { - "button": { - "back": "الخلف" - } - }, - "BranchSelect": { - "update_channel": { - "label": "قناة التحديثات", - "prerelease": "الإصدار التجريبي", - "stable": "إصدار مستقر", - "testing": "إصدار تحت الإختبار" - } - }, - "PluginCard": { - "plugin_full_access": "هذه الإضافة لديها الصلاحية للوصول لمحتويات Steam Deck.", - "plugin_install": "تنصيب", - "plugin_version_label": "رقم إصدار الإضافة", - "plugin_no_desc": "لا يوجد وصف متاح." - }, - "PluginInstallModal": { - "install": { - "button_idle": "تنصيب", - "button_processing": "يتم التنصيب", - "title": "تنصيب {{artifact}}", - "desc": "هل أنت متأكد من رغبتك في تنصيب {{artifact}} {{version}}؟" - }, - "reinstall": { - "button_idle": "إعادة تنصيب", - "button_processing": "تتم إعادة التنصيب", - "desc": "هل أنت متأكد من رغبتك في إعادة تنصيب {{artifact}} {{version}}؟", - "title": "إعادة تنصيب {{artifact}}" - }, - "update": { - "button_idle": "تحديث", - "button_processing": "يتم التحديث", - "title": "تحديث {{artifact}}", - "desc": "هل أنت متأكد من رغبتك في تحديث {{artifact}} {{version}}؟" - } - }, - "PluginListIndex": { - "hide": "إخفاء من قائمة الوصول السريع", - "reinstall": "إعادة التنصيب", - "reload": "إعادة التحميل", - "show": "إظهار في قائمة الوصول السريع", - "unfreeze": "السماح بالتحديثات", - "uninstall": "إزالة التنصيب", - "update_to": "التحديث إلى {{name}}" - }, - "PluginListLabel": { - "hidden": "مخفي من قائمة الوصول السريع" - }, - "PluginLoader": { - "decky_title": "Decky", - "error": "خطا", - "plugin_uninstall": { - "button": "إزالة التنصيب", - "title": "إزالة التنصيب {{name}}" - } - }, - "SettingsDeveloperIndex": { - "react_devtools": { - "ip_label": "عنوان الشبكة" - }, - "third_party_plugins": { - "button_zip": "تصفح", - "button_install": "تنصيب" - }, - "header": "أخرى" - }, - "Developer": { - "5secreload": "إعادة التحميل في 5 ثواني" - } -} diff --git a/backend/locales/bg-BG.json b/backend/locales/bg-BG.json deleted file mode 100644 index b9c4d803..00000000 --- a/backend/locales/bg-BG.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "stable": "Стабилен", - "testing": "Тестване", - "label": "Канал за обновления", - "prerelease": "Предварителни издания" - } - }, - "Developer": { - "5secreload": "Презареждане след 5 секунди", - "disabling": "Изключване на React DevTools", - "enabling": "Включване на React DevTools" - }, - "DropdownMultiselect": { - "button": { - "back": "Назад" - } - }, - "FilePickerError": { - "errors": { - "unknown": "Възникна неизвестна грешка. Грешката в суров вид е: {{raw_error}}", - "file_not_found": "Посоченият път е неправилен. Проверете го и го въведете правилно.", - "perm_denied": "Нямате достъп до посочената папка. Проверете дали потребителят (deck на Steam Deck) има съответните правомощия за достъп до посочената папка/файл." - } - }, - "FilePickerIndex": { - "file": { - "select": "Избиране на този файл" - }, - "files": { - "all_files": "Всички файлове", - "file_type": "Файлов тип", - "show_hidden": "Показване на скритите файлове" - }, - "filter": { - "created_asce": "Дата на създаване (първо най-старите)", - "created_desc": "Дата на създаване (първо най-новите)", - "modified_asce": "Дата на промяна (първо най-старите)", - "modified_desc": "Дата на промяна (първо най-новите)", - "name_asce": "Я-А", - "name_desc": "А-Я", - "size_asce": "Размер (първо най-малките)", - "size_desc": "Размер (първо най-големите)" - }, - "folder": { - "label": "Папка", - "show_more": "Показване на още файлове", - "select": "Използване на тази папка" - } - }, - "MultiplePluginsInstallModal": { - "description": { - "install": "Инсталиране на {{name}} {{version}}", - "reinstall": "Преинсталиране на {{name}} {{version}}", - "update": "Обновяване на {{name}} до {{version}}" - }, - "ok_button": { - "idle": "Потвърждаване", - "loading": "В процес на работа" - }, - "title": { - "mixed_one": "Промяна на {{count}} добавка", - "mixed_other": "Промяна на {{count}} добавки", - "update_one": "Обновяване на 1 добавка", - "update_other": "Обновяване на {{count}} добавки", - "install_one": "Инсталиране на 1 добавка", - "install_other": "Инсталиране на {{count}} добавки", - "reinstall_one": "Преинсталиране на 1 добавка", - "reinstall_other": "Преинсталиране на {{count}} добавки" - }, - "confirm": "Наистина ли искате да направите следните промени?" - }, - "PluginCard": { - "plugin_full_access": "Тази добавка има пълен достъп до Вашия Steam Deck.", - "plugin_install": "Инсталиране", - "plugin_no_desc": "Няма описание.", - "plugin_version_label": "Версия на добавката" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Инсталиране", - "desc": "Наистина ли искате да инсталирате {{artifact}} {{version}}?", - "title": "Инсталиране на {{artifact}}", - "button_processing": "Инсталиране" - }, - "reinstall": { - "button_idle": "Преинсталиране", - "button_processing": "Преинсталиране", - "desc": "Наистина ли искате да преинсталирате {{artifact}} {{version}}?", - "title": "Преинсталиране на {{artifact}}" - }, - "update": { - "button_idle": "Обновяване", - "title": "Обновяване на {{artifact}}", - "button_processing": "Обновяване", - "desc": "Наистина ли искате да обновите {{artifact}} {{version}}?" - }, - "no_hash": "Тази добавка няма хеш. Инсталирате я на свой собствен риск." - }, - "PluginListIndex": { - "hide": "Бърз достъп: Скриване", - "no_plugin": "Няма инсталирани добавки!", - "plugin_actions": "Действия с добавката", - "reinstall": "Преинсталиране", - "uninstall": "Деинсталиране", - "update_to": "Обновяване до {{name}}", - "reload": "Презареждане", - "show": "Бърз достъп: Показване", - "update_all_one": "Обновяване на 1 добавка", - "update_all_other": "Обновяване на {{count}} добавки" - }, - "PluginListLabel": { - "hidden": "Скрито от менюто за бърз достъп" - }, - "PluginLoader": { - "decky_title": "Decky", - "error": "Грешка", - "plugin_load_error": { - "message": "Грешка при зареждането на добавката {{name}}", - "toast": "Грешка при зареждането на {{name}}" - }, - "plugin_uninstall": { - "button": "Деинсталиране", - "desc": "Наистина ли искате да деинсталирате {{name}}?", - "title": "Деинсталиране на {{name}}" - }, - "plugin_update_one": "Има налично обновление за 1 добавка!", - "plugin_update_other": "Има налични обновления за {{count}} добавки!", - "decky_update_available": "Има налично обновление до {{tag_name}}!", - "plugin_error_uninstall": "Зареждането на {{name}} предизвика грешка, както се вижда по-горе. Това обикновено означава, че добавката изисква обновяване на новата версия на SteamUI. Проверете дали има обновление или изберете да я премахнете в настройките на Decky, в раздела с добавките." - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Разрешаване на достъп без удостоверяване до дебъгера на CEF на всеки от Вашата мрежа", - "label": "Разрешаване на отдалеченото дебъгване на CEF" - } - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Отваряне на конзолата", - "label": "Конзола на CEF", - "desc": "Отваря конзолата на CEF. Това има смисъл единствено за дебъгване. Нещата тук може да са опасни и трябва да бъдат използвани само ако Вие сте разработчик на добавка, или получавате насоки от такъв." - }, - "header": "Други", - "react_devtools": { - "ip_label": "IP", - "label": "Включване на React DevTools", - "desc": "Включва свързването към компютър, на който работи React DevTools. Промяната на тази настройка ще презареди Steam. Задайте IP адреса преди да включите това." - }, - "third_party_plugins": { - "button_install": "Инсталиране", - "button_zip": "Разглеждане", - "header": "Добавки от външен източник", - "label_desc": "Адрес", - "label_zip": "Инсталиране на добавка от файл ZIP", - "label_url": "Инсталиране на добавка от адрес в Интернет" - }, - "valve_internal": { - "desc2": "Не пипайте нищо в това меню, освен ако не знаете какво правите.", - "label": "Включване на вътрешното меню на Valve", - "desc1": "Включва вътрешното меню за разработчици на Valve." - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Версия на Decky", - "header": "Относно" - }, - "developer_mode": { - "label": "Режим за разработчици" - }, - "notifications": { - "decky_updates_label": "Има налично обновление на Decky", - "header": "Известия", - "plugin_updates_label": "Има налични обновления на добавките" - }, - "other": { - "header": "Други" - }, - "updates": { - "header": "Обновления" - }, - "beta": { - "header": "Участие в бета-версии" - } - }, - "SettingsIndex": { - "developer_title": "Разработчик", - "general_title": "Общи", - "plugins_title": "Добавки" - }, - "Store": { - "store_contrib": { - "label": "Допринасяне", - "desc": "Ако искате да допринесете към магазина за добавки на Decky, разгледайте хранилището SteamDeckHomebrew/decky-plugin-template в GitHub. Може да намерите информация относно разработката и разпространението във файла README." - }, - "store_filter": { - "label": "Филтър", - "label_def": "Всички" - }, - "store_search": { - "label": "Търсене" - }, - "store_sort": { - "label": "Подредба", - "label_def": "Последно обновление (първо най-новите)" - }, - "store_source": { - "label": "Изходен код", - "desc": "Целият изходен код е наличен в хранилището SteamDeckHomebrew/decky-plugin-database в GitHub." - }, - "store_tabs": { - "about": "Относно", - "alph_asce": "По азбучен ред (Я -> А)", - "alph_desc": "По азбучен ред (А -> Я)", - "title": "Разглеждане" - }, - "store_testing_cta": "Помислете дали искате да тествате новите добавки, за да помогнете на екипа на Decky Loader!" - }, - "StoreSelect": { - "custom_store": { - "label": "Персонализиран магазин", - "url_label": "Адрес" - }, - "store_channel": { - "custom": "Персонализиран", - "default": "По подразбиране", - "label": "Канал за магазина", - "testing": "Тестване" - } - }, - "Updater": { - "decky_updates": "Обновления на Decky", - "patch_notes_desc": "Бележки за промените", - "updates": { - "check_button": "Проверка за обновления", - "checking": "Проверяване", - "cur_version": "Текуща версия: {{ver}}", - "label": "Обновления", - "lat_version": "Използвате най-новата версия: {{ver}}", - "reloading": "Презареждане", - "updating": "Обновяване", - "install_button": "Инсталиране на обновлението" - }, - "no_patch_notes_desc": "няма бележки за промените в тази версия" - }, - "PluginView": { - "hidden_one": "1 добавка е скрита от този списък", - "hidden_other": "{{count}} добавки са скрити от този списък" - } -} diff --git a/backend/locales/cs-CZ.json b/backend/locales/cs-CZ.json deleted file mode 100644 index ca8114e4..00000000 --- a/backend/locales/cs-CZ.json +++ /dev/null @@ -1,277 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "label": "Aktualizační kanál", - "prerelease": "Předběžná vydání", - "stable": "Stabilní", - "testing": "Testování" - } - }, - "Developer": { - "disabling": "Vypínám React DevTools", - "enabling": "Zapínám React DevTools", - "5secreload": "Znovu načtení za 5 vteřin" - }, - "FilePickerIndex": { - "folder": { - "select": "Použít tuto složku", - "label": "Složka", - "show_more": "Zobrazit více souborů" - }, - "filter": { - "created_asce": "Vytvořeno (Nejstarší)", - "created_desc": "Vytvořeno (Nejnovější)", - "modified_asce": "Upraveno (Nejstarší)", - "modified_desc": "Upraveno (Nejnovější)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Velikost (Nejmenší)", - "size_desc": "Velikost (Největší)" - }, - "files": { - "show_hidden": "Zobrazit skryté soubory", - "all_files": "Všechny soubory", - "file_type": "Typ souboru" - }, - "file": { - "select": "Vybrat tento soubor" - } - }, - "PluginView": { - "hidden_one": "1 plugin je v tomto seznamu skrytý", - "hidden_few": "{{count}} pluginů je v tomto seznamu skryto", - "hidden_other": "{{count}} pluginů je v tomto seznamu skryto" - }, - "PluginListLabel": { - "hidden": "Skryto z nabídky rychlého přístupu" - }, - "PluginCard": { - "plugin_full_access": "Tento plugin má plný přístup k vašemu Steam Decku.", - "plugin_install": "Instalovat", - "plugin_no_desc": "Nebyl uveden žádný popis.", - "plugin_version_label": "Verze pluginu" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Instalovat", - "button_processing": "Instalování", - "title": "Instalovat {{artifact}}", - "desc": "Jste si jisti, že chcete nainstalovat {{artifact}} {{version}}?" - }, - "no_hash": "Tento plugin nemá hash, instalujete jej na vlastní nebezpečí.", - "reinstall": { - "button_idle": "Přeinstalovat", - "button_processing": "Přeinstalování", - "title": "Přeinstalovat {{artifact}}", - "desc": "Jste si jisti, že chcete přeinstalovat {{artifact}} {{version}}?" - }, - "update": { - "button_idle": "Aktualizovat", - "button_processing": "Aktualizování", - "desc": "Jste si jisti, že chcete aktualizovat {{artifact}} {{version}}?", - "title": "Aktualizovat {{artifact}}" - } - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_one": "Upravit {{count}} plugin", - "mixed_few": "Upravit {{count}} pluginů", - "mixed_other": "Upravit {{count}} pluginů", - "reinstall_one": "Přeinstalovat 1 plugin", - "reinstall_few": "Přeinstalovat {{count}} pluginů", - "reinstall_other": "Přeinstalovat {{count}} pluginů", - "install_one": "Instalovat 1 plugin", - "install_few": "Instalovat {{count}} pluginů", - "install_other": "Instalovat {{count}} pluginů", - "update_one": "Aktualizovat 1 plugin", - "update_few": "Aktualizovat {{count}} pluginů", - "update_other": "Aktualizovat {{count}} pluginů" - }, - "ok_button": { - "idle": "Potvrdit", - "loading": "Probíhá" - }, - "description": { - "install": "Instalovat {{name}} {{version}}", - "update": "Aktualizovat {{name}} na {{version}}", - "reinstall": "Přeinstalovat {{name}} {{version}}" - }, - "confirm": "Jste si jisti, že chcete udělat následující úpravy?" - }, - "PluginListIndex": { - "no_plugin": "Nejsou nainstalovány žádné pluginy!", - "plugin_actions": "Akce pluginu", - "reinstall": "Přeinstalovat", - "reload": "Znovu načíst", - "uninstall": "Odinstalovat", - "update_to": "Aktualizovat na {{name}}", - "show": "Rychlý přístup: Zobrazit", - "hide": "Rychlý přístup: Skrýt", - "update_all_one": "Aktualizovat 1 plugin", - "update_all_few": "Aktualizovat {{count}} pluginů", - "update_all_other": "Aktualizovat {{count}} pluginů", - "freeze": "Pozastavit aktualizace", - "unfreeze": "Povolit aktualizace" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "Aktualizace na {{tag_name}} dostupná!", - "error": "Chyba", - "plugin_load_error": { - "message": "Chyba při načítání pluginu {{name}}", - "toast": "Chyba při načítání {{name}}" - }, - "plugin_uninstall": { - "button": "Odinstalovat", - "desc": "Opravdu chcete odinstalovat {{name}}?", - "title": "Odinstalovat {{name}}" - }, - "plugin_update_one": "Je dostupná aktualizace pro 1 plugin!", - "plugin_update_few": "Jsou dostupné aktualizace pro {{count}} pluginů!", - "plugin_update_other": "Jsou dostupné aktualizace pro {{count}} pluginů!", - "plugin_error_uninstall": "Načítání {{name}} způsobilo chybu uvedenou výše. To obvykle znamená, že plugin vyžaduje aktualizaci SteamUI. Zkontrolujte, zda je aktualizace k dispozici, nebo zvažte odstranění pluginu v nastavení Decky v sekci Pluginy." - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Otevřít konzoli", - "label": "CEF konzole", - "desc": "Otevře CEF konzoli. Užitečné pouze pro účely ladění. Věci zde jsou potenciálně nebezpečné a měly by být používány pouze v případě, že jste vývojář pluginů, nebo vás sem nějaký nasměroval." - }, - "header": "Ostatní", - "react_devtools": { - "desc": "Umožňuje připojení k počítači, na kterém běží React DevTools. Změnou tohoto nastavení se znovu načte Steam. Před povolením nastavte IP adresu.", - "ip_label": "IP adresa", - "label": "Zapnout React DevTools" - }, - "third_party_plugins": { - "button_install": "Instalovat", - "button_zip": "Procházet", - "header": "Pluginy třetí strany", - "label_desc": "URL", - "label_url": "Instalovat plugin z URL", - "label_zip": "Instalovat plugin ze ZIP souboru" - }, - "valve_internal": { - "desc1": "Zapíná interní vývojářské menu Valve.", - "desc2": "Nedotýkejte se ničeho v této nabídce, pokud nevíte, co děláte.", - "label": "Zapnout Valve Internal" - } - }, - "RemoteDebugging": { - "remote_cef": { - "label": "Povolit vzdálené CEF ladění", - "desc": "Umožní neověřený přístup k CEF ladění komukoli ve vaší síti" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Decky verze", - "header": "O Decky" - }, - "beta": { - "header": "Účast v betě" - }, - "developer_mode": { - "label": "Vývojářský režim" - }, - "other": { - "header": "Ostatní" - }, - "updates": { - "header": "Aktualizace" - }, - "notifications": { - "decky_updates_label": "Dostupná aktualizace Decky", - "header": "Notifikace", - "plugin_updates_label": "Dostupná aktualizace pluginu" - } - }, - "SettingsIndex": { - "developer_title": "Vývojář", - "general_title": "Obecné", - "plugins_title": "Pluginy", - "testing_title": "Testování" - }, - "Store": { - "store_contrib": { - "label": "Přispívání", - "desc": "Pokud byste chtěli přispět do obchodu Decky Plugin Store, podívejte se na repozitář SteamDeckHomebrew/decky-plugin-template na GitHubu. Informace o vývoji a distribuci jsou k dispozici v README." - }, - "store_filter": { - "label": "Filtr", - "label_def": "Vše" - }, - "store_search": { - "label": "Hledat" - }, - "store_sort": { - "label": "Seřadit", - "label_def": "Naposledy aktualizováno (Nejnovější)" - }, - "store_source": { - "desc": "Veškerý zdrojový kód pluginu je dostupný v repozitáři SteamDeckHomebrew/decky-plugin-database na GitHubu.", - "label": "Zdrojový kód" - }, - "store_tabs": { - "about": "O Decky Plugin Store", - "alph_asce": "Abecedně (Z do A)", - "alph_desc": "Abecedně (A do Z)", - "title": "Procházet", - "date_asce": "Nejstarší", - "downloads_desc": "Nejvíce stažené", - "date_desc": "Nejnovější", - "downloads_asce": "Nejméně stažené" - }, - "store_testing_cta": "Zvažte prosím testování nových pluginů, pomůžete tím týmu Decky Loader!", - "store_testing_warning": { - "desc": "Tento kanál obchodu můžete použít k testování nejnovějších verzí pluginů. Nezapomeňte zanechat zpětnou vazbu na GitHubu, aby bylo možné plugin aktualizovat pro všechny uživatele.", - "label": "Vítejte na testovacím kanálu obchodu" - } - }, - "StoreSelect": { - "custom_store": { - "label": "Vlastní obchod", - "url_label": "URL" - }, - "store_channel": { - "custom": "Vlastní", - "default": "Výchozí", - "label": "Kanál obchodu", - "testing": "Testování" - } - }, - "Updater": { - "updates": { - "lat_version": "Aktuální: běží na verzi {{ver}}", - "reloading": "Znovu načítání", - "updating": "Aktualizování", - "check_button": "Zkontrolovat aktualizace", - "checking": "Kontrolování", - "cur_version": "Aktuální verze: {{ver}}", - "install_button": "Instalovat aktualizaci", - "label": "Aktualizace" - }, - "decky_updates": "Aktualizace Decky", - "patch_notes_desc": "Poznámky k verzi", - "no_patch_notes_desc": "žádné poznámky pro tuto verzi" - }, - "DropdownMultiselect": { - "button": { - "back": "Zpět" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "Zadaná cesta není platná. Zkontrolujte ji a zadejte znovu správně.", - "unknown": "Nastala neznámá chyba. Nezpracovaná chyba je: {{raw_error}}", - "perm_denied": "Nemáte přístup k zadanému adresáři. Zkontrolujte, zda jako uživatel (deck na Steam Decku) máte odpovídající oprávnění pro přístup k dané složce/souboru." - } - }, - "TitleView": { - "settings_desc": "Otevřít nastavení Decky", - "decky_store_desc": "Otevřít obchod Decky" - }, - "Testing": { - "download": "Stáhnout" - } -} diff --git a/backend/locales/de-DE.json b/backend/locales/de-DE.json deleted file mode 100644 index e0013bc7..00000000 --- a/backend/locales/de-DE.json +++ /dev/null @@ -1,270 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "label": "Updatekanal", - "prerelease": "Vorabveröffentlichung", - "stable": "Standard", - "testing": "Test" - } - }, - "Developer": { - "disabling": "Deaktiviere React DevTools", - "enabling": "Aktiviere React DevTools", - "5secreload": "Neu laden in 5 Sekunden" - }, - "FilePickerIndex": { - "folder": { - "select": "Diesen Ordner verwenden", - "label": "Ordner", - "show_more": "Mehr Dateien anzeigen" - }, - "filter": { - "name_desc": "A-Z", - "size_asce": "Größe (Kleinste)", - "size_desc": "Größe (Größte)", - "created_asce": "Erstellt (Älteste)", - "created_desc": "Erstellt (Neuste)", - "modified_asce": "Geändert (Älteste)", - "modified_desc": "Geändert (Neuste)", - "name_asce": "Z-A" - }, - "file": { - "select": "Diese Datei auswählen" - }, - "files": { - "all_files": "Alle Dateien", - "file_type": "Dateityp", - "show_hidden": "Versteckte Dateien anzeigen" - } - }, - "PluginCard": { - "plugin_install": "Installieren", - "plugin_no_desc": "Keine Beschreibung angegeben.", - "plugin_version_label": "Erweiterungs Version", - "plugin_full_access": "Diese Erweiterung hat uneingeschränkten Zugriff auf dein Steam Deck." - }, - "PluginInstallModal": { - "install": { - "button_idle": "Installieren", - "button_processing": "Wird installiert", - "desc": "Bist du dir sicher, dass du {{artifact}} {{version}} installieren willst?", - "title": "Installiere {{artifact}}" - }, - "reinstall": { - "button_idle": "Neu installieren", - "button_processing": "Wird neu installiert", - "desc": "Bist du dir sicher, dass du {{artifact}} {{version}} neu installieren willst?", - "title": "Neu installation {{artifact}}" - }, - "update": { - "button_idle": "Aktualisieren", - "button_processing": "Wird aktualisiert", - "title": "Aktualisiere {{artifact}}", - "desc": "Bist du dir sicher, dass du {{artifact}} {{version}} aktualisieren willst?" - }, - "no_hash": "Diese Erweiterung besitzt keine Prüfsumme, Installation auf eigene Gefahr." - }, - "PluginListIndex": { - "no_plugin": "Keine Erweiterungen installiert!", - "plugin_actions": "Erweiterungs Aktionen", - "reinstall": "Neu installieren", - "reload": "Neu laden", - "uninstall": "Deinstallieren", - "update_to": "Aktualisieren zu {{name}}", - "update_all_one": "{{count}} Plugin aktualisieren", - "update_all_other": "{{count}} Plugins aktualisieren", - "show": "Schnellzugriff: Anzeigen", - "hide": "Schnellzugriff: Ausblenden", - "freeze": "Updates einfrieren", - "unfreeze": "Updates erlauben" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "Eine neue Version ({{tag_name}}) ist verfügbar!", - "error": "Fehler", - "plugin_load_error": { - "toast": "Fehler beim Laden von {{name}}", - "message": "Fehler beim Laden von {{name}}" - }, - "plugin_uninstall": { - "button": "Deinstallieren", - "desc": "Bist du dir sicher, dass du {{name}} deinstallieren willst?", - "title": "Deinstalliere {{name}}" - }, - "plugin_error_uninstall": "Das Laden von {{name}} hat einen Fehler verursacht. Dies bedeutet normalerweise, dass die Erweiterung ein Update für die neue Version von SteamUI benötigt. Prüfe in den Decky-Einstellungen im Bereich Erweiterungen, ob ein Update vorhanden ist.", - "plugin_update_one": "1 Erweiterung kann aktualisiert werden!", - "plugin_update_other": "{{count}} Erweiterungen können aktualisiert werden!" - }, - "RemoteDebugging": { - "remote_cef": { - "label": "Remote CEF Debugging Zugriff", - "desc": "Erlaubt jedem aus dem Neztwerk unautorisierten Zugriff auf den CEF Debugger" - } - }, - "SettingsDeveloperIndex": { - "header": "Sonstiges", - "react_devtools": { - "ip_label": "IP", - "label": "Aktiviere React DevTools", - "desc": "Erlaubt die Verbindung mit einem anderen Rechner, auf welchem React DevTools läuft. Eine Änderung startet Steam neu. Die IP Adresse muss vor Aktivierung ausgefüllt sein." - }, - "third_party_plugins": { - "button_zip": "Durchsuchen", - "header": "Erweiterungen von Drittanbietern", - "label_desc": "URL", - "label_zip": "Installiere Erweiterung via ZIP Datei", - "button_install": "Installieren", - "label_url": "Installiere Erweiterung via URL" - }, - "valve_internal": { - "desc2": "Fasse in diesem Menü nichts an, es sei denn, du weißt was du tust.", - "label": "Aktiviere Valve-internes Menü", - "desc1": "Aktiviert das Valve-interne Entwickler Menü." - }, - "cef_console": { - "button": "Konsole öffnen", - "label": "CEF Konsole", - "desc": "Öffnet die CEF Konsole. Nur für Debugzwecke. Dinge hier sind potentiell gefährlich und sollten nur durch oder unter Anleitung von Pluginentwickler/innen geschehen." - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Decky Version", - "header": "Über" - }, - "beta": { - "header": "Beta Teilnahme" - }, - "developer_mode": { - "label": "Entwickleroptionen" - }, - "other": { - "header": "Sonstiges" - }, - "updates": { - "header": "Aktualisierungen" - }, - "notifications": { - "decky_updates_label": "Decky Update verfügbar", - "header": "Benachrichtigungen", - "plugin_updates_label": "Plugin Updates verfügbar" - } - }, - "SettingsIndex": { - "developer_title": "Entwickler", - "general_title": "Allgemein", - "plugins_title": "Erweiterungen", - "testing_title": "Testen" - }, - "Store": { - "store_contrib": { - "label": "Mitwirken", - "desc": "Wenn du Erweiterungen im Decky Store veröffentlichen willst, besuche die SteamDeckHomebrew/decky-plugin-template Repository auf GitHub. Informationen rund um Entwicklung und Veröffentlichung findest du in der README." - }, - "store_filter": { - "label": "Filter", - "label_def": "Alle" - }, - "store_search": { - "label": "Suche" - }, - "store_sort": { - "label": "Sortierung", - "label_def": "Zuletzt aktualisiert" - }, - "store_source": { - "desc": "Jeder Erweiterungs Quellcode ist in der SteamDeckHomebrew/decky-plugin-database Repository auf GitHub verfügbar.", - "label": "Quellcode" - }, - "store_tabs": { - "about": "Über", - "alph_asce": "Alphabetisch (Z zu A)", - "alph_desc": "Alphabetisch (A zu Z)", - "title": "Durchstöbern", - "date_desc": "Neuste Zuerst", - "downloads_asce": "Wenigste Downloads Zuerst", - "downloads_desc": "Meiste Downloads Zuerst", - "date_asce": "Älteste Zuerst" - }, - "store_testing_cta": "Unterstütze das Decky Loader Team mit dem Testen von neuen Erweiterungen!", - "store_testing_warning": { - "label": "Willkommen zum Test Store Kanal", - "desc": "Du kannst diesen Store Kanal nutzen, um brandneue Testversionen von Plugins auszuprobieren. Denk daran Feedback auf GitHub zu hinterlassen, sodass das Plugin für alle Nutzer verbessert werden kann." - } - }, - "StoreSelect": { - "custom_store": { - "label": "Benutzerdefiniertes Store", - "url_label": "URL" - }, - "store_channel": { - "custom": "Benutzerdefiniert", - "default": "Standard", - "label": "Store Kanal", - "testing": "Test" - } - }, - "Updater": { - "decky_updates": "Decky Aktualisierungen", - "patch_notes_desc": "Patchnotizen", - "updates": { - "check_button": "Auf Aktualisierungen prüfen", - "checking": "Wird überprüft", - "cur_version": "Aktualle Version: {{ver}}", - "install_button": "Aktualisierung installieren", - "label": "Aktualisierungen", - "lat_version": "{{ver}} ist die aktuellste", - "reloading": "Lade neu", - "updating": "Aktualisiere" - }, - "no_patch_notes_desc": "Für diese Version gibt es keine Patchnotizen" - }, - "PluginView": { - "hidden_one": "{{count}} Plugin ist in dieser Liste ausgeblendet", - "hidden_other": "{{count}} Plugins sind in dieser Liste ausgeblendet" - }, - "MultiplePluginsInstallModal": { - "title": { - "install_one": "{{count}} Plugin installieren", - "install_other": "{{count}} Plugins installieren", - "mixed_one": "{{count}} Plugin bearbeiten", - "mixed_other": "{{count}} Plugins bearbeiten", - "update_one": "{{count}} Plugin aktualisieren", - "update_other": "{{count}} Plugins aktualisieren", - "reinstall_one": "{{count}} Plugin neu installieren", - "reinstall_other": "{{count}} Plugins neu installieren" - }, - "description": { - "install": "{{name}} {{version}} installieren", - "update": "{{name}} auf {{version}} aktualisieren", - "reinstall": "{{name}} {{version}} neu installieren" - }, - "confirm": "Bist du sicher, dass du die folgenden Änderungen vornehmen möchtest?", - "ok_button": { - "loading": "An der Arbeit", - "idle": "Bestätigen" - } - }, - "PluginListLabel": { - "hidden": "Im Schnellzugriff-Menu ausgeblendet" - }, - "TitleView": { - "decky_store_desc": "Decky Store Öffnen", - "settings_desc": "Decky Einstellungen Öffnen" - }, - "DropdownMultiselect": { - "button": { - "back": "Zurück" - } - }, - "FilePickerError": { - "errors": { - "unknown": "Ein unbekannter Fehler ist aufgetreten. Die ursprüngliche Fehlermeldung ist: {{raw_error}}", - "file_not_found": "Der Pfad ist ungültig. Bitte prüfen und erneut eingeben.", - "perm_denied": "Kein Zugriff auf den angegebenen Dateipfad. Bitte prüfen, ob der Nutzer (deck auf dem Steam Deck) die entsprechenden Zugriffsrechte auf den angegebenen Ordner/die angegebene Datei hat." - } - }, - "Testing": { - "download": "Download" - } -} diff --git a/backend/locales/el-GR.json b/backend/locales/el-GR.json deleted file mode 100644 index 62562935..00000000 --- a/backend/locales/el-GR.json +++ /dev/null @@ -1,260 +0,0 @@ -{ - "SettingsDeveloperIndex": { - "react_devtools": { - "desc": "Επιτρέπει την σύνδεση με υπολογιστή που τρέχει React DevTools. Η αλλαγή αυτής της ρύθμισης θα προκαλέσει επαναφόρτωση του Steam. Ωρίστε την διεύθυνση IP πριν την ενεργοποιήσετε.", - "ip_label": "IP", - "label": "Ενεργοποίηση React DevTools" - }, - "third_party_plugins": { - "button_install": "Εγκατάσταση", - "button_zip": "Περιήγηση", - "header": "Επεκτάσεις τρίτων", - "label_desc": "URL", - "label_url": "Εγκατάσταση επέκτασης απο URL", - "label_zip": "Εγκατάσταση επέκτασης από αρχείο ZIP" - }, - "valve_internal": { - "desc1": "Ενεργοποιεί το μενού προγραμματιστή της Valve.", - "desc2": "Μην αγγίξετε τίποτα σε αυτό το μενού εκτός και αν ξέρετε τι κάνει.", - "label": "Ενεργοποιήση εσωτερικού μενού Valve" - }, - "cef_console": { - "button": "Άνοιγμα Κονσόλας", - "desc": "Ανοίγει την Κονσόλα CEF. Χρήσιμο μόνο για εντοπισμό σφαλμάτων. Τα πράγματα εδώ είναι δυνητικά επικίνδυνα και θα πρέπει να χρησιμοποιηθεί μόνο εάν είστε προγραμματιστής επεκτάσεων, ή κατευθυνθήκατε εδώ από έναν προγραμματιστή.", - "label": "Κονσόλα CEF" - }, - "header": "Άλλα" - }, - "BranchSelect": { - "update_channel": { - "prerelease": "Προ-κυκλοφορία", - "stable": "Σταθερό", - "label": "Κανάλι ενημερώσεων", - "testing": "Δοκιμαστικό" - } - }, - "Developer": { - "5secreload": "Γίνεται επαναφόρτωση σε 5 δευτερόλεπτα", - "disabling": "Γίνεται απενεργοποίηση των React DevTools", - "enabling": "Γίνεται ενεργοποίηση των React DevTools" - }, - "PluginCard": { - "plugin_no_desc": "Δεν υπάρχει περιγραφή.", - "plugin_full_access": "Αυτή η επέκταση έχει πλήρη πρόσβαση στο Steam Deck σας.", - "plugin_install": "Εγκατάσταση", - "plugin_version_label": "Έκδοση επέκτασης" - }, - "PluginInstallModal": { - "install": { - "desc": "Σίγουρα θέλετε να εγκαταστήσετε το {{artifact}}{{version}};", - "button_idle": "Εγκατάσταση", - "button_processing": "Γίνεται εγκατάσταση", - "title": "Εγκατάσταση {{artifact}}" - }, - "no_hash": "Αυτή η επέκταση δεν έχει υπογραφή, την εγκαθηστάτε με δικό σας ρίσκο.", - "reinstall": { - "button_idle": "Επανεγκατάσταση", - "button_processing": "Γίνεται επανεγκατάσταση", - "desc": "Σίγουρα θέλετε να επανεγκαταστήσετε το {{artifact}}{{version}};", - "title": "Επανεγκατάσταση {{artifact}}" - }, - "update": { - "button_idle": "Ενημέρωση", - "desc": "Σίγουρα θέλετε να ενημερώσετε το {{artifact}} {{version}};", - "title": "Ενημέρωση {{artifact}}", - "button_processing": "Γίνεται ενημέρωση" - } - }, - "PluginListIndex": { - "no_plugin": "Δεν υπάρχουν εγκατεστημένες επεκτάσεις!", - "plugin_actions": "Ενέργειες επεκτάσεων", - "reinstall": "Επανεγκατάσταση", - "reload": "Επαναφόρτωση", - "uninstall": "Απεγκατάσταση", - "update_to": "Ενημέρωση σε {{name}}", - "update_all_one": "Ενημέρωση 1 επέκτασης", - "update_all_other": "Ενημέρωση {{count}} επεκτάσεων", - "show": "Γρήγορη πρόσβαση: Εμφάνιση", - "hide": "Γρήγορη πρόσβαση: Απόκρυψη" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "Ενημέρωση σε {{tag_name}} διαθέσιμη!", - "error": "Σφάλμα", - "plugin_error_uninstall": "Η φόρτωση του {{name}} προκάλεσε το παραπάνω σφάλμα. Αυτό συνήθως σημαίνει ότι η επέκταση απαιτεί ενημέρωση για τη νέα έκδοση του SteamUI. Ελέγξτε εάν υπάρχει ενημέρωση ή αξιολογήστε την απεγκαταστήσετε της επέκτασης στις ρυθμίσεις του Decky, στην ενότητα Επεκτάσεις.", - "plugin_load_error": { - "message": "Σφάλμα στη φόρτωση της επέκτασης {{name}}", - "toast": "Σφάλμα φόρτωσης {{name}}" - }, - "plugin_uninstall": { - "button": "Απεγκατάσταση", - "desc": "Σίγουρα θέλετε να απεγκαταστήσετε το {{name}};", - "title": "Απεγκατάσταση {{name}}" - }, - "plugin_update_one": "Διαθέσιμη ενημέρωση για 1 επέκταση!", - "plugin_update_other": "Διαθέσιμες ενημερώσεις για {{count}} επεκτάσεις!" - }, - "RemoteDebugging": { - "remote_cef": { - "label": "Να επιτρέπεται η απομακρυσμένη πρόσβαση στον CEF debugger", - "desc": "Να επιτρέπεται η ανεξέλεγκτη πρόσβαση στον CEF debugger σε οποιονδήποτε στο τοπικό δίκτυο" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Έκδοση Decky", - "header": "Σχετικά" - }, - "developer_mode": { - "label": "Λειτουργία προγραμματιστή" - }, - "other": { - "header": "Άλλα" - }, - "updates": { - "header": "Ενημερώσεις" - }, - "beta": { - "header": "Συμμετοχή στη Beta" - }, - "notifications": { - "decky_updates_label": "Διαθέσιμη ενημέρωση του Decky", - "header": "Ειδοποιήσεις", - "plugin_updates_label": "Διαθέσιμες ενημερώσεις επεκτάσεων" - } - }, - "SettingsIndex": { - "plugins_title": "Επεκτάσεις", - "developer_title": "Προγραμματιστής", - "general_title": "Γενικά" - }, - "Store": { - "store_contrib": { - "label": "Συνεισφέροντας", - "desc": "Αν θέλετε να συνεισφέρετε στο κατάστημα επεκτάσεων του Decky, τσεκάρετε το SteamDeckHomebrew/decky-plugin-template repository στο GitHub. Πληροφορίες σχετικά με τη δημιουργία και τη διανομή επεκτάσεων είναι διαθέσιμες στο README." - }, - "store_filter": { - "label": "Φίλτρο", - "label_def": "Όλα" - }, - "store_search": { - "label": "Αναζήτηση" - }, - "store_sort": { - "label": "Ταξινόμηση", - "label_def": "Τελευταία ενημέρωση (Νεότερα)" - }, - "store_source": { - "desc": "Ο πηγαίος κώδικας όλων των επεκτάσεων είναι διαθέσιμος στο SteamDeckHomebrew/decky-plugin-database repository στο GitHub.", - "label": "Πηγαίος κώδικας" - }, - "store_tabs": { - "about": "Σχετικά", - "alph_asce": "Αλφαβητικά (Ζ σε Α)", - "alph_desc": "Αλφαβητικά (Α σε Ζ)", - "title": "Περιήγηση" - }, - "store_testing_cta": "Παρακαλώ σκεφτείτε να τεστάρετε νέες επεκτάσεις για να βοηθήσετε την ομάδα του Decky Loader!", - "store_testing_warning": { - "desc": "Μπορείτε να χρησιμοποιήσετε αυτό το κανάλι του καταστήματος για να δοκιμάσετε τις νεότερες εκδόσεις των επεκτάσεων. Φροντίστε να αφήσετε σχόλια στο GitHub, ώστε να βοηθήσετε στην ενημέρωση της εκάστοτε επέκταση για όλους τους χρήστες.", - "label": "Καλώς ήρθατε στο Δοκιμαστικό Κανάλι τους Καταστήματος" - } - }, - "StoreSelect": { - "custom_store": { - "label": "Προσαρμοσμένο κατάστημα", - "url_label": "URL" - }, - "store_channel": { - "custom": "Προσαρμοσμένο", - "default": "Προεπιλεγμένο", - "label": "Κανάλι καταστήματος", - "testing": "Δοκιμαστικό" - } - }, - "Updater": { - "no_patch_notes_desc": "Κανένα ενημερωτικό σημείωμα για αυτή την έκδοση", - "patch_notes_desc": "Σημειώσεις ενημέρωσης", - "updates": { - "check_button": "Έλεγχος για ενημερώσεις", - "checking": "Γίνεται έλεγχος", - "cur_version": "Τρέχουσα έκδοση: {{ver}}", - "install_button": "Εγκατάσταση ενημέρωσης", - "label": "Ενημερώσεις", - "updating": "Γίνεται ενημέρωση", - "lat_version": "Ενημερωμένο: τρέχουσα έκδοση {{ver}}", - "reloading": "Γίνεται επαναφόρτωση" - }, - "decky_updates": "Ενημερώσεις Decky" - }, - "FilePickerIndex": { - "folder": { - "select": "Χρησιμοποιήστε αυτό το φάκελο", - "label": "Φάκελος", - "show_more": "Εμφάνιση περισσότερων αρχείων" - }, - "filter": { - "modified_asce": "Τροποποιήθηκε (Παλαιότερο)", - "modified_desc": "Τροποποιήθηκε (Νεότερο)", - "created_desc": "Δημιουργήθηκε (Νεότερο)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "created_asce": "Δημιουργήθηκε (Παλαιότερο)", - "size_asce": "Μέγεθος (Μικρότερο)", - "size_desc": "Μέγεθος (Μεγαλύτερο)" - }, - "file": { - "select": "Επιλογή αυτού του αρχείου" - }, - "files": { - "show_hidden": "Εμφάνιση Κρυφών Αρχείων", - "all_files": "Όλα Τα Αρχεία", - "file_type": "Τύπος Αρχείου" - } - }, - "PluginView": { - "hidden_one": "1 επέκταση είναι κρυμμένη σε αυτήν τη λίστα", - "hidden_other": "{{count}} επεκτάσεις είναι κρυμμένες σε αυτήν τη λίστα" - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_one": "Τροποποίηση 1 επέκτασης", - "mixed_other": "Τροποποίηση {{count}} επεκτάσεων", - "update_one": "Ενημέρωση 1 επέκτασης", - "update_other": "Ενημέρωση {{count}} επεκτάσεων", - "reinstall_one": "Επανεγκατάσταση 1 επέκτασης", - "reinstall_other": "Επανεγκατάσταση {{count}} επεκτάσεων", - "install_one": "Εγκατάσταση 1 επέκτασης", - "install_other": "Εγκατάσταση {{count}} επεκτάσεων" - }, - "confirm": "Είστε βέβαιοι ότι θέλετε να κάνετε τις ακόλουθες τροποποιήσεις;", - "description": { - "reinstall": "Επανεγκατάσταση {{name}} {{version}}", - "update": "Ενημέρωση {{name}} to {{version}}", - "install": "Εγκατάσταση {{name}} {{version}}" - }, - "ok_button": { - "idle": "Επιβεβαίωση", - "loading": "Φόρτωση" - } - }, - "PluginListLabel": { - "hidden": "Κρυφό στο μενού γρήγορης πρόσβασης" - }, - "TitleView": { - "settings_desc": "Άνοιγμα Ρυθμίσεων Decky", - "decky_store_desc": "Άνοιγμα Καταστήματος Decky" - }, - "DropdownMultiselect": { - "button": { - "back": "Πίσω" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "Η καθορισμένη διαδρομή δεν είναι έγκυρη. Παρακαλούμε ελέγξτε τη και εισάγετέ τη ξανά σωστά.", - "perm_denied": "Δεν έχετε πρόσβαση στην καθορισμένη διαδρομή. Ελέγξτε εάν ο χρήστης σας (deck στο Steam Deck) έχει τα αντίστοιχα δικαιώματα πρόσβασης στον καθορισμένο φάκελο/αρχείο.", - "unknown": "Παρουσιάστηκε άγνωστο σφάλμα. Το σφάλμα είναι: {{raw_error}}" - } - } -} diff --git a/backend/locales/en-US.json b/backend/locales/en-US.json deleted file mode 100644 index 94e1ed3d..00000000 --- a/backend/locales/en-US.json +++ /dev/null @@ -1,283 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "label": "Update Channel", - "prerelease": "Prerelease", - "stable": "Stable", - "testing": "Testing" - } - }, - "Developer": { - "5secreload": "Reloading in 5 seconds", - "disabling": "Disabling React DevTools", - "enabling": "Enabling React DevTools" - }, - "DropdownMultiselect": { - "button": { - "back": "Back" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "The path specified is not valid. Please check it and reenter it correctly.", - "perm_denied": "You do not have access to the specified directory. Please check if your user (deck on Steam Deck) has the corresponding permission to access the specified folder/file.", - "unknown": "An unknown error occurred. The raw error is: {{raw_error}}" - } - }, - "FilePickerIndex": { - "file": { - "select": "Select this file" - }, - "files": { - "all_files": "All Files", - "file_type": "File Type", - "show_hidden": "Show Hidden Files" - }, - "filter": { - "created_asce": "Created (Oldest)", - "created_desc": "Created (Newest)", - "modified_asce": "Modified (Oldest)", - "modified_desc": "Modified (Newest)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Size (Smallest)", - "size_desc": "Size (Largest)" - }, - "folder": { - "label": "Folder", - "select": "Use this folder", - "show_more": "Show more files" - } - }, - "MultiplePluginsInstallModal": { - "confirm": "Are you sure you want to make the following modifications?", - "description": { - "install": "Install {{name}} {{version}}", - "reinstall": "Reinstall {{name}} {{version}}", - "update": "Update {{name}} to {{version}}" - }, - "ok_button": { - "idle": "Confirm", - "loading": "Working" - }, - "title": { - "install_one": "Install 1 plugin", - "install_other": "Install {{count}} plugins", - "mixed_one": "Modify {{count}} plugin", - "mixed_other": "Modify {{count}} plugins", - "reinstall_one": "Reinstall 1 plugin", - "reinstall_other": "Reinstall {{count}} plugins", - "update_one": "Update 1 plugin", - "update_other": "Update {{count}} plugins" - } - }, - "PluginCard": { - "plugin_full_access": "This plugin has full access to your Steam Deck.", - "plugin_install": "Install", - "plugin_no_desc": "No description provided.", - "plugin_version_label": "Plugin Version" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Install", - "button_processing": "Installing", - "desc": "Are you sure you want to install {{artifact}} {{version}}?", - "title": "Install {{artifact}}" - }, - "no_hash": "This plugin does not have a hash, you are installing it at your own risk.", - "reinstall": { - "button_idle": "Reinstall", - "button_processing": "Reinstalling", - "desc": "Are you sure you want to reinstall {{artifact}} {{version}}?", - "title": "Reinstall {{artifact}}" - }, - "update": { - "button_idle": "Update", - "button_processing": "Updating", - "desc": "Are you sure you want to update {{artifact}} {{version}}?", - "title": "Update {{artifact}}" - } - }, - "PluginListIndex": { - "freeze": "Freeze updates", - "hide": "Quick access: Hide", - "no_plugin": "No plugins installed!", - "plugin_actions": "Plugin Actions", - "reinstall": "Reinstall", - "reload": "Reload", - "show": "Quick access: Show", - "unfreeze": "Allow updates", - "uninstall": "Uninstall", - "update_all_one": "Update 1 plugin", - "update_all_other": "Update {{count}} plugins", - "update_to": "Update to {{name}}" - }, - "PluginListLabel": { - "hidden": "Hidden from the quick access menu" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "Update to {{tag_name}} available!", - "error": "Error", - "plugin_error_uninstall": "Loading {{name}} caused an exception as shown above. This usually means that the plugin requires an update for the new version of SteamUI. Check if an update is present or evaluate its removal in the Decky settings, in the Plugins section.", - "plugin_load_error": { - "message": "Error loading plugin {{name}}", - "toast": "Error loading {{name}}" - }, - "plugin_uninstall": { - "button": "Uninstall", - "desc": "Are you sure you want to uninstall {{name}}?", - "title": "Uninstall {{name}}" - }, - "plugin_update_one": "Updates available for 1 plugin!", - "plugin_update_other": "Updates available for {{count}} plugins!" - }, - "PluginView": { - "hidden_one": "1 plugin is hidden from this list", - "hidden_other": "{{count}} plugins are hidden from this list" - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Allow unauthenticated access to the CEF debugger to anyone in your network", - "label": "Allow Remote CEF Debugging" - } - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Open Console", - "desc": "Opens the CEF Console. Only useful for debugging purposes. Stuff here is potentially dangerous and should only be used if you are a plugin dev, or are directed here by one.", - "label": "CEF Console" - }, - "header": "Other", - "react_devtools": { - "desc": "Enables connection to a computer running React DevTools. Changing this setting will reload Steam. Set the IP address before enabling.", - "ip_label": "IP", - "label": "Enable React DevTools" - }, - "third_party_plugins": { - "button_install": "Install", - "button_zip": "Browse", - "header": "Third-Party Plugins", - "label_desc": "URL", - "label_url": "Install Plugin from URL", - "label_zip": "Install Plugin from ZIP File" - }, - "valve_internal": { - "desc1": "Enables the Valve internal developer menu.", - "desc2": "Do not touch anything in this menu unless you know what it does.", - "label": "Enable Valve Internal" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Decky Version", - "header": "About" - }, - "beta": { - "header": "Beta participation" - }, - "developer_mode": { - "label": "Developer mode" - }, - "notifications": { - "decky_updates_label": "Decky update available", - "header": "Notifications", - "plugin_updates_label": "Plugin updates available" - }, - "other": { - "header": "Other" - }, - "updates": { - "header": "Updates" - } - }, - "SettingsIndex": { - "developer_title": "Developer", - "general_title": "General", - "plugins_title": "Plugins", - "testing_title": "Testing" - }, - "Store": { - "store_contrib": { - "desc": "If you would like to contribute to the Decky Plugin Store, check the SteamDeckHomebrew/decky-plugin-template repository on GitHub. Information on development and distribution is available in the README.", - "label": "Contributing" - }, - "store_filter": { - "label": "Filter", - "label_def": "All" - }, - "store_search": { - "label": "Search" - }, - "store_sort": { - "label": "Sort", - "label_def": "Last Updated (Newest)" - }, - "store_source": { - "desc": "All plugin source code is available on SteamDeckHomebrew/decky-plugin-database repository on GitHub.", - "label": "Source Code" - }, - "store_tabs": { - "about": "About", - "alph_asce": "Alphabetical (Z to A)", - "alph_desc": "Alphabetical (A to Z)", - "date_asce": "Oldest First", - "date_desc": "Newest First", - "downloads_asce": "Least Downloaded First", - "downloads_desc": "Most Downloaded First", - "title": "Browse" - }, - "store_testing_cta": "Please consider testing new plugins to help the Decky Loader team!", - "store_testing_warning": { - "desc": "You can use this store channel to test bleeding-edge plugin versions. Be sure to leave feedback on GitHub so the plugin can be updated for all users.", - "label": "Welcome to the Testing Store Channel" - }, - "download_progress_info": { - "start": "Initializing", - "open_zip": "Opening zip file", - "download_zip": "Downloading plugin", - "increment_count": "Incrementing download count", - "parse_zip": "Parsing zip file", - "uninstalling_previous": "Uninstalling previous copy", - "installing_plugin": "Installing plugin" - } - }, - "StoreSelect": { - "custom_store": { - "label": "Custom Store", - "url_label": "URL" - }, - "store_channel": { - "custom": "Custom", - "default": "Default", - "label": "Store Channel", - "testing": "Testing" - } - }, - "TitleView": { - "decky_store_desc": "Open Decky Store", - "settings_desc": "Open Decky Settings" - }, - "Updater": { - "decky_updates": "Decky Updates", - "no_patch_notes_desc": "no patch notes for this version", - "patch_notes_desc": "Patch Notes", - "updates": { - "check_button": "Check For Updates", - "checking": "Checking", - "cur_version": "Current version: {{ver}}", - "install_button": "Install Update", - "label": "Updates", - "lat_version": "Up to date: running {{ver}}", - "reloading": "Reloading", - "updating": "Updating" - } - }, - "Testing": { - "download": "Download", - "header": "The following versions of Decky Loader are built from open third-party Pull Requests. The Decky Loader team has not verified their functionality or security, and they may be outdated.", - "loading": "Loading open Pull Requests...", - "error": "Error Installing PR", - "start_download_toast": "Downloading PR #{{id}}" - } -} diff --git a/backend/locales/es-ES.json b/backend/locales/es-ES.json deleted file mode 100644 index 6c47eb06..00000000 --- a/backend/locales/es-ES.json +++ /dev/null @@ -1,217 +0,0 @@ -{ - "SettingsDeveloperIndex": { - "third_party_plugins": { - "button_install": "Instalar", - "button_zip": "Navegar", - "label_desc": "URL", - "label_url": "Instalar plugin desde URL", - "label_zip": "Instalar plugin desde archivo ZIP", - "header": "Plugins de terceros" - }, - "valve_internal": { - "desc2": "No toques nada en este menú a menos que sepas lo que haces.", - "label": "Activar menú interno de Valve", - "desc1": "Activa el menú interno de desarrollo de Valve." - }, - "cef_console": { - "button": "Abrir consola", - "label": "Consola CEF", - "desc": "Abre la consola del CEF. Solamente es útil para propósitos de depuración. Las cosas que hagas aquí pueden ser potencialmente peligrosas y solo se debería usar si eres un desarrollador de plugins, o uno te ha dirigido aquí." - }, - "react_devtools": { - "ip_label": "IP", - "label": "Activar DevTools de React", - "desc": "Permite la conexión a un ordenador ejecutando las DevTools de React. Cambiar este ajuste recargará Steam. Configura la dirección IP antes de activarlo." - }, - "header": "Otros" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Instalar", - "button_processing": "Instalando", - "title": "Instalar {{artifact}}", - "desc": "¿Estás seguro de que quieres instalar {{artifact}} {{version}}?" - }, - "reinstall": { - "button_idle": "Reinstalar", - "button_processing": "Reinstalando", - "desc": "¿Estás seguro de que quieres reinstalar {{artifact}} {{version}}?", - "title": "Reinstalar {{artifact}}" - }, - "update": { - "button_processing": "Actualizando", - "button_idle": "Actualizar", - "desc": "¿Estás seguro de que quieres actualizar {{artifact}} {{version}}?", - "title": "Actualizar {{artifact}}" - }, - "no_hash": "Este plugin no tiene un hash, lo estás instalando bajo tu propia responsabilidad." - }, - "Developer": { - "disabling": "Desactivando DevTools de React", - "enabling": "Activando DevTools de React", - "5secreload": "Recargando en 5 segundos" - }, - "BranchSelect": { - "update_channel": { - "prerelease": "Prelanzamiento", - "stable": "Estable", - "label": "Canal de actualización", - "testing": "Pruebas" - } - }, - "PluginCard": { - "plugin_full_access": "Este plugin tiene acceso completo a su Steam Deck.", - "plugin_install": "Instalar", - "plugin_version_label": "Versión de Plugin", - "plugin_no_desc": "No se proporcionó una descripción." - }, - "FilePickerIndex": { - "folder": { - "select": "Usar esta carpeta" - } - }, - "PluginListIndex": { - "uninstall": "Desinstalar", - "reinstall": "Reinstalar", - "reload": "Recargar", - "plugin_actions": "Acciones de plugin", - "no_plugin": "¡No hay plugins instalados!", - "update_all_one": "Actualizar 1 plugin", - "update_all_many": "Actualizar {{count}} plugins", - "update_all_other": "Actualizar {{count}} plugins", - "update_to": "Actualizar a {{name}}" - }, - "PluginLoader": { - "error": "Error", - "plugin_uninstall": { - "button": "Desinstalar", - "desc": "¿Estás seguro de que quieres desinstalar {{name}}?", - "title": "Desinstalar {{name}}" - }, - "decky_title": "Decky", - "plugin_update_one": "¡Actualización disponible para 1 plugin!", - "plugin_update_many": "¡Actualizaciones disponibles para {{count}} plugins!", - "plugin_update_other": "¡Actualizaciones disponibles para {{count}} plugins!", - "decky_update_available": "¡Actualización {{tag_name}} disponible!", - "plugin_load_error": { - "message": "Se ha producido un error al cargar el plugin {{name}}", - "toast": "Se ha producido un error al cargar {{name}}" - }, - "plugin_error_uninstall": "Al cargar {{name}} se ha producido una excepción como se muestra arriba. Esto suele significar que el plugin requiere una actualización para la nueva versión de SteamUI. Comprueba si hay una actualización disponible o valora eliminarlo en los ajustes de Decky, en la sección Plugins." - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Permitir acceso no autenticado al CEF debugger a cualquier persona en su red", - "label": "Permitir depuración remota del CEF" - } - }, - "SettingsGeneralIndex": { - "updates": { - "header": "Actualizaciones" - }, - "about": { - "header": "Acerca de", - "decky_version": "Versión de Decky" - }, - "developer_mode": { - "label": "Modo desarrollador" - }, - "beta": { - "header": "Participación en la beta" - }, - "other": { - "header": "Otros" - } - }, - "SettingsIndex": { - "developer_title": "Desarrollador", - "general_title": "General", - "plugins_title": "Plugins" - }, - "Store": { - "store_search": { - "label": "Buscar" - }, - "store_sort": { - "label": "Ordenar", - "label_def": "Actualizado por última vez (Nuevos)" - }, - "store_contrib": { - "desc": "Si desea contribuir a la tienda de plugins de Decky, mira el repositorio SteamDeckHomebrew/decky-plugin-template en GitHub. Hay información acerca del desarrollo y distribución en el archivo README.", - "label": "Contribuyendo" - }, - "store_tabs": { - "about": "Información", - "title": "Navegar", - "alph_asce": "Alfabéticamente (Z-A)", - "alph_desc": "Alfabéticamente (A-Z)" - }, - "store_testing_cta": "¡Por favor considera probar plugins nuevos para ayudar al equipo de Decky Loader!", - "store_source": { - "desc": "El código fuente de los plugins está disponible en el repositiorio SteamDeckHomebrew/decky-plugin-database en GitHub.", - "label": "Código fuente" - }, - "store_filter": { - "label_def": "Todos", - "label": "Filtrar" - } - }, - "Updater": { - "updates": { - "reloading": "Recargando", - "updating": "Actualizando", - "checking": "Buscando", - "check_button": "Buscar actualizaciones", - "install_button": "Instalar actualización", - "label": "Actualizaciones", - "lat_version": "Actualizado: ejecutando {{ver}}", - "cur_version": "Versión actual: {{ver}}" - }, - "decky_updates": "Actualizaciones de Decky", - "no_patch_notes_desc": "No hay notas de parche para esta versión", - "patch_notes_desc": "Notas de parche" - }, - "MultiplePluginsInstallModal": { - "title": { - "reinstall_one": "Reinstalar 1 plugin", - "reinstall_many": "Reinstalar {{count}} plugins", - "reinstall_other": "Reinstalar {{count}} plugins", - "update_one": "Actualizar 1 plugin", - "update_many": "Actualizar {{count}} plugins", - "update_other": "Actualizar {{count}} plugins", - "mixed_one": "Modificar 1 plugin", - "mixed_many": "Modificar {{count}} plugins", - "mixed_other": "Modificar {{count}} plugins", - "install_one": "Instalar 1 plugin", - "install_many": "Instalar {{count}} plugins", - "install_other": "Instalar {{count}} plugins" - }, - "ok_button": { - "idle": "Confirmar", - "loading": "Trabajando" - }, - "confirm": "¿Estás seguro de que quieres hacer las siguientes modificaciones?", - "description": { - "install": "Instalar {{name}} {{version}}", - "update": "Actualizar {{name}} a {{version}}", - "reinstall": "Reinstalar {{name}} {{version}}" - } - }, - "StoreSelect": { - "custom_store": { - "url_label": "URL", - "label": "Tienda personalizada" - }, - "store_channel": { - "custom": "Personalizada", - "default": "Por defecto", - "label": "Canál de la tienda", - "testing": "Pruebas" - } - }, - "PluginView": { - "hidden_one": "", - "hidden_many": "", - "hidden_other": "" - } -} diff --git a/backend/locales/fi-FI.json b/backend/locales/fi-FI.json deleted file mode 100644 index b0ff1309..00000000 --- a/backend/locales/fi-FI.json +++ /dev/null @@ -1,260 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "prerelease": "Esijulkaisu", - "testing": "Testiversio", - "stable": "Vakaa versio", - "label": "Päivityskanava" - } - }, - "Developer": { - "5secreload": "Uudelleenladataan 5 sekunin kuluttua", - "disabling": "Poistetaan React DevTools käytöstä", - "enabling": "Otetaan React DevTools käyttöön" - }, - "FilePickerError": { - "errors": { - "perm_denied": "Sinulla ei ole käyttöoikeutta määritettyyn hakemistoon. Tarkista, onko käyttäjälläsi (käyttäjä 'deck' Steam Deckillä) vastaavat oikeudet käyttää määritettyä kansiota/tiedostoa.", - "unknown": "Tapahtui tuntematon virhe. Raaka virhe on: {{raw_error}}", - "file_not_found": "Määritetty polku ei kelpaa. Tarkista se ja kirjoita se uudelleen oikein." - } - }, - "FilePickerIndex": { - "file": { - "select": "Valitse tämä tiedosto" - }, - "files": { - "all_files": "Kaikki tiedostot", - "file_type": "Tiedostotyyppi", - "show_hidden": "Näytä piilotetut tiedostot" - }, - "filter": { - "created_desc": "Luotu (uusin ensin)", - "modified_asce": "Muokattu (vanhin)", - "modified_desc": "Muokattu (uusin)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Koko (pienin ensin)", - "size_desc": "Koko (suurin ensin)", - "created_asce": "Luotu (vanhin ensin)" - }, - "folder": { - "label": "Kansio", - "select": "Käytä tätä kansiota", - "show_more": "Näytä lisää tiedostoja" - } - }, - "MultiplePluginsInstallModal": { - "confirm": "Haluatko varmasti tehdä seuraavat muutokset?", - "description": { - "reinstall": "Uudelleenasenna {{name}} {{version}}", - "update": "Päivitä {{name}} versioon {{version}}", - "install": "Asenna {{name}} {{version}}" - }, - "ok_button": { - "idle": "Vahvista", - "loading": "Ladataan" - }, - "title": { - "install_one": "Asenna yksi laajennus", - "install_other": "Asenna {{count}} laajennusta", - "update_one": "Päivitä yksi laajennus", - "update_other": "Päivitä {{count}} laajennusta", - "mixed_one": "Muuta yhtä laajennusta", - "mixed_other": "Muuta {{count}} laajennusta", - "reinstall_one": "Uudelleenasenna yksi laajennus", - "reinstall_other": "Uudelleenasenna {{count}} laajennusta" - } - }, - "PluginCard": { - "plugin_install": "Asenna", - "plugin_no_desc": "Ei kuvausta.", - "plugin_version_label": "Laajennuksen versio", - "plugin_full_access": "Tällä laajennuksella on täysi pääsy Steam Deckkiisi." - }, - "PluginInstallModal": { - "install": { - "button_idle": "Asenna", - "button_processing": "Asennetaan", - "desc": "Haluatko varmasti asentaa {{artifact}} {{version}}?", - "title": "Asenna {{artifact}}" - }, - "no_hash": "Tällä laajennuksella ei ole hashia, asennat sen omalla vastuullasi.", - "reinstall": { - "button_idle": "Uudelleenasenna", - "button_processing": "Uudelleenasennetaan", - "desc": "Haluatko varmasti uudelleenasentaa {{artifact}} {{version}}?", - "title": "Uudelleenasenna {{artifact}}" - }, - "update": { - "button_idle": "Päivitä", - "button_processing": "Päivitetään", - "desc": "Haluatko varmasti päivittää {{artifact}} {{version}}?", - "title": "Päivitä {{artifact}}" - } - }, - "DropdownMultiselect": { - "button": { - "back": "Takaisin" - } - }, - "PluginListIndex": { - "no_plugin": "Ei asennettuja laajennuksia!", - "plugin_actions": "Laajennustoiminnot", - "reinstall": "Uudelleenasenna", - "reload": "Lataa uudelleen", - "uninstall": "Poista asennus", - "update_all_one": "Päivitä yksi laajennus", - "update_all_other": "Päivitä {{count}} laajennusta", - "update_to": "Päivitä versioon {{name}}", - "hide": "Pikavalikko: Piilota", - "show": "Pikavalikko: Näytä" - }, - "PluginListLabel": { - "hidden": "Piilotettu pikavalikosta" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "Päivitys versioon {{tag_name}} on saatavilla!", - "error": "Virhe", - "plugin_load_error": { - "message": "Virhe ladattaessa {{name}}-laajennusta", - "toast": "Virhe ladattaessa {{name}}" - }, - "plugin_uninstall": { - "button": "Poista asennus", - "desc": "Haluatko varmasti poistaa {{name}} asennuksen?", - "title": "Poista {{name}}" - }, - "plugin_update_one": "Päivityksiä saatavilla yhdelle laajennukselle!", - "plugin_update_other": "Päivityksiä saatavilla {{count}} laajennukselle!", - "plugin_error_uninstall": "{{name}} lataaminen aiheutti yllä olevan poikkeuksen. Tämä tarkoittaa yleensä sitä, että laajennus vaatii päivityksen uudelle SteamUI-versiolle. Tarkista, onko päivitystä saatavilla, tai harkitse laajennuksen poistoa Decky-asetuksista, laajennukset-osiosta." - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Salli todentamaton pääsy CEF-debuggeriin kenelle tahansa verkossasi", - "label": "Salli CEF-etädebugaus" - } - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Avaa konsoli", - "desc": "Avaa CEF-konsolin. Hyödyllinen vain debugaustarkoituksiin. Täällä olevat jutut ovat mahdollisesti vaarallisia, ja niitä tulisi käyttää vain, jos olet laajennuksen kehittäjä tai jos kehittäjä on ohjannut sinut tänne.", - "label": "CEF-konsoli" - }, - "header": "Muu", - "react_devtools": { - "desc": "Mahdollistaa yhteyden tietokoneeseen, jossa on käytössä React DevTools. Tämän asetuksen muuttaminen lataa Steamin uudelleen. Aseta IP-osoite ennen käyttöönottoa.", - "ip_label": "IP-osoite", - "label": "Ota React DevTools käyttöön" - }, - "third_party_plugins": { - "button_install": "Asenna", - "button_zip": "Selaa", - "header": "Kolmannen osapuolen laajennukset", - "label_desc": "URL-osoite", - "label_zip": "Asenna laajennus ZIP-tiedostosta", - "label_url": "Asenna laajennus URL-osoitteesta" - }, - "valve_internal": { - "desc2": "Älä koske mihinkään tässä valikossa, ellet tiedä mitä se tekee.", - "label": "Ota Valve Internal käyttöön", - "desc1": "Ottaa käyttöön Valven sisäisen kehittäjävalikon." - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Decky-versio", - "header": "Tietoja" - }, - "beta": { - "header": "Beta-osallistuminen" - }, - "developer_mode": { - "label": "Kehittäjätila" - }, - "notifications": { - "decky_updates_label": "Decky-päivitys saatavilla", - "header": "Ilmoitukset", - "plugin_updates_label": "Laajennuspäivityksiä saatavilla" - }, - "other": { - "header": "Muu" - }, - "updates": { - "header": "Päivitykset" - } - }, - "SettingsIndex": { - "developer_title": "Kehittäjä", - "general_title": "Yleinen", - "plugins_title": "Laajennukset" - }, - "Store": { - "store_contrib": { - "label": "Osallistuminen", - "desc": "Mikäli haluat julkaista Decky Plugin Storeen, tarkista GitHubin SteamDeckHomebrew/decky-plugin-template -esimerkkitietovarasto. Tietoa kehityksestä ja jakelusta löytyy README:stä." - }, - "store_filter": { - "label": "Suodin", - "label_def": "Kaikki" - }, - "store_search": { - "label": "Hae" - }, - "store_sort": { - "label": "Järjestä", - "label_def": "Viimeksi päivitetty (uusin ensin)" - }, - "store_source": { - "desc": "Kaikken laajennusten lähdekoodit ovat saatavilla SteamDeckHomebrew/decky-plugin-database -arkistosta GitHubissa.", - "label": "Lähdekoodi" - }, - "store_tabs": { - "about": "Tietoja", - "alph_asce": "Aakkosjärjestyksessä (Z–A)", - "alph_desc": "Aakkosjärjestyksessä (A–Z)", - "title": "Selaa" - }, - "store_testing_cta": "Harkitse uusien lisäosien testaamista auttaaksesi Decky Loader -tiimiä!", - "store_testing_warning": { - "label": "Tervetuloa testausmyymälä-kanavalle", - "desc": "Voit käyttää tätä myymäläkanavaa testataksesi uusimpia laajennusversioita. Muista jättää palautetta GitHubissa, jotta laajennus voidaan päivittää kaikille käyttäjille." - } - }, - "StoreSelect": { - "custom_store": { - "label": "Mukautettu myymälä", - "url_label": "URL-osoite" - }, - "store_channel": { - "custom": "Mukautettu", - "default": "Oletus", - "label": "Myymäläkanava", - "testing": "Testaus" - } - }, - "TitleView": { - "decky_store_desc": "Avaa Decky-myymälä", - "settings_desc": "Avaa Decky-asetukset" - }, - "Updater": { - "decky_updates": "Decky-päivitykset", - "no_patch_notes_desc": "tälle versiolle ei ole korjausmerkintöjä", - "patch_notes_desc": "Korjausmerkinnät", - "updates": { - "check_button": "Tarkista päivitykset", - "checking": "Tarkistetaan", - "cur_version": "Nykyinen versio: {{ver}}", - "install_button": "Asenna päivitys", - "label": "Päivitykset", - "lat_version": "Ajan tasalla: versio {{ver}}", - "reloading": "Uudelleenladataan", - "updating": "Päivitetään" - } - }, - "PluginView": { - "hidden_one": "Yksi laajennus on piilotettu tästä luettelosta", - "hidden_other": "{{count}} laajennusta on piilotettu tästä luettelosta" - } -} diff --git a/backend/locales/fr-FR.json b/backend/locales/fr-FR.json deleted file mode 100644 index d3f37b9c..00000000 --- a/backend/locales/fr-FR.json +++ /dev/null @@ -1,277 +0,0 @@ -{ - "SettingsDeveloperIndex": { - "react_devtools": { - "desc": "Permet la connexion à un ordinateur exécutant React DevTools. Changer ce paramètre rechargera Steam. Définissez l'adresse IP avant l'activation.", - "ip_label": "IP", - "label": "Activer React DevTools" - }, - "third_party_plugins": { - "button_install": "Installer", - "button_zip": "Parcourir", - "header": "Plugins tiers", - "label_desc": "URL", - "label_url": "Installer le plugin à partir d'un URL", - "label_zip": "Installer le plugin à partir d'un fichier ZIP" - }, - "valve_internal": { - "desc1": "Active le menu développeur interne de Valve.", - "desc2": "Ne touchez à rien dans ce menu à moins que vous ne sachiez ce qu'il fait.", - "label": "Activer Valve Internal" - }, - "cef_console": { - "button": "Ouvrir la console", - "label": "CEF Console", - "desc": "Ouvre la console CEF. Utile uniquement à des fins de débogage. Les éléments présentés ici sont potentiellement dangereux et ne doivent être utilisés que si vous êtes un développeur de plugins ou si vous êtes dirigé ici par un de ces développeurs." - }, - "header": "Autre" - }, - "BranchSelect": { - "update_channel": { - "prerelease": "Avant-première", - "label": "Canal de mise à jour", - "stable": "Stable", - "testing": "Test" - } - }, - "StoreSelect": { - "store_channel": { - "label": "Canal du Plugin Store", - "testing": "Test", - "custom": "Personnalisé", - "default": "Par défaut" - }, - "custom_store": { - "label": "Plugin Store personnalisé", - "url_label": "URL" - } - }, - "Updater": { - "decky_updates": "Mises à jour de Decky", - "no_patch_notes_desc": "pas de notes de mise à jour pour cette version", - "patch_notes_desc": "Notes de mise à jour", - "updates": { - "check_button": "Chercher les mises à jour", - "checking": "Recherche", - "cur_version": "Version actuelle: {{ver}}", - "install_button": "Installer la mise à jour", - "label": "Mises à jour", - "lat_version": "À jour: version {{ver}}", - "reloading": "Rechargement", - "updating": "Mise à jour en cours" - } - }, - "Developer": { - "5secreload": "Rechargement dans 5 secondes", - "disabling": "Désactivation des React DevTools", - "enabling": "Activation des React DevTools" - }, - "FilePickerIndex": { - "folder": { - "select": "Utiliser ce dossier", - "label": "Dossier", - "show_more": "Afficher plus de fichiers" - }, - "files": { - "show_hidden": "Afficher les fichiers cachés", - "all_files": "Tout les fichiers", - "file_type": "Type de fichier" - }, - "file": { - "select": "Sélectionner ce fichier" - }, - "filter": { - "created_desc": "Création (Plus récent)", - "modified_asce": "Modifié (Plus vieux)", - "modified_desc": "Modifié (Plus récent)", - "created_asce": "Création (Plus vieux)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Taille (Plus petit)", - "size_desc": "Taille (Plus grand)" - } - }, - "PluginCard": { - "plugin_full_access": "Ce plugin a un accès complet à votre Steam Deck.", - "plugin_install": "Installer", - "plugin_no_desc": "Aucune description fournie.", - "plugin_version_label": "Version du plugin" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Installer", - "button_processing": "Installation en cours", - "title": "Installer {{artifact}}", - "desc": "Êtes-vous sûr de vouloir installer {{artifact}} {{version}} ?" - }, - "no_hash": "Ce plugin n'a pas de somme de contrôle, vous l'installez à vos risques et périls.", - "reinstall": { - "button_idle": "Réinstaller", - "button_processing": "Réinstallation en cours", - "desc": "Êtes-vous sûr de vouloir réinstaller {{artifact}} {{version}} ?", - "title": "Réinstaller {{artifact}}" - }, - "update": { - "button_idle": "Mettre à jour", - "button_processing": "Mise à jour", - "title": "Mettre à jour {{artifact}}", - "desc": "Êtes-vous sûr de vouloir mettre à jour {{artifact}} {{version}} ?" - } - }, - "PluginListIndex": { - "plugin_actions": "Plugin Actions", - "reinstall": "Réinstaller", - "reload": "Recharger", - "uninstall": "Désinstaller", - "update_to": "Mettre à jour vers {{name}}", - "no_plugin": "Aucun plugin installé !", - "update_all_one": "Mettre à jour 1 plugin", - "update_all_many": "Mettre à jour {{count}} plugins", - "update_all_other": "Mettre à jour {{count}} plugins", - "show": "Accès Rapide : Afficher", - "hide": "Accès rapide : Cacher", - "unfreeze": "Autoriser les mises à jour", - "freeze": "Geler les mises à jour" - }, - "PluginLoader": { - "decky_title": "Decky", - "error": "Erreur", - "plugin_error_uninstall": "Allez sur {{name}} dans le menu de Decky si vous voulez désinstaller ce plugin.", - "plugin_load_error": { - "message": "Erreur lors du chargement du plugin {{name}}", - "toast": "Erreur lors du chargement de {{name}}" - }, - "decky_update_available": "Mise à jour vers {{tag_name}} disponible !", - "plugin_uninstall": { - "button": "Désinstaller", - "title": "Désinstaller {{name}}", - "desc": "Êtes-vous sûr.e de vouloir désinstaller {{name}} ?" - }, - "plugin_update_one": "Mise à jour disponible pour 1 plugin !", - "plugin_update_many": "Mises à jour disponible pour {{count}} plugins !", - "plugin_update_other": "Mises à jour disponible pour {{count}} plugins !" - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Autoriser l'accès non authentifié au débogueur CEF à toute personne de votre réseau", - "label": "Autoriser le débogage CEF à distance" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Version de Decky", - "header": "À propos" - }, - "beta": { - "header": "Participation à la Bêta" - }, - "developer_mode": { - "label": "Mode développeur" - }, - "other": { - "header": "Autre" - }, - "updates": { - "header": "Mises à jour" - }, - "notifications": { - "decky_updates_label": "Mise à jour Decky disponible", - "header": "Notifications", - "plugin_updates_label": "Mises à jour du plugin disponibles" - } - }, - "SettingsIndex": { - "developer_title": "Développeur", - "general_title": "Général", - "plugins_title": "Plugins", - "testing_title": "Essai" - }, - "Store": { - "store_contrib": { - "desc": "Si vous souhaitez contribuer au Decky Plugin Store, consultez le dépôt SteamDeckHomebrew/decky-plugin-template sur GitHub. Des informations sur le développement et la distribution sont disponibles dans le fichier README.", - "label": "Contributions" - }, - "store_filter": { - "label": "Filtrer", - "label_def": "Tous" - }, - "store_search": { - "label": "Rechercher" - }, - "store_sort": { - "label": "Trier", - "label_def": "Mises à jour (Plus récentes)" - }, - "store_source": { - "desc": "Tout le code source des plugins est disponible sur le dépôt SteamDeckHomebrew/decky-plugin-database sur GitHub.", - "label": "Code Source" - }, - "store_tabs": { - "about": "À propos", - "alph_asce": "Alphabétique (Z à A)", - "alph_desc": "Alphabétique (A à Z)", - "title": "Explorer", - "date_asce": "Plus ancien en premier", - "date_desc": "Le plus récent d'abord", - "downloads_asce": "Le moins téléchargé en premier", - "downloads_desc": "Les plus téléchargés en premier" - }, - "store_testing_cta": "Pensez à tester de nouveaux plugins pour aider l'équipe Decky Loader !", - "store_testing_warning": { - "label": "Bienvenue sur la chaîne du magasin de tests", - "desc": "Vous pouvez utiliser cette chaîne de magasin pour tester des versions de plugins. Assurez-vous de laisser des commentaires sur GitHub afin que le plugin puisse être mis à jour pour tous les utilisateurs." - } - }, - "PluginView": { - "hidden_one": "1 plugin est masqué dans cette liste", - "hidden_many": "{{count}} plugins sont masqués de cette liste", - "hidden_other": "{{count}} plugins sont masqués de cette liste" - }, - "MultiplePluginsInstallModal": { - "title": { - "reinstall_one": "Réinstaller 1 plugin", - "reinstall_many": "Réinstaller {{count}} plugins", - "reinstall_other": "Réinstaller {{count}} plugins", - "install_one": "Installer 1 plugin", - "install_many": "Installer {{count}} plugins", - "install_other": "Installer {{count}} plugins", - "mixed_one": "Modifier {{count}} plugin", - "mixed_many": "Modifier {{count}} plugins", - "mixed_other": "Modifier {{count}} plugins", - "update_one": "Mettre à jour 1 plugin", - "update_many": "Mettre à jour {{count}} plugins", - "update_other": "Mettre à jour {{count}} plugins" - }, - "confirm": "Êtes-vous sûr de vouloir apporter les modifications suivantes ?", - "description": { - "install": "Installer {{name}} {{version}}", - "update": "Mettre à jour {{name}} à {{version}}", - "reinstall": "Réinstaller {{name}} {{version}}" - }, - "ok_button": { - "idle": "Confirmer", - "loading": "En cours" - } - }, - "PluginListLabel": { - "hidden": "Caché du menu d'accès rapide" - }, - "FilePickerError": { - "errors": { - "perm_denied": "Vous n'avez pas accès au dossier spécifié. Veuillez vérifier que votre utilisateur (deck sur un Steam Deck) possède les permissions requises pour accéder au dossier/fichier spécifié.", - "file_not_found": "Le chemin spécifié n'est pas valide. Veuillez vérifier et essayer à nouveau.", - "unknown": "Une erreur inconnue est survenue. L'erreur est : {{raw_error}}" - } - }, - "DropdownMultiselect": { - "button": { - "back": "Retour" - } - }, - "TitleView": { - "decky_store_desc": "Ouvrir le magasin Decky", - "settings_desc": "Ouvrir les paramètres de Decky" - }, - "Testing": { - "download": "Télécharger" - } -} diff --git a/backend/locales/it-IT.json b/backend/locales/it-IT.json deleted file mode 100644 index 26bf39fd..00000000 --- a/backend/locales/it-IT.json +++ /dev/null @@ -1,277 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "label": "Canale di aggiornamento", - "prerelease": "Prerilascio", - "stable": "Stabile", - "testing": "In prova" - } - }, - "Developer": { - "5secreload": "Ricarico tra 5 secondi", - "disabling": "Disabilito i tools di React", - "enabling": "Abilito i tools di React" - }, - "DropdownMultiselect": { - "button": { - "back": "Indietro" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "Il percorso specificato non è valido. Controllalo e prova a reinserirlo di nuovo.", - "unknown": "È avvenuto un'errore sconosciuto. L'errore segnalato è {{raw_error}}", - "perm_denied": "Il tuo utente non ha accesso alla directory specificata. Verifica se l'utente corrente (è deck su Steam Deck di default) ha i permessi corrispondenti per accedere alla cartella/file desiderato." - } - }, - "FilePickerIndex": { - "file": { - "select": "Seleziona questo file" - }, - "files": { - "all_files": "Tutti i file", - "file_type": "Tipo di file", - "show_hidden": "Mostra nascosti" - }, - "filter": { - "created_asce": "Creazione (meno recente)", - "created_desc": "Creazione (più recente)", - "modified_asce": "Modifica (meno recente)", - "modified_desc": "Modifica (più recente)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Dimensione (più piccolo)", - "size_desc": "Dimensione (più grande)" - }, - "folder": { - "label": "Cartella", - "select": "Usa questa cartella", - "show_more": "Mostra più file" - } - }, - "MultiplePluginsInstallModal": { - "confirm": "Sei sicuro di voler effettuare le modifiche seguenti?", - "description": { - "install": "Installa {{name}} {{version}}", - "reinstall": "Reinstalla {{name}} {{version}}", - "update": "Aggiorna {{name}} alla versione {{version}}" - }, - "ok_button": { - "idle": "Conferma", - "loading": "Elaboro" - }, - "title": { - "install_one": "Installa un plugin", - "install_many": "Installa {{count}} plugins", - "install_other": "Installa {{count}} plugins", - "mixed_one": "Modifica un plugin", - "mixed_many": "Modifica {{count}} plugins", - "mixed_other": "Modifica {{count}} plugins", - "reinstall_one": "Reinstalla un plugin", - "reinstall_many": "Reinstalla {{count}} plugins", - "reinstall_other": "Reinstalla {{count}} plugins", - "update_one": "Aggiorna un plugin", - "update_many": "Aggiorna {{count}} plugins", - "update_other": "Aggiorna {{count}} plugins" - } - }, - "PluginCard": { - "plugin_full_access": "Questo plugin ha accesso completo al tuo Steam Deck.", - "plugin_install": "Installa", - "plugin_no_desc": "Nessuna descrizione fornita.", - "plugin_version_label": "Versione Plugin" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Installa", - "button_processing": "Installando", - "desc": "Sei sicuro di voler installare {{artifact}} {{version}}?", - "title": "Installa {{artifact}}" - }, - "no_hash": "Questo plugin non ha un hash associato, lo stai installando a tuo rischio e pericolo.", - "reinstall": { - "button_idle": "Reinstalla", - "button_processing": "Reinstallando", - "desc": "Sei sicuro di voler reinstallare {{artifact}} {{version}}?", - "title": "Reinstalla {{artifact}}" - }, - "update": { - "button_idle": "Aggiorna", - "button_processing": "Aggiornando", - "desc": "Sei sicuro di voler aggiornare {{artifact}} {{version}}?", - "title": "Aggiorna {{artifact}}" - } - }, - "PluginListIndex": { - "hide": "Accesso rapido: Nascondi", - "no_plugin": "Nessun plugin installato!", - "plugin_actions": "Operazioni sui plugins", - "reinstall": "Reinstalla", - "reload": "Ricarica", - "show": "Accesso rapido: Mostra", - "uninstall": "Rimuovi", - "update_all_one": "Aggiorna un plugin", - "update_all_many": "Aggiorna {{count}} plugins", - "update_all_other": "Aggiorna {{count}} plugins", - "update_to": "Aggiorna a {{name}}", - "unfreeze": "Permetti aggiornamenti", - "freeze": "Congela aggiornamenti" - }, - "PluginListLabel": { - "hidden": "Nascosto dal menu di accesso rapido" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "Disponibile aggiornamento a {{tag_name}}!", - "error": "Errore", - "plugin_error_uninstall": "Il plugin {{name}} ha causato un'eccezione che è descritta sopra. Questo tipicamente significa che il plugin deve essere aggiornato per funzionare sulla nuova versione di SteamUI. Controlla se è disponibile un aggiornamento o valutane la rimozione andando nelle impostazioni di Decky nella sezione Plugins.", - "plugin_load_error": { - "message": "Errore caricando il plugin {{name}}", - "toast": "Errore caricando {{name}}" - }, - "plugin_uninstall": { - "button": "Rimuovi", - "desc": "Sei sicuro di voler rimuovere {{name}}?", - "title": "Rimuovi {{name}}" - }, - "plugin_update_one": "Aggiornamento disponibile per 1 plugin!", - "plugin_update_many": "Aggiornamenti disponibili per {{count}} plugins!", - "plugin_update_other": "Aggiornamenti disponibili per {{count}} plugins!" - }, - "PluginView": { - "hidden_one": "Un plugin è nascosto dalla lista", - "hidden_many": "Sono nascosti {{count}} plugin dalla lista", - "hidden_other": "Sono nascosti {{count}} plugin dalla lista" - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Permetti l'accesso non autenticato al debugger di CEF da tutti gli indirizzi sulla tua rete locale", - "label": "Permetti il debug remoto di CEF" - } - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Apri la console", - "desc": "Apri la console di CEF. Utile solamente per ragioni di debug. Questa opzione deve essere usata solo se sei uno sviluppatore di plugin o se uno di questi ti ha chiesto di farlo, visto che questa feature potrebbe essere potenzialmente pericolosa.", - "label": "Console CEF" - }, - "header": "Altro", - "react_devtools": { - "desc": "Abilita la connessione ad un computer che esegue i DevTools di React. Steam verrà ricaricato se lo stato cambia. Imposta il tuo indirizzo IP prima di abilitarlo.", - "ip_label": "IP", - "label": "Abilita i DevTools di React" - }, - "third_party_plugins": { - "button_install": "Installa", - "button_zip": "Seleziona", - "header": "Plugin di terze parti", - "label_desc": "URL", - "label_url": "Installa plugin da un'indirizzo web", - "label_zip": "Installa plugin da un file ZIP" - }, - "valve_internal": { - "desc1": "Abilita il menu di sviluppo interno di Valve.", - "desc2": "Non toccare nulla in questo menu se non sai quello che fa.", - "label": "Abilita Menu Sviluppatore" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Versione di Decky", - "header": "Riguardo a" - }, - "beta": { - "header": "Partecipazione alla beta" - }, - "developer_mode": { - "label": "Modalità sviluppatore" - }, - "other": { - "header": "Altro" - }, - "updates": { - "header": "Aggiornamenti" - }, - "notifications": { - "header": "Notifiche", - "decky_updates_label": "Aggiornamenti di Decky", - "plugin_updates_label": "Aggiornamenti dei plugins" - } - }, - "SettingsIndex": { - "developer_title": "Sviluppatore", - "general_title": "Generali", - "plugins_title": "Plugins", - "testing_title": "Testing" - }, - "Store": { - "store_contrib": { - "desc": "Se desideri contribuire allo store di Decky, puoi trovare un template caricato su GitHub all'indirizzo SteamDeckHomebrew/decky-plugin-template. Informazioni riguardo sviluppo e distribuzione sono disponibili nel README.", - "label": "Contribuisci" - }, - "store_filter": { - "label": "Filtra", - "label_def": "Tutto" - }, - "store_search": { - "label": "Cerca" - }, - "store_sort": { - "label": "Ordina", - "label_def": "Ultimo aggiornato (Più recente)" - }, - "store_source": { - "desc": "Tutto il codice sorgente dei plugin è disponibile su GitHub all'indirizzo SteamDeckHomebrew/decky-plugin-database.", - "label": "Codice Sorgente" - }, - "store_tabs": { - "about": "Riguardo a", - "alph_asce": "Alfabetico (Z a A)", - "alph_desc": "Alfabetico (A a Z)", - "title": "Sfoglia", - "date_desc": "Per più recente", - "date_asce": "Per più vecchio", - "downloads_desc": "Per più scaricato", - "downloads_asce": "Per meno scaricato" - }, - "store_testing_cta": "Valuta la possibilità di testare nuovi plugin per aiutare il team di Decky Loader!", - "store_testing_warning": { - "label": "Benvenuto nel Negozio di Test dei Plugins", - "desc": "Puoi usare questo canale del negozio per testare versioni di plugin sperimentali. Assicurati di lasciare un feedback su Github dopo averlo testato in modo che il plugin possa essere promosso a stabile per tutti gli altri utenti o per permettere allo sviluppatore di plugin di correggere eventuali errori." - } - }, - "StoreSelect": { - "custom_store": { - "label": "Negozio custom", - "url_label": "URL" - }, - "store_channel": { - "custom": "Personalizzato", - "default": "Default", - "label": "Canale del negozio", - "testing": "In prova" - } - }, - "Updater": { - "decky_updates": "Aggiornamento di Decky", - "no_patch_notes_desc": "nessuna patch notes per questa versione", - "patch_notes_desc": "Cambiamenti", - "updates": { - "check_button": "Cerca aggiornamenti", - "checking": "Controllando", - "cur_version": "Versione attuale: {{ver}}", - "install_button": "Installa aggiornamento", - "label": "Aggiornamenti", - "lat_version": "Aggiornato. Eseguendo {{ver}}", - "reloading": "Ricaricando", - "updating": "Aggiornando" - } - }, - "TitleView": { - "settings_desc": "Apri le impostazioni di Decky", - "decky_store_desc": "Apri lo store di Decky" - }, - "Testing": { - "download": "Scarica" - } -} diff --git a/backend/locales/ja-JP.json b/backend/locales/ja-JP.json deleted file mode 100644 index 251807fb..00000000 --- a/backend/locales/ja-JP.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "stable": "安定", - "testing": "テスト", - "label": "アップデートチャンネル", - "prerelease": "プレリリース" - } - }, - "DropdownMultiselect": { - "button": { - "back": "戻る" - } - }, - "FilePickerIndex": { - "file": { - "select": "ファイルを選択" - }, - "files": { - "all_files": "すべてのファイル", - "file_type": "ファイルタイプ", - "show_hidden": "非表示ファイルを表示する" - }, - "filter": { - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "サイズ(小さい順)", - "size_desc": "サイズ(大きい順)", - "created_asce": "作成日(古い順)", - "created_desc": "作成日(新しい順)", - "modified_asce": "更新日(古い順)", - "modified_desc": "更新日(新しい順)" - }, - "folder": { - "label": "フォルダ", - "select": "このフォルダを使用", - "show_more": "その他のファイルを表示" - } - }, - "MultiplePluginsInstallModal": { - "description": { - "install": "インストール {{name}} {{version}}", - "reinstall": "再インストール {{name}} {{version}}", - "update": "アップデート {{name}} {{version}}" - }, - "ok_button": { - "idle": "確認", - "loading": "作業中" - }, - "title": { - "install_other": "{{count}} 個のプラグインをインストール", - "mixed_other": "{{count}} 個のプラグインを修正", - "update_other": "{{count}} 個のプラグインをアップデート", - "reinstall_other": "{{count}} 個のプラグインを再インストール" - }, - "confirm": "以下の変更を加えてもよろしいですか?" - }, - "Developer": { - "enabling": "React DevToolsを有効", - "disabling": "React DevToolsを無効", - "5secreload": "5秒以内に再読み込みされます" - }, - "PluginInstallModal": { - "install": { - "button_idle": "インストール", - "title": "{{artifact}} をインストール", - "button_processing": "インストール中", - "desc": "{{artifact}} {{version}} をインストールしてもよろしいですか?" - }, - "no_hash": "このプラグインにはハッシュがありません。ご自身の責任でインストールしてください。", - "reinstall": { - "button_idle": "再インストール", - "button_processing": "再インストール中", - "desc": "{{artifact}} {{version}} を再インストールしてもよろしいですか?", - "title": "{{artifact}} を再インストール" - }, - "update": { - "button_idle": "アップデート", - "title": "{{artifact}} をアップデート", - "desc": "{{artifact}} {{version}} をアップデートしてもよろしいですか?", - "button_processing": "アップデート中" - } - }, - "PluginListIndex": { - "hide": "クイックアクセス: 非表示", - "no_plugin": "プラグインがインストールされていません!", - "reinstall": "再インストール", - "reload": "再読み込み", - "uninstall": "アンインストール", - "plugin_actions": "プラグインアクション", - "update_all_other": "{{count}} 個のプラグインをアップデート", - "show": "クイックアクセス: 表示", - "update_to": "{{name}} を更新" - }, - "PluginListLabel": { - "hidden": "クイックアクセスメニューから表示されません" - }, - "PluginLoader": { - "error": "エラー", - "plugin_load_error": { - "message": "プラグイン {{name}} の読み込みエラー", - "toast": "{{name}} の読み込みエラー" - }, - "plugin_uninstall": { - "button": "アンインストール", - "desc": "{{name}} をアンインストールしてもよろしいですか?", - "title": "{{name}} をアンインストール" - }, - "decky_title": "Decky", - "decky_update_available": "{{tag_name}} のアップデートが利用可能です!", - "plugin_update_other": "{{count}} 個のプラグインのアップデートが利用可能です!", - "plugin_error_uninstall": "{{name}} プラグインを読み込む際に上記のような例外が発生しました。 これは通常、SteamUIの最新バージョンに合ったプラグインのアップデートが必要な場合に発生します。Decky設定のプラグインセクションでアップデートがあるかどうかを確認するか、アンインストールをお試しください。" - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "コンソールを開く", - "label": "CEFコンソール", - "desc": "CEFコンソールを開きます。デバッグ目的でのみ使用してください。これらの項目は危険な可能性があるので、プラグイン開発者であるか、開発者のガイドに従う場合のみ使用する必要があります。" - }, - "react_devtools": { - "ip_label": "IP", - "label": "React DevTools を有効化", - "desc": "React DevToolsを実行しているコンピューターへの接続を有効にします。この設定を変更すると、Steam が再ロードされます。有効にする前にIPアドレスを設定してください。" - }, - "third_party_plugins": { - "button_install": "インストール", - "button_zip": "開く", - "header": "サードパーティプラグイン", - "label_desc": "URL", - "label_url": "URLからプラグインをインストール", - "label_zip": "ZIPファイルからプラグインをインストール" - }, - "valve_internal": { - "desc1": "Valveの内部開発者メニューを有効にします。", - "desc2": "このメニューの機能が分からない場合、このメニューには触れないでください。", - "label": "Valve Internalを有効" - }, - "header": "その他" - }, - "PluginView": { - "hidden_other": "{{count}} 個のプラグインがこのリストから非表示になっています" - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Deckyバージョン", - "header": "情報" - }, - "developer_mode": { - "label": "開発者モード" - }, - "notifications": { - "header": "通知", - "plugin_updates_label": "プラグインのアップデートが利用可能な場合に通知", - "decky_updates_label": "Deckyのアップデートが利用可能な場合に通知" - }, - "beta": { - "header": "ベータ版への参加" - }, - "other": { - "header": "その他" - }, - "updates": { - "header": "アップデート" - } - }, - "SettingsIndex": { - "developer_title": "開発者", - "plugins_title": "プラグイン", - "general_title": "一般" - }, - "Store": { - "store_filter": { - "label": "フィルター", - "label_def": "すべて" - }, - "store_search": { - "label": "検索" - }, - "store_sort": { - "label": "並べ替え", - "label_def": "直近のアップデート(新しい順)" - }, - "store_source": { - "desc": "すべてのプラグインのソース コードは、GitHubのSteamDeckHomebrew/decky-plugin-databaseリポジトリで入手できます。", - "label": "ソースコード" - }, - "store_tabs": { - "alph_asce": "アルファベット(Z to A)", - "alph_desc": "アルファベット(A to Z)", - "title": "閲覧", - "about": "概要" - }, - "store_testing_warning": { - "label": "テストストア チャンネルへようこそ", - "desc": "このストアチャンネルを使用して、最先端のプラグイン バージョンをテストできます。 すべてのユーザーがプラグインを更新できるように、必ずGitHubにフィードバックを残してください。" - }, - "store_contrib": { - "desc": "Decky Plugin Storeに貢献したい場合は、GitHubのSteamDeckHomebrew/decky-plugin-templateリポジトリを確認してください。 開発と配布に関する情報は README で入手できます。", - "label": "貢献" - }, - "store_testing_cta": "Decky Loaderチームを支援するために、新しいプラグインのテストを検討してください!" - }, - "StoreSelect": { - "custom_store": { - "label": "カスタムストア", - "url_label": "URL" - }, - "store_channel": { - "custom": "カスタム", - "default": "デフォルト", - "label": "ストアチャンネル", - "testing": "テスト" - } - }, - "TitleView": { - "decky_store_desc": "Deckyストアを開く", - "settings_desc": "Decky設定を開く" - }, - "Updater": { - "decky_updates": "Deckyアップデート", - "no_patch_notes_desc": "このバージョンのパッチノートはありません", - "patch_notes_desc": "パッチノート", - "updates": { - "check_button": "アップデートを確認", - "checking": "確認中", - "cur_version": "現在のバージョン: {{ver}}", - "install_button": "アップデートをインストール", - "label": "アップデート", - "lat_version": "アップデート: {{ver}} を実行中", - "reloading": "再読み込み中", - "updating": "アップデート中" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "指定されたパスは無効です。 内容をご確認の上、正しく入力し直してください。", - "unknown": "不明なエラーが発生しました。 エラー内容は次のとおりです: {{raw_error}}", - "perm_denied": "選択したパスへのアクセス権がありません。選択したフォルダ/ファイルのアクセス権がユーザー(Steam Deckのdeckユーザー)に合わせて正しく設定されていることを確認してください。" - } - }, - "PluginCard": { - "plugin_version_label": "プラグインバージョン", - "plugin_no_desc": "説明はありません。", - "plugin_full_access": "このプラグインはSteam Deckの全てのアクセス権を持ちます。", - "plugin_install": "インストール" - }, - "RemoteDebugging": { - "remote_cef": { - "label": "リモート CEF デバッグを許可する", - "desc": "ネットワーク上のすべてのユーザーにCEFデバッガへの非認証アクセスを許可します" - } - } -} diff --git a/backend/locales/ko-KR.json b/backend/locales/ko-KR.json deleted file mode 100644 index b2c6dbac..00000000 --- a/backend/locales/ko-KR.json +++ /dev/null @@ -1,263 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "label": "업데이트 배포 채널", - "stable": "안정", - "testing": "테스트", - "prerelease": "사전 출시" - } - }, - "Developer": { - "disabling": "React DevTools 비활성화", - "enabling": "React DevTools 활성화", - "5secreload": "5초 내로 다시 로드 됩니다" - }, - "FilePickerIndex": { - "folder": { - "select": "이 폴더 사용", - "label": "폴더", - "show_more": "더 많은 파일 표시" - }, - "filter": { - "created_asce": "만든 날짜 (오름차순)", - "modified_asce": "수정한 날짜 (오름차순)", - "created_desc": "만든 날짜 (내림차 순)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "크기 (오름차순)", - "modified_desc": "수정한 날짜 (내림차순)", - "size_desc": "크기 (내림차순)" - }, - "files": { - "all_files": "모든 파일", - "show_hidden": "숨김 파일 표시", - "file_type": "파일 형식" - }, - "file": { - "select": "이 파일 선택" - } - }, - "PluginView": { - "hidden_other": "플러그인 {{count}}개 숨김" - }, - "PluginListLabel": { - "hidden": "빠른 액세스 메뉴에서 숨김" - }, - "PluginCard": { - "plugin_install": "설치", - "plugin_no_desc": "플러그인 설명이 제공되지 않았습니다.", - "plugin_version_label": "플러그인 버전", - "plugin_full_access": "이 플러그인은 Steam Deck의 모든 접근 권한을 가집니다." - }, - "PluginInstallModal": { - "install": { - "button_idle": "설치", - "button_processing": "설치 중", - "desc": "{{artifact}} {{version}}을(를) 설치하겠습니까?", - "title": "{{artifact}} 설치" - }, - "reinstall": { - "button_idle": "재설치", - "button_processing": "재설치 중", - "desc": "{{artifact}} {{version}}을(를) 재설치하겠습니까?", - "title": "{{artifact}} 재설치" - }, - "update": { - "button_idle": "업데이트", - "button_processing": "업데이트 중", - "title": "{{artifact}} 업데이트", - "desc": "{{artifact}} {{version}} 업데이트를 설치하겠습니까?" - }, - "no_hash": "이 플러그인은 해시 확인을 하지 않습니다, 설치에 따른 위험은 사용자가 감수해야 합니다." - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_other": "플러그인 {{count}}개 수정", - "update_other": "플러그인 {{count}}개 업데이트", - "reinstall_other": "플러그인 {{count}}개 재설치", - "install_other": "플러그인 {{count}}개 설치" - }, - "ok_button": { - "idle": "확인", - "loading": "작업 중" - }, - "confirm": "해당 수정을 적용하겠습니까?", - "description": { - "install": "{{name}} {{version}} 플러그인 설치", - "update": "{{name}}의 {{version}} 업데이트 설치", - "reinstall": "{{name}} {{version}} 재설치" - } - }, - "PluginListIndex": { - "plugin_actions": "플러그인 동작", - "reinstall": "재설치", - "reload": "다시 로드", - "uninstall": "설치 제거", - "show": "빠른 액세스 메뉴: 표시", - "hide": "빠른 액세스 메뉴: 숨김", - "update_all_other": "플러그인 {{count}}개 업데이트", - "no_plugin": "설치된 플러그인이 없습니다!", - "update_to": "{{name}}(으)로 업데이트", - "freeze": "업데이트 일시 중지", - "unfreeze": "업데이트 허용" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "{{tag_name}} 업데이트를 설치할 수 있습니다!", - "error": "오류", - "plugin_load_error": { - "message": "{{name}} 플러그인 불러오기 오류", - "toast": "{{name}} 불러오기 오류" - }, - "plugin_uninstall": { - "button": "설치 제거", - "desc": "{{name}}을(를) 설치 제거하겠습니까?", - "title": "{{name}} 설치 제거" - }, - "plugin_update_other": "플러그인 {{count}}개를 업데이트 할 수 있습니다!", - "plugin_error_uninstall": "{{name}} 플러그인을 불러올 때 위와 같은 예외가 발생했습니다. 이는 보통 SteamUI 최신 버전에 맞는 플러그인 업데이트가 필요할 때 발생합니다. Decky 설정의 플러그인 섹션에서 업데이트가 있는지 확인하거나 설치 제거를 시도 해 보세요." - }, - "RemoteDebugging": { - "remote_cef": { - "label": "리모트 CEF 디버그 허용", - "desc": "네트워크의 모든 사용자에게 CEF 디버거에 대한 인증되지 않은 액세스 허용" - } - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "콘솔 열기", - "label": "CEF 콘솔", - "desc": "CEF 콘솔을 엽니다. 디버그 전용입니다. 이 항목들은 위험 가능성이 있으므로 플러그인 개발자이거나 개발자의 가이드를 따를 경우에만 사용해야 합니다." - }, - "header": "기타", - "react_devtools": { - "ip_label": "IP", - "label": "React DevTools 활성화", - "desc": "React DevTools를 실행하고 있는 컴퓨터에 연결을 활성화합니다. 이 설정을 변경하면 Steam이 다시 로드됩니다. 활성화하기 전에 IP 주소를 설정하세요." - }, - "third_party_plugins": { - "button_install": "설치", - "button_zip": "검색", - "header": "서드파티 플러그인", - "label_desc": "URL", - "label_url": "URL에서 플러그인 설치", - "label_zip": "ZIP 파일에서 플러그인 설치" - }, - "valve_internal": { - "desc1": "Valve 내부 개발자 메뉴를 활성화합니다.", - "label": "Valve 내부 개발자 메뉴 활성화", - "desc2": "이 메뉴의 기능을 모른다면 어떤 것도 건드리지 마세요." - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Decky 버전", - "header": "정보" - }, - "beta": { - "header": "베타 참가" - }, - "developer_mode": { - "label": "개발자 모드" - }, - "other": { - "header": "기타" - }, - "updates": { - "header": "업데이트" - }, - "notifications": { - "header": "알림", - "plugin_updates_label": "플러그인 업데이트 가능", - "decky_updates_label": "Decky 업데이트 가능" - } - }, - "SettingsIndex": { - "developer_title": "개발자", - "general_title": "일반", - "plugins_title": "플러그인", - "testing_title": "테스트" - }, - "Store": { - "store_contrib": { - "desc": "Decky 플러그인 스토어에 기여하고 싶다면 SteamDeckHomebrew/decky-plugin-template Github 저장소를 확인하세요. 개발 및 배포에 대한 정보는 README에서 확인할 수 있습니다.", - "label": "기여하기" - }, - "store_filter": { - "label": "필터", - "label_def": "모두" - }, - "store_search": { - "label": "검색" - }, - "store_sort": { - "label": "정렬", - "label_def": "최근 업데이트 순" - }, - "store_source": { - "desc": "모든 플러그인 소스 코드는 SteamDeckHomebrew/decky-plugin-database Github 저장소에서 확인할 수 있습니다.", - "label": "소스 코드" - }, - "store_tabs": { - "about": "정보", - "alph_asce": "알파벳순 (Z-A)", - "alph_desc": "알파벳순 (A-Z)", - "title": "검색", - "downloads_asce": "다운로드 수 낮은 순", - "date_desc": "최신 순", - "date_asce": "오래된 순", - "downloads_desc": "다운로드 많은 순" - }, - "store_testing_cta": "새로운 플러그인을 테스트하여 Decky Loader 팀을 도와주세요!", - "store_testing_warning": { - "desc": "이 스토어 채널을 사용하여 가장 최신 버전의 플러그인을 테스트할 수 있습니다. GitHub에 피드백을 남겨서 모든 사용자가 업데이트 할 수 있게 해주세요.", - "label": "테스트 스토어 채널에 오신 것을 환영합니다" - } - }, - "StoreSelect": { - "custom_store": { - "label": "사용자 지정 스토어", - "url_label": "URL" - }, - "store_channel": { - "custom": "사용자 지정", - "label": "스토어 배포 채널", - "default": "기본", - "testing": "테스트" - } - }, - "Updater": { - "decky_updates": "Decky 업데이트", - "no_patch_notes_desc": "이 버전에는 패치 노트가 없습니다", - "patch_notes_desc": "패치 노트", - "updates": { - "check_button": "업데이트 확인", - "checking": "확인 중", - "cur_version": "현재 버전: {{ver}}", - "install_button": "업데이트 설치", - "label": "업데이트", - "lat_version": "최신 상태: {{ver}} 실행 중", - "reloading": "다시 로드 중", - "updating": "업데이트 중" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "지정된 경로가 잘못되었습니다. 확인 후에 다시 입력해 주세요.", - "unknown": "알 수 없는 오류가 발생했습니다. Raw 오류: {{raw_error}}", - "perm_denied": "선택한 경로에 접근 할 수 없습니다. 선택한 폴더/파일 접근 권한이 유저(Steam Deck의 deck 유저)에 맞게 올바르게 설정 되었는지 확인하세요." - } - }, - "DropdownMultiselect": { - "button": { - "back": "뒤로" - } - }, - "TitleView": { - "settings_desc": "Decky 설정 열기", - "decky_store_desc": "Decky 스토어 열기" - }, - "Testing": { - "download": "다운로드" - } -} diff --git a/backend/locales/nl-NL.json b/backend/locales/nl-NL.json deleted file mode 100644 index 68256c7a..00000000 --- a/backend/locales/nl-NL.json +++ /dev/null @@ -1,270 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "prerelease": "Prerelease", - "stable": "Stabiel", - "label": "Updatekanaal", - "testing": "Testing" - } - }, - "Developer": { - "5secreload": "Bezig met herstarten in 5 seconden", - "disabling": "Bezig met uitschakelen van React DevTools", - "enabling": "Bezig met inschakelen van React DevTools" - }, - "DropdownMultiselect": { - "button": { - "back": "Terug" - } - }, - "FilePickerError": { - "errors": { - "unknown": "Er is een onbekende fout opgetreden. De foutmelding is: {{raw_error}}", - "file_not_found": "Het opgegeven pad is niet geldig. Controleer het en voer het opnieuw correct in.", - "perm_denied": "U heeft geen toegang tot de opgegeven map. Controleer of uw gebruiker (deck op Steam Deck) de juiste permissies heeft om toegang te krijgen tot de opgegeven map/het opgegeven bestand." - } - }, - "FilePickerIndex": { - "files": { - "all_files": "Alle bestanden", - "file_type": "Bestandstype", - "show_hidden": "Verborgen bestanden tonen" - }, - "filter": { - "created_desc": "Aanmaakdatum (nieuwste)", - "modified_asce": "Gewijzigd op (oudste)", - "modified_desc": "Gewijzigd op (nieuwste)", - "name_asce": "Naam (Z-A)", - "name_desc": "Naam (A-Z)", - "size_asce": "Grootte (kleinste)", - "size_desc": "Grootte (grootste)", - "created_asce": "Aanmaakdatum (oudste)" - }, - "folder": { - "label": "Map", - "select": "Deze map gebruiken", - "show_more": "Meer bestanden tonen" - }, - "file": { - "select": "Dit bestand selecteren" - } - }, - "PluginView": { - "hidden_one": "1 plug-in is verborgen in deze lijst", - "hidden_other": "{{count}} plug-ins zijn verborgen in deze lijst" - }, - "PluginListLabel": { - "hidden": "Verborgen in snelle toegang" - }, - "PluginCard": { - "plugin_install": "Installeren", - "plugin_no_desc": "Geen beschrijving gegeven.", - "plugin_version_label": "Plug-inversie", - "plugin_full_access": "Deze plug-in heeft volledige toegang tot uw Steam Deck." - }, - "PluginInstallModal": { - "install": { - "button_idle": "Installeren", - "button_processing": "Bezig met installeren", - "title": "Installeer {{artifact}}", - "desc": "Weet je zeker dat je {{artifact}} {{version}} wilt installeren?" - }, - "no_hash": "Deze plug-in heeft geen hash, je installeert deze op eigen risico.", - "reinstall": { - "button_idle": "Opnieuw installeren", - "button_processing": "Bezig met opnieuw te installeren", - "desc": "Weet je zeker dat je {{artifact}} {{version}} opnieuw wilt installeren?", - "title": "Installeer {{artifact}} opnieuw" - }, - "update": { - "button_idle": "Bijwerken", - "button_processing": "Bezig met bijwerken", - "title": "{{artifact}} bijwerken", - "desc": "Weet je zeker dat je {{artifact}} {{version}} wilt bijwerken?" - } - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_one": "Wijzig 1 plug-in", - "mixed_other": "Wijzig {{count}} plug-ins", - "update_one": "Werk 1 plug-in bij", - "update_other": "Werk {{count}} plug-ins bij", - "install_one": "Installeer 1 plug-in", - "install_other": "Installeer {{count}} plug-ins", - "reinstall_one": "Installeer 1 plug-in opnieuw", - "reinstall_other": "Installeer {{count}} plug-ins opnieuw" - }, - "ok_button": { - "idle": "Bevestigen", - "loading": "Bezig" - }, - "confirm": "Weet je zeker dat je de volgende wijzigingen wilt aanbrengen?", - "description": { - "install": "Installeer {{name}} {{version}}", - "update": "Werk {{name}} bij naar {{version}}", - "reinstall": "Installeer {{name}} {{version}} opnieuw" - } - }, - "PluginListIndex": { - "no_plugin": "Geen plug-ins geïnstalleerd!", - "plugin_actions": "Plug-inacties", - "reload": "Herstarten", - "uninstall": "Verwijderen", - "update_to": "Bijwerken naar {{name}}", - "hide": "Verberg in snelle toegang", - "update_all_one": "Werk 1 plug-in bij", - "update_all_other": "Werk {{count}} plug-ins bij", - "reinstall": "Opnieuw installeren", - "show": "Toon in snelle toegang", - "unfreeze": "Updates toestaan", - "freeze": "Updates bevriezen" - }, - "PluginLoader": { - "decky_title": "Decky", - "error": "Fout", - "plugin_load_error": { - "message": "Fout bij het laden van plug-in {{name}}", - "toast": "Fout bij het laden van {{name}}" - }, - "plugin_uninstall": { - "button": "Verwijderen", - "desc": "Weet je zeker dat je {{name}} wilt verwijderen?", - "title": "Verwijder {{name}}" - }, - "plugin_update_one": "Updates beschikbaar voor 1 plug-in!", - "plugin_update_other": "Updates beschikbaar voor {{count}} plug-ins!", - "decky_update_available": "Update naar {{tag_name}} beschikbaar!", - "plugin_error_uninstall": "Het laden van {{name}} veroorzaakte een fout zoals hierboven weergegeven. Dit betekent meestal dat de plug-in moet worden bijgewerkt voor de nieuwe versie van SteamUI. Controleer of er een update aanwezig is of evalueer de verwijdering ervan in de Decky-instellingen, in het gedeelte Plug-ins." - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Sta ongeauthenticeerde toegang tot de CEF-debugger toe aan iedereen in uw netwerk", - "label": "Externe CEF-debugging toestaan" - } - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Console openen", - "label": "CEF-console", - "desc": "Opent de CEF-console. Alleen nuttig voor foutopsporingsdoeleinden. Dingen hier zijn potentieel gevaarlijk en mogen alleen worden gebruikt als je een ontwikkelaar van plug-ins bent, of hier door een ontwikkelaar naartoe wordt geleid." - }, - "header": "Overige", - "react_devtools": { - "ip_label": "IP-adres", - "label": "React DevTools inschakelen", - "desc": "Maakt verbinding met een computer met React DevTools mogelijk. Als je deze instelling wijzigt, wordt Steam opnieuw geladen. Stel het IP-adres in voordat je het inschakelt." - }, - "third_party_plugins": { - "header": "Plug-ins van derden", - "label_desc": "URL", - "label_url": "Installeer plug-in via een URL", - "label_zip": "Installeer plug-in via een ZIP-bestand", - "button_install": "Installeren", - "button_zip": "Bladeren" - }, - "valve_internal": { - "desc1": "Schakelt het interne ontwikkelaarsmenu van Valve in.", - "desc2": "Pas niets in dit menu aan, tenzij je weet wat het doet.", - "label": "Valve Internal inschakelen" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Decky-versie", - "header": "Over" - }, - "beta": { - "header": "Beta-deelname" - }, - "developer_mode": { - "label": "Ontwikkelaarsmodus" - }, - "other": { - "header": "Overige" - }, - "updates": { - "header": "Updates" - }, - "notifications": { - "decky_updates_label": "Wanneer er een Decky-update beschikbaar is", - "header": "Meldingen", - "plugin_updates_label": "Wanneer er plug-in-updates beschikbaar zijn" - } - }, - "SettingsIndex": { - "developer_title": "Ontwikkelaar", - "general_title": "Algemeen", - "plugins_title": "Plug-ins", - "testing_title": "Testen" - }, - "Store": { - "store_filter": { - "label": "Filter", - "label_def": "Alles" - }, - "store_search": { - "label": "Zoeken" - }, - "store_sort": { - "label": "Sorteren", - "label_def": "Laatst bijgewerkt (nieuwste)" - }, - "store_source": { - "label": "Broncode", - "desc": "Alle broncode van de plug-in is beschikbaar in de SteamDeckHomebrew/decky-plugin-database-repository op GitHub." - }, - "store_tabs": { - "about": "Over", - "alph_asce": "Alfabetisch (Z naar A)", - "alph_desc": "Alfabetisch (A naar Z)", - "title": "Bladeren", - "date_desc": "Nieuwste eerst", - "downloads_asce": "Minste gedownload eerst", - "downloads_desc": "Meeste gedownload eerst", - "date_asce": "Oudste eerst" - }, - "store_testing_cta": "Overweeg om nieuwe plug-ins te testen om het Decky Loader-team te helpen!", - "store_contrib": { - "desc": "Als je wilt bijdragen aan de Decky Plugin Store, kijk dan in de SteamDeckHomebrew/decky-plugin-template repository op GitHub. Informatie over ontwikkeling en distributie is beschikbaar in de README.", - "label": "Bijdragen" - }, - "store_testing_warning": { - "label": "Welkom bij het Testing-winkelkanaal", - "desc": "Je kunt dit winkelkanaal gebruiken om nog in ontwikkeling zijnde plug-inversies te testen. Zorg ervoor dat je feedback geeft op GitHub, zodat de plug-in voor alle gebruikers kan worden bijgewerkt." - } - }, - "StoreSelect": { - "custom_store": { - "label": "Aangepaste winkel", - "url_label": "URL" - }, - "store_channel": { - "custom": "Aangepast", - "default": "Standaard", - "label": "Winkelkanaal", - "testing": "Testing" - } - }, - "Updater": { - "patch_notes_desc": "Patch-opmerkingen", - "updates": { - "check_button": "Op updates controleren", - "checking": "Bezig met controleren op updates", - "cur_version": "Huidige versie: {{ver}}", - "install_button": "Bijwerken", - "label": "Updates", - "lat_version": "Bijwerkt: versie {{ver}}", - "reloading": "Bezig met herstarten", - "updating": "Bezig met bijwerken" - }, - "decky_updates": "Decky-updates", - "no_patch_notes_desc": "geen patch-opmerkingen voor deze versie" - }, - "TitleView": { - "decky_store_desc": "Decky Store openen", - "settings_desc": "Decky-instellingen openen" - }, - "Testing": { - "download": "Downloaden" - } -} diff --git a/backend/locales/pl-PL.json b/backend/locales/pl-PL.json deleted file mode 100644 index c7cec3d7..00000000 --- a/backend/locales/pl-PL.json +++ /dev/null @@ -1,277 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "testing": "Testowy", - "label": "Kanał aktualizacji", - "stable": "Stabilny", - "prerelease": "Przedpremierowy" - } - }, - "Developer": { - "enabling": "Włączanie React DevTools", - "5secreload": "Ponowne załadowanie za 5 sekund", - "disabling": "Wyłączanie React DevTools" - }, - "DropdownMultiselect": { - "button": { - "back": "Powrót" - } - }, - "FilePickerError": { - "errors": { - "perm_denied": "Nie masz dostępu do podanego katalogu. Sprawdź, czy twój użytkownik (deck na Steam Deck) ma odpowiednie uprawnienia dostępu do określonego katalogu/pliku.", - "unknown": "Wystąpił nieznany błąd. Surowy błąd to {{raw_error}}", - "file_not_found": "Podana ścieżka jest nieprawidłowa. Sprawdź ją i wprowadź ponownie poprawnie." - } - }, - "FilePickerIndex": { - "file": { - "select": "Wybierz ten plik" - }, - "files": { - "all_files": "Wszystkie pliki", - "file_type": "Typ pliku", - "show_hidden": "Pokaż ukryte pliki" - }, - "filter": { - "created_asce": "Utworzono (najstarszy)", - "created_desc": "Utworzono (najnowszy)", - "modified_asce": "Zmodyfikowany (najstarszy)", - "modified_desc": "Zmodyfikowany (najnowszy)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Rozmiar (najmniejszy)", - "size_desc": "Rozmiar (największy)" - }, - "folder": { - "label": "Katalog", - "select": "Użyj tego katalogu", - "show_more": "Pokaż więcej plików" - } - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_one": "Zmodyfikuj {{count}} plugin", - "mixed_few": "Zmodyfikuj {{count}} pluginy", - "mixed_many": "Zmodyfikuj {{count}} pluginów", - "reinstall_one": "Reinstaluj 1 plugin", - "reinstall_few": "Reinstaluj {{count}} pluginy", - "reinstall_many": "Reinstaluj {{count}} pluginów", - "install_one": "Zainstaluj 1 plugin", - "install_few": "Zainstaluj {{count}} pluginy", - "install_many": "Zainstaluj {{count}} pluginów", - "update_one": "Zaktualizuj 1 plugin", - "update_few": "Zaktualizuj {{count}} pluginy", - "update_many": "Zaktualizuj {{count}} pluginów" - }, - "confirm": "Czy na pewno chcesz wprowadzić następujące modyfikacje?", - "description": { - "install": "Zainstaluj {{name}} {{version}}", - "reinstall": "Reinstaluj {{name}} {{version}}", - "update": "Zaktualizuj {{name}} do {{version}}" - }, - "ok_button": { - "idle": "Potwierdź", - "loading": "W toku" - } - }, - "PluginCard": { - "plugin_install": "Zainstaluj", - "plugin_no_desc": "Brak opisu.", - "plugin_version_label": "Wersja pluginu", - "plugin_full_access": "Ten plugin ma pełny dostęp do twojego Steam Decka." - }, - "PluginInstallModal": { - "install": { - "button_idle": "Zainstaluj", - "button_processing": "Instalowanie", - "desc": "Czy na pewno chcesz zainstalować {{artifact}} {{version}}?", - "title": "Zainstaluj {{artifact}}" - }, - "reinstall": { - "button_idle": "Reinstaluj", - "button_processing": "Reinstalowanie", - "desc": "Czy na pewno chcesz ponownie zainstalować {{artifact}} {{version}}?", - "title": "Reinstaluj {{artifact}}" - }, - "update": { - "button_idle": "Aktualizacja", - "button_processing": "Aktualizowanie", - "desc": "Czy na pewno chcesz zaktualizować {{artifact}} {{version}}?", - "title": "Zaktualizuj {{artifact}}" - }, - "no_hash": "Ten plugin nie ma hasha, instalujesz go na własne ryzyko." - }, - "PluginListIndex": { - "hide": "Szybki dostęp: Ukryj", - "no_plugin": "Brak zainstalowanych pluginów!", - "reload": "Załaduj ponownie", - "update_all_one": "Zaktualizuj 1 plugin", - "update_all_few": "Zaktualizuj {{count}} pluginy", - "update_all_many": "Zaktualizuj {{count}} pluginów", - "plugin_actions": "Akcje pluginów", - "reinstall": "Reinstalacja", - "show": "Szybki dostęp: Pokaż", - "uninstall": "Odinstaluj", - "update_to": "Zaktualizuj do {{name}}", - "unfreeze": "Odblokuj aktualizacje", - "freeze": "Zablokuj aktualizacje" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "Dostępna aktualizacja do {{tag_name}}!", - "error": "Błąd", - "plugin_error_uninstall": "Ładowanie {{name}} spowodowało wyjątek, jak pokazano powyżej. Zwykle oznacza to, że plugin wymaga aktualizacji do nowej wersji SteamUI. Sprawdź, czy aktualizacja jest obecna lub rozważ usunięcie go w ustawieniach Decky, w sekcji Pluginy.", - "plugin_load_error": { - "message": "Błąd ładowania plugin {{name}}", - "toast": "Błąd ładowania {{name}}" - }, - "plugin_uninstall": { - "button": "Odinstaluj", - "title": "Odinstaluj {{name}}", - "desc": "Czy na pewno chcesz odinstalować {{name}}?" - }, - "plugin_update_one": "Aktualizacje dostępne dla 1 pluginu!", - "plugin_update_few": "Aktualizacje dostępne dla {{count}} pluginów!", - "plugin_update_many": "Aktualizacje dostępne dla {{count}} pluginów!" - }, - "PluginListLabel": { - "hidden": "Ukryty w menu szybkiego dostępu" - }, - "PluginView": { - "hidden_one": "1 plugin jest ukryty na tej liście", - "hidden_few": "{{count}} pluginy jest ukryty na tej liście", - "hidden_many": "{{count}} pluginów jest ukryty na tej liście" - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Zezwalaj na nieuwierzytelniony dostęp do debugera CEF wszystkim osobom w Twojej sieci", - "label": "Zezwól na zdalne debugowanie CEF" - } - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Otwórz konsolę", - "desc": "Otwiera konsolę CEF. Przydatne tylko do celów debugowania. Rzeczy tutaj są potencjalnie niebezpieczne i powinny być używane tylko wtedy, gdy jesteś twórcą wtyczek lub zostałeś tu przez kogoś skierowany.", - "label": "Konsola CEF" - }, - "header": "Inne", - "react_devtools": { - "desc": "Umożliwia połączenie z komputerem z uruchomionym React DevTools. Zmiana tego ustawienia spowoduje ponowne załadowanie Steam. Ustaw adres IP przed włączeniem.", - "ip_label": "IP", - "label": "Włącz React DevTools" - }, - "third_party_plugins": { - "button_install": "Zainstaluj", - "button_zip": "Przeglądaj", - "header": "Pluginy zewnętrzne", - "label_desc": "URL", - "label_url": "Zainstaluj plugin z adresu URL", - "label_zip": "Zainstaluj plugin z pliku ZIP" - }, - "valve_internal": { - "desc1": "Włącza wewnętrzne menu programisty Valve.", - "desc2": "Nie dotykaj niczego w tym menu, chyba że wiesz, co robi.", - "label": "Włącz Valve Internal" - } - }, - "SettingsGeneralIndex": { - "notifications": { - "decky_updates_label": "Dostępna aktualizacja Decky", - "header": "Powiadomienia", - "plugin_updates_label": "Dostępne aktualizacje pluginów" - }, - "other": { - "header": "Inne" - }, - "updates": { - "header": "Aktualizacje" - }, - "about": { - "header": "Informacje", - "decky_version": "Wersja Decky" - }, - "beta": { - "header": "Udział w becie" - }, - "developer_mode": { - "label": "Tryb dewelopera" - } - }, - "SettingsIndex": { - "developer_title": "Deweloper", - "general_title": "Ogólne", - "plugins_title": "Pluginy", - "testing_title": "Testowanie" - }, - "Store": { - "store_contrib": { - "desc": "Jeśli chcesz przyczynić się do rozwoju Decky Plugin Store, sprawdź repozytorium SteamDeckHomebrew/decky-plugin-template na GitHub. Informacje na temat rozwoju i dystrybucji są dostępne w pliku README.", - "label": "Współtworzenie" - }, - "store_filter": { - "label": "Filtr", - "label_def": "Wszystko" - }, - "store_search": { - "label": "Szukaj" - }, - "store_sort": { - "label": "Sortowanie", - "label_def": "Ostatnia aktualizacja (najnowsza)" - }, - "store_source": { - "desc": "Cały kod źródłowy pluginów jest dostępny w repozytorium SteamDeckHomebrew/decky-plugin-database na GitHub.", - "label": "Kod źródłowy" - }, - "store_tabs": { - "alph_asce": "Alfabetycznie (od Z do A)", - "alph_desc": "Alfabetycznie (od A do Z)", - "title": "Przeglądaj", - "about": "Informacje", - "date_desc": "Od najnowszych", - "downloads_desc": "Najwięcej pobrań", - "downloads_asce": "Najmniej pobrań", - "date_asce": "Od najstarszych" - }, - "store_testing_cta": "Rozważ przetestowanie nowych pluginów, aby pomóc zespołowi Decky Loader!", - "store_testing_warning": { - "label": "Witamy w Testowym Kanale Sklepu", - "desc": "Możesz użyć tego kanału sklepu do testowania najnowszych wersji pluginów. Pamiętaj, aby zostawić opinię na GitHub, aby plugin mogła zostać zaktualizowana dla wszystkich użytkowników." - } - }, - "StoreSelect": { - "custom_store": { - "label": "Niestandardowy sklep", - "url_label": "URL" - }, - "store_channel": { - "custom": "Niestandardowy", - "default": "Domyślny", - "label": "Kanał sklepu", - "testing": "Testowy" - } - }, - "Updater": { - "decky_updates": "Aktualizacje Decky", - "no_patch_notes_desc": "Brak informacji o poprawkach dla tej wersji", - "patch_notes_desc": "Opis zmian", - "updates": { - "check_button": "Sprawdź aktualizacje", - "checking": "Sprawdzanie", - "cur_version": "Aktualna wersja: {{ver}}", - "install_button": "Zainstaluj aktualizację", - "label": "Aktualizacje", - "lat_version": "Aktualizacje zainstalowane. Aktualna wersja: {{ver}}", - "reloading": "Ponowne ładowanie", - "updating": "Aktualizowanie" - } - }, - "TitleView": { - "settings_desc": "Otwórz ustawienia Decky", - "decky_store_desc": "Otwórz sklep Decky" - }, - "Testing": { - "download": "Pobierz" - } -} diff --git a/backend/locales/pt-BR.json b/backend/locales/pt-BR.json deleted file mode 100644 index 53fdb6fe..00000000 --- a/backend/locales/pt-BR.json +++ /dev/null @@ -1,268 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "prerelease": "Pré-lançamento", - "stable": "Estável", - "testing": "Em Teste", - "label": "Canal de Atualização" - } - }, - "Developer": { - "5secreload": "Recarregando em 5 segundos", - "enabling": "Habilitando React DevTools", - "disabling": "Desabilitando React DevTools" - }, - "FilePickerIndex": { - "folder": { - "select": "Use esta pasta", - "label": "Pasta", - "show_more": "Mostrar mais arquivos" - }, - "files": { - "show_hidden": "Mostrar Arquivos Ocultos", - "all_files": "Todos os arquivos", - "file_type": "Formato de arquivo" - }, - "filter": { - "created_asce": "Criado (Mais antigo)", - "created_desc": "Criado (Mais recente)", - "modified_asce": "Alterado (Mais antigo)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Tamanho (Menor)", - "size_desc": "Tamanho (Maior)", - "modified_desc": "Alterado (Mais recente)" - }, - "file": { - "select": "Selecione este arquivo" - } - }, - "PluginListLabel": { - "hidden": "Oculto no menu de acesso rápido" - }, - "PluginCard": { - "plugin_full_access": "Este plugin tem acesso total ao seu Steam Deck.", - "plugin_install": "Instalar", - "plugin_no_desc": "Nenhuma descrição fornecida.", - "plugin_version_label": "Versão do plugin" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Instalar", - "button_processing": "Instalando", - "desc": "Você tem certeza que deseja instalar {{artifact}} {{version}}?", - "title": "Instalar {{artifact}}" - }, - "reinstall": { - "button_idle": "Reinstalar", - "button_processing": "Reinstalando", - "desc": "Tem certeza que voce deseja reinstalar {{artifact}} {{version}}?", - "title": "Reinstalar {{artifact}}" - }, - "update": { - "button_idle": "Atualizar", - "button_processing": "Atualizando", - "desc": "Tem certeza que voce deseja atualizar {{artifact}} {{version}}?", - "title": "Atualizar {{artifact}}" - }, - "no_hash": "Este plugin não tem um hash, você o está instalando por sua conta em risco." - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_one": "Modificar {{count}} plugin", - "mixed_many": "Modificar {{count}} plugins", - "mixed_other": "Modificar {{count}} plugins", - "update_one": "Atualizar 1 plugin", - "update_many": "Atualizar {{count}} plugins", - "update_other": "Atualizar {{count}} plugins", - "install_one": "Instalar 1 plugin", - "install_many": "Instalar {{count}} plugins", - "install_other": "Instalar {{count}} plugins", - "reinstall_one": "Reinstalar 1 plugin", - "reinstall_many": "Reinstalar {{count}} plugins", - "reinstall_other": "Reinstalar {{count}} plugins" - }, - "ok_button": { - "idle": "Confirmar", - "loading": "Carregando" - }, - "description": { - "install": "Instalar {{name}} {{version}}", - "update": "Atualizar {{name}} para {{version}}", - "reinstall": "Reinstalar {{name}} {{version}}" - }, - "confirm": "Tem certeza que deseja fazer as seguintes modificações?" - }, - "PluginListIndex": { - "no_plugin": "Nenhum plugin instalado!", - "plugin_actions": "Ações do plugin", - "reinstall": "Reinstalar", - "reload": "Recarregar", - "uninstall": "Desinstalar", - "update_to": "Atualizar para {{name}}", - "show": "Acesso Rápido: Mostrar", - "update_all_one": "Atualizar 1 plugin", - "update_all_many": "Atualizar {{count}} plugins", - "update_all_other": "Atualizar {{count}} plugins", - "hide": "Acesso Rápido: Ocultar", - "freeze": "Congelar updates" - }, - "PluginLoader": { - "decky_title": "Decky", - "error": "Erro", - "plugin_load_error": { - "message": "Erro ao carregar o plugin {{name}}", - "toast": "Erro ao carregar {{name}}" - }, - "plugin_uninstall": { - "button": "Desinstalar", - "desc": "Você tem certeza que deseja desinstalar {{name}}?", - "title": "Desinstalar {{name}}" - }, - "decky_update_available": "Atualização para {{tag_name}} disponível!", - "plugin_error_uninstall": "Um erro aconteceu ao carregar {{name}}, como mostrado acima. Isso normalmente significa que o plugin precisa de uma atualização para a nova versão do SteamUI. Confira se existe uma atualização ou avalie a remoção do plugin nas configurações do Decky, na sessão de plugins.", - "plugin_update_one": "Atualização disponível para 1 plugin!", - "plugin_update_many": "Atualizações disponíveis para {{count}} plugins!", - "plugin_update_other": "Atualizações disponíveis para {{count}} plugins!" - }, - "RemoteDebugging": { - "remote_cef": { - "label": "Permitir Depuração CEF Demota", - "desc": "Permitir acesso não autenticato ao depurador CEF para qualquer um na sua rede" - } - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Abrir o Console", - "label": "Console CEF", - "desc": "Abre o Console CEF. Somente útil para fins de depuração. O material aqui é potencialmente perigoso e só deve ser usado se você for um desenvolvedor de plugin, ou direcionado até aqui por um." - }, - "header": "Outros", - "react_devtools": { - "desc": "Habilita a conexão a um computador executando React DevTools. Alterar essa configuração irá recarregar a Steam. Defina o endereço IP antes de habilitar.", - "ip_label": "IP", - "label": "Habilitar React DevTools" - }, - "third_party_plugins": { - "button_install": "Instalar", - "button_zip": "Navegar", - "header": "Plugins de terceiros", - "label_url": "Instalar Plugin a partir da URL", - "label_zip": "Instalar Plugin a partir de um arquivo ZIP", - "label_desc": "URL" - }, - "valve_internal": { - "desc1": "Habilita o menu interno de desenvolvedor da Valve.", - "desc2": "Não toque em nada neste menu, a não ser que você saiba o que está fazendo.", - "label": "Habilitar Menu Interno da Valve" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Versão do Decky", - "header": "Sobre" - }, - "developer_mode": { - "label": "Modo Deselvolvedor" - }, - "other": { - "header": "Outros" - }, - "updates": { - "header": "Atualizações" - }, - "beta": { - "header": "Participação no Beta" - }, - "notifications": { - "decky_updates_label": "Atualização do Decky disponível", - "header": "Noificações", - "plugin_updates_label": "Atualizações de Plugin disponíveis" - } - }, - "SettingsIndex": { - "developer_title": "Desenvolvedor", - "general_title": "Geral", - "plugins_title": "Plugins" - }, - "Store": { - "store_contrib": { - "label": "Contribuindo", - "desc": "Se você deseja contribuir para a Loja de Plugins para o Decky, confira o repositório SteamDeckHomebrew/decky-plugin-template no GitHub. Informações sobre o desenvolvimento e distribuição estão disponíveis no README." - }, - "store_filter": { - "label": "Filtros", - "label_def": "Todos" - }, - "store_search": { - "label": "Buscar" - }, - "store_sort": { - "label": "Ordenar", - "label_def": "Último atualizado (Mais recente)" - }, - "store_source": { - "desc": "Todos os códigos fonte dos plugins estão disponíveis no repositório SteamDeckHomebrew/decky-plugin-database no GitHub.", - "label": "Código Fonte" - }, - "store_tabs": { - "about": "Sobre", - "alph_desc": "Alfabética (A - Z)", - "title": "Navegar", - "alph_asce": "Alfabética (Z - A)" - }, - "store_testing_cta": "Por favor, considere testar os novos plugins para ajudar o time do Decky Loader!", - "store_testing_warning": { - "desc": "Você pode usar este canal da loja para testar versões avançadas do plugin. Certifique-se de deixar feedback no GitHub para que o plugin possa ser atualizado para todos os usuários.", - "label": "Bem-vindo ao Canal de Testes da Loja" - } - }, - "StoreSelect": { - "custom_store": { - "label": "Loja Personalizada", - "url_label": "URL" - }, - "store_channel": { - "custom": "Personalizada", - "default": "Padrão", - "label": "Canal da Loja", - "testing": "Em Teste" - } - }, - "Updater": { - "no_patch_notes_desc": "nenhuma nota de alteração para esta versão", - "patch_notes_desc": "Notas de alteração", - "updates": { - "check_button": "Buscar Atualizações", - "checking": "Buscando", - "cur_version": "Versão atual: {{ver}}", - "install_button": "Instalar Atualização", - "label": "Atualizações", - "lat_version": "Atualizado: rodando {{ver}}", - "reloading": "Recarregando", - "updating": "Atualizando" - }, - "decky_updates": "Atualizações do Decky" - }, - "PluginView": { - "hidden_one": "1 plugin está oculto nesta lista", - "hidden_many": "{{count}} plugins estão ocultos nesta lista", - "hidden_other": "{{count}} plugins estão ocultos nesta lista" - }, - "DropdownMultiselect": { - "button": { - "back": "Voltar" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "O caminho especificado não é válido. Por favor, confira e reinsira corretamente.", - "unknown": "Ocorreu um erro desconhecido. O erro completo é: {{raw_error}}", - "perm_denied": "Você não tem acesso à este diretório. Por favor, verifiquei se seu usuário (deck no Steam Deck) tem as permissões necessárias para acessar este arquivo/pasta." - } - }, - "TitleView": { - "decky_store_desc": "Abrir Loja Decky", - "settings_desc": "Abrir Definições Decky" - } -} diff --git a/backend/locales/pt-PT.json b/backend/locales/pt-PT.json deleted file mode 100644 index b4e0ab9a..00000000 --- a/backend/locales/pt-PT.json +++ /dev/null @@ -1,267 +0,0 @@ -{ - "FilePickerIndex": { - "folder": { - "select": "Usar esta pasta", - "label": "Pasta", - "show_more": "Mostrar mais ficheiros" - }, - "file": { - "select": "Selecionar este ficheiro" - }, - "filter": { - "size_desc": "Tamanho (maior)", - "created_asce": "Criado (mais antigo)", - "created_desc": "Criado (mais recente)", - "modified_asce": "Modificado (mais antigo)", - "modified_desc": "Modificado (mais recente)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Tamanho (mais pequeno)" - }, - "files": { - "file_type": "Tipo de ficheiro", - "show_hidden": "Mostrar ficheiros ocultos", - "all_files": "Todos os ficheiros" - } - }, - "PluginView": { - "hidden_one": "1 plugin está oculto desta lista", - "hidden_many": "{{count}} plugins estão ocultos desta lista", - "hidden_other": "{{count}} plugins estão ocultos desta lista" - }, - "PluginCard": { - "plugin_full_access": "Este plugin tem acesso total à tua Steam Deck.", - "plugin_install": "Instalar", - "plugin_version_label": "Versão do plugin", - "plugin_no_desc": "Não tem descrição." - }, - "PluginInstallModal": { - "install": { - "button_idle": "Instalar", - "button_processing": "Instalação em curso", - "title": "Instalar {{artifact}}", - "desc": "De certeza que queres instalar {{artifact}} {{version}}?" - }, - "reinstall": { - "button_idle": "Reinstalar", - "button_processing": "Reinstalação em curso", - "title": "Reinstalar {{artifact}}", - "desc": "De certeza que queres reinstalar {{artifact}} {{version}}?" - }, - "update": { - "button_idle": "Actualizar", - "button_processing": "Actualização em curso", - "title": "Actualizar {{artifact}}", - "desc": "De certeza que queres actualizar {{artifact}} {{version}}?" - }, - "no_hash": "Este plugin não tem um hash, estás a instalá-lo por tua conta e risco." - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_one": "Alterar 1 plugin", - "mixed_many": "Alterar {{count}} plugins", - "mixed_other": "Alterar {{count}} plugins", - "update_one": "Actualizar 1 plugin", - "update_many": "Actualizar {{count}} plugins", - "update_other": "Actualizar {{count}} plugins", - "reinstall_one": "Reinstalar 1 plugin", - "reinstall_many": "Reinstalar {{count}} plugins", - "reinstall_other": "Reinstalar {{count}} plugins", - "install_one": "Instalar 1 plugin", - "install_many": "Instalar {{count}} plugins", - "install_other": "Instalar {{count}} plugins" - }, - "ok_button": { - "idle": "Confirmar", - "loading": "Em curso" - }, - "description": { - "install": "Instalar {{name}} {{version}}", - "update": "Actualizar {{name}} para {{version}}", - "reinstall": "Reinstalar {{name}} {{version}}" - }, - "confirm": "De certeza que queres fazer as seguintes alterações?" - }, - "PluginListIndex": { - "no_plugin": "Nenhum plugin instalado!", - "reinstall": "Reinstalar", - "uninstall": "Desinstalar", - "update_to": "Actualizar para {{name}}", - "update_all_one": "Actualizar 1 plugin", - "update_all_many": "Actualizar {{count}} plugins", - "update_all_other": "Actualizar {{count}} plugins", - "plugin_actions": "Operações de plugin", - "reload": "Recarregar", - "show": "Acesso rápido: Mostrar", - "hide": "Acesso rápido: Ocultar" - }, - "BranchSelect": { - "update_channel": { - "stable": "Estável", - "testing": "Em teste", - "label": "Canal de actualização", - "prerelease": "Pré-lançamento" - } - }, - "Developer": { - "5secreload": "Vai recarregar em 5 segundos", - "disabling": "Desactivando React DevTools", - "enabling": "Activando React DevTools" - }, - "PluginListLabel": { - "hidden": "Oculto do menu de acesso rápido" - }, - "PluginLoader": { - "decky_title": "Decky", - "error": "Erro", - "plugin_load_error": { - "message": "Erro ao carregar o plugin {{name}}", - "toast": "Erro ao carregar {{name}}" - }, - "plugin_uninstall": { - "button": "Desinstalar", - "title": "Desinstalar {{name}}", - "desc": "De certeza que queres desinstalar {{name}}?" - }, - "decky_update_available": "Está disponível uma nova versão de {{tag_name}} !", - "plugin_update_one": "1 plugin tem actualizações disponíveis!", - "plugin_update_many": "{{count}} plugins têm actualizações disponíveis!", - "plugin_update_other": "{{count}} plugins têm actualizações disponíveis!", - "plugin_error_uninstall": "Houve uma excepção ao carregar {{name}}, como mostrado em cima. Pode ter sido porque o plugin requere a última versão do SteamUI. Verifica se há uma actualização disponível ou desinstala o plugin nas definições do Decky." - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Abrir consola", - "label": "Consola CEF", - "desc": "Abre a consola do CEF. Só é útil para efeitos de debugging. Pode ser perigosa e só deve ser usada se és um desenvolvedor de plugins, ou se foste aqui indicado por um desenvolvedor." - }, - "header": "Outros", - "react_devtools": { - "desc": "Permite a conecção a um computador que está a correr React DevTools. Mudar esta definição vai recarregar o Steam. Define o endereço de IP antes de activar.", - "ip_label": "IP", - "label": "Activar React DevTools" - }, - "third_party_plugins": { - "button_install": "Instalar", - "button_zip": "Navegar", - "header": "Plugins de terceiros", - "label_desc": "URl", - "label_url": "Instalar plugin a partir dum URL", - "label_zip": "Instalar plugin a partir dum ficheiro ZIP" - }, - "valve_internal": { - "label": "Activar menu interno da Valve", - "desc1": "Activa o menu interno de programador da Valve.", - "desc2": "Não toques em nada deste menu se não souberes a sua função." - } - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Permitir acesso não autenticado ao debugger do CEF a qualquer pessoa na tua rede", - "label": "Permitir debugging remoto do CEF" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Versão do Decky", - "header": "Sobre" - }, - "beta": { - "header": "Participação na versão Beta" - }, - "developer_mode": { - "label": "Modo de programador" - }, - "other": { - "header": "Outros" - }, - "updates": { - "header": "Actualizações" - }, - "notifications": { - "decky_updates_label": "Atualização Decky disponível", - "header": "Notificações", - "plugin_updates_label": "Atualizações de plugins disponíveis" - } - }, - "SettingsIndex": { - "developer_title": "Programador", - "general_title": "Geral", - "plugins_title": "Plugins" - }, - "Store": { - "store_contrib": { - "label": "Contribuir", - "desc": "Se queres contribuir com um novo plugin, vai ao repositório SteamDeckHomebrew/decky-plugin-template no GitHub. No README, podes encontrar mais informação sobre desenvolvimento e distribuição." - }, - "store_filter": { - "label": "Filtro", - "label_def": "Todos" - }, - "store_search": { - "label": "Procurar" - }, - "store_sort": { - "label": "Ordenar", - "label_def": "Última actualização (mais recente)" - }, - "store_source": { - "label": "Código fonte", - "desc": "O código fonte de cada plugin está disponível no repositório SteamDeckHomebrew/decky-plugin-database no GitHub." - }, - "store_tabs": { - "about": "Sobre", - "alph_asce": "Alfabeticamente (Z-A)", - "alph_desc": "Alfabeticamente (A-Z)", - "title": "Navegar" - }, - "store_testing_cta": "Testa novos plugins e ajuda a equipa do Decky Loader!", - "store_testing_warning": { - "desc": "Pode usar esta versão da loja para testar versões experimentais de plugins. Certifique-se de deixar feedback no GitHub para que o plugin possa ser atualizado para todos os utilizadores.", - "label": "Bem-vindo ao Canal de Testes da Loja" - } - }, - "StoreSelect": { - "custom_store": { - "url_label": "URL", - "label": "Loja personalizada" - }, - "store_channel": { - "custom": "Personalizada", - "default": "Standard", - "testing": "Em teste", - "label": "Canal de loja" - } - }, - "Updater": { - "decky_updates": "Actualizações do Decky", - "no_patch_notes_desc": "sem registo de alterações desta versão", - "patch_notes_desc": "Registo de alterações", - "updates": { - "check_button": "Procurar actualizações", - "checking": "Busca de actualizações em curso", - "cur_version": "Versão actual: {{ver}}", - "label": "Actualizações", - "lat_version": "Actualizado: a correr {{ver}}", - "updating": "Actualização em curso", - "reloading": "Recarregar", - "install_button": "Instalar actualização" - } - }, - "FilePickerError": { - "errors": { - "perm_denied": "Não tem acesso ao diretório especificado. Por favor, verifique se o seu utilizador (deck na Steam Deck) possui as permissões correspondentes para aceder à pasta/ficheiro especificado.", - "unknown": "Ocorreu um erro desconhecido. O erro é: {{raw_error}}", - "file_not_found": "O caminho especificado não é válido. Por favor, verifique e insira-o corretamente." - } - }, - "TitleView": { - "decky_store_desc": "Abrir a Loja Decky", - "settings_desc": "Abrir as Definições Decky" - }, - "DropdownMultiselect": { - "button": { - "back": "Voltar" - } - } -} diff --git a/backend/locales/ru-RU.json b/backend/locales/ru-RU.json deleted file mode 100644 index af8c0a38..00000000 --- a/backend/locales/ru-RU.json +++ /dev/null @@ -1,277 +0,0 @@ -{ - "MultiplePluginsInstallModal": { - "title": { - "update_one": "Переустановить {{count}} плагин", - "update_few": "Переустановить {{count}} плагинов", - "update_many": "Переустановить {{count}} плагинов", - "reinstall_one": "Переустановить {{count}} плагин", - "reinstall_few": "Переустановить {{count}} плагинов", - "reinstall_many": "Переустановить {{count}} плагинов", - "install_one": "Установить {{count}} плагин", - "install_few": "Установить {{count}} плагинов", - "install_many": "Установить {{count}} плагинов", - "mixed_one": "Изменить {{count}} плагин", - "mixed_few": "Изменить {{count}} плагинов", - "mixed_many": "Изменить {{count}} плагинов" - }, - "description": { - "install": "Установить {{name}} {{version}}", - "reinstall": "Переустановить {{name}} {{version}}", - "update": "Обновить с {{name}} на {{version}}" - }, - "confirm": "Вы уверены, что хотите внести следующие изменения?", - "ok_button": { - "idle": "Подтвердить", - "loading": "В процессе" - } - }, - "PluginListIndex": { - "update_all_one": "Обновить {{count}} плагин", - "update_all_few": "Обновить {{count}} плагинов", - "update_all_many": "Обновить {{count}} плагинов", - "hide": "Быстрый доступ: Скрыть", - "reload": "Перезагрузить", - "uninstall": "Удалить", - "update_to": "Обновить на {{name}}", - "show": "Быстрый доступ: Показать", - "plugin_actions": "Действия с плагинами", - "no_plugin": "Не установлено ни одного плагина!", - "reinstall": "Переустановить", - "freeze": "Остановить обновления", - "unfreeze": "Разрешить обновления" - }, - "PluginLoader": { - "plugin_update_one": "Обновления доступны для {{count}} плагина!", - "plugin_update_few": "Обновления доступны для {{count}} плагинов!", - "plugin_update_many": "Обновления доступны для {{count}} плагинов!", - "plugin_error_uninstall": "Загрузка {{name}} вызвала исключение, указанное выше. Обычно это означает, что плагин требует обновления для новой версии SteamUI. Проверьте наличие обновления или попробуйте его удалить в настройках Decky, в разделе Плагины.", - "plugin_load_error": { - "message": "Ошибка загрузки плагина {{name}}", - "toast": "Ошибка загрузки {{name}}" - }, - "plugin_uninstall": { - "button": "Удалить", - "desc": "Вы уверены, что хотите удалить {{name}}?", - "title": "Удалить {{name}}" - }, - "decky_title": "Decky", - "decky_update_available": "Доступно обновление на {{tag_name}}!", - "error": "Ошибка" - }, - "PluginView": { - "hidden_one": "{{count}} плагин скрыт из списка", - "hidden_few": "{{count}} плагинов скрыт из списка", - "hidden_many": "{{count}} плагинов скрыт из списка" - }, - "FilePickerIndex": { - "files": { - "show_hidden": "Показать скрытые файлы", - "all_files": "Все файлы", - "file_type": "Тип файла" - }, - "filter": { - "created_asce": "Создан (самый старый)", - "modified_asce": "Модифицирован (самый новый)", - "modified_desc": "Модифицирован (самый старый)", - "size_asce": "Размер (самый малый)", - "size_desc": "Размер (самый большой)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "created_desc": "Создан (самый новый)" - }, - "folder": { - "label": "Папка", - "show_more": "Показать больше файлов", - "select": "Использовать этот каталог" - }, - "file": { - "select": "Выберите этот файл" - } - }, - "PluginCard": { - "plugin_install": "Установить", - "plugin_no_desc": "Нет описания.", - "plugin_version_label": "Версия плагина", - "plugin_full_access": "Этот плагин имеет полный доступ к вашему Steam Deck." - }, - "PluginInstallModal": { - "install": { - "button_processing": "Установка", - "title": "Установить {{artifact}}", - "button_idle": "Установить", - "desc": "Вы уверены, что хотите установить {{artifact}} {{version}}?" - }, - "no_hash": "У данного плагина отсутствует хэш, устанавливайте на свой страх и риск.", - "reinstall": { - "title": "Переустановить {{artifact}}", - "desc": "Вы уверены, что хотите переустановить {{artifact}} {{version}}?", - "button_idle": "Переустановить", - "button_processing": "Переустановка" - }, - "update": { - "button_idle": "Обновить", - "button_processing": "Обновление", - "desc": "Вы уверены, что хотите обновить {{artifact}} {{version}}?", - "title": "Обновить {{artifact}}" - } - }, - "PluginListLabel": { - "hidden": "Скрыто из меню быстрого доступа" - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Разрешить неаутентифицированный доступ к отладчику CEF всем в вашей сети", - "label": "Разрешить удаленную отладку CEF" - } - }, - "SettingsDeveloperIndex": { - "header": "Другое", - "third_party_plugins": { - "button_install": "Установить", - "label_zip": "Установить плагин из ZIP файла", - "label_url": "Установить плагин из URL", - "button_zip": "Обзор", - "header": "Сторонние плагины", - "label_desc": "Ссылка" - }, - "react_devtools": { - "ip_label": "IP", - "desc": "Позволяет подключиться к компьютеру, на котором работает React DevTools. Изменение этого параметра приведет к перезагрузке Steam. Установите IP-адрес перед включением.", - "label": "Включить React DevTools" - }, - "cef_console": { - "button": "Открыть консоль", - "desc": "Открывает консоль CEF. Полезно только для целей отладки. Настройки здесь потенциально опасны и должны использоваться только в том случае, если вы являетесь разработчиком плагинов или направленны сюда одним из них.", - "label": "CEF Консоль" - }, - "valve_internal": { - "desc1": "Включает внутреннее меню разработчика Valve.", - "label": "Включить Valve Internal", - "desc2": "Ничего не трогайте в этом меню, если не знаете, что оно делает." - } - }, - "SettingsGeneralIndex": { - "beta": { - "header": "Бета программа" - }, - "developer_mode": { - "label": "Режим разработчика" - }, - "other": { - "header": "Другое" - }, - "about": { - "decky_version": "Версия Decky", - "header": "Информация" - }, - "updates": { - "header": "Обновления" - }, - "notifications": { - "decky_updates_label": "Обновление Decky доступно", - "header": "Уведомления", - "plugin_updates_label": "Доступны обновления плагинов" - } - }, - "Store": { - "store_sort": { - "label": "Сортировка", - "label_def": "Последнее обновление(самые новые)" - }, - "store_source": { - "label": "Исходный код", - "desc": "Весь исходный код плагина доступен в репозитории SteamDeckHomebrew/decky-plugin-database на GitHub." - }, - "store_tabs": { - "about": "Информация", - "alph_desc": "По алфавиту (A - Z)", - "title": "Обзор", - "alph_asce": "По алфавиту (Z - A)", - "date_asce": "Сначала старые", - "date_desc": "Сначала новые", - "downloads_asce": "Наименее загружаемые сначала", - "downloads_desc": "Наиболее загружаемые сначала" - }, - "store_testing_cta": "Пожалуйста, рассмотрите возможность тестирования новых плагинов, чтобы помочь команде Decky Loader!", - "store_contrib": { - "desc": "Если вы хотите внести свой вклад в магазин плагинов Decky, проверьте репозиторий SteamDeckHomebrew/decky-plugin-template на GitHub. Информация о разработке и распространении доступна в README.", - "label": "Помощь проекту" - }, - "store_filter": { - "label": "Фильтр", - "label_def": "Все" - }, - "store_search": { - "label": "Поиск" - }, - "store_testing_warning": { - "label": "Добро пожаловать в тестовый канал магазина", - "desc": "Вы можете использовать этот канал магазина для тестирования новейших версий плагинов. Не забудьте оставить отзыв на GitHub, чтобы плагин можно было обновить для всех пользователей." - } - }, - "StoreSelect": { - "custom_store": { - "label": "Сторонний магазин", - "url_label": "URL" - }, - "store_channel": { - "custom": "Сторонний", - "default": "По-умолчанию", - "label": "Канал магазина", - "testing": "Тестовый" - } - }, - "Updater": { - "decky_updates": "Обновления Decky", - "no_patch_notes_desc": "нет примечаний к патчу для этой версии", - "updates": { - "check_button": "Проверить обновления", - "checking": "Проверка", - "cur_version": "Текущая версия: {{ver}}", - "updating": "Обновление", - "install_button": "Установить обновление", - "label": "Обновления", - "lat_version": "Обновлено: версия {{ver}}", - "reloading": "Перезагрузка" - }, - "patch_notes_desc": "Примечания к патчу" - }, - "FilePickerError": { - "errors": { - "perm_denied": "У вас нет доступа к указанному каталогу.. Пожалуйста, проверьте имеет ли пользователь (deck на Steam Deck) соответствующие права доступа к указанной папке/файлу.", - "file_not_found": "Указан недействительный путь. Пожалуйста, проверьте его и повторите ввод.", - "unknown": "Произошла неизвестная ошибка. Текст ошибки: {{raw_error}}" - } - }, - "DropdownMultiselect": { - "button": { - "back": "Назад" - } - }, - "BranchSelect": { - "update_channel": { - "prerelease": "Предрелиз", - "stable": "Стабильный", - "testing": "Тестовый", - "label": "Канал обновлений" - } - }, - "Developer": { - "5secreload": "Перезагрузка через 5 секунд", - "disabling": "Выключение React DevTools", - "enabling": "Включение React DevTools" - }, - "SettingsIndex": { - "developer_title": "Разработчик", - "general_title": "Общее", - "plugins_title": "Плагины", - "testing_title": "Тестирование" - }, - "TitleView": { - "decky_store_desc": "Открыть магазин Decky", - "settings_desc": "Открыть настройки Decky" - }, - "Testing": { - "download": "Загрузить" - } -} diff --git a/backend/locales/sq-AL.json b/backend/locales/sq-AL.json deleted file mode 100644 index fe9d7eec..00000000 --- a/backend/locales/sq-AL.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "SettingsDeveloperIndex": { - "react_devtools": { - "ip_label": "IP", - "label": "Aktivizo React DevTools" - }, - "third_party_plugins": { - "button_zip": "Kërko", - "header": "Shtesa të Huaj", - "button_install": "Instalo", - "label_desc": "URL", - "label_url": "Instalo Shtes Nga URL", - "label_zip": "Instalo Shtes Nga ZIP" - } - }, - "BranchSelect": { - "update_channel": { - "stable": "Fiksuar", - "label": "Kanali Përditësimet" - } - }, - "FilePickerIndex": { - "folder": { - "select": "Përdore këtë folder" - } - }, - "PluginCard": { - "plugin_install": "Instalo", - "plugin_version_label": "Versioni Shteses" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Instalo", - "button_processing": "Instalohet", - "desc": "Je i sigurt që don ta instalojsh {{artifact}} {{version}}?", - "title": "Instalo {{artifact}}" - }, - "no_hash": "Ky shtesë nuk ka hash, ti e instalon me rrezikun tuaj.", - "reinstall": { - "button_idle": "Riinstalo", - "button_processing": "Riinstalohet", - "desc": "Je i sigurt a don ta riinstalojsh {{artifact}} {{version}}?", - "title": "Riinstalo {{artifact}}" - }, - "update": { - "button_processing": "Përditësohet", - "desc": "Je i sigurt a don ta përditësojsh {{artifact}} {{version}}?", - "title": "Përditëso {{artifact}}" - } - }, - "PluginLoader": { - "decky_title": "Decky", - "plugin_uninstall": { - "title": "Çinstalo {{name}}", - "button": "Çinstalo", - "desc": "Je i sigurt që don ta çinstalojsh {{name}}?" - }, - "error": "Gabim", - "plugin_error_uninstall": "Ju lutem shko nga {{name}} në Decky menu nëse don ta çinstalojsh këtë shtese.", - "plugin_update_one": "", - "plugin_update_other": "" - }, - "PluginListIndex": { - "no_plugin": "Nuk ka shtesa të instaluar!", - "uninstall": "Çinstalo", - "update_all_one": "", - "update_all_other": "" - }, - "SettingsGeneralIndex": { - "other": { - "header": "Të Tjera" - }, - "about": { - "decky_version": "Versioni Decky" - }, - "updates": { - "header": "Përmirësimet" - } - }, - "SettingsIndex": { - "developer_title": "Zhvillues", - "general_title": "Gjeneral" - }, - "Store": { - "store_sort": { - "label": "Rendit" - }, - "store_tabs": { - "title": "Kërko" - }, - "store_contrib": { - "label": "Kontributi" - }, - "store_filter": { - "label": "Filtro", - "label_def": "Të Gjitha" - }, - "store_search": { - "label": "Kërko" - }, - "store_source": { - "label": "Kodin Burimor" - } - }, - "StoreSelect": { - "store_channel": { - "label": "Kanali Dyqanit" - } - }, - "Updater": { - "updates": { - "cur_version": "Versioni e tanishëme: {{ver}}" - } - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_one": "", - "mixed_other": "", - "update_one": "", - "update_other": "", - "reinstall_one": "", - "reinstall_other": "", - "install_one": "", - "install_other": "" - } - }, - "PluginView": { - "hidden_one": "", - "hidden_other": "" - } -} diff --git a/backend/locales/sv-SE.json b/backend/locales/sv-SE.json deleted file mode 100644 index 4961956a..00000000 --- a/backend/locales/sv-SE.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "prerelease": "Förhandsversion", - "stable": "Stabil", - "testing": "Testning", - "label": "Uppdateringskanal" - } - }, - "Developer": { - "5secreload": "Omladdning på 5 sekunder", - "disabling": "Inaktivera React DevTools", - "enabling": "Aktivera React DevTools" - }, - "DropdownMultiselect": { - "button": { - "back": "Tillbaka" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "Den angivna sökvägen är inte giltig. Kontrollera den och ange den korrekt igen.", - "unknown": "Ett okänt fel har inträffat. Det råa felet är: {{raw_error}}", - "perm_denied": "Du har inte tillgång till den angivna katalogen. Kontrollera om din användare (deck på Steam Deck) har motsvarande behörighet för att komma åt den angivna mappen/filen." - } - }, - "FilePickerIndex": { - "file": { - "select": "Välj denna fil" - }, - "files": { - "all_files": "Alla Filer", - "file_type": "Filtyp", - "show_hidden": "Visa dolda filer" - }, - "filter": { - "created_asce": "Skapad (Äldst)", - "created_desc": "Skapad (nyast)", - "modified_asce": "Modifierad (Äldst)", - "modified_desc": "Modifierad (nyaste)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Storlek (minst)", - "size_desc": "Storlek (Störst)" - }, - "folder": { - "label": "Mapp", - "select": "Använd denna mapp", - "show_more": "Visa fler filer" - } - }, - "MultiplePluginsInstallModal": { - "description": { - "install": "Installera {{name}} {{version}}", - "reinstall": "Installera om {{name}} {{version}}", - "update": "Uppdatera {{name}} {{version}}" - }, - "ok_button": { - "idle": "Bekräfta", - "loading": "Arbetar" - }, - "title": { - "install_one": "Install 1 tillägg", - "install_other": "Installerar {{count}} tillägg" - }, - "confirm": "Är du säker på att du vill göra följande ändringar?" - } -} diff --git a/backend/locales/tr-TR.json b/backend/locales/tr-TR.json deleted file mode 100644 index 501f6c78..00000000 --- a/backend/locales/tr-TR.json +++ /dev/null @@ -1,225 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "prerelease": "Önsürüm", - "stable": "Stabil", - "testing": "Test", - "label": "Güncelleme Kanalı" - } - }, - "DropdownMultiselect": { - "button": { - "back": "Geri" - } - }, - "FilePickerIndex": { - "file": { - "select": "Bu dosyayı seçin" - }, - "files": { - "all_files": "Tüm Dosyalar", - "file_type": "Dosya Türü", - "show_hidden": "Gizli Dosyaları Göster" - }, - "filter": { - "created_asce": "Oluşturuldu (En Eski)", - "created_desc": "Oluşturuldu (En Yeni)", - "modified_asce": "Değiştirildi (En Eski)", - "modified_desc": "Değiştirildi (En Yeni)", - "name_asce": "Z-A", - "name_desc": "A-Z", - "size_asce": "Boyut (En Küçük)", - "size_desc": "Boyut (En Büyük)" - }, - "folder": { - "label": "Klasör", - "select": "Bu klasörü kullan", - "show_more": "Daha fazla dosya göster" - } - }, - "MultiplePluginsInstallModal": { - "confirm": "Aşağıdaki değişiklikleri yapmak istediğinizden emin misiniz?", - "description": { - "install": "Yükle {{name}} {{version}}", - "reinstall": "Yeniden yükle {{name}} {{version}}" - }, - "ok_button": { - "idle": "Onayla", - "loading": "Çalışıyor" - }, - "title": { - "reinstall_one": "1 eklentiyi yeniden yükle", - "reinstall_other": "{{count}} eklentiyi yeniden yükle", - "install_one": "1 eklenti yükle", - "install_other": "{{count}} eklenti yükle" - } - }, - "PluginCard": { - "plugin_full_access": "Bu eklenti Steam Deck'inize tam erişime sahiptir.", - "plugin_install": "Yükle", - "plugin_version_label": "Eklenti Versiyonu" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Yükle", - "button_processing": "Yükleniyor", - "title": "Yükle {{artifact}}", - "desc": "Yüklemek istediğinizden emin misiniz {{artifact}} {{version}}?" - }, - "reinstall": { - "button_idle": "Yeniden Yükle", - "desc": "Yeniden yüklemek istediğinizden emin misiniz {{artifact}} {{version}}?", - "title": "Yeniden Yükle {{artifact}}", - "button_processing": "Yeniden Yükleniyor" - }, - "update": { - "button_idle": "Güncelle", - "button_processing": "Güncelleniyor", - "title": "Güncelle {{artifact}}", - "desc": "Güncellemek istediğinizden emin misiniz {{artifact}} {{version}}?" - } - }, - "PluginListIndex": { - "freeze": "Güncellemeleri durdur", - "hide": "Hızlı erişim: Gizle", - "no_plugin": "Yüklü eklenti yok!", - "plugin_actions": "Eklenti İşlemleri", - "reinstall": "Yeniden Yükle", - "show": "Hızlı erişim: Göster", - "unfreeze": "Güncellemelere izin ver", - "uninstall": "Kaldır", - "update_all_one": "1 eklentiyi güncelle", - "update_all_other": "{{count}} eklentiyi güncelle" - }, - "PluginListLabel": { - "hidden": "Hızlı erişim menüsünden gizlenmiş" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "{{tag_name}} güncellemesi mevcut!", - "error": "Hata", - "plugin_load_error": { - "toast": "{{name}} yüklenirken hata oluştu", - "message": "{{name}} eklentisi yüklenirken bir hata oluştu" - }, - "plugin_uninstall": { - "button": "Kaldır", - "desc": "{{name}} kaldırmak istediğinizden emin misiniz?", - "title": "Kaldır {{name}}" - }, - "plugin_update_one": "1 eklenti için güncelleme mevcut!", - "plugin_update_other": "{{count}} eklenti için güncelleme mevcut!" - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Konsolu Aç" - }, - "header": "Diğer", - "react_devtools": { - "ip_label": "IP" - }, - "third_party_plugins": { - "button_install": "Yükle", - "button_zip": "Gözat", - "header": "Üçüncü Parti Eklentiler", - "label_desc": "URL", - "label_url": "URL'den Eklenti Yükle", - "label_zip": "ZIP Dosyasından Eklenti Yükle" - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Decky Versiyonu", - "header": "Hakkında" - }, - "beta": { - "header": "Betaya katılım" - }, - "developer_mode": { - "label": "Geliştirici modu" - }, - "notifications": { - "decky_updates_label": "Decky güncellemesi mevcut", - "header": "Bildirimler", - "plugin_updates_label": "Eklenti güncellemesi mevcut" - }, - "other": { - "header": "Diğer" - }, - "updates": { - "header": "Güncellemeler" - } - }, - "SettingsIndex": { - "developer_title": "Geliştirici", - "general_title": "Genel", - "plugins_title": "Eklentiler" - }, - "Store": { - "store_contrib": { - "label": "Katkıda Bulunma" - }, - "store_filter": { - "label": "Filtre", - "label_def": "Tümü" - }, - "store_search": { - "label": "Ara" - }, - "store_sort": { - "label": "Sırala", - "label_def": "Son Güncellenme (En Yeni)" - }, - "store_source": { - "label": "Kaynak Kodu" - }, - "store_tabs": { - "about": "Hakkında", - "alph_asce": "Alfabetik (Z'den A'ya)", - "alph_desc": "Alfabetik (A'dan Z'ye)", - "date_asce": "Önce En Eski", - "date_desc": "Önce En Yeni", - "downloads_desc": "Önce En Çok İndirilen", - "title": "Gözat", - "downloads_asce": "Önce En Az İndirilen" - } - }, - "StoreSelect": { - "custom_store": { - "url_label": "URL" - }, - "store_channel": { - "custom": "Özel", - "default": "Varsayılan" - } - }, - "TitleView": { - "decky_store_desc": "Decky Mağazasını Aç", - "settings_desc": "Decky Ayarlarını Aç" - }, - "Updater": { - "decky_updates": "Decky Güncellemeleri", - "patch_notes_desc": "Yama Notları", - "no_patch_notes_desc": "bu sürüm için yama notları mevcut değil", - "updates": { - "check_button": "Güncellemeleri Kontrol Et", - "checking": "Kontrol ediliyor", - "cur_version": "Mevcut Versiyon: {{ver}}", - "install_button": "Güncellemeyi Yükle", - "label": "Güncellemeler", - "updating": "Güncelleniyor" - } - }, - "Testing": { - "download": "İndir" - }, - "FilePickerError": { - "errors": { - "file_not_found": "Belirtilen yol geçerli değil. Lütfen yolu kontrol edin ve doğru şekilde yeniden girin." - } - }, - "PluginView": { - "hidden_one": "1 eklenti bu listeden gizlenmiştir", - "hidden_other": "{{count}} eklenti bu listeden gizlenmiştir" - } -} diff --git a/backend/locales/uk-UA.json b/backend/locales/uk-UA.json deleted file mode 100644 index 09fbca1b..00000000 --- a/backend/locales/uk-UA.json +++ /dev/null @@ -1,222 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "prerelease": "Передреліз", - "testing": "Тестовий", - "label": "Канал оновлень", - "stable": "Стабільний" - } - }, - "Developer": { - "5secreload": "Перезавантаження за 5 секунд", - "enabling": "Увімкнення React DevTools", - "disabling": "Вимкнення React DevTools" - }, - "FilePickerIndex": { - "folder": { - "select": "Використовувати цю папку" - } - }, - "PluginListLabel": { - "hidden": "Приховано з меню швидкого доступу" - }, - "PluginCard": { - "plugin_full_access": "Цей плагін має повний доступ до вашого Steam Deck.", - "plugin_install": "Встановити", - "plugin_no_desc": "Опис не надано.", - "plugin_version_label": "Версія плагіна" - }, - "PluginInstallModal": { - "install": { - "button_idle": "Встановити", - "button_processing": "Встановлення", - "title": "Встановити {{artifact}}", - "desc": "Ви впевнені, що хочете встановити {{artifact}} {{version}}?" - }, - "reinstall": { - "button_idle": "Перевстановити", - "desc": "Ви впевнені, що хочете перевстановити {{artifact}} {{version}}?", - "title": "Перевстановити {{artifact}}", - "button_processing": "Перевстановлення" - }, - "update": { - "button_idle": "Оновити", - "button_processing": "Оновлення", - "title": "Оновити {{artifact}}", - "desc": "Ви впевнені, що хочете оновити {{artifact}} {{version}}?" - }, - "no_hash": "Цей плагін не має хешу, ви встановлюєте його на власний ризик." - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_one": "Модифікувати 1 плагін", - "mixed_few": "Модифікувати {{count}} плагінів", - "mixed_many": "", - "reinstall_one": "Перевстановити 1 плагін", - "reinstall_few": "Перевстановити {{count}} плагінів", - "reinstall_many": "Перевстановити {{count}} плагінів", - "update_one": "Оновити 1 плагін", - "update_few": "Оновити {{count}} плагінів", - "update_many": "Оновити {{count}} плагінів", - "install_one": "Встановити 1 плагін", - "install_few": "Встановити {{count}} плагінів", - "install_many": "Встановити {{count}} плагінів" - }, - "ok_button": { - "idle": "Підтвердити", - "loading": "Опрацювання" - }, - "description": { - "install": "Встановити {{name}} {{version}}", - "update": "Оновити {{name}} до {{version}}", - "reinstall": "Перевстановити {{name}} {{version}}" - }, - "confirm": "Ви впевнені, що хочете застосувати такі модифікації?" - }, - "PluginListIndex": { - "no_plugin": "Плагінів не встановлено!", - "plugin_actions": "Дії плагінів", - "reinstall": "Перевстановити", - "reload": "Перезавантажити", - "update_to": "Оновити {{name}}", - "show": "Швидкий доступ: Показати", - "hide": "Швидкий доступ: Приховати", - "uninstall": "Видалити", - "update_all_one": "Оновити 1 плагін", - "update_all_few": "Оновити {{count}} плагінів", - "update_all_many": "Оновити {{count}} плагінів" - }, - "PluginLoader": { - "decky_title": "Decky", - "decky_update_available": "Доступне оновлення до {{tag_name}}!", - "error": "Помилка", - "plugin_load_error": { - "message": "Помилка завантаження плагіна {{name}}", - "toast": "Помилка завантаження {{name}}" - }, - "plugin_uninstall": { - "desc": "Ви впевнені, що хочете видалити {{name}}?", - "title": "Видалити {{name}}", - "button": "Видалення" - }, - "plugin_error_uninstall": "Завантаження {{name}} спровокувало помилку показану вище. Зазвичай це означає, що плагін вимагає оновлення до нової версії SteamUI. Перевірте чи таке оновлення доступне або виконайте його видалення у налаштуваннях Decky, у секції Плагіни.", - "plugin_update_one": "Доступне оновлення для 1 плагіна!", - "plugin_update_few": "Доступне оновлення для {{count}} плагінів!", - "plugin_update_many": "Доступне оновлення для {{count}} плагінів!" - }, - "SettingsDeveloperIndex": { - "cef_console": { - "button": "Відкрити консоль", - "label": "CEF-консоль", - "desc": "Відкрити CEF-консоль. Корисно тільки для дебагу. Ця штука потенційно небезпечна і повинна використовувати виключно якщо ви розробник плагіна, або якщо розробник спрямував вас сюди." - }, - "header": "Інше", - "react_devtools": { - "desc": "Вмикає доступ до компʼютера із запущеним React DevTools. Зміна цього налаштування перезавантажить Steam. Вкажіть IP перед увімкненням.", - "label": "Увімкнути React DevTools", - "ip_label": "IP" - }, - "third_party_plugins": { - "button_install": "Встановити", - "header": "Сторонні плагіни", - "label_desc": "URL", - "label_url": "Встановити плагін з URL", - "label_zip": "Встановити плагін з ZIP-файлу", - "button_zip": "Огляд" - }, - "valve_internal": { - "desc1": "Вмикає внутрішнє розробницьке меню Valve.", - "label": "Увімкнути Valve Internal", - "desc2": "Нічого не торкайтесь у цьому меню, якщо не розумієте, що ви робите." - } - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Версія Decky", - "header": "Про нас" - }, - "beta": { - "header": "Участь у Beta" - }, - "developer_mode": { - "label": "Розробницький режим" - }, - "other": { - "header": "Інше" - }, - "updates": { - "header": "Оновлення" - } - }, - "SettingsIndex": { - "developer_title": "Розробник", - "general_title": "Загальне", - "plugins_title": "Плагіни" - }, - "Store": { - "store_contrib": { - "label": "Зробити внесок", - "desc": "Якщо ви бажаєте додати щось у Decky Plugin Store, завітайте у репозиторій SteamDeckHomebrew/decky-plugin-template на GitHub. Інформація про розробку та поширення доступна у README." - }, - "store_filter": { - "label": "Фільтр", - "label_def": "Усе" - }, - "store_search": { - "label": "Пошук" - }, - "store_sort": { - "label": "Сортування", - "label_def": "Востаннє оновлені (Найновіші)" - }, - "store_source": { - "label": "Вихідний код", - "desc": "Код усіх плагінів доступний у репозиторії SteamDeckHomebrew/decky-plugin-database на GitHub." - }, - "store_tabs": { - "about": "Інформація", - "alph_asce": "За алфавітом (Z до A)", - "alph_desc": "За алфавітом (A до Z)", - "title": "Огляд" - }, - "store_testing_cta": "Розгляньте можливість тестування нових плагінів, щоб допомогти команді Decky Loader!" - }, - "StoreSelect": { - "custom_store": { - "label": "Власний магазин", - "url_label": "URL" - }, - "store_channel": { - "custom": "Власний", - "default": "За замовчуванням", - "testing": "Тестування", - "label": "Канал магазину" - } - }, - "Updater": { - "decky_updates": "Оновлення Decky", - "no_patch_notes_desc": "Немає нотаток до цієї версії", - "patch_notes_desc": "Перелік змін", - "updates": { - "checking": "Перевірка", - "cur_version": "Поточна версія: {{ver}}", - "install_button": "Встановити оновлення", - "label": "Оновлення", - "reloading": "Перезавантаження", - "updating": "Оновлення", - "check_button": "Перевірити оновлення", - "lat_version": "Оновлено: використовується {{ver}}" - } - }, - "PluginView": { - "hidden_one": "{{count}} плагін приховано з цього списку", - "hidden_few": "{{count}} плагінів приховано з цього списку", - "hidden_many": "{{count}} плагінів приховано з цього списку" - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "Дозволити доступ до CEF-дебагера без аутентифікації для будь-кого у вашій мережі", - "label": "Дозволити віддалений CEF-дебагінг" - } - } -} diff --git a/backend/locales/zh-CN.json b/backend/locales/zh-CN.json deleted file mode 100644 index 3f414d99..00000000 --- a/backend/locales/zh-CN.json +++ /dev/null @@ -1,263 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "prerelease": "发布候选", - "stable": "稳定", - "testing": "测试", - "label": "更新通道" - } - }, - "Developer": { - "5secreload": "5 秒钟后重新加载", - "disabling": "正在禁用 React DevTools", - "enabling": "正在启用 React DevTools" - }, - "FilePickerIndex": { - "folder": { - "select": "使用这个文件夹", - "label": "文件夹", - "show_more": "显示更多文件" - }, - "filter": { - "created_asce": "创建日期(最旧)", - "created_desc": "创建日期(最新)", - "modified_asce": "修改日期(最旧)", - "modified_desc": "修改日期(最新)", - "name_asce": "字母降序", - "name_desc": "字母升序", - "size_asce": "大小(最小)", - "size_desc": "大小(最大)" - }, - "files": { - "all_files": "全部文件", - "file_type": "文件类型", - "show_hidden": "显示隐藏文件" - }, - "file": { - "select": "选择此文件" - } - }, - "PluginCard": { - "plugin_install": "安装", - "plugin_no_desc": "无描述提供。", - "plugin_version_label": "插件版本", - "plugin_full_access": "此插件可以完全访问你的 Steam Deck。" - }, - "PluginInstallModal": { - "install": { - "button_idle": "安装", - "button_processing": "安装中", - "desc": "你确定要安装 {{artifact}} {{version}} 吗?", - "title": "安装 {{artifact}}" - }, - "reinstall": { - "button_idle": "重新安装", - "button_processing": "正在重新安装", - "desc": "你确定要重新安装 {{artifact}} {{version}} 吗?", - "title": "重新安装 {{artifact}}" - }, - "update": { - "button_idle": "更新", - "button_processing": "正在更新", - "desc": "你确定要更新 {{artifact}} {{version}} 吗?", - "title": "更新 {{artifact}}" - }, - "no_hash": "此插件没有哈希校验值,你需要自行承担安装风险。" - }, - "PluginListIndex": { - "no_plugin": "没有安装插件!", - "plugin_actions": "插件操作", - "reinstall": "重新安装", - "reload": "重新加载", - "uninstall": "卸载", - "update_to": "更新 {{name}}", - "update_all_other": "更新 {{count}} 个插件", - "show": "在快速访问菜单中显示", - "hide": "在快速访问菜单中隐藏", - "unfreeze": "允许更新", - "freeze": "暂停更新" - }, - "PluginLoader": { - "decky_title": "Decky", - "error": "错误", - "plugin_error_uninstall": "加载 {{name}} 时引起了上述异常。这通常意味着插件需要更新以适应 SteamUI 的新版本。请检查插件是否有更新,或在 Decky 设置中的插件部分将其移除。", - "plugin_load_error": { - "message": "加载插件 {{name}} 错误", - "toast": "加载插件 {{name}} 发生了错误" - }, - "plugin_uninstall": { - "button": "卸载", - "title": "卸载 {{name}}", - "desc": "你确定要卸载 {{name}} 吗?" - }, - "decky_update_available": "新版本 {{tag_name}} 可用!", - "plugin_update_other": "{{count}} 个插件有更新!" - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "允许你的网络中的任何人无需身份验证即可访问 CEF 调试器", - "label": "允许 CEF 远程调试" - } - }, - "SettingsDeveloperIndex": { - "react_devtools": { - "ip_label": "IP", - "label": "启用 React DevTools", - "desc": "允许连接到运行着 React DevTools 的计算机。更改此设置将重新加载 Steam。请在启用前设置 IP 地址。" - }, - "third_party_plugins": { - "button_install": "安装", - "button_zip": "浏览文件", - "header": "第三方插件", - "label_desc": "URL", - "label_url": "从 URL 安装插件", - "label_zip": "从 ZIP 压缩文件安装插件" - }, - "valve_internal": { - "desc1": "启用 Valve 内部开发者菜单。", - "desc2": "除非你知道你在干什么,否则请不要修改此菜单中的任何内容。", - "label": "启用 Valve 内部开发者" - }, - "cef_console": { - "button": "打开控制台", - "label": "CEF 控制台", - "desc": "打开 CEF 控制台。仅在调试目的下使用。这列选项均有风险,请仅在您是插件开发者或是在插件开发者指导时访问使用。" - }, - "header": "其他" - }, - "SettingsGeneralIndex": { - "about": { - "decky_version": "Decky 版本", - "header": "关于" - }, - "beta": { - "header": "参与测试" - }, - "developer_mode": { - "label": "开发者模式" - }, - "other": { - "header": "其他" - }, - "updates": { - "header": "更新" - }, - "notifications": { - "header": "通知", - "decky_updates_label": "Decky 更新可用", - "plugin_updates_label": "插件更新可用" - } - }, - "SettingsIndex": { - "developer_title": "开发者", - "general_title": "通用", - "plugins_title": "插件", - "testing_title": "测试" - }, - "Store": { - "store_contrib": { - "label": "贡献", - "desc": "如果你想要提交你的插件到 Decky 插件商店,请访问 GitHub 上的 SteamDeckHomebrew/decky-plugin-template 存储库。有关开发和分发插件的信息,请查看 README 文件。" - }, - "store_filter": { - "label": "过滤器", - "label_def": "全部" - }, - "store_search": { - "label": "搜索" - }, - "store_sort": { - "label": "排序", - "label_def": "最后更新 (最新)" - }, - "store_source": { - "label": "源代码", - "desc": "所有插件的源代码都可从 GitHub 上的 SteamDeckHomebrew/decky-plugin-database 存储库中获得。" - }, - "store_tabs": { - "about": "关于", - "alph_asce": "字母排序 (Z 到 A)", - "alph_desc": "字母排序 (A 到 Z)", - "title": "浏览", - "downloads_desc": "下载量倒序", - "date_asce": "更新时间正序", - "date_desc": "更新时间倒序", - "downloads_asce": "下载量正序" - }, - "store_testing_cta": "请考虑测试新插件以帮助 Decky Loader 团队!", - "store_testing_warning": { - "desc": "你可以使用该商店频道以体验最新版本的插件。 请在插件 Github 页面留言以使插件可以正式面向所有用户。", - "label": "欢迎来到商店测试频道" - } - }, - "StoreSelect": { - "store_channel": { - "default": "默认", - "label": "商店通道", - "testing": "测试", - "custom": "自定义" - }, - "custom_store": { - "label": "自定义商店", - "url_label": "URL" - } - }, - "Updater": { - "decky_updates": "Decky 更新", - "no_patch_notes_desc": "此版本没有补丁说明", - "patch_notes_desc": "补丁说明", - "updates": { - "check_button": "检查更新", - "checking": "检查中", - "cur_version": "当前版本: {{ver}}", - "install_button": "安装更新", - "label": "更新", - "lat_version": "已是最新版本: {{ver}} 运行中", - "reloading": "重新加载中", - "updating": "更新中" - } - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_other": "更改 {{count}} 个插件", - "update_other": "更新 {{count}} 个插件", - "reinstall_other": "重装 {{count}} 个插件", - "install_other": "安装 {{count}} 个插件" - }, - "ok_button": { - "idle": "确认", - "loading": "工作中" - }, - "confirm": "确定要进行以下修改吗?", - "description": { - "install": "安装 {{name}} {{version}}", - "update": "更新 {{name}} to {{version}}", - "reinstall": "重装 {{name}} {{version}}" - } - }, - "PluginListLabel": { - "hidden": "在快速访问菜单中已隐藏" - }, - "PluginView": { - "hidden_other": "此列表隐藏了 {{count}} 个插件" - }, - "DropdownMultiselect": { - "button": { - "back": "返回" - } - }, - "FilePickerError": { - "errors": { - "file_not_found": "指定路径无效。请检查并输入正确的路径。", - "unknown": "发生了一个未知错误。原始错误为:{{raw_error}}", - "perm_denied": "你没有访问特定目录的权限。请检查你的用户(Steam Deck 中的 deck 账户)是否有权访问特定的文件夹或文件。" - } - }, - "TitleView": { - "decky_store_desc": "打开 Decky 商店", - "settings_desc": "打开 Decky 设置" - }, - "Testing": { - "download": "下载" - } -} diff --git a/backend/locales/zh-TW.json b/backend/locales/zh-TW.json deleted file mode 100644 index 091eb9d0..00000000 --- a/backend/locales/zh-TW.json +++ /dev/null @@ -1,263 +0,0 @@ -{ - "BranchSelect": { - "update_channel": { - "testing": "測試版", - "label": "更新頻道", - "prerelease": "預發佈", - "stable": "穩定版" - } - }, - "Developer": { - "5secreload": "5 秒後重新載入", - "disabling": "正在停用 React DevTools", - "enabling": "正在啟用 React DevTools" - }, - "FilePickerIndex": { - "folder": { - "select": "使用此資料夾", - "show_more": "顯示更多檔案", - "label": "資料夾" - }, - "filter": { - "modified_asce": "修改日期(舊到新)", - "created_desc": "建立日期(新到舊)", - "modified_desc": "修改日期(新到舊)", - "name_desc": "子母排序(A到Z)", - "name_asce": "子母排序(Z到A)", - "size_asce": "檔案大小(小到大)", - "size_desc": "檔案大小(大到小)", - "created_asce": "建立日期(舊到新)" - }, - "file": { - "select": "選擇此檔案" - }, - "files": { - "all_files": "所有檔案", - "file_type": "檔案類型", - "show_hidden": "顯示隱藏檔" - } - }, - "PluginCard": { - "plugin_install": "安裝", - "plugin_no_desc": "未提供描述。", - "plugin_version_label": "外掛程式版本", - "plugin_full_access": "此外掛程式擁有您的 Steam Deck 的完整存取權。" - }, - "PluginInstallModal": { - "install": { - "button_idle": "安裝", - "button_processing": "正在安裝", - "title": "安裝 {{artifact}}", - "desc": "您確定要安裝 {{artifact}} {{version}} 嗎?" - }, - "reinstall": { - "button_idle": "重新安裝", - "button_processing": "正在重新安裝", - "desc": "您確定要重新安裝 {{artifact}} {{version}} 嗎?", - "title": "重新安裝 {{artifact}}" - }, - "update": { - "button_idle": "更新", - "button_processing": "正在更新", - "desc": "您確定要更新 {{artifact}} {{version}} 嗎?", - "title": "更新 {{artifact}}" - }, - "no_hash": "此外掛程式沒有提供 hash 驗證,安裝可能有風險。" - }, - "PluginListIndex": { - "no_plugin": "未安裝外掛程式!", - "plugin_actions": "外掛程式操作", - "uninstall": "解除安裝", - "update_to": "更新到 {{name}}", - "reinstall": "重新安裝", - "reload": "重新載入", - "show": "快速存取:顯示", - "hide": "快速存取:隱藏", - "update_all_other": "更新 {{count}} 個外掛程式", - "freeze": "禁止更新", - "unfreeze": "允許更新" - }, - "PluginLoader": { - "decky_title": "Decky", - "error": "錯誤", - "plugin_error_uninstall": "載入 {{name}} 導致上述異常。這通常意味著該外掛程式需要針對新版本的 SteamUI 進行更新。在 Decky 設定中檢查是否存在更新,或評估刪除此外掛程式。", - "plugin_load_error": { - "message": "載入外掛程式 {{name}} 發生錯誤", - "toast": "{{name}} 載入出錯" - }, - "plugin_uninstall": { - "button": "解除安裝", - "title": "解除安裝 {{name}}", - "desc": "您確定要解除安裝 {{name}} 嗎?" - }, - "decky_update_available": "可更新至版本 {{tag_name}}!", - "plugin_update_other": "可更新 {{count}} 個外掛程式!" - }, - "RemoteDebugging": { - "remote_cef": { - "desc": "允許您的網路中的任何人未經認證地存取 CEF 偵錯器", - "label": "允許 CEF 遠端偵錯" - } - }, - "SettingsDeveloperIndex": { - "third_party_plugins": { - "button_zip": "瀏覽", - "label_desc": "網址", - "label_url": "從網址安裝外掛程式", - "label_zip": "從 ZIP 檔案安裝外掛程式", - "button_install": "安裝", - "header": "第三方外掛程式" - }, - "valve_internal": { - "desc2": "除非您知道它的作用,否則不要碰這個選單中的任何東西。", - "desc1": "啟用 Valve 內建開發人員選單。", - "label": "啟用 Valve 內建" - }, - "react_devtools": { - "desc": "啟用與執行 React DevTools 的電腦的連接。改變這個設定將重新載入 Steam。啟用前必須設定 IP 位址。", - "ip_label": "IP", - "label": "啟用 React DevTools" - }, - "header": "其他", - "cef_console": { - "button": "開啟控制台", - "label": "CEF 控制台", - "desc": "開啟 CEF 控制台。僅用於偵錯。這裡的東西有潛在的風險,只有當您是一個外掛程式開發者或者被外掛程式開發者引導到這裡時,才應該使用。" - } - }, - "SettingsGeneralIndex": { - "about": { - "header": "關於", - "decky_version": "Decky 版本" - }, - "beta": { - "header": "參與測試" - }, - "developer_mode": { - "label": "開發人員模式" - }, - "other": { - "header": "其他" - }, - "updates": { - "header": "更新" - }, - "notifications": { - "decky_updates_label": "Decky 可更新", - "header": "通知", - "plugin_updates_label": "外掛程式有更新" - } - }, - "SettingsIndex": { - "developer_title": "開發人員", - "general_title": "一般", - "plugins_title": "外掛程式", - "testing_title": "測試" - }, - "Store": { - "store_contrib": { - "label": "貢獻", - "desc": "如果您想為 Decky 外掛程式商店做貢獻,請查看 GitHub 上的 SteamDeckHomebrew/decky-plugin-template 儲存庫。README 中提供了有關開發和發佈的資訊。" - }, - "store_filter": { - "label": "過濾", - "label_def": "全部" - }, - "store_search": { - "label": "搜尋" - }, - "store_sort": { - "label": "排序", - "label_def": "最後更新 (最新)" - }, - "store_source": { - "label": "原始碼", - "desc": "所有外掛程式原始碼可以在 GitHub 的 SteamDeckHomebrew/decky-plugin-database 儲存庫查看。" - }, - "store_tabs": { - "about": "關於", - "alph_asce": "依字母排序 (Z 到 A)", - "alph_desc": "依字母排序 (A 到 Z)", - "title": "瀏覽", - "downloads_desc": "下載量高到低", - "downloads_asce": "下載量低到高", - "date_asce": "日期舊到新", - "date_desc": "日期新到舊" - }, - "store_testing_cta": "請考慮測試新的外掛程式來幫助 Decky Loader 團隊!", - "store_testing_warning": { - "label": "歡迎來到測試頻道", - "desc": "您可以使用此商店頻道來體驗測試外掛版本。請務必在 GitHub 上留下回饋,以便為所有用戶更新該外掛程式。" - } - }, - "StoreSelect": { - "custom_store": { - "label": "自訂商店", - "url_label": "網址" - }, - "store_channel": { - "custom": "自訂", - "default": "預設", - "label": "商店頻道", - "testing": "測試" - } - }, - "Updater": { - "decky_updates": "Decky 更新", - "no_patch_notes_desc": "這個版本沒有更新日誌", - "patch_notes_desc": "更新日誌", - "updates": { - "checking": "正在檢查", - "install_button": "安裝更新", - "label": "更新", - "lat_version": "已是最新:執行 {{ver}}", - "reloading": "正在重新載入", - "check_button": "檢查更新", - "cur_version": "目前版本:{{ver}}", - "updating": "正在更新" - } - }, - "PluginView": { - "hidden_other": "{{count}} 個外掛程式已隱藏" - }, - "PluginListLabel": { - "hidden": "已從快速存取選單中移除" - }, - "MultiplePluginsInstallModal": { - "title": { - "mixed_other": "修改 {{count}} 個外掛程式", - "update_other": "更新 {{count}} 個外掛程式", - "reinstall_other": "重新安裝 {{count}} 個外掛程式", - "install_other": "安裝 {{count}} 個外掛程式" - }, - "ok_button": { - "idle": "確定", - "loading": "執行中" - }, - "confirm": "您確定要進行以下的修改嗎?", - "description": { - "install": "安裝 {{name}} {{version}}", - "update": "更新 {{name}} 的版本到 {{version}}", - "reinstall": "重新安裝 {{name}} {{version}}" - } - }, - "FilePickerError": { - "errors": { - "perm_denied": "您沒有瀏覽此目錄的權限。請檢查您的使用者(Steam Deck 中的 deck 帳號)有權限瀏覽特定的資料夾或檔案。", - "unknown": "發生未知錯誤。錯誤詳細資料:{{raw_error}}", - "file_not_found": "指定路徑無效。請檢查並輸入正確路徑。" - } - }, - "DropdownMultiselect": { - "button": { - "back": "返回" - } - }, - "TitleView": { - "decky_store_desc": "開啟 Decky 商店", - "settings_desc": "開啟 Decky 設定" - }, - "Testing": { - "download": "下載" - } -} diff --git a/backend/pyinstaller.spec b/backend/pyinstaller.spec index a9eba6a4..91ff4e5b 100644 --- a/backend/pyinstaller.spec +++ b/backend/pyinstaller.spec @@ -6,8 +6,8 @@ from PyInstaller.utils.hooks import copy_metadata a = Analysis( ['main.py'], datas=[ - ('locales', 'locales'), - ('static', 'static'), + ('decky_loader/locales', 'decky_loader/locales'), + ('decky_loader/static', 'decky_loader/static'), ] + copy_metadata('decky_loader'), hiddenimports=['logging.handlers', 'sqlite3', 'decky_plugin', 'decky'], ) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 0d5b65b0..a5474e6a 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -8,7 +8,10 @@ packages = [ {include = "decky_loader"}, {include = "decky_loader/main.py"} ] -include = ["decky_loader/static/*"] +include = [ + "decky_loader/locales/*", + "decky_loader/static/*" +] [tool.poetry.dependencies] python = ">=3.10,<3.13" -- cgit v1.2.3