diff --git a/src/model/AppState.ts b/src/model/AppState.ts
index 9f1144c4..b65d9e73 100644
--- a/src/model/AppState.ts
+++ b/src/model/AppState.ts
@@ -103,6 +103,7 @@ export class AppState {
showCancelButton: true,
confirmButtonText: i18n.t('global.openWalletModal.confirmText'),
cancelButtonText: i18n.t('global.openWalletModal.cancelText'),
+ html:``+i18n.t('global.openWalletModal.forgotPassword')+``
}).then((result: any) => {
setTimeout(function () { //for async
if (result.value) {
diff --git a/src/model/DeleteWallet.ts b/src/model/DeleteWallet.ts
new file mode 100644
index 00000000..26209203
--- /dev/null
+++ b/src/model/DeleteWallet.ts
@@ -0,0 +1,44 @@
+/*
+ * Copyright (c) 2018, Gnock
+ * Copyright (c) 2018, The Masari Project
+ * Copyright (c) 2022, The Karbo developers
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+ *
+ * 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+import {WalletRepository} from "../model/WalletRepository";
+import {DependencyInjectorInstance} from "../lib/numbersLab/DependencyInjector";
+import {Wallet} from "../model/Wallet";
+import {AppState} from "../model/AppState";
+import {Storage} from "../model/Storage";
+import {Translations} from "../model/Translations";
+
+export class DeleteWallet{
+ public static deleteWallet() {
+ //localStorage.clear();
+ //window.location.href = '/';
+ swal({
+ title: i18n.t('settingsPage.deleteWalletModal.title'),
+ html: i18n.t('settingsPage.deleteWalletModal.content'),
+ showCancelButton: true,
+ confirmButtonText: i18n.t('settingsPage.deleteWalletModal.confirmText'),
+ cancelButtonText: i18n.t('settingsPage.deleteWalletModal.cancelText'),
+ type: 'warning'
+ }).then((result:any) => {
+ if (result.value) {
+ AppState.disconnect();
+ DependencyInjectorInstance().register(Wallet.name, undefined,'default');
+ WalletRepository.deleteLocalCopy();
+ window.location.href = '#index';
+ }
+ });
+ }
+}
\ No newline at end of file
diff --git a/src/pages/forgotPassword.html b/src/pages/forgotPassword.html
new file mode 100644
index 00000000..cf18d0a6
--- /dev/null
+++ b/src/pages/forgotPassword.html
@@ -0,0 +1,21 @@
+
+
-
+
{{ $t("supportPage.getInTouchBlock.content") }}
@@ -22,5 +22,12 @@
+
\ No newline at end of file
diff --git a/src/translations/de.json b/src/translations/de.json
index 8de76617..df02e32f 100644
--- a/src/translations/de.json
+++ b/src/translations/de.json
@@ -31,7 +31,8 @@
"openWalletModal":{
"title":"Wallet Passwort",
"confirmText":"Öffnen",
- "cancelText":"Abbrechen"
+ "cancelText":"Abbrechen",
+ "forgotPassword": "Passwort vergessen?"
},
"invalidPasswordModal":{
"title":"Uups...",
@@ -191,6 +192,13 @@
"discord":"Karbo Discord Channel"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"So stellen Sie den Zugriff auf Ihre Brieftasche wieder her",
+ "forgotPasswordBlock":{
+ "title":"Wenn Sie das Passwort vergessen haben, können Sie es nicht zurücksetzen!",
+ "content":"Die einzige Möglichkeit, den Zugriff auf Ihre Brieftasche wiederherzustellen, besteht darin, Ihr Passwort abzurufen oder Brieftaschendaten aus dem Speicher Ihres Browsers zu löschen und die Brieftasche aus dem Backup wiederherzustellen (z. B. mnemonische Wiederherstellungsphrase).
Wenn Sie Brieftaschenschlüssel oder eine Wiederherstellungsphrase haben , unten können Sie Ihre Brieftasche löschen. Dann können Sie es wiederherstellen und von Grund auf neu synchronisieren.
Bitte stellen Sie sicher, dass Sie einen Wiederherstellungssatz haben, bevor Sie fortfahren!!!"
+ }
+ },
"networkPage":{
"title":"Netzwerkstatus",
"subtitle":"Einblick ins Marsir Netzwerk",
diff --git a/src/translations/en.json b/src/translations/en.json
index 9f2cfbd1..ac480f9e 100644
--- a/src/translations/en.json
+++ b/src/translations/en.json
@@ -31,7 +31,8 @@
"openWalletModal":{
"title":"Wallet Password",
"confirmText":"Open",
- "cancelText":"Cancel"
+ "cancelText":"Cancel",
+ "forgotPassword": "Forgot password?"
},
"invalidPasswordModal":{
"title":"Oops...",
@@ -191,6 +192,13 @@
"discord":"Karbo Discord Channel"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"How to restore access to your wallet",
+ "forgotPasswordBlock":{
+ "title":"If you forgot the password, it is impossible to reset it!",
+ "content":"The only way to get back into your wallet is to recall your password or to delete wallet data from your browser's memory and restore it from the backup (e.g. mnemonic recovery phrase).
If you have wallet keys or a recovery phrase, below you can delete your wallet. Then you will be able to restore it and sync from scratch.
Please, make sure you have recovery phrase before you proceed!!!"
+ }
+ },
"networkPage":{
"title":"Network stats",
"subtitle":"Insights on the Karbo network",
diff --git a/src/translations/es.json b/src/translations/es.json
index 78321272..cdc5e66c 100644
--- a/src/translations/es.json
+++ b/src/translations/es.json
@@ -33,7 +33,8 @@
"openWalletModal": {
"title": "Contraseña de billetera",
"confirmText": "Abrir",
- "cancelText": "Cancelar"
+ "cancelText": "Cancelar",
+ "forgotPassword": "¿Se te olvidó tu contraseña?"
},
"invalidPasswordModal": {
"title": "Oops...",
@@ -193,6 +194,13 @@
"discord": "Canal de Karbo en Discord"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Cómo restaurar el acceso a su billetera",
+ "forgotPasswordBlock":{
+ "title":"Si olvidó la contraseña, ¡es imposible restablecerla!",
+ "content":"La única forma de restaurar el acceso a su billetera es recordar su contraseña o eliminar los datos de la billetera de la memoria de su navegador y restaurar la billetera desde la copia de seguridad (por ejemplo, frase de recuperación mnemotécnica).
Si tiene claves de billetera o una frase de recuperación , a continuación puede eliminar su billetera. Luego podrá restaurarlo y sincronizarlo desde cero.
Por favor, ¡asegúrese de tener una frase de recuperación antes de continuar!"
+ }
+ },
"networkPage": {
"title": "Estado de red",
"subtitle": "Perspectivas sobre la red Karbo",
diff --git a/src/translations/fa.json b/src/translations/fa.json
index 987b52b5..e92fe24e 100644
--- a/src/translations/fa.json
+++ b/src/translations/fa.json
@@ -31,7 +31,8 @@
"openWalletModal": {
"title": "'رمز عبور کیف پول'",
"confirmText": "تایید",
- "cancelText": "لغو"
+ "cancelText": "لغو",
+ "forgotPassword": "رمز عبور را فراموش کرده اید؟"
},
"invalidPasswordModal": {
"title": "متاسفیم",
@@ -190,6 +191,13 @@
"discord": "سرور دیسکورد کربو"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"نحوه بازیابی دسترسی به کیف پول",
+ "forgotPasswordBlock":{
+ "title":"اگر رمز عبور را فراموش کرده اید، تنظیم مجدد آن غیرممکن است!",
+ "content":"تنها راه برای بازگرداندن دسترسی به کیف پول شما این است که رمز عبور خود را فراخوانی کنید یا داده های کیف پول را از حافظه مرورگر خود حذف کنید و کیف پول را از نسخه پشتیبان بازیابی کنید (به عنوان مثال عبارت بازیابی حافظه).
اگر کلیدهای کیف پول یا عبارت بازیابی دارید. ، در زیر می توانید کیف پول خود را حذف کنید. سپس میتوانید آن را بازیابی و از ابتدا همگامسازی کنید.
لطفاً قبل از ادامه، از داشتن عبارت بازیابی مطمئن شوید!!!"
+ }
+ },
"networkPage": {
"title": "وضعیت شبکه",
"subtitle": "داخل شبکه ی کربو",
diff --git a/src/translations/fr.json b/src/translations/fr.json
index 7da52dc7..67c22edc 100644
--- a/src/translations/fr.json
+++ b/src/translations/fr.json
@@ -31,7 +31,8 @@
"openWalletModal":{
"title":"Mot de passe",
"confirmText":"Ouvrir",
- "cancelText":"Annuler"
+ "cancelText":"Annuler",
+ "forgotPassword": "Mot de passe oublié?"
},
"invalidPasswordModal":{
"title":"Oups...",
@@ -191,6 +192,13 @@
"discord":"Discord Officiel de Karbo"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Comment restaurer l'accès à votre portefeuille",
+ "forgotPasswordBlock":{
+ "title":"Si vous avez oublié le mot de passe, il est impossible de le réinitialiser !",
+ "content":"La seule façon de restaurer l'accès à votre portefeuille est de rappeler votre mot de passe ou de supprimer les données du portefeuille de la mémoire de votre navigateur et de restaurer le portefeuille à partir de la sauvegarde (par exemple, une phrase de récupération mnémonique).
Si vous avez des clés de portefeuille ou une phrase de récupération , ci-dessous vous pouvez supprimer votre portefeuille. Ensuite, vous pourrez le restaurer et le synchroniser à partir de zéro.
Veuillez vous assurer d'avoir une phrase de récupération avant de continuer !!!"
+ }
+ },
"networkPage":{
"title":"Statistiques du réseau",
"subtitle":"Détails sur le réseaux Karbo",
diff --git a/src/translations/gr.json b/src/translations/gr.json
index b6d4fc76..57d669e6 100644
--- a/src/translations/gr.json
+++ b/src/translations/gr.json
@@ -31,7 +31,8 @@
"openWalletModal":{
"title":"Κωδικός Πορτοφολιού",
"confirmText":"Άνοιγμα",
- "cancelText":"Ακύρωση"
+ "cancelText":"Ακύρωση",
+ "forgotPassword": "Ξεχάσατε τον κωδικό?"
},
"invalidPasswordModal":{
"title":"Ουπς...",
@@ -191,6 +192,13 @@
"discord":"Karbo Discord Channel"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Πώς να επαναφέρετε την πρόσβαση στο πορτοφόλι σας",
+ "forgotPasswordBlock":{
+ "title":"Εάν ξεχάσατε τον κωδικό πρόσβασης, είναι αδύνατο να τον επαναφέρετε!",
+ "content":"Ο μόνος τρόπος για να επαναφέρετε την πρόσβαση στο πορτοφόλι σας είναι να ανακαλέσετε τον κωδικό πρόσβασής σας ή να διαγράψετε τα δεδομένα του πορτοφολιού από τη μνήμη του προγράμματος περιήγησής σας και να επαναφέρετε το πορτοφόλι από το αντίγραφο ασφαλείας (π.χ. μνημονική φράση ανάκτησης).
Εάν έχετε κλειδιά πορτοφολιού ή μια φράση ανάκτησης , παρακάτω μπορείτε να διαγράψετε το πορτοφόλι σας. Στη συνέχεια, θα μπορείτε να το επαναφέρετε και να συγχρονίσετε από την αρχή.
Βεβαιωθείτε ότι έχετε μια φράση ανάκτησης προτού προχωρήσετε!!!"
+ }
+ },
"networkPage":{
"title":"Στατιστικά Δικτύου΄",
"subtitle":"Επισκόπηση τπυ δικτύου Karbo",
diff --git a/src/translations/hu.json b/src/translations/hu.json
index a2a777d2..dfbda7de 100644
--- a/src/translations/hu.json
+++ b/src/translations/hu.json
@@ -31,7 +31,8 @@
"openWalletModal":{
"title":"Tárca jelszava",
"confirmText":"Megnyitás",
- "cancelText":"Mégsem"
+ "cancelText":"Mégsem",
+ "forgotPassword": "Elfelejtetted a jelszavad?"
},
"invalidPasswordModal":{
"title":"Hupsz...",
@@ -191,6 +192,13 @@
"discord":"Karbo Discord-csatorna"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Hogyan lehet visszaállítani a hozzáférést a pénztárcájához",
+ "forgotPasswordBlock":{
+ "title":"Ha elfelejtette a jelszót, azt lehetetlen visszaállítani!",
+ "content":"A pénztárcájához való hozzáférés visszaállításának egyetlen módja, ha előhívja jelszavát, vagy törli a pénztárca adatait a böngésző memóriájából, és visszaállítja a pénztárcát a biztonsági másolatból (pl. mnemonikus helyreállítási kifejezés).
Ha rendelkezik pénztárcakulcsokkal vagy helyreállítási kifejezéssel. , lent törölheti pénztárcáját. Ezután visszaállíthatja és a semmiből szinkronizálhatja.
Kérjük, győződjön meg róla, hogy rendelkezik helyreállítási kifejezéssel, mielőtt továbblép!!!"
+ }
+ },
"networkPage":{
"title":"Hálózati statisztika",
"subtitle":"Betekintés a Karbo hálózatába",
diff --git a/src/translations/it.json b/src/translations/it.json
index 957cc147..6ef87ae3 100644
--- a/src/translations/it.json
+++ b/src/translations/it.json
@@ -30,7 +30,8 @@
"openWalletModal":{
"title":"Password portafoglio",
"confirmText":"Apri",
- "cancelText":"Annulla"
+ "cancelText":"Annulla",
+ "forgotPassword": "Ha dimenticato la password?"
},
"invalidPasswordModal":{
"title":"Oops...",
@@ -190,6 +191,13 @@
"discord":"Karbo Discord Channel"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Come ripristinare l'accesso al tuo portafoglio",
+ "forgotPasswordBlock":{
+ "title":"Se hai dimenticato la password, è impossibile reimpostarla!",
+ "content":"L'unico modo per ripristinare l'accesso al tuo portafoglio è richiamare la tua password o eliminare i dati del portafoglio dalla memoria del browser e ripristinare il portafoglio dal backup (ad es. frase mnemonica di ripristino).
Se disponi delle chiavi del portafoglio o di una frase di ripristino. , di seguito puoi eliminare il tuo portafoglio. Quindi sarai in grado di ripristinarlo e sincronizzarlo da zero.
Per favore, assicurati di avere una frase di ripristino prima di procedere!!!"
+ }
+ },
"networkPage":{
"title":"Statistiche del network",
"subtitle":"Dettagli sul network Karbo",
diff --git a/src/translations/ko.json b/src/translations/ko.json
index 577e1c58..5b708327 100644
--- a/src/translations/ko.json
+++ b/src/translations/ko.json
@@ -31,7 +31,8 @@
"openWalletModal": {
"title": "비밀번호",
"confirmText": "열기",
- "cancelText": "취소"
+ "cancelText": "취소",
+ "forgotPassword": "비밀번호를 잊으 셨나요?"
},
"invalidPasswordModal": {
"title": "비밀번호",
@@ -193,6 +194,13 @@
"discord": "카르보 코인 디스코드 채널"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"지갑에 대한 액세스를 복원하는 방법",
+ "forgotPasswordBlock":{
+ "title":"비밀번호를 잊어버리셨다면 재설정이 불가능합니다!",
+ "content":"지갑에 대한 액세스를 복원하는 유일한 방법은 비밀번호를 불러오거나 브라우저 메모리에서 지갑 데이터를 삭제하고 백업에서 지갑을 복원하는 것입니다(예: 니모닉 복구 구문).
지갑 키 또는 복구 구문이 있는 경우 , 아래에서 지갑을 삭제할 수 있습니다. 그러면 복원하고 처음부터 동기화할 수 있습니다.
계속하기 전에 복구 문구가 있는지 확인하세요!!!"
+ }
+ },
"networkPage": {
"title": "네트워크 통계",
"subtitle": "카르보 코인 네트워크 정보",
diff --git a/src/translations/pl.json b/src/translations/pl.json
index fcb1a993..e3d0b73b 100644
--- a/src/translations/pl.json
+++ b/src/translations/pl.json
@@ -30,7 +30,8 @@
"openWalletModal":{
"title":"Hasło portfela",
"confirmText":"Otwórz",
- "cancelText":"przerwij"
+ "cancelText":"Skasuj",
+ "forgotPassword": "Zapomniałeś hasła?"
},
"invalidPasswordModal":{
"title":"Oops...",
@@ -190,6 +191,13 @@
"discord":"Karbo Discord"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Jak przywrócić dostęp do portfela",
+ "forgotPasswordBlock":{
+ "title":"Jeśli zapomniałeś hasła, nie można go zresetować!",
+ "content":"Jedynym sposobem na przywrócenie dostępu do portfela jest przypomnienie hasła lub usunięcie danych portfela z pamięci przeglądarki i przywrócenie go z kopii zapasowej (np. mnemoniczna fraza odzyskiwania).
Jeśli masz klucze do portfela lub frazę do odzyskiwania, poniżej możesz usunąć swój portfel. Wtedy będzie można go przywrócić i zsynchronizować od nowa.
Przed kontynuowaniem upewnij się, że masz frazę odzyskiwania!"
+ }
+ },
"networkPage":{
"title":"Statystki Sieci",
"subtitle":"Informacja o sieci Karbowańca",
diff --git a/src/translations/ru.json b/src/translations/ru.json
index 07605e7a..74ec2ef3 100644
--- a/src/translations/ru.json
+++ b/src/translations/ru.json
@@ -31,7 +31,8 @@
"openWalletModal":{
"title":"Пароль кошелька",
"confirmText":"Открыть",
- "cancelText":"Отмена"
+ "cancelText":"Отмена",
+ "forgotPassword": "Забыли пароль?"
},
"invalidPasswordModal":{
"title":"Ой...",
@@ -191,6 +192,13 @@
"discord":"Канал Karbo в Discord"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Как восстановить доступ к кошельку",
+ "forgotPasswordBlock":{
+ "title":"Если вы забыли пароль, сбросить его невозможно!",
+ "content":"Единственный способ восстановить доступ к вашему кошельку — это вспомнить пароль или удалить данные кошелька из памяти браузера и восстановить его из резервной копии (например, мнемонической фразы для восстановления).
Если у вас есть ключи кошелька или фраза для восстановления, ниже вы можете удалить свой кошелек. После этого вы сможете восстановить его и выполнить синхронизацию заново.
Пожалуйста, убедитесь, что у вас есть фраза для восстановления, прежде чем продолжить!!!"
+ }
+ },
"networkPage":{
"title":"Статистика сети",
"subtitle":"Обзор сети Karbo",
diff --git a/src/translations/sr.json b/src/translations/sr.json
index 26f0b937..902b6680 100644
--- a/src/translations/sr.json
+++ b/src/translations/sr.json
@@ -31,7 +31,8 @@
"openWalletModal":{
"title":"'Лозинка новчаника'",
"confirmText":"Отвори",
- "cancelText":"Откажи"
+ "cancelText":"Откажи",
+ "forgotPassword": "Заборавили сте лозинку?"
},
"invalidPasswordModal":{
"title":"Упс...",
@@ -192,6 +193,13 @@
"discord":"Карбо Дискорд Сервер"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Како да вратите приступ свом новчанику",
+ "forgotPasswordBlock":{
+ "title":"Ако сте заборавили лозинку, немогуће је ресетовати!",
+ "content":"Једини начин да се вратите у свој новчаник је да опозовете своју лозинку или да избришете податке новчаника из меморије претраживача и вратите новчаник из резервне копије (нпр. мнемоничка фраза за опоравак).<бр /> Ако имате кључеве новчаника или фразу за опоравак , испод можете да избришете свој новчаник. Тада ћете моћи да га вратите и синхронизујете од нуле.<бр/>
Уверите се да имате фразу за опоравак пре него што наставите!!!"
+ }
+ },
"networkPage":{
"title":"Статистика мреже",
"subtitle":"Увид у Карбо мрежу",
diff --git a/src/translations/uk.json b/src/translations/uk.json
index 7ab0da63..700481b9 100644
--- a/src/translations/uk.json
+++ b/src/translations/uk.json
@@ -31,7 +31,8 @@
"openWalletModal":{
"title":"Пароль гаманця",
"confirmText":"Відкрити",
- "cancelText":"Скасувати"
+ "cancelText":"Скасувати",
+ "forgotPassword": "Забули пароль?"
},
"invalidPasswordModal":{
"title":"Ой...",
@@ -191,6 +192,13 @@
"discord":"Канал Karbo в Discord"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"Як відновити доступ до гаманця",
+ "forgotPasswordBlock":{
+ "title":"Якщо ви забули пароль, скинути його неможливо!",
+ "content":"Єдиний спосіб відновити доступ до свого гаманця – це пригадати пароль або видалити дані гаманця з пам’яті браузера та відновити його з резервної копії (наприклад, мнемонічна фраза для відновлення).
Якщо у вас є ключі гаманця або фраза відновлення, нижче ви можете видалити свій гаманець. Тоді ви зможете відновити його та синхронізувати з нуля.
Перш ніж продовжити, переконайтеся, що у вас є фраза для відновлення!!!"
+ }
+ },
"networkPage":{
"title":"Статистика мережі",
"subtitle":"Огляд мережі Карбо",
diff --git a/src/translations/zh.json b/src/translations/zh.json
index 3a26bc03..d9c7259d 100644
--- a/src/translations/zh.json
+++ b/src/translations/zh.json
@@ -31,7 +31,8 @@
"openWalletModal": {
"title": "钱包密码",
"confirmText": "打开",
- "cancelText": "取消"
+ "cancelText": "取消",
+ "forgotPassword": "忘记密码?"
},
"invalidPasswordModal": {
"title": "糟糕!",
@@ -193,6 +194,13 @@
"discord": "卡博币 Discord频道"
}
},
+ "forgotPasswordPage":{
+ "subtitle":"如何恢复对钱包的访问",
+ "forgotPasswordBlock":{
+ "title":"如果您忘记了密码,将无法重新设置!",
+ "content":"恢复对钱包的访问的唯一方法是调用您的密码或从浏览器内存中删除钱包数据并从备份中恢复钱包(例如助记词恢复短语)。
如果您有钱包密钥或恢复短语 ,下面你可以删除你的钱包。 然后您就可以恢复它并从头开始同步。
请在继续之前确保您有一个恢复短语! "
+ }
+ },
"networkPage": {
"title": "网络统计",
"subtitle": "卡博币网络详情",