mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-19 02:10:04 +08:00
16 lines
530 B
Svelte
16 lines
530 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { setLocale } from '$lib/paraglide/runtime';
|
||
|
import { page } from '$app/state';
|
||
|
import { goto } from '$app/navigation';
|
||
|
import { m } from '$lib/paraglide/messages.js';
|
||
|
</script>
|
||
|
|
||
|
|
||
|
|
||
|
<h1>{m.hello_world({ name: 'SvelteKit User' })}</h1>
|
||
|
<div>
|
||
|
<button onclick={() => setLocale('en')}>en</button>
|
||
|
</div><p>
|
||
|
If you use VSCode, install the <a href="https://marketplace.visualstudio.com/items?itemName=inlang.vs-code-extension" target="_blank">Sherlock i18n extension</a> for a better i18n experience.
|
||
|
</p>
|