mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
13 lines
312 B
Svelte
13 lines
312 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import SettingsLanguageSelector from '$lib/components/shared-components/settings/settings-language-selector.svelte';
|
||
|
|
import { t } from 'svelte-i18n';
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div class="flex flex-col gap-4">
|
||
|
|
<p>
|
||
|
|
{$t('onboarding_locale_description')}
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<SettingsLanguageSelector />
|
||
|
|
</div>
|