mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-31 23:53:25 +00:00
16 lines
287 B
Svelte
16 lines
287 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { ModeWatcher } from 'mode-watcher';
|
||
|
import { isLoading, locale, _ } from 'svelte-i18n';
|
||
|
import { page } from '$app/stores';
|
||
|
|
||
|
if ($page.params.language) {
|
||
|
locale.set($page.params.language);
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<ModeWatcher />
|
||
|
|
||
|
{#if !$isLoading}
|
||
|
<slot />
|
||
|
{/if}
|