CAKE-360 | applied localization to yat_popup.dart, first_introduction.dart, second_introduction.dart, third_introduction.dart, choose_yat_address_alert.dart and extract_address_from_parsed.dart
OleksandrSobol committed
Oct 5, 2021 at 14:43 UTC
0e205a160651c6f67b1ef6bdb17899f891ff3591
21 files changed
+177
-34
lib/src/screens/receive/widgets/qr_widget.dart
+1
-1
@@ -101,7 +101,7 @@ class QRWidget extends StatelessWidget {
101
),
102
),
103
Padding(
104
- padding: EdgeInsets.only(top: 10, bottom: 10),
104
+ padding: EdgeInsets.only(top: 8, bottom: 8),
105
child: Builder(
106
builder: (context) => Observer(
107
builder: (context) => GestureDetector(
lib/src/screens/send/widgets/choose_yat_address_alert.dart
+1
-2
@@ -111,8 +111,7 @@ class ChooseYatAddressButtonsState extends State<ChooseYatAddressButtons> {
111
if (itemCount > 3) CakeScrollbar(
112
backgroundHeight: backgroundHeight,
113
thumbHeight: thumbHeight,
114
- fromTop: fromTop,
115
- //rightOffset: -15
114
+ fromTop: fromTop
115
)
116
]
117
);
lib/src/screens/send/widgets/extract_address_from_parsed.dart
+3
-3
@@ -25,8 +25,8 @@ Future<String> extractAddressFromParsed(
25
break;
26
case ParseFrom.yatRecord:
27
if (parsedAddress.name.isEmpty) {
28
- title = 'Yat error';
29
- content = 'No addresses linked with this Yat. Try another Yat';
28
+ title = S.of(context).yat_error;
29
+ content = S.of(context).yat_error_content;
30
address = parsedAddress.addresses.first;
31
break;
32
}
@@ -39,7 +39,7 @@ Future<String> extractAddressFromParsed(
39
break;
40
}
41
42
- content += '\nPlease choose the address:';
42
+ content += S.of(context).choose_address;
43
44
address = await showPopUp<String>(
45
context: context,
lib/src/screens/yat/widgets/first_introduction.dart
+4
-3
@@ -6,6 +6,7 @@ import 'package:flutter/cupertino.dart';
6
import 'package:flutter/material.dart';
7
import 'package:cake_wallet/palette.dart';
8
import 'package:lottie/lottie.dart';
9
+import 'package:cake_wallet/generated/i18n.dart';
10
11
class FirstIntroduction extends StatelessWidget {
12
FirstIntroduction({this.onClose, this.onNext});
@@ -39,7 +40,7 @@ class FirstIntroduction extends StatelessWidget {
40
child: Column(
41
children: [
42
Text(
42
- 'Send and receive crypto more easily with Yat',
43
+ S.of(context).yat_alert_title,
44
textAlign: TextAlign.center,
45
style: TextStyle(
46
fontSize: 24,
@@ -52,7 +53,7 @@ class FirstIntroduction extends StatelessWidget {
53
Padding(
54
padding: EdgeInsets.only(top: 20),
55
child: Text(
55
- 'Cake Wallet users can now send and receive all their favorite currencies with a one-of-a-kind emoji-based username.',
56
+ S.of(context).yat_alert_content,
57
textAlign: TextAlign.center,
58
style: TextStyle(
59
fontSize: 16,
@@ -73,7 +74,7 @@ class FirstIntroduction extends StatelessWidget {
74
crossAxisAlignment: CrossAxisAlignment.center,
75
children: [
76
PrimaryButton(
76
- text: 'Next',
77
+ text: S.of(context).restore_next,
78
textColor: Colors.white,
79
color: Palette.protectiveBlue,
80
onPressed: onNext
lib/src/screens/yat/widgets/second_introduction.dart
+4
-3
@@ -6,6 +6,7 @@ import 'package:flutter/cupertino.dart';
6
import 'package:flutter/material.dart';
7
import 'package:cake_wallet/palette.dart';
8
import 'package:lottie/lottie.dart';
9
+import 'package:cake_wallet/generated/i18n.dart';
10
11
class SecondIntroduction extends StatelessWidget {
12
SecondIntroduction({this.onClose, this.onNext});
@@ -38,7 +39,7 @@ class SecondIntroduction extends StatelessWidget {
39
child: Column(
40
children: [
41
Text(
41
- 'One emoji address to rule them all',
42
+ S.of(context).second_intro_title,
43
textAlign: TextAlign.center,
44
style: TextStyle(
45
fontSize: 24,
@@ -51,7 +52,7 @@ class SecondIntroduction extends StatelessWidget {
52
Padding(
53
padding: EdgeInsets.only(top: 20),
54
child: Text(
54
- 'Your Yat is a single unique emoji address that replaces all of your long hexadecimal addresses for all of your currencies.',
55
+ S.of(context).second_intro_content,
56
textAlign: TextAlign.center,
57
style: TextStyle(
58
fontSize: 16,
@@ -72,7 +73,7 @@ class SecondIntroduction extends StatelessWidget {
73
crossAxisAlignment: CrossAxisAlignment.center,
74
children: [
75
PrimaryButton(
75
- text: 'Next',
76
+ text: S.of(context).restore_next,
77
textColor: Colors.white,
78
color: Palette.protectiveBlue,
79
onPressed: onNext
lib/src/screens/yat/widgets/third_introduction.dart
+5
-4
@@ -6,6 +6,7 @@ import 'package:flutter/cupertino.dart';
6
import 'package:flutter/material.dart';
7
import 'package:cake_wallet/palette.dart';
8
import 'package:lottie/lottie.dart';
9
+import 'package:cake_wallet/generated/i18n.dart';
10
11
class ThirdIntroduction extends StatelessWidget {
12
ThirdIntroduction({this.onClose, this.onGet, this.onConnect});
@@ -39,7 +40,7 @@ class ThirdIntroduction extends StatelessWidget {
40
child: Column(
41
children: [
42
Text(
42
- 'Yat plays nicely with others',
43
+ S.of(context).third_intro_title,
44
textAlign: TextAlign.center,
45
style: TextStyle(
46
fontSize: 24,
@@ -52,7 +53,7 @@ class ThirdIntroduction extends StatelessWidget {
53
Padding(
54
padding: EdgeInsets.only(top: 20),
55
child: Text(
55
- 'Yats live outside of Cake Wallet, too. Any wallet address on earth can be replaced with a Yat!',
56
+ S.of(context).third_intro_content,
57
textAlign: TextAlign.center,
58
style: TextStyle(
59
fontSize: 16,
@@ -73,7 +74,7 @@ class ThirdIntroduction extends StatelessWidget {
74
crossAxisAlignment: CrossAxisAlignment.center,
75
children: [
76
PrimaryIconButton(
76
- text: 'Get your Yat',
77
+ text: S.of(context).get_your_yat,
78
textColor: Colors.white,
79
color: Palette.protectiveBlue,
80
borderColor: Palette.protectiveBlue,
@@ -86,7 +87,7 @@ class ThirdIntroduction extends StatelessWidget {
87
Padding(
88
padding: EdgeInsets.only(top: 12),
89
child: PrimaryIconButton(
89
- text: 'Connect an existing Yat',
90
+ text: S.of(context).connect_an_existing_yat,
91
textColor: Colors.black,
92
color: Palette.blueAlice,
93
borderColor: Palette.blueAlice,
lib/src/screens/yat/yat_popup.dart
+4
-3
@@ -11,6 +11,7 @@ import 'package:flutter/material.dart';
11
import 'package:animate_do/animate_do.dart';
12
import 'package:flutter_mobx/flutter_mobx.dart';
13
import 'package:url_launcher/url_launcher.dart';
14
+import 'package:cake_wallet/generated/i18n.dart';
15
16
class YatPopup extends StatelessWidget {
17
YatPopup({this.dashboardViewModel, this.onClose})
@@ -91,7 +92,7 @@ class YatPopup extends StatelessWidget {
92
child: Column(
93
children: [
94
Text(
94
- 'Your wallet address can be emojified.',
95
+ S.of(context).yat_popup_title,
96
textAlign: TextAlign.center,
97
style: TextStyle(
98
fontSize: 24,
@@ -104,7 +105,7 @@ class YatPopup extends StatelessWidget {
105
Padding(
106
padding: EdgeInsets.only(top: 20),
107
child: Text(
107
- 'You can now send and receive crypto in Cake Wallet with your Yat - a short, emoji-based username. Manage Yats at any time on the settings screen',
108
+ S.of(context).yat_popup_content,
109
textAlign: TextAlign.center,
110
style: TextStyle(
111
fontSize: 16,
@@ -119,7 +120,7 @@ class YatPopup extends StatelessWidget {
120
)
121
),
122
PrimaryButton(
122
- text: 'Learn More',
123
+ text: S.of(context).learn_more,
124
textColor: Colors.white,
125
color: Palette.protectiveBlue,
126
onPressed: () => dashboardViewModel
res/values/strings_de.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Holen Sie sich Ihre Yat",
503
"connect_an_existing_yat" : "Verbinden Sie ein vorhandenes Yat",
504
"yat_address" : "Yat-Adresse",
505
- "address_from_yat" : "Diese Adresse ist von ${emoji} auf Yat"
505
+ "address_from_yat" : "Diese Adresse ist von ${emoji} auf Yat",
506
+ "yat_error" : "Yat-Fehler",
507
+ "yat_error_content" : "Keine Adressen mit diesem Yat verknüpft. Versuchen Sie es mit einem anderen Yat",
508
+ "choose_address" : "\n\nBitte wählen Sie die Adresse:",
509
+ "yat_popup_title" : "Ihre Wallet-Adresse kann emojifiziert werden.",
510
+ "yat_popup_content" : "Sie können jetzt Krypto in Cake Wallet mit Ihrem Yat senden und empfangen - einem kurzen, Emoji-basierten Benutzernamen. Verwalten Sie Yats jederzeit auf dem Einstellungsbildschirm",
511
+ "second_intro_title" : "Eine Emoji-Adresse, um sie alle zu beherrschen",
512
+ "second_intro_content" : "Ihr Yat ist eine einzige eindeutige Emoji-Adresse, die alle Ihre langen hexadezimalen Adressen für alle Ihre Währungen ersetzt.",
513
+ "third_intro_title" : "Yat spielt gut mit anderen",
514
+ "third_intro_content" : "Yats leben auch außerhalb von Cake Wallet. Jede Wallet-Adresse auf der Welt kann durch ein Yat ersetzt werden!",
515
+ "learn_more" : "Erfahren Sie mehr"
516
}
res/values/strings_en.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Get your Yat",
503
"connect_an_existing_yat" : "Connect an existing Yat",
504
"yat_address" : "Yat Address",
505
- "address_from_yat" : "This address is from ${emoji} on Yat"
505
+ "address_from_yat" : "This address is from ${emoji} on Yat",
506
+ "yat_error" : "Yat error",
507
+ "yat_error_content" : "No addresses linked with this Yat. Try another Yat",
508
+ "choose_address" : "\n\nPlease choose the address:",
509
+ "yat_popup_title" : "Your wallet address can be emojified.",
510
+ "yat_popup_content" : "You can now send and receive crypto in Cake Wallet with your Yat - a short, emoji-based username. Manage Yats at any time on the settings screen",
511
+ "second_intro_title" : "One emoji address to rule them all",
512
+ "second_intro_content" : "Your Yat is a single unique emoji address that replaces all of your long hexadecimal addresses for all of your currencies.",
513
+ "third_intro_title" : "Yat plays nicely with others",
514
+ "third_intro_content" : "Yats live outside of Cake Wallet, too. Any wallet address on earth can be replaced with a Yat!",
515
+ "learn_more" : "Learn More"
516
}
\ No newline at end of file
res/values/strings_es.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Obtén tu Yat",
503
"connect_an_existing_yat" : "Conectar un Yat existente",
504
"yat_address" : "Dirección de Yat",
505
- "address_from_yat" : "Esta dirección es de ${emoji} en Yat"
505
+ "address_from_yat" : "Esta dirección es de ${emoji} en Yat",
506
+ "yat_error" : "Error de Yat",
507
+ "yat_error_content" : "No hay direcciones vinculadas con este Yat. Prueba con otro Yat",
508
+ "choose_address" : "\n\nPor favor elija la dirección:",
509
+ "yat_popup_title" : "La dirección de su billetera se puede emojificar.",
510
+ "yat_popup_content" : "Ahora puede enviar y recibir criptografía en Cake Wallet con su Yat, un nombre de usuario corto basado en emoji. Administre Yats en cualquier momento en la pantalla de configuración",
511
+ "second_intro_title" : "Una dirección de emoji para gobernarlos a todos",
512
+ "second_intro_content" : "Tu Yat es una única dirección emoji única que reemplaza todas tus direcciones hexadecimales largas para todas tus monedas.",
513
+ "third_intro_title" : "Yat juega muy bien con otras",
514
+ "third_intro_content" : "Los Yats también viven fuera de Cake Wallet. Cualquier dirección de billetera en la tierra se puede reemplazar con un Yat!",
515
+ "learn_more" : "Aprende más"
516
}
\ No newline at end of file
res/values/strings_hi.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "अपना प्राप्त करें Yat",
503
"connect_an_existing_yat" : "मौजूदा Yat कनेक्ट करें",
504
"yat_address" : "Yat पता",
505
- "address_from_yat" : "यह पता ${emoji} से है Yat"
505
+ "address_from_yat" : "यह पता ${emoji} से है Yat",
506
+ "yat_error" : "Yat त्रुटि",
507
+ "yat_error_content" : "इसके साथ कोई पता लिंक नहीं है Yat. कोई दूसरा आज़माएं Yat",
508
+ "choose_address" : "\n\nकृपया पता चुनें:",
509
+ "yat_popup_title" : "आपका वॉलेट पता इमोजी किया जा सकता है।",
510
+ "yat_popup_content" : "अब आप क्रिप्टो भेज और प्राप्त कर सकते हैं Cake Wallet अपने Yat के साथ - एक छोटा, इमोजी-आधारित उपयोगकर्ता नाम। सेटिंग स्क्रीन पर किसी भी समय Yats को प्रबंधित करें",
511
+ "second_intro_title" : "उन सभी पर राज करने के लिए एक इमोजी पता",
512
+ "second_intro_content" : "आपका Yat एक अद्वितीय इमोजी पता है जो आपकी सभी मुद्राओं के लिए आपके सभी लंबे हेक्साडेसिमल पतों को बदल देता है।",
513
+ "third_intro_title" : "Yat दूसरों के साथ अच्छा खेलता है",
514
+ "third_intro_content" : "Yats Cake Wallet के बाहर भी रहता है। धरती पर किसी भी वॉलेट पते को Yat से बदला जा सकता है!",
515
+ "learn_more" : "और अधिक जानें"
516
}
\ No newline at end of file
res/values/strings_hr.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Uzmi svoj Yat",
503
"connect_an_existing_yat" : "Povežite postojeći Yat",
504
"yat_address" : "Yat adresa",
505
- "address_from_yat" : "To je adresa od ${emoji} na Yat"
505
+ "address_from_yat" : "To je adresa od ${emoji} na Yat",
506
+ "yat_error" : "Yat pogreška",
507
+ "yat_error_content" : "Nema adresa povezanih s ovim Yat -om. Pokušajte s drugim Yat -om",
508
+ "choose_address" : "\n\nOdaberite adresu:",
509
+ "yat_popup_title" : "Adresa vašeg novčanika može biti emojificirana.",
510
+ "yat_popup_content" : "Sada možete slati i primati kriptovalute u Cake Wallet s vašim Yat - kratkim korisničkim imenom zasnovanim na emojijima. Upravljajte Yatsom u bilo kojem trenutku na zaslonu postavki",
511
+ "second_intro_title" : "Jedna adresa emojija koja će svima njima vladati",
512
+ "second_intro_content" : "Vaš Yat jedinstvena je adresa emojija koja zamjenjuje sve vaše duge heksadecimalne adrese za sve vaše valute.",
513
+ "third_intro_title" : "Yat se lijepo igra s drugima",
514
+ "third_intro_content" : "Yats žive i izvan Cake Wallet -a. Bilo koja adresa novčanika na svijetu može se zamijeniti Yat!",
515
+ "learn_more" : "Saznajte više"
516
}
\ No newline at end of file
res/values/strings_it.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Ottieni il tuo Yat",
503
"connect_an_existing_yat" : "Collegare un Yat esistente",
504
"yat_address" : "Indirizzo Yat",
505
- "address_from_yat" : "Questo indirizzo è da ${emoji} in poi Yat"
505
+ "address_from_yat" : "Questo indirizzo è da ${emoji} in poi Yat",
506
+ "yat_error" : "Yat errore",
507
+ "yat_error_content" : "Nessun indirizzo collegato a questo Yat. Prova un altro Yat",
508
+ "choose_address" : "\n\nSi prega di scegliere l'indirizzo:",
509
+ "yat_popup_title" : "L'indirizzo del tuo portafoglio può essere emoji.",
510
+ "yat_popup_content" : "Ora puoi inviare e ricevere criptovalute in Cake Wallet con il tuo Yat, un breve nome utente basato su emoji. Gestisci Yats in qualsiasi momento nella schermata delle impostazioni",
511
+ "second_intro_title" : "Un indirizzo emoji per domarli tutti",
512
+ "second_intro_content" : "Il tuo Yat è un unico indirizzo emoji univoco che sostituisce tutti i tuoi lunghi indirizzi esadecimali per tutte le tue valute.",
513
+ "third_intro_title" : "Yat gioca bene con gli altri",
514
+ "third_intro_content" : "Anche Yats vive fuori da Cake Wallet. Qualsiasi indirizzo di portafoglio sulla terra può essere sostituito con un Yat!",
515
+ "learn_more" : "Impara di più"
516
}
\ No newline at end of file
res/values/strings_ja.arb
+12
-2
@@ -501,6 +501,16 @@
501
"yat_alert_content" : "Cake Walletユーザーは、独自の絵文字ベースのユーザー名を使用して、お気に入りのすべての通貨を送受信できるようになりました。",
502
"get_your_yat" : "あなたのYatを入手してください",
503
"connect_an_existing_yat" : "既存のYatを接続します",
504
- "yat_address" : "Yat 住所",
505
- "address_from_yat" : "このアドレスは ${emoji} からのものです Yat"
504
+ "yat_address" : "Yat住所",
505
+ "address_from_yat" : "このアドレスは ${emoji} からのものです Yat",
506
+ "yat_error" : "Yatエラー",
507
+ "yat_error_content" : "このYatにリンクされているアドレスはありません。別のYatを試してください",
508
+ "choose_address" : "\n\n住所を選択してください:",
509
+ "yat_popup_title" : "あなたの財布のアドレスは絵文字であることができます。",
510
+ "yat_popup_content" : "Yat(短い絵文字ベースのユーザー名)を使用して、CakeWalletで暗号を送受信できるようになりました。 設定画面でいつでもYatsを管理",
511
+ "second_intro_title" : "それらすべてを支配する1つの絵文字アドレス",
512
+ "second_intro_content" : "Yatは、すべての通貨のすべての長い16進アドレスを置き換える単一の一意の絵文字アドレスです。",
513
+ "third_intro_title" : "Yatは他の人とうまく遊ぶ",
514
+ "third_intro_content" : "YatsはCakeWalletの外にも住んでいます。 地球上のどのウォレットアドレスもYatに置き換えることができます!",
515
+ "learn_more" : "もっと詳しく知る"
516
}
\ No newline at end of file
res/values/strings_ko.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "당신의 Yat를 얻으십시오",
503
"connect_an_existing_yat" : "기존 Yat 연결",
504
"yat_address" : "Yat 주소",
505
- "address_from_yat" : "이 주소는 ${emoji} 의 주소입니다 Yat"
505
+ "address_from_yat" : "이 주소는 ${emoji} 의 주소입니다 Yat",
506
+ "yat_error" : "Yat 오류",
507
+ "yat_error_content" : "이 Yat와 연결된 주소가 없습니다. 다른 Yat 시도",
508
+ "choose_address" : "\n\n주소를 선택하십시오:",
509
+ "yat_popup_title" : "지갑 주소를 이모티콘으로 만들 수 있습니다.",
510
+ "yat_popup_content" : "이제 Yat(이모티콘 기반의 짧은 사용자 이름)으로 Cake Wallet에서 암호화폐를 보내고 받을 수 있습니다. 설정 화면에서 언제든지 Yats 관리",
511
+ "second_intro_title" : "그들을 모두 지배하는 하나의 이모티콘 주소",
512
+ "second_intro_content" : "귀하의 Yat는 귀하의 모든 통화에 대해 긴 16진수 주소를 모두 대체하는 고유한 단일 이모지 주소입니다.",
513
+ "third_intro_title" : "Yat는 다른 사람들과 잘 놉니다.",
514
+ "third_intro_content" : "Yats는 Cake Wallet 밖에서도 살고 있습니다. 지구상의 모든 지갑 주소는 Yat!",
515
+ "learn_more" : "더 알아보기"
516
}
\ No newline at end of file
res/values/strings_nl.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Haal je Yato",
503
"connect_an_existing_yat" : "Verbind een bestaande Yat",
504
"yat_address" : "Yat-adres",
505
- "address_from_yat" : "Dit adres is van ${emoji} op Yat"
505
+ "address_from_yat" : "Dit adres is van ${emoji} op Yat",
506
+ "yat_error" : "Yat fout",
507
+ "yat_error_content" : "Geen adressen gekoppeld aan deze Yat. Probeer een andere Yato",
508
+ "choose_address" : "\n\nKies het adres:",
509
+ "yat_popup_title" : "Uw portemonnee-adres kan worden ge-emojiificeerd.",
510
+ "yat_popup_content" : "Je kunt nu crypto verzenden en ontvangen in Cake Wallet met je Yat - een korte, op emoji gebaseerde gebruikersnaam. Beheer Yats op elk moment op het instellingenscherm",
511
+ "second_intro_title" : "Eén emoji-adres om ze allemaal te regeren",
512
+ "second_intro_content" : "Je Yat is een enkel uniek emoji-adres dat al je lange hexadecimale adressen vervangt voor al je valuta's.",
513
+ "third_intro_title" : "Yat speelt leuk met anderen",
514
+ "third_intro_content" : "Yats wonen ook buiten Cake Wallet. Elk portemonnee-adres op aarde kan worden vervangen door een Yat!",
515
+ "learn_more" : "Kom meer te weten"
516
}
\ No newline at end of file
res/values/strings_pl.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Zdobądź swój Yat",
503
"connect_an_existing_yat" : "Podłącz istniejący Yat",
504
"yat_address" : "Adres Yat",
505
- "address_from_yat" : "Ten adres jest od ${emoji} na Yat"
505
+ "address_from_yat" : "Ten adres jest od ${emoji} na Yat",
506
+ "yat_error" : "Pomyłka Yata",
507
+ "yat_error_content" : "Brak adresów powiązanych z tym Yat. Wypróbuj inny Yat",
508
+ "choose_address" : "\n\nWybierz adres:",
509
+ "yat_popup_title" : "Twój adres portfela może być emojified.",
510
+ "yat_popup_content" : "Możesz teraz wysyłać i odbierać krypto w Cake Wallet za pomocą swojego Yat – krótkiej nazwy użytkownika opartej na emotikonach. Zarządzaj Yats w dowolnym momencie na ekranie ustawień",
511
+ "second_intro_title" : "Jeden adres emoji, aby rządzić nimi wszystkimi",
512
+ "second_intro_content" : "Twój Yat to jeden unikalny adres emoji, który zastępuje wszystkie Twoje długie adresy szesnastkowe dla wszystkich Twoich walut.",
513
+ "third_intro_title" : "Yat ładnie bawi się z innymi",
514
+ "third_intro_content" : "Yats mieszkają również poza Cake Wallet. Każdy adres portfela na ziemi można zastąpić Yat!",
515
+ "learn_more" : "Ucz się więcej"
516
}
\ No newline at end of file
res/values/strings_pt.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Pegue seu Yat",
503
"connect_an_existing_yat" : "Conecte um Yat existente",
504
"yat_address" : "Endereço Yat",
505
- "address_from_yat" : "Este endereço é de ${emoji} em Yat"
505
+ "address_from_yat" : "Este endereço é de ${emoji} em Yat",
506
+ "yat_error" : "Yat erro",
507
+ "yat_error_content" : "Nenhum endereço vinculado a este Yat. Tente outro Yat",
508
+ "choose_address" : "\n\nEscolha o endereço:",
509
+ "yat_popup_title" : "O endereço da sua carteira pode ser emojificado.",
510
+ "yat_popup_content" : "Agora você pode enviar e receber criptografia na Cake Wallet com seu Yat - um nome de usuário curto baseado em emoji. Gerenciar Yats a qualquer momento na tela de configurações",
511
+ "second_intro_title" : "Um endereço de emoji para governar todos eles",
512
+ "second_intro_content" : "Seu Yat é um endereço de emoji único e exclusivo que substitui todos os seus endereços hexadecimais longos para todas as suas moedas.",
513
+ "third_intro_title" : "Yat joga bem com os outros",
514
+ "third_intro_content" : "Yats também mora fora da Cake Wallet. Qualquer endereço de carteira na Terra pode ser substituído por um Yat!",
515
+ "learn_more" : "Saber mais"
516
}
\ No newline at end of file
res/values/strings_ru.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Получить свой Yat",
503
"connect_an_existing_yat" : "Подключить существующий Yat",
504
"yat_address" : "Yat адрес",
505
- "address_from_yat" : "Этот адрес от ${emoji} на Yat"
505
+ "address_from_yat" : "Этот адрес от ${emoji} на Yat",
506
+ "yat_error" : "Ошибка Yat",
507
+ "yat_error_content" : "Нет адресов, связанных с этим Yat. Попробуйте другой Yat",
508
+ "choose_address" : "\n\nПожалуйста, выберите адрес:",
509
+ "yat_popup_title" : "Адрес вашего кошелька может быть связан с эмодзи",
510
+ "yat_popup_content" : "Теперь вы можете отправлять и получать криптовалюту в Cake Wallet с помощью Yat - короткого имени пользователя на основе эмодзи. Управляйте Yat в любое время при помощи экрана настроек",
511
+ "second_intro_title" : "Один адрес эмодзи для управления остальными адресами",
512
+ "second_intro_content" : "Ваш Yat - это единственный уникальный адрес эмодзи, который заменяет длинные шестнадцатеричные адреса для всех ваших валют.",
513
+ "third_intro_title" : "Yat хорошо взаимодействует с другими",
514
+ "third_intro_content" : "Yat находятся за пределами Cake Wallet. Любой адрес кошелька на земле можно заменить на Yat!",
515
+ "learn_more" : "Узнать больше"
516
}
\ No newline at end of file
res/values/strings_uk.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "Одержати свій Yat",
503
"connect_an_existing_yat" : "Підключити існуючий Yat",
504
"yat_address" : "Yat адреса",
505
- "address_from_yat" : "Ця адреса від ${emoji} на Yat"
505
+ "address_from_yat" : "Ця адреса від ${emoji} на Yat",
506
+ "yat_error" : "Помилка Yat",
507
+ "yat_error_content" : "Немає адрес, пов'язаних з цим Yat. Спробуйте інший Yat",
508
+ "choose_address" : "\n\nБудь ласка, оберіть адресу:",
509
+ "yat_popup_title" : "Адреса вашого гаманця може бути пов'язаною з емодзі",
510
+ "yat_popup_content" : "Тепер ви можете відправляти і отримувати криптовалюту в Cake Wallet за допомогою Yat - короткого імені користувача на основі емодзі. Керуйте Yat в будь-який час за допомогою екрану налаштувань",
511
+ "second_intro_title" : "Одна адреса емодзі для управління іншими адресами",
512
+ "second_intro_content" : "Ваш Yat - це єдина унікальна адреса емодзі, яка замінює довгі шістнадцятиричні адреси для всіх ваших валют.",
513
+ "third_intro_title" : "Yat добре взаємодіє з іншими",
514
+ "third_intro_content" : "Yat знаходиться за межами Cake Wallet. Будь-яку адресу гаманця на землі можна замінити на Yat!",
515
+ "learn_more" : "Дізнатися більше"
516
}
\ No newline at end of file
res/values/strings_zh.arb
+11
-1
@@ -502,5 +502,15 @@
502
"get_your_yat" : "得到你的 Yat",
503
"connect_an_existing_yat" : "連接現有 Yat",
504
"yat_address" : "Yat 地址",
505
- "address_from_yat" : "此地址來自 Yat 上的 ${emoji}"
505
+ "address_from_yat" : "此地址來自 Yat 上的 ${emoji}",
506
+ "yat_error" : "Yat 誤差",
507
+ "yat_error_content" : "沒有與此 Yat 相關聯的地址。 嘗試另一個 Yat",
508
+ "choose_address" : "\n\n請選擇地址:",
509
+ "yat_popup_title" : "您的錢包地址可以被表情化。",
510
+ "yat_popup_content" : "您現在可以使用 Yat 在 Cake Wallet 中發送和接收加密貨幣 - 一個基於表情符號的簡短用戶名。 在設置屏幕上隨時管理 Yats",
511
+ "second_intro_title" : "一個表情符號地址來統治他們",
512
+ "second_intro_content" : "您的 Yat 是一個唯一的表情符號地址,可替換您所有貨幣的所有長十六進制地址。",
513
+ "third_intro_title" : "Yat 和別人玩得很好",
514
+ "third_intro_content" : "Yats 也住在 Cake Wallet 之外。 地球上任何一個錢包地址都可以用一個Yat來代替!",
515
+ "learn_more" : "了解更多"
516
}
\ No newline at end of file