From aebe68fa1a9c08c26c28c79aacde24e1902e7607 Mon Sep 17 00:00:00 2001 From: yenda Date: Thu, 16 Apr 2020 01:56:09 +0200 Subject: [PATCH] fix #8717 change ens welcome screen english only needs work for translations Signed-off-by: Andrea Maria Piana --- src/status_im/ui/screens/ens/views.cljs | 66 +++++++++++++------------ test/cljs/status_im/test/i18n.cljs | 18 ++++--- translations/ar.json | 10 +--- translations/de.json | 3 +- translations/en.json | 18 ++++--- translations/es.json | 10 +--- translations/es_419.json | 10 +--- translations/fil.json | 10 +--- translations/fr.json | 10 +--- translations/id.json | 10 +--- translations/it.json | 10 +--- translations/ja.json | 10 +--- translations/ko.json | 10 +--- translations/nl.json | 10 +--- translations/pt.json | 6 +-- translations/pt_br.json | 6 +-- translations/ru.json | 10 +--- translations/th.json | 3 +- translations/tr.json | 5 +- translations/zh.json | 10 +--- translations/zh_Hans_CN.json | 8 --- translations/zh_TW.json | 10 +--- translations/zh_hans.json | 8 --- 23 files changed, 72 insertions(+), 199 deletions(-) diff --git a/src/status_im/ui/screens/ens/views.cljs b/src/status_im/ui/screens/ens/views.cljs index 030ec96ed8..9eb304df40 100644 --- a/src/status_im/ui/screens/ens/views.cljs +++ b/src/status_im/ui/screens/ens/views.cljs @@ -561,38 +561,40 @@ content]]) (defn- welcome [] - [react/view {:style {:flex 1}} - [react/scroll-view {:content-container-style {:align-items :center}} - [react/image {:source (resources/get-theme-image :ens-header) - :style {:margin-top 32}}] - [react/text {:style {:margin-top 32 :margin-bottom 8 :typography :header}} - (i18n/label :t/ens-get-name)] - [react/text {:style {:margin-top 8 :margin-bottom 24 :color colors/gray :font-size 15 :margin-horizontal 16 - :text-align :center}} - (i18n/label :t/ens-welcome-hints)] - [welcome-item {:icon-label "1" :title (i18n/label :t/ens-welcome-point-1-title)} - [react/view {:flex-direction :row} - [react/nested-text - {:style {:color colors/gray}} - (i18n/label :t/ens-welcome-point-1) - [{:style {:text-decoration-line :underline :color colors/black}} - (stateofus/subdomain "myname")]]]] - [welcome-item {:icon-label "2" :title (i18n/label :t/ens-welcome-point-2-title)} - [react/text {:style {:color colors/gray}} - (i18n/label :t/ens-welcome-point-2)]] - [welcome-item {:icon-label "3" :title (i18n/label :t/ens-welcome-point-3-title)} - [react/text {:style {:color colors/gray}} - (i18n/label :t/ens-welcome-point-3)]] - [welcome-item {:icon-label "@" :title (i18n/label :t/ens-welcome-point-4-title)} - [react/text {:style {:color colors/gray}} - (i18n/label :t/ens-welcome-point-4)]] - [react/text {:style {:margin-top 16 :text-align :center :color colors/gray :typography :caption :padding-bottom 96}} - (i18n/label :t/ens-powered-by)]] - [react/view {:align-items :center :background-color colors/white - :position :absolute :left 0 :right 0 :bottom 0 - :border-top-width 1 :border-top-color colors/gray-lighter} - [button {:on-press #(re-frame/dispatch [::ens/get-started-pressed]) - :label (i18n/label :t/get-started)}]]]) + (let [name (:name @(re-frame/subscribe [:multiaccount]))] + [react/view {:style {:flex 1}} + [react/scroll-view {:content-container-style {:align-items :center}} + [react/image {:source (resources/get-theme-image :ens-header) + :style {:margin-top 32}}] + [react/text {:style {:margin-top 32 :margin-bottom 8 :typography :header}} + (i18n/label :t/ens-get-name)] + [react/text {:style {:margin-top 8 :margin-bottom 24 :color colors/gray :font-size 15 :margin-horizontal 16 + :text-align :center}} + (i18n/label :t/ens-welcome-hints)] + [welcome-item {:icon-label "1" :title (i18n/label :t/ens-welcome-point-customize-title)} + [react/view {:flex-direction :row} + [react/text + {:style {:color colors/gray}} + (i18n/label :t/ens-welcome-point-customize {:name name})]]] + [welcome-item {:icon-label "2" :title (i18n/label :t/ens-welcome-point-simplify-title)} + [react/text {:style {:color colors/gray}} + (i18n/label :t/ens-welcome-point-simplify)]] + [welcome-item {:icon-label "3" :title (i18n/label :t/ens-welcome-point-receive-title)} + [react/text {:style {:color colors/gray}} + (i18n/label :t/ens-welcome-point-receive)]] + [welcome-item {:icon-label "4" :title (i18n/label :t/ens-welcome-point-register-title)} + [react/text {:style {:color colors/gray}} + (i18n/label :t/ens-welcome-point-register)]] + [welcome-item {:icon-label "@" :title (i18n/label :t/ens-welcome-point-verify-title)} + [react/text {:style {:color colors/gray}} + (i18n/label :t/ens-welcome-point-verify)]] + [react/text {:style {:margin-top 16 :text-align :center :color colors/gray :typography :caption :padding-bottom 96}} + (i18n/label :t/ens-powered-by)]] + [react/view {:align-items :center :background-color colors/white + :position :absolute :left 0 :right 0 :bottom 0 + :border-top-width 1 :border-top-color colors/gray-lighter} + [button {:on-press #(re-frame/dispatch [::ens/get-started-pressed]) + :label (i18n/label :t/get-started)}]]])) (defn- name-item [{:keys [name action]}] (let [stateofus-username (stateofus/username name) diff --git a/test/cljs/status_im/test/i18n.cljs b/test/cljs/status_im/test/i18n.cljs index d9284d79b7..6c0742cc51 100644 --- a/test/cljs/status_im/test/i18n.cljs +++ b/test/cljs/status_im/test/i18n.cljs @@ -391,14 +391,16 @@ :ens-want-custom-domain :ens-want-domain :ens-welcome-hints - :ens-welcome-point-1 - :ens-welcome-point-1-title - :ens-welcome-point-2 - :ens-welcome-point-2-title - :ens-welcome-point-3 - :ens-welcome-point-3-title - :ens-welcome-point-4 - :ens-welcome-point-4-title + :ens-welcome-point-customize + :ens-welcome-point-customize-title + :ens-welcome-point-simplify + :ens-welcome-point-simplify-title + :ens-welcome-point-receive + :ens-welcome-point-receive-title + :ens-welcome-point-register + :ens-welcome-point-register-title + :ens-welcome-point-verify + :ens-welcome-point-verify-title :ens-your-username :ens-your-usernames :ens-your-your-name diff --git a/translations/ar.json b/translations/ar.json index 7a2c41e2ab..357b21c6e9 100644 --- a/translations/ar.json +++ b/translations/ar.json @@ -426,14 +426,6 @@ "ens-want-custom-domain": "أنا أملك اسمًا في مجال آخر", "ens-want-domain": "أريد مجال Stateofus.eth", "ens-welcome-hints": "تقوم أسماء ENS بتحويل هذه العناوين المجنونة إلى أسماء مستخدمين فريدة.", - "ens-welcome-point-1": "يصبح عنوان محفظتك المعقدة (0x ...) وسيلة سهلة لقراءة وتذكر ومشاركة عنوان URL:", - "ens-welcome-point-1-title": "تبسيط عنوان ETH الخاص بك", - "ens-welcome-point-2": "سجل مرة واحدة للحفاظ على الاسم للأبد. بعد عام واحد ، يمكنك إطلاق الاسم واستعادة SNT.", - "ens-welcome-point-2-title": "10 SNT للتسجيل", - "ens-welcome-point-3": "مشاركة اسمك للدردشة على Status أو تلقي ETH والرموز", - "ens-welcome-point-3-title": "الاتصال والحصول على أموال", - "ens-welcome-point-4": "يمكنك التحقق من وإضافة أي أسماء مستخدمين تمتلكها في الخطوات التالية.", - "ens-welcome-point-4-title": "هل تملك اسم مستخدم بالفعل ؟", "ens-your-username": "اسم المستخدم الخاص بك", "ens-your-usernames": "أسماء المستخدمين الخاصة بك", "ens-your-your-name": "اسم ENS الخاص بك", @@ -1101,4 +1093,4 @@ "your-data-belongs-to-you-description": "لا يمكن أن تساعدك Status في استرداد الحساب المتعدد إذا فقدت العبارة الأولية. أنت المسؤول عن أمان بياناتك ، والنسخ الاحتياطي للعبارة الأساسية هو أفضل حماية.", "your-recovery-phrase": "العبارة الأولية الخاصة بك", "your-recovery-phrase-description": "هذه هي العبارة الأولية الخاصة بك. يمكنك استخدامها لإثبات أن هذه هي محفظتك. يمكنك فقط أن ترى ذلك مرة واحدة! اكتبها على الورق واحتفظ بها في مكان آمن. ستحتاج إليها إذا فقدت أو أعدت تثبيت محفظتك." -} \ No newline at end of file +} diff --git a/translations/de.json b/translations/de.json index 7c8bc10f96..ad2fa3c39f 100644 --- a/translations/de.json +++ b/translations/de.json @@ -114,7 +114,6 @@ "ens-want-custom-domain": "Ich besitze einen Namen in einer anderen Domain", "ens-want-domain": "Ich möchte eine stateofus.eth-Domain", "ens-welcome-hints": "ENS-Namen verwandeln diese verrückten langen Adressen in eindeutige Benutzernamen.", - "ens-welcome-point-1-title": "Vereinfachen Sie Ihre ETH-Adresse", "ens-your-username": "Ihr Benutzername", "ens-your-your-name": "Ihr ENS-Name", "enter-a-private-key": "Geben Sie einen Schlüssel ein", @@ -323,4 +322,4 @@ "you-will-need-this-code": "Sie benötigen diesen Code, um Status zu öffnen und Transaktionen zu signieren", "you-will-start-from-scratch": "Sie beginnen mit einem neuen Schlüsselsatz von vorne", "your-keys": "Deine Schlüssel" -} \ No newline at end of file +} diff --git a/translations/en.json b/translations/en.json index 7bbacaffe0..78e60d463d 100644 --- a/translations/en.json +++ b/translations/en.json @@ -387,14 +387,16 @@ "ens-want-custom-domain": "I own a name on another domain", "ens-want-domain": "I want a stateofus.eth domain", "ens-welcome-hints": "ENS names transform those crazy-long addresses into unique usernames.", - "ens-welcome-point-1": "Your complex wallet address (0x...) becomes an easy to read, remember & share URL: ", - "ens-welcome-point-1-title": "Simplify your ETH address", - "ens-welcome-point-2": "Register once to keep the name forever. After 1 year, you can release the name and get your SNT back.", - "ens-welcome-point-2-title": "10 SNT to register", - "ens-welcome-point-3": "Share your name to chat on Status or receive ETH and tokens", - "ens-welcome-point-3-title": "Connect & get paid", - "ens-welcome-point-4": "You can verify and add any usernames you own in the next steps.", - "ens-welcome-point-4-title": "Already own a username?", + "ens-welcome-point-customize": "An ENS name can replace your random 3-word name in chat. Be @yourname instead of {{name}}.", + "ens-welcome-point-customize-title": "Customize your chat name", + "ens-welcome-point-simplify": "You can receive funds to your easy-to-share ENS name rather than your hexadecimal hash (0x...).", + "ens-welcome-point-simplify-title": "Simplify your ETH address", + "ens-welcome-point-receive": "Others can send you funds via chat in one simple step.", + "ens-welcome-point-receive-title": "Receive transactions in chat", + "ens-welcome-point-register": "Register once to keep the name forever. After 1 year you can release the name and get your SNT back.", + "ens-welcome-point-register-title": "10 SNT to register", + "ens-welcome-point-verify": "You can verify and add any usernames you own in the next steps.", + "ens-welcome-point-verify-title": "Already own a username?", "ens-your-username": "Your username", "ens-your-usernames": "Your usernames", "ens-your-your-name": "Your ENS name", diff --git a/translations/es.json b/translations/es.json index cd34daf013..ec71ce73b3 100644 --- a/translations/es.json +++ b/translations/es.json @@ -409,14 +409,6 @@ "ens-want-custom-domain": "Tengo un nombre en otro dominio", "ens-want-domain": "Quiero un dominio stateofus.eth", "ens-welcome-hints": "Los nombres ENS transforman esas locas direcciones largas en nombres de usuario únicos.", - "ens-welcome-point-1": "Tu dirección de billetera compleja (0x...) se convierte en una URL fácil de leer, recordar y compartir: ", - "ens-welcome-point-1-title": "Simplifica tu dirección ETH", - "ens-welcome-point-2": "Regístrate una vez para mantener el nombre para siempre. Después de 1 año, puedes liberar el nombre y recuperar tu SNT.", - "ens-welcome-point-2-title": "10 SNT a registrar", - "ens-welcome-point-3": "Comparte tu nombre para chatear en Status o recibir ETH y tokens", - "ens-welcome-point-3-title": "Conéctate y recibe pagos", - "ens-welcome-point-4": "Puedes verificar y agregar cualquier nombre de usuario que poseas en los siguientes pasos.", - "ens-welcome-point-4-title": "¿Ya tienes un nombre de usuario?", "ens-your-username": "Tu nombre de usuario", "ens-your-usernames": "Tus nombres de usuario", "ens-your-your-name": "Tu nombre ENS", @@ -1098,4 +1090,4 @@ "your-keys": "Tus llaves", "your-recovery-phrase": "Tu frase semilla", "your-recovery-phrase-description": "Esta es tu frase semilla. La usas para demostrar que esta es tu billetera. ¡Solo puedes verla una vez! Escríbela en papel y guárdala en un lugar seguro. La necesitarás si pierdes o reinstalas la cartera." -} \ No newline at end of file +} diff --git a/translations/es_419.json b/translations/es_419.json index 3aa483135b..6675fa1465 100644 --- a/translations/es_419.json +++ b/translations/es_419.json @@ -409,14 +409,6 @@ "ens-want-custom-domain": "Tengo un nombre en otro dominio", "ens-want-domain": "Quiero un dominio stateofus.eth", "ens-welcome-hints": "Los nombres ENS transforman esas locas direcciones largas en nombres de usuario únicos.", - "ens-welcome-point-1": "Tu dirección de billetera compleja (0x...) se convierte en una URL fácil de leer, recordar y compartir: ", - "ens-welcome-point-1-title": "Simplifica tu dirección ETH", - "ens-welcome-point-2": "Regístrate una vez para mantener el nombre para siempre. Después de 1 año, puedes liberar el nombre y recuperar tu SNT.", - "ens-welcome-point-2-title": "10 SNT a registrar", - "ens-welcome-point-3": "Comparte tu nombre para chatear en Status o recibir ETH y tokens", - "ens-welcome-point-3-title": "Conéctate y recibe pagos", - "ens-welcome-point-4": "Puedes verificar y agregar cualquier nombre de usuario que poseas en los siguientes pasos.", - "ens-welcome-point-4-title": "¿Ya tienes un nombre de usuario?", "ens-your-username": "Tu nombre de usuario", "ens-your-usernames": "Tus nombres de usuario", "ens-your-your-name": "Tu nombre ENS", @@ -1098,4 +1090,4 @@ "your-keys": "Tus claves", "your-recovery-phrase": "Tu frase semilla", "your-recovery-phrase-description": "Esta es tu frase semilla. La usas para comprobar que esta es tu billetera. ¡Sólo la verás una vez! Escríbela en un papel y guárdala en un lugar seguro. La necesitarás si pierdes o reinstalas tu billetera." -} \ No newline at end of file +} diff --git a/translations/fil.json b/translations/fil.json index ff12ea3030..d7a8e6a1b4 100644 --- a/translations/fil.json +++ b/translations/fil.json @@ -435,14 +435,6 @@ "ens-want-custom-domain": "May-ari ako ng isang pangalan sa ibang domain", "ens-want-domain": "Gusto ko ng isang stateofus.eth domain", "ens-welcome-hints": "Binago ni ENS ang mga pangalan na sobrang habang address sa mga natatanging pangalan.", - "ens-welcome-point-1": "Ang iyong kumplikadong wallet address (0x...) nagiging madaling mabasa, tandaan at ibahagi ang URL", - "ens-welcome-point-1-title": "Pasimplehin ang iyong ETH address", - "ens-welcome-point-2": "Magrehistro ng isang beses upang mapanatili ang pangalan magpakailanman. Matapos ang 1 taon, maaari mong pakawalan ang pangalan at maibalik ang iyong SNT.", - "ens-welcome-point-2-title": "10 SNT upang magparehistro", - "ens-welcome-point-3": "Ibahagi ang iyong pangalan upang makipag-chat sa Status o tumanggap ng ETH at tokens", - "ens-welcome-point-3-title": "Kumonekta at mabayaran", - "ens-welcome-point-4": "Maaari mong i-verify at magdagdag ng anumang mga username na pagmamay-ari mo sa susunod na mga hakbang.", - "ens-welcome-point-4-title": "Mayroon ka bang isang username?", "ens-your-username": "Ang iyong username", "ens-your-usernames": "Ang iyong mga username", "ens-your-your-name": "Ang iyong pangalan ng ENS", @@ -1139,4 +1131,4 @@ "your-keys": "Ang iyong susi", "your-recovery-phrase": "Ang iyong seed phrase", "your-recovery-phrase-description": "ito ang iyong seed phrase. Ginagamit mo ito upang patunayan na ito ang iyong pitaka. ikaw lamang makita ito nang isang beses! Isulat ito sa papel at itago ito sa isang ligtas na lugar. Kakailanganin mo ito kung nawala o muling i-install ang iyong pitaka." -} \ No newline at end of file +} diff --git a/translations/fr.json b/translations/fr.json index bbc7b936e6..71508e066e 100644 --- a/translations/fr.json +++ b/translations/fr.json @@ -411,14 +411,6 @@ "ens-want-custom-domain": "Je possède un nom sur un autre domaine", "ens-want-domain": "Je veux un domaine stateofus.eth", "ens-welcome-hints": "Les noms ENS transforment ces adresses d'une longueur insensée en noms d'utilisateur uniques.", - "ens-welcome-point-1": "Votre adresse de portefeuille complexe (0x ...) devient une URL facile à lire, à mémoriser et à partager:", - "ens-welcome-point-1-title": "Simplifiez votre adresse ETH", - "ens-welcome-point-2": "Inscrivez-vous une fois pour garder le nom pour toujours. Après 1 an, vous pouvez libérer le nom et récupérer votre SNT.", - "ens-welcome-point-2-title": "10 SNT pour s'enregistrer", - "ens-welcome-point-3": "Partagez votre nom sur le chat de Status ou recevez des ETH ainsi que des tokens.", - "ens-welcome-point-3-title": "Connectez-vous et soyez payé", - "ens-welcome-point-4": "Vous pouvez vérifier et ajouter tous les noms d'utilisateur que vous possédez au cours des prochaines étapes.", - "ens-welcome-point-4-title": "Possédez-vous déjà un nom d'utilisateur?", "ens-your-username": "Votre nom d'utilisateur", "ens-your-usernames": "Vos noms d'utilisateurs", "ens-your-your-name": "Votre nom ENS", @@ -1103,4 +1095,4 @@ "your-keys": "Vos clés", "your-recovery-phrase": "Votre phrase de récupération", "your-recovery-phrase-description": "Ceci est votre phrase de récupération. Vous l'utilisez pour prouver qu'il s'agit de votre portefeuille. Vous ne le voyez qu'une fois! Ecrivez-le sur du papier et conservez-le dans un endroit sûr. Vous en aurez besoin si vous perdez ou réinstallez votre portefeuille." -} \ No newline at end of file +} diff --git a/translations/id.json b/translations/id.json index 8fbe3309de..4cb7e44795 100644 --- a/translations/id.json +++ b/translations/id.json @@ -405,14 +405,6 @@ "ens-want-custom-domain": "Saya memiliki nama di domain lain", "ens-want-domain": "Saya ingin domain stateofus.eth", "ens-welcome-hints": "Nama ENS mengubah alamat panjang gila itu menjadi nama pengguna unik.", - "ens-welcome-point-1": "Alamat dompet Anda yang kompleks (0x ...) menjadi mudah dibaca, diingat & bagikan URL:", - "ens-welcome-point-1-title": "Sederhanakan alamat ETH anda", - "ens-welcome-point-2": "Daftarkan sekali untuk menjaga nama selamanya. Setelah 1 tahun, Anda dapat merilis nama dan mendapatkan SNT Anda kembali.", - "ens-welcome-point-2-title": "10 SNT untuk mendaftar", - "ens-welcome-point-3": "Bagikan nama Anda untuk mengobrol di Status atau menerima ETH dan token", - "ens-welcome-point-3-title": "Hubungkan & dapatkan bayaran", - "ens-welcome-point-4": "Anda dapat memverifikasi dan menambahkan nama pengguna apa pun yang Anda miliki di langkah selanjutnya.", - "ens-welcome-point-4-title": "Sudah memiliki nama pengguna?", "ens-your-username": "Nama pengguna Anda", "ens-your-usernames": "Nama pengguna Anda", "ens-your-your-name": "Nama ENS Anda", @@ -1094,4 +1086,4 @@ "your-keys": "Kunci Anda", "your-recovery-phrase": "Frase seed Anda", "your-recovery-phrase-description": "Ini adalah frase awal Anda. Anda menggunakannya untuk membuktikan bahwa ini adalah dompet Anda. Anda hanya bisa melihatnya sekali! Tulis di atas kertas dan simpan di tempat yang aman. Anda akan membutuhkannya jika Anda kehilangan atau menginstal ulang dompet Anda." -} \ No newline at end of file +} diff --git a/translations/it.json b/translations/it.json index da99e67c63..55a6602225 100644 --- a/translations/it.json +++ b/translations/it.json @@ -411,14 +411,6 @@ "ens-want-custom-domain": "Possiedo un nome su un altro dominio", "ens-want-domain": "Voglio un dominio stateofus.eth", "ens-welcome-hints": "I nomi ENS trasformano quei lunghi e folli indirizzi in nomi utente unici.", - "ens-welcome-point-1": "Il tuo complicato indirizzo di portafoglio (0x...) diventa un URL facile da leggere, ricordare e condividere: ", - "ens-welcome-point-1-title": "Semplifica il tuo indirizzo ETH", - "ens-welcome-point-2": "Registrati una volta per conservare il nome per sempre. Dopo 1 anno, puoi rilasciare il nome e riavere il tuo SNT.", - "ens-welcome-point-2-title": "10 SNT per la registrazione", - "ens-welcome-point-3": "Condividi il tuo nome per chattare su Status o ricevere ETH e token", - "ens-welcome-point-3-title": "Connettiti e ricevi pagamenti", - "ens-welcome-point-4": "Puoi verificare e aggiungere qualsiasi nome utente che già possiedi.", - "ens-welcome-point-4-title": "Possiedi già un nome utente?", "ens-your-username": "Il tuo nome utente", "ens-your-usernames": "I tuoi nomi utente", "ens-your-your-name": "Il tuo nome ENS", @@ -1103,4 +1095,4 @@ "your-keys": "Le tue chiavi", "your-recovery-phrase": "La tua frase di recupero", "your-recovery-phrase-description": "Questa è la tua frase di recupero. La usi per dimostrare che questo è il tuo portafoglio. Puoi vederlo solo una volta! Scrivilo su carta e conservalo in un luogo sicuro. Ne avrai bisogno se perdi o reinstalli il tuo portafoglio." -} \ No newline at end of file +} diff --git a/translations/ja.json b/translations/ja.json index ec5a92955d..c714e5c146 100644 --- a/translations/ja.json +++ b/translations/ja.json @@ -354,14 +354,6 @@ "ens-want-custom-domain": "他のドメイン名を所有しています", "ens-want-domain": "stateofus.ethのドメインが欲しい", "ens-welcome-hints": "ENSユーザー名は長すぎるアドレスを固有のユーザー名に変換します", - "ens-welcome-point-1": "複雑なウォレットアドレスが読みやすく、覚えやすく、共有しやすくなります。URL:", - "ens-welcome-point-1-title": "ETHアドレスをシンプル化する", - "ens-welcome-point-2": "1度の登録で永久にユーザー名を維持しましょう。1年後に手放してSNTを取り戻すことができます。", - "ens-welcome-point-2-title": "登録に10SNTが必要です", - "ens-welcome-point-3": "ユーザー名を共有してStatusでチャットをしたりETHやトークンを受け取ったりしましょう。", - "ens-welcome-point-3-title": "接続して支払いを受ける", - "ens-welcome-point-4": "次の手順で、所有しているユーザー名を確認して追加できます。", - "ens-welcome-point-4-title": "すでにユーザー名を所有していますか?", "ens-your-username": "あなたのユーザー名", "ens-your-usernames": "あなたのユーザー名", "ens-your-your-name": "あなたのENSユーザー名", @@ -962,4 +954,4 @@ "your-data-belongs-to-you-description": "リカバリーフレーズを紛失した場合、マルチアカウントのリカバリーはできません。あなたのデータのセキュリティの責任はあなたにあります。保護するためにはリカバリーフレーズのバックアップしてください。", "your-recovery-phrase": "リカバリーフレーズ", "your-recovery-phrase-description": "これがあなたのリカバリーフレーズです。ウォレットがあなたのものであることを証明するために使用します。一度だけしか見ることができません。紙に書くか安全な場所で保管してください。ウォレットを再インストールするときに必要になります。" -} \ No newline at end of file +} diff --git a/translations/ko.json b/translations/ko.json index c6e13ed648..ccaf792eb2 100644 --- a/translations/ko.json +++ b/translations/ko.json @@ -406,14 +406,6 @@ "ens-want-custom-domain": "다른 도메인의 ENS 이름 가져오기", "ens-want-domain": "stateofus.eth 도메인을 원합니다.", "ens-welcome-hints": "ENS 이름은 복잡하고 긴 해시 주소를 직관적인 닉네임으로 변환합니다", - "ens-welcome-point-1": "(0x...)로 시작하는 복잡한 지갑 주소는 다음과 같이 읽고, 기억하고, 공유하기 쉬운 URL로 변환됩니다:", - "ens-welcome-point-1-title": "여러분의 ETH 주소를 단순화하세요", - "ens-welcome-point-2": "한번의 등록을 통해 해당 이름을 영원히 보유할 수 있습니다. 등록으로부터 1년 후, 계약을 종료하면 SNT를 돌려받을 수 있습니다.", - "ens-welcome-point-2-title": "10 SNT만으로 등록할 수 있습니다", - "ens-welcome-point-3": "ENS 이름을 통해 다른 사용자와 채팅을 시작하거나, ETH 및 토큰 자산을 거래할 수 있습니다.", - "ens-welcome-point-3-title": "연결 & 결제", - "ens-welcome-point-4": "다음 단계에서 소유한 사용자 이름을 확인하고 추가 할 수 있습니다.", - "ens-welcome-point-4-title": "이미 사용자 이름을 갖고 계신가요?", "ens-your-username": "사용자 이름", "ens-your-usernames": "사용자 이름", "ens-your-your-name": "ENS 이름", @@ -1100,4 +1092,4 @@ "your-keys": "계정 목록", "your-recovery-phrase": "시드 구문", "your-recovery-phrase-description": "위 12단어가 사용자의 시드 구문입니다. 이 구문은 사용자의 지갑을 증명하기 위해 반드시 필요하며, 이번 한번만 확인할 수 있습니다. 지갑을 분실하거나 재설치하는 경우 반드시 필요하므로 안전한 장소에 보관하세요." -} \ No newline at end of file +} diff --git a/translations/nl.json b/translations/nl.json index 79fb0a730f..a0f2561e50 100644 --- a/translations/nl.json +++ b/translations/nl.json @@ -99,14 +99,6 @@ "ens-want-custom-domain": "Ik bezit een naam op een ander domein", "ens-want-domain": "Ik wil een stateofus.eth domein", "ens-welcome-hints": "ENS-namen transformeren die waanzinnige adressen in unieke gebruikersnamen.", - "ens-welcome-point-1": "Uw complexe portefeuille-adres (0x ...) wordt een gemakkelijk te lezen, onthouden en delen URL:", - "ens-welcome-point-1-title": "Vereenvoudig uw ETH-adres", - "ens-welcome-point-2": "Registreer éénmaal om de naam voor altijd te behouden. Na 1 jaar kunt u de naam terug vrijgeven en uw SNT terugkrijgen.", - "ens-welcome-point-2-title": "10 SNT om te registreren", - "ens-welcome-point-3": "Deel uw naam om te chatten op Status of om ETH en tokens te ontvangen", - "ens-welcome-point-3-title": "Connecteer en wordt betaald.", - "ens-welcome-point-4": "In de volgende stappen kunt u uw eigen gebruikersnamen verifiëren en toevoegen.", - "ens-welcome-point-4-title": "Heeft u al een gebruikersnaam?", "ens-your-username": "Uw gebruikersnaam", "ens-your-usernames": "Uw gebruikersnamen", "ens-your-your-name": "Uw ENS-naam", @@ -209,4 +201,4 @@ "you-already-have-an-asset": "U hebt al een activum {{value}}", "you-can-change-account": "U kunt de accountnaam en -kleur wijzigen naar keuze.", "you-will-need-this-code": "U heeft deze code nodig om de status te openen en transacties te ondertekenen." -} \ No newline at end of file +} diff --git a/translations/pt.json b/translations/pt.json index 29260e2c8f..fcf29f6c35 100644 --- a/translations/pt.json +++ b/translations/pt.json @@ -289,10 +289,6 @@ "ens-usernames": "Nomes de usuário ENS", "ens-want-custom-domain": "Eu possuo um nome em outro domínio", "ens-want-domain": "Eu quero um domínio stateofus.eth", - "ens-welcome-point-1-title": "Simplifique seu endereço ETH", - "ens-welcome-point-2-title": "10 SNT para registrar", - "ens-welcome-point-3-title": "Conecte-se e seja pago", - "ens-welcome-point-4-title": "Já possui um nome de usuário?", "ens-your-username": "Seu nome de usuário", "ens-your-usernames": "Seus nomes de usuários", "ens-your-your-name": "Seu nome ENS", @@ -691,4 +687,4 @@ "yes": "Sí", "You": "Você", "you-are-all-set": "¡Estás listo!" -} \ No newline at end of file +} diff --git a/translations/pt_br.json b/translations/pt_br.json index 33f2c795cd..b21b41d418 100644 --- a/translations/pt_br.json +++ b/translations/pt_br.json @@ -267,10 +267,6 @@ "ens-usernames": "Nomes de usuário ENS", "ens-want-custom-domain": "Eu possuo um nome em outro domínio", "ens-want-domain": "Eu quero um domínio stateofus.eth", - "ens-welcome-point-1-title": "Simplifique seu endereço ETH", - "ens-welcome-point-2-title": "10 SNT para registrar", - "ens-welcome-point-3-title": "Conecte-se e seja pago", - "ens-welcome-point-4-title": "Já possui um nome de usuário?", "ens-your-username": "Seu nome de usuário", "ens-your-usernames": "Seus nomes de usuários", "ens-your-your-name": "Seu nome ENS", @@ -641,4 +637,4 @@ "yes": "Sí", "You": "Você", "you-are-all-set": "¡Estás listo!" -} \ No newline at end of file +} diff --git a/translations/ru.json b/translations/ru.json index 5712e69348..4dfc9794ad 100644 --- a/translations/ru.json +++ b/translations/ru.json @@ -430,14 +430,6 @@ "ens-want-custom-domain": "У меня есть имя на другом домене", "ens-want-domain": "Я хочу домен stateofus.eth", "ens-welcome-hints": "ENS имена преобразуют эти невероятно длинные адреса в уникальные имена пользователей", - "ens-welcome-point-1": "Ваш сложный адрес кошелька (0x ...) становится легким для чтения, запоминания и обмена URL: ", - "ens-welcome-point-1-title": "Упростите свой ETH адрес", - "ens-welcome-point-2": "Зарегистрировавшись один раз вы получаете имя навсегда. Через 1 год вы можете освободить имя и вернуть свои SNT.", - "ens-welcome-point-2-title": "10 SNT за регистрацию", - "ens-welcome-point-3": "Поделитесь своим именем, чтобы общаться в Status или получать ETH и токены", - "ens-welcome-point-3-title": "Общайтесь и осуществляйте транзакции", - "ens-welcome-point-4": "Вы можете проверять и добавлять любые имена пользователей на следующих шагах.", - "ens-welcome-point-4-title": "У вас уже есть имя пользователя?", "ens-your-username": "Ваше имя пользователя", "ens-your-usernames": "Ваши имена пользователей", "ens-your-your-name": "Ваше ENS имя", @@ -1133,4 +1125,4 @@ "your-keys": "Ваши ключи", "your-recovery-phrase": "Ваша фраза восстановления", "your-recovery-phrase-description": "Это ваша фраза восстановления. Она нужна для того, чтобы доказать, что это ваш кошелек. Вы можете ее увидеть только один раз! Запишите ее на бумаге и храните в надежном месте. Он понадобится вам, если вы потеряете или переустановите свой кошелек." -} \ No newline at end of file +} diff --git a/translations/th.json b/translations/th.json index a1d4b7752b..00d577c0d8 100644 --- a/translations/th.json +++ b/translations/th.json @@ -31,7 +31,6 @@ "ens-username-owned": "✓ชื่อผู้ใช้เป็นของคุณอยู่แล้ว", "ens-username-taken": "ชื่อผู้ใช้ถูกใช้ไปแล้ว :(", "ens-usernames": "ชื่อผู้ใช้ ENS", - "ens-welcome-point-2-title": "10 SNT สำหรับลงทะเบียน", "ens-your-username": "ชื่อผู้ใช้ของคุณ", "ens-your-your-name": "ENS ของคุณ", "enter-watch-account-address": "สแกน QR code\nหรือ\nป้อน Address เพิ่มดู", @@ -106,4 +105,4 @@ "watch-only": "ดูอย่างเดียว", "wrong-address": "Address ไม่ถูกต้อง", "your-keys": "คีย์ของคุณ" -} \ No newline at end of file +} diff --git a/translations/tr.json b/translations/tr.json index 41a7a0d4e7..6bed1d59ee 100644 --- a/translations/tr.json +++ b/translations/tr.json @@ -87,9 +87,6 @@ "ens-username-registration-confirmation": "{{username}}", "ens-username-taken": "Bu kullanıcı adı daha önce zaten alınmıştır :(", "ens-want-domain": "Stateofus.eth alan adı istiyorum", - "ens-welcome-point-2-title": "Kayıt için 10 snt gerekli", - "ens-welcome-point-3-title": "Bağlanın ve ödeme alın", - "ens-welcome-point-4-title": "Zaten bir kullanıcı adınız var mı?", "ens-your-usernames": "Kullanıcı adlarınız", "enter-a-private-key": "Özel bir anahtar girin", "enter-a-seed-phrase": "Bir kelime yazın", @@ -235,4 +232,4 @@ "wrong-card": "Yanlış kart", "you": "sen", "your-keys": "Senin anahtarların" -} \ No newline at end of file +} diff --git a/translations/zh.json b/translations/zh.json index 74a125da09..c438baaff4 100644 --- a/translations/zh.json +++ b/translations/zh.json @@ -406,14 +406,6 @@ "ens-want-custom-domain": "我在其他域名上拥有名称", "ens-want-domain": "我想要一个stateofus.eth域名", "ens-welcome-hints": "ENS名称将那些冗长的地址转换为独一无二的用户名。", - "ens-welcome-point-1": "您的复杂钱包地址 (0x...) 转化为一个易于阅读,记忆和分享的网址:", - "ens-welcome-point-1-title": "简化您的ETH地址", - "ens-welcome-point-2": "注册一次,永久保留名称。 一年后,您可以释放名称并赎回您的SNT。", - "ens-welcome-point-2-title": "注册需要10SNT", - "ens-welcome-point-3": "分享您的名称并使用它在Status上聊天或接收ETH和代币。", - "ens-welcome-point-3-title": "沟通和收付款", - "ens-welcome-point-4": "您可以在后续步骤中验证并添加您拥有的任何用户名。", - "ens-welcome-point-4-title": "已经拥有用户名?", "ens-your-username": "您的用户名", "ens-your-usernames": "您的用户名", "ens-your-your-name": "您的ENS名称", @@ -1100,4 +1092,4 @@ "your-keys": "您的账户", "your-recovery-phrase": "您的助记词", "your-recovery-phrase-description": "这是您的助记词。您需要用它来证明这个钱包属于您。您只能查看一次!请将其写在纸上并保存在安全的地方。如果丢失或重新安装钱包,您将需要用到这些助记词。" -} \ No newline at end of file +} diff --git a/translations/zh_Hans_CN.json b/translations/zh_Hans_CN.json index 1510efd5ff..79f62d1bd6 100644 --- a/translations/zh_Hans_CN.json +++ b/translations/zh_Hans_CN.json @@ -365,14 +365,6 @@ "ens-want-custom-domain": "我在另一个域名上拥有一个名称", "ens-want-domain": "我想要一个stateofus.eth域名", "ens-welcome-hints": "ENS名称将那些冗长的地址转换为唯一的用户名。", - "ens-welcome-point-1": "您的复杂钱包地址 (0x...) 转化为一个易于阅读,记忆和共享的网址:", - "ens-welcome-point-1-title": "简化您的ETH地址", - "ens-welcome-point-2": "注册一次,永久保留名称。 一年后,您可以释放名称并赎回您的SNT。", - "ens-welcome-point-2-title": "注册需要10 SNT", - "ens-welcome-point-3": "分享您的名称并使用它在Status上聊天或接收ETH和代币。", - "ens-welcome-point-3-title": "连接并获得报酬", - "ens-welcome-point-4": "您可以在后续步骤中验证并添加您拥有的任何用户名。", - "ens-welcome-point-4-title": "已经拥有用户名?", "ens-your-username": "您的用户名", "ens-your-usernames": "您的用户名", "ens-your-your-name": "您的ENS名称", diff --git a/translations/zh_TW.json b/translations/zh_TW.json index 133ce3eff1..b1acd3e5e2 100644 --- a/translations/zh_TW.json +++ b/translations/zh_TW.json @@ -406,14 +406,6 @@ "ens-want-custom-domain": "我在另一個網域上擁有註冊名稱", "ens-want-domain": "我想要一個stateofus.eth網域", "ens-welcome-hints": "ENS名稱將那些瘋狂的長串地址轉換為唯一的用戶名。", - "ens-welcome-point-1": "您長串的錢包地址(0x ...)將變得易於閱讀、記住並共享,例如:", - "ens-welcome-point-1-title": "簡化您的ETH地址", - "ens-welcome-point-2": "註冊一次即可永久保留名稱。一年後,您可以釋放名稱並重新獲得SNT。", - "ens-welcome-point-2-title": "用10 SNT進行註冊", - "ens-welcome-point-3": "分享您的暱稱以在\"Status\"上聊天或接收ETH和代幣", - "ens-welcome-point-3-title": "連接並取得付款", - "ens-welcome-point-4": "您可以在接下來的步驟中驗證並新增您擁有的任何用戶名。", - "ens-welcome-point-4-title": "已擁有用戶名?", "ens-your-username": "您的用戶名稱", "ens-your-usernames": "您的用戶名稱", "ens-your-your-name": "您的ENS名稱", @@ -1100,4 +1092,4 @@ "your-keys": "你的金鑰", "your-recovery-phrase": "您的種子詞組", "your-recovery-phrase-description": "這是您的種子詞組,能用它來證明這是您的錢包。您只會看到一次!請將其寫在紙上,並存放在安全的地方。如果裝置遺失或想重新安裝錢包,將需要它。" -} \ No newline at end of file +} diff --git a/translations/zh_hans.json b/translations/zh_hans.json index 5816ecc2b7..9652e8fddd 100644 --- a/translations/zh_hans.json +++ b/translations/zh_hans.json @@ -342,14 +342,6 @@ "ens-want-custom-domain": "我在另一个域名上拥有一个名称", "ens-want-domain": "我想要一个stateofus.eth域名", "ens-welcome-hints": "ENS名称将那些冗长的地址转换为唯一的用户名。", - "ens-welcome-point-1": "您的复杂钱包地址 (0x...) 转化为一个易于阅读,记忆和共享的网址:", - "ens-welcome-point-1-title": "简化您的ETH地址", - "ens-welcome-point-2": "注册一次,永久保留名称。 一年后,您可以释放名称并赎回您的SNT。", - "ens-welcome-point-2-title": "注册需要10 SNT", - "ens-welcome-point-3": "分享您的名称并使用它在Status上聊天或接收ETH和代币。", - "ens-welcome-point-3-title": "连接并获得报酬", - "ens-welcome-point-4": "您可以在后续步骤中验证并添加您拥有的任何用户名。", - "ens-welcome-point-4-title": "已经拥有用户名?", "ens-your-username": "您的用户名", "ens-your-usernames": "您的用户名", "ens-your-your-name": "您的ENS名称",