web: move all strings to i18n & improve a11y

- omnibox is now fully usable with a screen reader
- back button is now interpreted as such
- subtext now accepts line breaks
This commit is contained in:
wukko
2024-07-03 23:54:44 +06:00
parent 70339b7ae9
commit 97d381e993
25 changed files with 282 additions and 90 deletions

View File

@@ -1,9 +1,11 @@
<script>
export let click;
import { t } from "$lib/i18n/translations";
import IconX from '@tabler/icons-svelte/IconX.svelte';
export let click;
</script>
<button id="clear-button" on:click={click}>
<button id="clear-button" on:click={click} aria-label={$t("a11y.save.clearInput")}>
<IconX color="var(--secondary)" size="16px"/>
</button>