Starting translations work

This commit is contained in:
Gabriel Engel
2022-11-09 19:27:03 -03:00
parent 8994dde8f0
commit 733de60f7c
9 changed files with 1160 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
<script>
import { locale, locales } from '$lib/translations';
</script>
<div >
<select bind:value={$locale} class="w-14">
{#each $locales as l}
<option value={l}>{l}</option>
{/each}
</select>
</div>