Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions src/lib/L10N/pl.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
}
1 change: 1 addition & 0 deletions src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down