mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-03 00:33:49 +03:00
feat: add title to toast
This commit is contained in:
parent
10f23bd997
commit
8dba75df34
@ -298,7 +298,9 @@
|
|||||||
"subscription_renews_on": "Your subscription renews on {{date}}",
|
"subscription_renews_on": "Your subscription renews on {{date}}",
|
||||||
"bill_sent_until": "Your next bill will be sent until this day",
|
"bill_sent_until": "Your next bill will be sent until this day",
|
||||||
"enable_torbox": "Enable Torbox",
|
"enable_torbox": "Enable Torbox",
|
||||||
"torbox_description": "TorBox is your premium seedbox service rivaling even the best servers on the market."
|
"torbox_description": "TorBox is your premium seedbox service rivaling even the best servers on the market.",
|
||||||
|
"torbox_account_linked": "TorBox account linked",
|
||||||
|
"real_debrid_account_linked": "Real-Debrid account linked"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"download_complete": "Download complete",
|
"download_complete": "Download complete",
|
||||||
|
@ -287,7 +287,9 @@
|
|||||||
"subscription_renews_on": "Sua assinatura renova dia {{date}}",
|
"subscription_renews_on": "Sua assinatura renova dia {{date}}",
|
||||||
"bill_sent_until": "Sua próxima cobrança será enviada até esse dia",
|
"bill_sent_until": "Sua próxima cobrança será enviada até esse dia",
|
||||||
"enable_torbox": "Habilitar Torbox",
|
"enable_torbox": "Habilitar Torbox",
|
||||||
"torbox_description": "TorBox é o seu serviço de seedbox premium que rivaliza até com os melhores servidores do mercado."
|
"torbox_description": "TorBox é o seu serviço de seedbox premium que rivaliza até com os melhores servidores do mercado.",
|
||||||
|
"torbox_account_linked": "Conta do TorBox vinculada",
|
||||||
|
"real_debrid_account_linked": "Conta Real-Debrid associada"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"download_complete": "Download concluído",
|
"download_complete": "Download concluído",
|
||||||
|
@ -57,6 +57,7 @@ export function SettingsRealDebrid() {
|
|||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
showSuccessToast(
|
showSuccessToast(
|
||||||
|
t("real_debrid_account_linked"),
|
||||||
t("debrid_linked_message", { username: user.username })
|
t("debrid_linked_message", { username: user.username })
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -49,7 +49,10 @@ export function SettingsTorbox() {
|
|||||||
form.torBoxApiToken!
|
form.torBoxApiToken!
|
||||||
);
|
);
|
||||||
|
|
||||||
showSuccessToast(t("debrid_linked_message", { username: user.email }));
|
showSuccessToast(
|
||||||
|
t("torbox_account_linked"),
|
||||||
|
t("debrid_linked_message", { username: user.email })
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
showSuccessToast(t("changes_saved"));
|
showSuccessToast(t("changes_saved"));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user