Skip to content

Commit

Permalink
chore(settings): move german translation up
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoermann committed Nov 25, 2024
1 parent b887435 commit 1376902
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
if (!$settingsStore.userLanguage)
$settingsStore.userLanguage = detectLocale(
'en',
['en', 'zh-cn', 'es', 'pt-br', 'de', 'ja', 'tr', 'vi'],
['en', 'de', 'zh-cn', 'es', 'pt-br', 'ja', 'tr', 'vi'],
navigatorDetector
) as Locales;
Expand Down
2 changes: 1 addition & 1 deletion src/routes/settings/Interface.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
onChange={() => changeLanguage(value)}
options={[
{ value: 'en', label: 'English' },
{ value: 'de', label: 'Deutsch' },
{ value: 'zh-cn', label: '中文 (简体)' },
{ value: 'es', label: 'Español' },
{ value: 'pt-br', label: 'Português (Brasil)' },
{ value: 'de', label: 'Deutsch' },
{ value: 'ja', label: '日本語' },
{ value: 'tr', label: 'Türkçe' },
{ value: 'vi', label: 'Tiếng Việt' }
Expand Down

0 comments on commit 1376902

Please sign in to comment.