Added Slovak translations (#815)

* Created sk.json

* Update Navbar.svelte

* Update +layout.svelte

---------

Co-authored-by: Sean Morley <98704938+seanmorley15@users.noreply.github.com>
This commit is contained in:
fantastron27
2025-09-07 03:36:23 +02:00
committed by GitHub
parent 904474d757
commit af4e541c1c
3 changed files with 1021 additions and 2 deletions

View File

@@ -63,7 +63,8 @@
ru: 'Русский', ru: 'Русский',
ja: '日本語', ja: '日本語',
ar: 'العربية', ar: 'العربية',
'pt-br': 'Português (Brasil)' 'pt-br': 'Português (Brasil)',
'sk': 'Slovenský'
}; };
const submitLocaleChange = (event: Event) => { const submitLocaleChange = (event: Event) => {

1016
frontend/src/locales/sk.json Normal file
View File

File diff suppressed because it is too large Load Diff

View File

@@ -20,6 +20,7 @@
register('ja', () => import('../locales/ja.json')); register('ja', () => import('../locales/ja.json'));
register('ar', () => import('../locales/ar.json')); register('ar', () => import('../locales/ar.json'));
register('pt-br', () => import('../locales/pt-br.json')); register('pt-br', () => import('../locales/pt-br.json'));
register('sk', () => import('../locales/sk.json'));
let locales = [ let locales = [
'en', 'en',
@@ -36,7 +37,8 @@
'ru', 'ru',
'ja', 'ja',
'ar', 'ar',
'pt-br' 'pt-br',
'sk'
]; ];
if (browser) { if (browser) {