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

This commit is contained in:
OleksandrSobol 2021-10-05 14:43:37 +03:00
parent c650435d8c
commit 0e205a1606
21 changed files with 177 additions and 34 deletions

View file

@ -101,7 +101,7 @@ class QRWidget extends StatelessWidget {
),
),
Padding(
padding: EdgeInsets.only(top: 10, bottom: 10),
padding: EdgeInsets.only(top: 8, bottom: 8),
child: Builder(
builder: (context) => Observer(
builder: (context) => GestureDetector(

View file

@ -111,8 +111,7 @@ class ChooseYatAddressButtonsState extends State<ChooseYatAddressButtons> {
if (itemCount > 3) CakeScrollbar(
backgroundHeight: backgroundHeight,
thumbHeight: thumbHeight,
fromTop: fromTop,
//rightOffset: -15
fromTop: fromTop
)
]
);

View file

@ -25,8 +25,8 @@ Future<String> extractAddressFromParsed(
break;
case ParseFrom.yatRecord:
if (parsedAddress.name.isEmpty) {
title = 'Yat error';
content = 'No addresses linked with this Yat. Try another Yat';
title = S.of(context).yat_error;
content = S.of(context).yat_error_content;
address = parsedAddress.addresses.first;
break;
}
@ -39,7 +39,7 @@ Future<String> extractAddressFromParsed(
break;
}
content += '\nPlease choose the address:';
content += S.of(context).choose_address;
address = await showPopUp<String>(
context: context,

View file

@ -6,6 +6,7 @@ import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:cake_wallet/palette.dart';
import 'package:lottie/lottie.dart';
import 'package:cake_wallet/generated/i18n.dart';
class FirstIntroduction extends StatelessWidget {
FirstIntroduction({this.onClose, this.onNext});
@ -39,7 +40,7 @@ class FirstIntroduction extends StatelessWidget {
child: Column(
children: [
Text(
'Send and receive crypto more easily with Yat',
S.of(context).yat_alert_title,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 24,
@ -52,7 +53,7 @@ class FirstIntroduction extends StatelessWidget {
Padding(
padding: EdgeInsets.only(top: 20),
child: Text(
'Cake Wallet users can now send and receive all their favorite currencies with a one-of-a-kind emoji-based username.',
S.of(context).yat_alert_content,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 16,
@ -73,7 +74,7 @@ class FirstIntroduction extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center,
children: [
PrimaryButton(
text: 'Next',
text: S.of(context).restore_next,
textColor: Colors.white,
color: Palette.protectiveBlue,
onPressed: onNext

View file

@ -6,6 +6,7 @@ import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:cake_wallet/palette.dart';
import 'package:lottie/lottie.dart';
import 'package:cake_wallet/generated/i18n.dart';
class SecondIntroduction extends StatelessWidget {
SecondIntroduction({this.onClose, this.onNext});
@ -38,7 +39,7 @@ class SecondIntroduction extends StatelessWidget {
child: Column(
children: [
Text(
'One emoji address to rule them all',
S.of(context).second_intro_title,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 24,
@ -51,7 +52,7 @@ class SecondIntroduction extends StatelessWidget {
Padding(
padding: EdgeInsets.only(top: 20),
child: Text(
'Your Yat is a single unique emoji address that replaces all of your long hexadecimal addresses for all of your currencies.',
S.of(context).second_intro_content,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 16,
@ -72,7 +73,7 @@ class SecondIntroduction extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center,
children: [
PrimaryButton(
text: 'Next',
text: S.of(context).restore_next,
textColor: Colors.white,
color: Palette.protectiveBlue,
onPressed: onNext

View file

@ -6,6 +6,7 @@ import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:cake_wallet/palette.dart';
import 'package:lottie/lottie.dart';
import 'package:cake_wallet/generated/i18n.dart';
class ThirdIntroduction extends StatelessWidget {
ThirdIntroduction({this.onClose, this.onGet, this.onConnect});
@ -39,7 +40,7 @@ class ThirdIntroduction extends StatelessWidget {
child: Column(
children: [
Text(
'Yat plays nicely with others',
S.of(context).third_intro_title,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 24,
@ -52,7 +53,7 @@ class ThirdIntroduction extends StatelessWidget {
Padding(
padding: EdgeInsets.only(top: 20),
child: Text(
'Yats live outside of Cake Wallet, too. Any wallet address on earth can be replaced with a Yat!',
S.of(context).third_intro_content,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 16,
@ -73,7 +74,7 @@ class ThirdIntroduction extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center,
children: [
PrimaryIconButton(
text: 'Get your Yat',
text: S.of(context).get_your_yat,
textColor: Colors.white,
color: Palette.protectiveBlue,
borderColor: Palette.protectiveBlue,
@ -86,7 +87,7 @@ class ThirdIntroduction extends StatelessWidget {
Padding(
padding: EdgeInsets.only(top: 12),
child: PrimaryIconButton(
text: 'Connect an existing Yat',
text: S.of(context).connect_an_existing_yat,
textColor: Colors.black,
color: Palette.blueAlice,
borderColor: Palette.blueAlice,

View file

@ -11,6 +11,7 @@ import 'package:flutter/material.dart';
import 'package:animate_do/animate_do.dart';
import 'package:flutter_mobx/flutter_mobx.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:cake_wallet/generated/i18n.dart';
class YatPopup extends StatelessWidget {
YatPopup({this.dashboardViewModel, this.onClose})
@ -91,7 +92,7 @@ class YatPopup extends StatelessWidget {
child: Column(
children: [
Text(
'Your wallet address can be emojified.',
S.of(context).yat_popup_title,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 24,
@ -104,7 +105,7 @@ class YatPopup extends StatelessWidget {
Padding(
padding: EdgeInsets.only(top: 20),
child: Text(
'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',
S.of(context).yat_popup_content,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 16,
@ -119,7 +120,7 @@ class YatPopup extends StatelessWidget {
)
),
PrimaryButton(
text: 'Learn More',
text: S.of(context).learn_more,
textColor: Colors.white,
color: Palette.protectiveBlue,
onPressed: () => dashboardViewModel

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Holen Sie sich Ihre Yat",
"connect_an_existing_yat" : "Verbinden Sie ein vorhandenes Yat",
"yat_address" : "Yat-Adresse",
"address_from_yat" : "Diese Adresse ist von ${emoji} auf Yat"
"address_from_yat" : "Diese Adresse ist von ${emoji} auf Yat",
"yat_error" : "Yat-Fehler",
"yat_error_content" : "Keine Adressen mit diesem Yat verknüpft. Versuchen Sie es mit einem anderen Yat",
"choose_address" : "\n\nBitte wählen Sie die Adresse:",
"yat_popup_title" : "Ihre Wallet-Adresse kann emojifiziert werden.",
"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",
"second_intro_title" : "Eine Emoji-Adresse, um sie alle zu beherrschen",
"second_intro_content" : "Ihr Yat ist eine einzige eindeutige Emoji-Adresse, die alle Ihre langen hexadezimalen Adressen für alle Ihre Währungen ersetzt.",
"third_intro_title" : "Yat spielt gut mit anderen",
"third_intro_content" : "Yats leben auch außerhalb von Cake Wallet. Jede Wallet-Adresse auf der Welt kann durch ein Yat ersetzt werden!",
"learn_more" : "Erfahren Sie mehr"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Get your Yat",
"connect_an_existing_yat" : "Connect an existing Yat",
"yat_address" : "Yat Address",
"address_from_yat" : "This address is from ${emoji} on Yat"
"address_from_yat" : "This address is from ${emoji} on Yat",
"yat_error" : "Yat error",
"yat_error_content" : "No addresses linked with this Yat. Try another Yat",
"choose_address" : "\n\nPlease choose the address:",
"yat_popup_title" : "Your wallet address can be emojified.",
"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",
"second_intro_title" : "One emoji address to rule them all",
"second_intro_content" : "Your Yat is a single unique emoji address that replaces all of your long hexadecimal addresses for all of your currencies.",
"third_intro_title" : "Yat plays nicely with others",
"third_intro_content" : "Yats live outside of Cake Wallet, too. Any wallet address on earth can be replaced with a Yat!",
"learn_more" : "Learn More"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Obtén tu Yat",
"connect_an_existing_yat" : "Conectar un Yat existente",
"yat_address" : "Dirección de Yat",
"address_from_yat" : "Esta dirección es de ${emoji} en Yat"
"address_from_yat" : "Esta dirección es de ${emoji} en Yat",
"yat_error" : "Error de Yat",
"yat_error_content" : "No hay direcciones vinculadas con este Yat. Prueba con otro Yat",
"choose_address" : "\n\nPor favor elija la dirección:",
"yat_popup_title" : "La dirección de su billetera se puede emojificar.",
"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",
"second_intro_title" : "Una dirección de emoji para gobernarlos a todos",
"second_intro_content" : "Tu Yat es una única dirección emoji única que reemplaza todas tus direcciones hexadecimales largas para todas tus monedas.",
"third_intro_title" : "Yat juega muy bien con otras",
"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!",
"learn_more" : "Aprende más"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "अपना प्राप्त करें Yat",
"connect_an_existing_yat" : "मौजूदा Yat कनेक्ट करें",
"yat_address" : "Yat पता",
"address_from_yat" : "यह पता ${emoji} से है Yat"
"address_from_yat" : "यह पता ${emoji} से है Yat",
"yat_error" : "Yat त्रुटि",
"yat_error_content" : "इसके साथ कोई पता लिंक नहीं है Yat. कोई दूसरा आज़माएं Yat",
"choose_address" : "\n\nकृपया पता चुनें:",
"yat_popup_title" : "आपका वॉलेट पता इमोजी किया जा सकता है।",
"yat_popup_content" : "अब आप क्रिप्टो भेज और प्राप्त कर सकते हैं Cake Wallet अपने Yat के साथ - एक छोटा, इमोजी-आधारित उपयोगकर्ता नाम। सेटिंग स्क्रीन पर किसी भी समय Yats को प्रबंधित करें",
"second_intro_title" : "उन सभी पर राज करने के लिए एक इमोजी पता",
"second_intro_content" : "आपका Yat एक अद्वितीय इमोजी पता है जो आपकी सभी मुद्राओं के लिए आपके सभी लंबे हेक्साडेसिमल पतों को बदल देता है।",
"third_intro_title" : "Yat दूसरों के साथ अच्छा खेलता है",
"third_intro_content" : "Yats Cake Wallet के बाहर भी रहता है। धरती पर किसी भी वॉलेट पते को Yat से बदला जा सकता है!",
"learn_more" : "और अधिक जानें"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Uzmi svoj Yat",
"connect_an_existing_yat" : "Povežite postojeći Yat",
"yat_address" : "Yat adresa",
"address_from_yat" : "To je adresa od ${emoji} na Yat"
"address_from_yat" : "To je adresa od ${emoji} na Yat",
"yat_error" : "Yat pogreška",
"yat_error_content" : "Nema adresa povezanih s ovim Yat -om. Pokušajte s drugim Yat -om",
"choose_address" : "\n\nOdaberite adresu:",
"yat_popup_title" : "Adresa vašeg novčanika može biti emojificirana.",
"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",
"second_intro_title" : "Jedna adresa emojija koja će svima njima vladati",
"second_intro_content" : "Vaš Yat jedinstvena je adresa emojija koja zamjenjuje sve vaše duge heksadecimalne adrese za sve vaše valute.",
"third_intro_title" : "Yat se lijepo igra s drugima",
"third_intro_content" : "Yats žive i izvan Cake Wallet -a. Bilo koja adresa novčanika na svijetu može se zamijeniti Yat!",
"learn_more" : "Saznajte više"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Ottieni il tuo Yat",
"connect_an_existing_yat" : "Collegare un Yat esistente",
"yat_address" : "Indirizzo Yat",
"address_from_yat" : "Questo indirizzo è da ${emoji} in poi Yat"
"address_from_yat" : "Questo indirizzo è da ${emoji} in poi Yat",
"yat_error" : "Yat errore",
"yat_error_content" : "Nessun indirizzo collegato a questo Yat. Prova un altro Yat",
"choose_address" : "\n\nSi prega di scegliere l'indirizzo:",
"yat_popup_title" : "L'indirizzo del tuo portafoglio può essere emoji.",
"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",
"second_intro_title" : "Un indirizzo emoji per domarli tutti",
"second_intro_content" : "Il tuo Yat è un unico indirizzo emoji univoco che sostituisce tutti i tuoi lunghi indirizzi esadecimali per tutte le tue valute.",
"third_intro_title" : "Yat gioca bene con gli altri",
"third_intro_content" : "Anche Yats vive fuori da Cake Wallet. Qualsiasi indirizzo di portafoglio sulla terra può essere sostituito con un Yat!",
"learn_more" : "Impara di più"
}

View file

@ -501,6 +501,16 @@
"yat_alert_content" : "Cake Walletユーザーは、独自の絵文字ベースのユーザー名を使用して、お気に入りのすべての通貨を送受信できるようになりました。",
"get_your_yat" : "あなたのYatを入手してください",
"connect_an_existing_yat" : "既存のYatを接続します",
"yat_address" : "Yat 住所",
"address_from_yat" : "このアドレスは ${emoji} からのものです Yat"
"yat_address" : "Yat住所",
"address_from_yat" : "このアドレスは ${emoji} からのものです Yat",
"yat_error" : "Yatエラー",
"yat_error_content" : "このYatにリンクされているアドレスはありません。別のYatを試してください",
"choose_address" : "\n\n住所を選択してください",
"yat_popup_title" : "あなたの財布のアドレスは絵文字であることができます。",
"yat_popup_content" : "Yat短い絵文字ベースのユーザー名を使用して、CakeWalletで暗号を送受信できるようになりました。 設定画面でいつでもYatsを管理",
"second_intro_title" : "それらすべてを支配する1つの絵文字アドレス",
"second_intro_content" : "Yatは、すべての通貨のすべての長い16進アドレスを置き換える単一の一意の絵文字アドレスです。",
"third_intro_title" : "Yatは他の人とうまく遊ぶ",
"third_intro_content" : "YatsはCakeWalletの外にも住んでいます。 地球上のどのウォレットアドレスもYatに置き換えることができます",
"learn_more" : "もっと詳しく知る"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "당신의 Yat를 얻으십시오",
"connect_an_existing_yat" : "기존 Yat 연결",
"yat_address" : "Yat 주소",
"address_from_yat" : "이 주소는 ${emoji} 의 주소입니다 Yat"
"address_from_yat" : "이 주소는 ${emoji} 의 주소입니다 Yat",
"yat_error" : "Yat 오류",
"yat_error_content" : "이 Yat와 연결된 주소가 없습니다. 다른 Yat 시도",
"choose_address" : "\n\n주소를 선택하십시오:",
"yat_popup_title" : "지갑 주소를 이모티콘으로 만들 수 있습니다.",
"yat_popup_content" : "이제 Yat(이모티콘 기반의 짧은 사용자 이름)으로 Cake Wallet에서 암호화폐를 보내고 받을 수 있습니다. 설정 화면에서 언제든지 Yats 관리",
"second_intro_title" : "그들을 모두 지배하는 하나의 이모티콘 주소",
"second_intro_content" : "귀하의 Yat는 귀하의 모든 통화에 대해 긴 16진수 주소를 모두 대체하는 고유한 단일 이모지 주소입니다.",
"third_intro_title" : "Yat는 다른 사람들과 잘 놉니다.",
"third_intro_content" : "Yats는 Cake Wallet 밖에서도 살고 있습니다. 지구상의 모든 지갑 주소는 Yat!",
"learn_more" : "더 알아보기"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Haal je Yato",
"connect_an_existing_yat" : "Verbind een bestaande Yat",
"yat_address" : "Yat-adres",
"address_from_yat" : "Dit adres is van ${emoji} op Yat"
"address_from_yat" : "Dit adres is van ${emoji} op Yat",
"yat_error" : "Yat fout",
"yat_error_content" : "Geen adressen gekoppeld aan deze Yat. Probeer een andere Yato",
"choose_address" : "\n\nKies het adres:",
"yat_popup_title" : "Uw portemonnee-adres kan worden ge-emojiificeerd.",
"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",
"second_intro_title" : "Eén emoji-adres om ze allemaal te regeren",
"second_intro_content" : "Je Yat is een enkel uniek emoji-adres dat al je lange hexadecimale adressen vervangt voor al je valuta's.",
"third_intro_title" : "Yat speelt leuk met anderen",
"third_intro_content" : "Yats wonen ook buiten Cake Wallet. Elk portemonnee-adres op aarde kan worden vervangen door een Yat!",
"learn_more" : "Kom meer te weten"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Zdobądź swój Yat",
"connect_an_existing_yat" : "Podłącz istniejący Yat",
"yat_address" : "Adres Yat",
"address_from_yat" : "Ten adres jest od ${emoji} na Yat"
"address_from_yat" : "Ten adres jest od ${emoji} na Yat",
"yat_error" : "Pomyłka Yata",
"yat_error_content" : "Brak adresów powiązanych z tym Yat. Wypróbuj inny Yat",
"choose_address" : "\n\nWybierz adres:",
"yat_popup_title" : "Twój adres portfela może być emojified.",
"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ń",
"second_intro_title" : "Jeden adres emoji, aby rządzić nimi wszystkimi",
"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.",
"third_intro_title" : "Yat ładnie bawi się z innymi",
"third_intro_content" : "Yats mieszkają również poza Cake Wallet. Każdy adres portfela na ziemi można zastąpić Yat!",
"learn_more" : "Ucz się więcej"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Pegue seu Yat",
"connect_an_existing_yat" : "Conecte um Yat existente",
"yat_address" : "Endereço Yat",
"address_from_yat" : "Este endereço é de ${emoji} em Yat"
"address_from_yat" : "Este endereço é de ${emoji} em Yat",
"yat_error" : "Yat erro",
"yat_error_content" : "Nenhum endereço vinculado a este Yat. Tente outro Yat",
"choose_address" : "\n\nEscolha o endereço:",
"yat_popup_title" : "O endereço da sua carteira pode ser emojificado.",
"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",
"second_intro_title" : "Um endereço de emoji para governar todos eles",
"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.",
"third_intro_title" : "Yat joga bem com os outros",
"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!",
"learn_more" : "Saber mais"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Получить свой Yat",
"connect_an_existing_yat" : "Подключить существующий Yat",
"yat_address" : "Yat адрес",
"address_from_yat" : "Этот адрес от ${emoji} на Yat"
"address_from_yat" : "Этот адрес от ${emoji} на Yat",
"yat_error" : "Ошибка Yat",
"yat_error_content" : "Нет адресов, связанных с этим Yat. Попробуйте другой Yat",
"choose_address" : "\n\nПожалуйста, выберите адрес:",
"yat_popup_title" : "Адрес вашего кошелька может быть связан с эмодзи",
"yat_popup_content" : "Теперь вы можете отправлять и получать криптовалюту в Cake Wallet с помощью Yat - короткого имени пользователя на основе эмодзи. Управляйте Yat в любое время при помощи экрана настроек",
"second_intro_title" : "Один адрес эмодзи для управления остальными адресами",
"second_intro_content" : "Ваш Yat - это единственный уникальный адрес эмодзи, который заменяет длинные шестнадцатеричные адреса для всех ваших валют.",
"third_intro_title" : "Yat хорошо взаимодействует с другими",
"third_intro_content" : "Yat находятся за пределами Cake Wallet. Любой адрес кошелька на земле можно заменить на Yat!",
"learn_more" : "Узнать больше"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "Одержати свій Yat",
"connect_an_existing_yat" : "Підключити існуючий Yat",
"yat_address" : "Yat адреса",
"address_from_yat" : "Ця адреса від ${emoji} на Yat"
"address_from_yat" : "Ця адреса від ${emoji} на Yat",
"yat_error" : "Помилка Yat",
"yat_error_content" : "Немає адрес, пов'язаних з цим Yat. Спробуйте інший Yat",
"choose_address" : "\n\nБудь ласка, оберіть адресу:",
"yat_popup_title" : "Адреса вашого гаманця може бути пов'язаною з емодзі",
"yat_popup_content" : "Тепер ви можете відправляти і отримувати криптовалюту в Cake Wallet за допомогою Yat - короткого імені користувача на основі емодзі. Керуйте Yat в будь-який час за допомогою екрану налаштувань",
"second_intro_title" : "Одна адреса емодзі для управління іншими адресами",
"second_intro_content" : "Ваш Yat - це єдина унікальна адреса емодзі, яка замінює довгі шістнадцятиричні адреси для всіх ваших валют.",
"third_intro_title" : "Yat добре взаємодіє з іншими",
"third_intro_content" : "Yat знаходиться за межами Cake Wallet. Будь-яку адресу гаманця на землі можна замінити на Yat!",
"learn_more" : "Дізнатися більше"
}

View file

@ -502,5 +502,15 @@
"get_your_yat" : "得到你的 Yat",
"connect_an_existing_yat" : "連接現有 Yat",
"yat_address" : "Yat 地址",
"address_from_yat" : "此地址來自 Yat 上的 ${emoji}"
"address_from_yat" : "此地址來自 Yat 上的 ${emoji}",
"yat_error" : "Yat 誤差",
"yat_error_content" : "沒有與此 Yat 相關聯的地址。 嘗試另一個 Yat",
"choose_address" : "\n\n請選擇地址",
"yat_popup_title" : "您的錢包地址可以被表情化。",
"yat_popup_content" : "您現在可以使用 Yat 在 Cake Wallet 中發送和接收加密貨幣 - 一個基於表情符號的簡短用戶名。 在設置屏幕上隨時管理 Yats",
"second_intro_title" : "一個表情符號地址來統治他們",
"second_intro_content" : "您的 Yat 是一個唯一的表情符號地址,可替換您所有貨幣的所有長十六進制地址。",
"third_intro_title" : "Yat 和別人玩得很好",
"third_intro_content" : "Yats 也住在 Cake Wallet 之外。 地球上任何一個錢包地址都可以用一個Yat來代替",
"learn_more" : "了解更多"
}