web/i18n: move call to action button strings to own file

This commit is contained in:
wukko
2024-08-09 14:40:30 +06:00
parent 21ef35ea20
commit 536d9c9742
9 changed files with 32 additions and 30 deletions

View File

@@ -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,