From 6857a2d4dd6141015d683c261460bba73717e9ea Mon Sep 17 00:00:00 2001 From: Aleksander Mista <60221311+Aleksis4553@users.noreply.github.com> Date: Sun, 15 Feb 2026 20:21:58 +0100 Subject: [PATCH 1/3] Add Polish language support for localization --- src/lib/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/index.ts b/src/lib/index.ts index 5ffae66..e688182 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -31,6 +31,7 @@ export async function initLUILanguages(options: never) { addMessages('fr', (await import('./L10N/fr.json')) as never); addMessages('ru', (await import('./L10N/ru.json')) as never); addMessages('nl', (await import('./L10N/nl.json')) as never); + addMessages('pl', (await import('./L10N/pl.json')) as never); // wish I didn't have to init here... I wanted to leave it up to the dependent to initialize svelte-i18n await init(options); From f3e5e4cffa7a5cfdbd0791f8f5ca0175580d62a5 Mon Sep 17 00:00:00 2001 From: Aleksander Mista <60221311+Aleksis4553@users.noreply.github.com> Date: Sun, 15 Feb 2026 20:22:31 +0100 Subject: [PATCH 2/3] Add files via upload --- src/lib/L10N/pl ui.json | 61 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/lib/L10N/pl ui.json diff --git a/src/lib/L10N/pl ui.json b/src/lib/L10N/pl ui.json new file mode 100644 index 0000000..c65560a --- /dev/null +++ b/src/lib/L10N/pl ui.json @@ -0,0 +1,61 @@ +{ + "LodestoneUI": { + "Dialog": { + "closeButton": { + "title": "Zamknij", + "ariaLabel": "Zamknij okno" + } + }, + "FSPickerButton": { + "ariaLabel": { + "chosen": "{type} został wybrany", + "notChosen": "Żaden {type} nie został wybrany" + }, + "title": "Wybierz {type}", + "types": { + "folder": "Folder", + "file": "Plik" + } + }, + "Scrollable": { + "arrows": { + "left": { + "ariaLabel": "Przewiń w lewo", + "title": "Przewiń w lewo" + }, + "right": { + "ariaLabel": "Przewiń w prawo", + "title": "Przewiń w prawo" + } + } + }, + "SlideUp": { + "title": "Kliknij/dotknij by {action} menu rozwijane", + "ariaLabel": "{title}: Kliknij/dotknij by {action} menu rozwijane", + "actions": { + "open": "otworzyć", + "close": "zamknąć" + } + }, + "Option": { + "description": "Nie podano opisu." + }, + "Topbar": { + "expander": { + "ariaLabel": "{action} menu", + "title": "{action} menu" + }, + "homeButton": { + "ariaLabel": "Przycisk ekranu startowego", + "logo": { + "alt": "Logo" + }, + "title": "Idź do ekranu startowego" + }, + "actions": { + "close": "Zamknij", + "open": "Otwórz" + } + } + } +} From dbc252ae48eed38f13e33fadc6d507b5686f51c0 Mon Sep 17 00:00:00 2001 From: Aleksander Mista <60221311+Aleksis4553@users.noreply.github.com> Date: Sun, 15 Feb 2026 20:23:45 +0100 Subject: [PATCH 3/3] Rename pl ui.json to pl.json --- src/lib/L10N/{pl ui.json => pl.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/lib/L10N/{pl ui.json => pl.json} (100%) diff --git a/src/lib/L10N/pl ui.json b/src/lib/L10N/pl.json similarity index 100% rename from src/lib/L10N/pl ui.json rename to src/lib/L10N/pl.json