Spaces:
Sleeping
Sleeping
File size: 244 Bytes
7aec436 |
1 2 3 4 5 6 7 8 9 10 |
<script>
import {locale, localeNames} from '../locales/index';
</script>
<select bind:value={$locale}>
{#each Object.entries(localeNames) as [locale, name]}
<option value={locale}>{name || locale}</option>
{/each}
</select>
|