web/i18n: update string name formatting

This commit is contained in:
wukko
2024-08-20 21:17:33 +06:00
parent 05abf9ad3e
commit 265ab77948
9 changed files with 22 additions and 22 deletions

View File

@@ -8,7 +8,7 @@
<button
id="clear-button"
on:click={click}
aria-label={$t("a11y.save.clearInput")}
aria-label={$t("a11y.save.clear_input")}
>
<IconX />
</button>

View File

@@ -43,10 +43,10 @@
buttonAltText = $t(
({
idle: "a11y.save.download",
think: "a11y.save.downloadThink",
check: "a11y.save.downloadCheck",
done: "a11y.save.downloadDone",
error: "a11y.save.downloadError",
think: "a11y.save.download.think",
check: "a11y.save.download.check",
done: "a11y.save.download.done",
error: "a11y.save.download.error",
})[state]
);