This commit is contained in:
Ylian Saint-Hilaire 2021-07-28 09:17:57 -07:00
parent 10a8af87aa
commit 46606b1bf4
2 changed files with 2 additions and 2 deletions

View File

@ -36383,7 +36383,7 @@
{ {
"cs": "Přidejte 2-faktorové záložní kódy. Pokud dojde ke ztrátě stávajícího faktoru, není možné tento účet obnovit.", "cs": "Přidejte 2-faktorové záložní kódy. Pokud dojde ke ztrátě stávajícího faktoru, není možné tento účet obnovit.",
"de": "Bitte fügen Sie Zweifaktor-Sicherungscodes hinzu. Falls der aktuelle Faktor verloren geht, kann dieses Konto nicht wiederhergestellt werden.", "de": "Bitte fügen Sie Zweifaktor-Sicherungscodes hinzu. Falls der aktuelle Faktor verloren geht, kann dieses Konto nicht wiederhergestellt werden.",
"en": "Please add two-factor backup codes. If the current factor is lost, there is not way to recover this account.", "en": "Please add two-factor backup codes. If the current factor is lost, there is no way to recover this account.",
"es": "Agregar códigos de respaldo de dos factores. Si se pierde el factor actual, no hay forma de recuperar esta cuenta.", "es": "Agregar códigos de respaldo de dos factores. Si se pierde el factor actual, no hay forma de recuperar esta cuenta.",
"fi": "Lisää kahden tekijän varmuuskoodit. Jos nykyinen tekijä menetetään, tätä tiliä ei voida palauttaa.", "fi": "Lisää kahden tekijän varmuuskoodit. Jos nykyinen tekijä menetetään, tätä tiliä ei voida palauttaa.",
"fr": "Veuillez ajouter un autre facteur. Si le facteur actuel est perdu, il n'y a pas moyen de récupérer ce compte.", "fr": "Veuillez ajouter un autre facteur. Si le facteur actuel est perdu, il n'y a pas moyen de récupérer ce compte.",

View File

@ -2077,7 +2077,7 @@
// Check if none or at least 2 factors are enabled. // Check if none or at least 2 factors are enabled.
if ((backupCodesWarningDone == false) && (authFactorCount == 1)) { if ((backupCodesWarningDone == false) && (authFactorCount == 1)) {
addNotification({ text: "Please add two-factor backup codes. If the current factor is lost, there is not way to recover this account.", title: "Two factor authentication" }); addNotification({ text: "Please add two-factor backup codes. If the current factor is lost, there is no way to recover this account.", title: "Two factor authentication" });
backupCodesWarningDone = true; backupCodesWarningDone = true;
} }