{},
},
diff --git a/web/src/components/donate/DonateShareCard.svelte b/web/src/components/donate/DonateShareCard.svelte
index cb4c413c..2cd9f534 100644
--- a/web/src/components/donate/DonateShareCard.svelte
+++ b/web/src/components/donate/DonateShareCard.svelte
@@ -42,7 +42,7 @@
copyURL(cobaltUrl);
copied = true;
}}
- aria-label={copied ? $t("a11y.dialog.saving.copied") : ""}
+ aria-label={copied ? $t("button.copied") : ""}
>
diff --git a/web/src/components/save/buttons/DownloadButton.svelte b/web/src/components/save/buttons/DownloadButton.svelte
index 3f026dac..7beaf976 100644
--- a/web/src/components/save/buttons/DownloadButton.svelte
+++ b/web/src/components/save/buttons/DownloadButton.svelte
@@ -20,7 +20,7 @@
meowbalt: "error",
buttons: [
{
- text: $t("dialog.button.gotit"),
+ text: $t("button.gotit"),
main: true,
action: () => {},
},
@@ -110,7 +110,7 @@
changeDownloadButton("done");
const buttons = [
{
- text: $t("dialog.button.done"),
+ text: $t("button.done"),
main: true,
action: () => {},
},
@@ -119,7 +119,7 @@
if (response.audio) {
const pickerAudio = response.audio;
buttons.unshift({
- text: $t("dialog.button.downloadAudio"),
+ text: $t("button.download_audio"),
main: false,
action: () => {
downloadFile(pickerAudio);
diff --git a/web/src/components/settings/TransferSettings.svelte b/web/src/components/settings/TransferSettings.svelte
index b36a1131..e123081b 100644
--- a/web/src/components/settings/TransferSettings.svelte
+++ b/web/src/components/settings/TransferSettings.svelte
@@ -30,12 +30,12 @@
bodyText: $t("dialog.import.body"),
buttons: [
{
- text: $t("dialog.button.cancel"),
+ text: $t("button.cancel"),
main: false,
action: () => {},
},
{
- text: $t("dialog.button.import"),
+ text: $t("button.import"),
color: "red",
main: true,
timeout: 5000,
@@ -60,7 +60,7 @@
bodyText: message,
buttons: [
{
- text: $t("dialog.button.gotit"),
+ text: $t("button.gotit"),
main: true,
action: () => {},
},
diff --git a/web/src/lib/api.ts b/web/src/lib/api.ts
index a631bf1c..ad0b58e2 100644
--- a/web/src/lib/api.ts
+++ b/web/src/lib/api.ts
@@ -51,7 +51,7 @@ const request = async (url: string) => {
dismissable: false,
buttons: [
{
- text: get(t)("dialog.button.cancel"),
+ text: get(t)("button.cancel"),
main: false,
action: () => {
_actions.reject();
@@ -63,7 +63,7 @@ const request = async (url: string) => {
},
},
{
- text: get(t)("dialog.button.continue"),
+ text: get(t)("button.continue"),
color: "red",
main: true,
timeout: 5000,