mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
Merge pull request #746 from cake-tech/CW-302-Update-Cake-Pay-checkout-wording-for-Bitcoin-only
update cake pay checkout wording for bitcoin only
This commit is contained in:
commit
0f87739ae0
22 changed files with 57 additions and 26 deletions
|
@ -157,7 +157,8 @@ class _IoniaPaymentStatusPageBodyBodyState extends State<_IoniaPaymentStatusPage
|
||||||
Container(
|
Container(
|
||||||
padding: EdgeInsets.only(left: 40, right: 40, bottom: 20),
|
padding: EdgeInsets.only(left: 40, right: 40, bottom: 20),
|
||||||
child: Text(
|
child: Text(
|
||||||
S.of(context).proceed_after_one_minute,
|
widget.viewModel.payingByBitcoin ? S.of(context).bitcoin_payments_require_1_confirmation
|
||||||
|
: S.of(context).proceed_after_one_minute,
|
||||||
style: textMedium(
|
style: textMedium(
|
||||||
color: Theme.of(context).primaryTextTheme!.headline6!.color!,
|
color: Theme.of(context).primaryTextTheme!.headline6!.color!,
|
||||||
).copyWith(fontWeight: FontWeight.w500),
|
).copyWith(fontWeight: FontWeight.w500),
|
||||||
|
|
|
@ -20,17 +20,17 @@ Future<String> extractAddressFromParsed(
|
||||||
break;
|
break;
|
||||||
case ParseFrom.openAlias:
|
case ParseFrom.openAlias:
|
||||||
title = S.of(context).address_detected;
|
title = S.of(context).address_detected;
|
||||||
content = S.of(context).openalias_alert_content('${parsedAddress.name} (OpenAlias)');
|
content = S.of(context).extracted_address_content('${parsedAddress.name} (OpenAlias)');
|
||||||
address = parsedAddress.addresses.first;
|
address = parsedAddress.addresses.first;
|
||||||
break;
|
break;
|
||||||
case ParseFrom.fio:
|
case ParseFrom.fio:
|
||||||
title = S.of(context).address_detected;
|
title = S.of(context).address_detected;
|
||||||
content = S.of(context).openalias_alert_content('${parsedAddress.name} (FIO)');
|
content = S.of(context).extracted_address_content('${parsedAddress.name} (FIO)');
|
||||||
address = parsedAddress.addresses.first;
|
address = parsedAddress.addresses.first;
|
||||||
break;
|
break;
|
||||||
case ParseFrom.twitter:
|
case ParseFrom.twitter:
|
||||||
title = S.of(context).address_detected;
|
title = S.of(context).address_detected;
|
||||||
content = S.of(context).openalias_alert_content('${parsedAddress.name} (Twitter)');
|
content = S.of(context).extracted_address_content('${parsedAddress.name} (Twitter)');
|
||||||
address = parsedAddress.addresses.first;
|
address = parsedAddress.addresses.first;
|
||||||
break;
|
break;
|
||||||
case ParseFrom.yatRecord:
|
case ParseFrom.yatRecord:
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
import 'package:cake_wallet/anypay/any_pay_chain.dart';
|
||||||
import 'package:mobx/mobx.dart';
|
import 'package:mobx/mobx.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:cake_wallet/ionia/ionia_service.dart';
|
import 'package:cake_wallet/ionia/ionia_service.dart';
|
||||||
|
@ -39,6 +40,8 @@ abstract class IoniaPaymentStatusViewModelBase with Store {
|
||||||
|
|
||||||
Timer? get timer => _timer;
|
Timer? get timer => _timer;
|
||||||
|
|
||||||
|
bool get payingByBitcoin => paymentInfo.anyPayPayment.chain == AnyPayChain.btc;
|
||||||
|
|
||||||
Timer? _timer;
|
Timer? _timer;
|
||||||
|
|
||||||
@action
|
@action
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason":"امسح بصمة إصبعك للمصادقة",
|
"biometric_auth_reason":"امسح بصمة إصبعك للمصادقة",
|
||||||
"version":"الإصدار ${currentVersion}",
|
"version":"الإصدار ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content":"سوف ترسل الأموال إلى\n${recipient_name}",
|
"extracted_address_content":"سوف ترسل الأموال إلى\n${recipient_name}",
|
||||||
|
|
||||||
"card_address":"العنوان:",
|
"card_address":"العنوان:",
|
||||||
"buy":"اشتري",
|
"buy":"اشتري",
|
||||||
|
@ -678,6 +678,9 @@
|
||||||
"tor_only":"Tor فقط",
|
"tor_only":"Tor فقط",
|
||||||
"unmatched_currencies": "عملة محفظتك الحالية لا تتطابق مع عملة QR الممسوحة ضوئيًا",
|
"unmatched_currencies": "عملة محفظتك الحالية لا تتطابق مع عملة QR الممسوحة ضوئيًا",
|
||||||
"orbot_running_alert": "يرجى التأكد من تشغيل Orbot قبل الاتصال بهذه العقدة.",
|
"orbot_running_alert": "يرجى التأكد من تشغيل Orbot قبل الاتصال بهذه العقدة.",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "تتطلب مدفوعات Bitcoin تأكيدًا واحدًا ، والذي قد يستغرق 20 دقيقة أو أكثر. شكرا لصبرك! سيتم إرسال بريد إلكتروني إليك عند تأكيد الدفع.",
|
||||||
"send_to_this_address" : "أرسل ${currency} ${tag}إلى هذا العنوان",
|
"send_to_this_address" : "أرسل ${currency} ${tag}إلى هذا العنوان",
|
||||||
"arrive_in_this_address" : "سيصل ${currency} ${tag}إلى هذا العنوان"
|
"arrive_in_this_address" : "سيصل ${currency} ${tag}إلى هذا العنوان",
|
||||||
|
"do_not_send": "لا ترسل",
|
||||||
|
"error_dialog_content": "عفوًا ، لقد حصلنا على بعض الخطأ.\n\nيرجى إرسال تقرير التعطل إلى فريق الدعم لدينا لتحسين التطبيق."
|
||||||
}
|
}
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Scannen Sie Ihren Fingerabdruck zur Authentifizierung",
|
"biometric_auth_reason" : "Scannen Sie Ihren Fingerabdruck zur Authentifizierung",
|
||||||
"version" : "Version ${currentVersion}",
|
"version" : "Version ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Sie senden Geld an\n${recipient_name}",
|
"extracted_address_content" : "Sie senden Geld an\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Adresse:",
|
"card_address" : "Adresse:",
|
||||||
"buy" : "Kaufen",
|
"buy" : "Kaufen",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "Bitte stellen Sie sicher, dass Orbot läuft, bevor Sie sich mit diesem Knoten verbinden.",
|
"orbot_running_alert": "Bitte stellen Sie sicher, dass Orbot läuft, bevor Sie sich mit diesem Knoten verbinden.",
|
||||||
"contact_list_contacts": "Kontakte",
|
"contact_list_contacts": "Kontakte",
|
||||||
"contact_list_wallets": "Meine Geldbörsen",
|
"contact_list_wallets": "Meine Geldbörsen",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Bitcoin-Zahlungen erfordern 1 Bestätigung, was 20 Minuten oder länger dauern kann. Danke für Ihre Geduld! Sie erhalten eine E-Mail, wenn die Zahlung bestätigt ist.",
|
||||||
"send_to_this_address" : "Senden Sie ${currency} ${tag}an diese Adresse",
|
"send_to_this_address" : "Senden Sie ${currency} ${tag}an diese Adresse",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}wird an dieser Adresse ankommen",
|
"arrive_in_this_address" : "${currency} ${tag}wird an dieser Adresse ankommen",
|
||||||
"do_not_send": "Nicht senden",
|
"do_not_send": "Nicht senden",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Scan your fingerprint to authenticate",
|
"biometric_auth_reason" : "Scan your fingerprint to authenticate",
|
||||||
"version" : "Version ${currentVersion}",
|
"version" : "Version ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "You will be sending funds to\n${recipient_name}",
|
"extracted_address_content" : "You will be sending funds to\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Address:",
|
"card_address" : "Address:",
|
||||||
"buy" : "Buy",
|
"buy" : "Buy",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "Please make sure Orbot is running prior to connecting to this node.",
|
"orbot_running_alert": "Please make sure Orbot is running prior to connecting to this node.",
|
||||||
"contact_list_contacts": "Contacts",
|
"contact_list_contacts": "Contacts",
|
||||||
"contact_list_wallets": "My Wallets",
|
"contact_list_wallets": "My Wallets",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Bitcoin payments require 1 confirmation, which can take 20 minutes or longer. Thanks for your patience! You will be emailed when the payment is confirmed.",
|
||||||
"send_to_this_address" : "Send ${currency} ${tag}to this address",
|
"send_to_this_address" : "Send ${currency} ${tag}to this address",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}will arrive in this address",
|
"arrive_in_this_address" : "${currency} ${tag}will arrive in this address",
|
||||||
"do_not_send": "Don't send",
|
"do_not_send": "Don't send",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Escanee su huella digital para autenticar",
|
"biometric_auth_reason" : "Escanee su huella digital para autenticar",
|
||||||
"version" : "Versión ${currentVersion}",
|
"version" : "Versión ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Enviará fondos a\n${recipient_name}",
|
"extracted_address_content" : "Enviará fondos a\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Dirección:",
|
"card_address" : "Dirección:",
|
||||||
"buy" : "Comprar",
|
"buy" : "Comprar",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "Asegúrese de que Orbot se esté ejecutando antes de conectarse a este nodo.",
|
"orbot_running_alert": "Asegúrese de que Orbot se esté ejecutando antes de conectarse a este nodo.",
|
||||||
"contact_list_contacts": "Contactos",
|
"contact_list_contacts": "Contactos",
|
||||||
"contact_list_wallets": "Mis billeteras",
|
"contact_list_wallets": "Mis billeteras",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Los pagos de Bitcoin requieren 1 confirmación, que puede demorar 20 minutos o más. ¡Gracias por su paciencia! Se le enviará un correo electrónico cuando se confirme el pago.",
|
||||||
"send_to_this_address" : "Enviar ${currency} ${tag}a esta dirección",
|
"send_to_this_address" : "Enviar ${currency} ${tag}a esta dirección",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}llegará a esta dirección",
|
"arrive_in_this_address" : "${currency} ${tag}llegará a esta dirección",
|
||||||
"do_not_send": "no enviar",
|
"do_not_send": "no enviar",
|
||||||
|
|
|
@ -396,7 +396,7 @@
|
||||||
"biometric_auth_reason" : "Scannez votre empreinte digitale pour vous authentifier",
|
"biometric_auth_reason" : "Scannez votre empreinte digitale pour vous authentifier",
|
||||||
"version" : "Version ${currentVersion}",
|
"version" : "Version ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Vous allez envoyer des fonds à\n${recipient_name}",
|
"extracted_address_content" : "Vous allez envoyer des fonds à\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Adresse :",
|
"card_address" : "Adresse :",
|
||||||
"buy" : "Acheter",
|
"buy" : "Acheter",
|
||||||
|
@ -678,6 +678,7 @@
|
||||||
"orbot_running_alert": "Veuillez vous assurer qu'Orbot est en cours d'exécution avant de vous connecter à ce nœud.",
|
"orbot_running_alert": "Veuillez vous assurer qu'Orbot est en cours d'exécution avant de vous connecter à ce nœud.",
|
||||||
"contact_list_contacts": "Contacts",
|
"contact_list_contacts": "Contacts",
|
||||||
"contact_list_wallets": "Mes portefeuilles (wallets)",
|
"contact_list_wallets": "Mes portefeuilles (wallets)",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Les paiements Bitcoin nécessitent 1 confirmation, ce qui peut prendre 20 minutes ou plus. Merci pour votre patience! Vous serez averti par e-mail lorsque le paiement sera confirmé.",
|
||||||
"send_to_this_address" : "Envoyez ${currency} ${tag}à cette adresse",
|
"send_to_this_address" : "Envoyez ${currency} ${tag}à cette adresse",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}arrivera à cette adresse",
|
"arrive_in_this_address" : "${currency} ${tag}arrivera à cette adresse",
|
||||||
"do_not_send": "N'envoyez pas",
|
"do_not_send": "N'envoyez pas",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "प्रमाणित करने के लिए अपने फ़िंगरप्रिंट को स्कैन करें",
|
"biometric_auth_reason" : "प्रमाणित करने के लिए अपने फ़िंगरप्रिंट को स्कैन करें",
|
||||||
"version" : "संस्करण ${currentVersion}",
|
"version" : "संस्करण ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "आपको धनराशि भेजी जाएगी\n${recipient_name}",
|
"extracted_address_content" : "आपको धनराशि भेजी जाएगी\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "पता:",
|
"card_address" : "पता:",
|
||||||
"buy" : "खरीदें",
|
"buy" : "खरीदें",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "कृपया सुनिश्चित करें कि इस नोड से कनेक्ट करने से पहले Orbot चल रहा है।",
|
"orbot_running_alert": "कृपया सुनिश्चित करें कि इस नोड से कनेक्ट करने से पहले Orbot चल रहा है।",
|
||||||
"contact_list_contacts": "संपर्क",
|
"contact_list_contacts": "संपर्क",
|
||||||
"contact_list_wallets": "मेरा बटुआ",
|
"contact_list_wallets": "मेरा बटुआ",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "बिटकॉइन भुगतान के लिए 1 पुष्टिकरण की आवश्यकता होती है, जिसमें 20 मिनट या अधिक समय लग सकता है। आपके धैर्य के लिए धन्यवाद! भुगतान की पुष्टि होने पर आपको ईमेल किया जाएगा।",
|
||||||
"send_to_this_address" : "इस पते पर ${currency} ${tag}भेजें",
|
"send_to_this_address" : "इस पते पर ${currency} ${tag}भेजें",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}इस पते पर पहुंचेंगे",
|
"arrive_in_this_address" : "${currency} ${tag}इस पते पर पहुंचेंगे",
|
||||||
"do_not_send": "मत भेजो",
|
"do_not_send": "मत भेजो",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Skenirajte svoj otisak prsta za autentifikaciju",
|
"biometric_auth_reason" : "Skenirajte svoj otisak prsta za autentifikaciju",
|
||||||
"version" : "Verzija ${currentVersion}",
|
"version" : "Verzija ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Poslat ćete sredstva primatelju\n${recipient_name}",
|
"extracted_address_content" : "Poslat ćete sredstva primatelju\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Adresa:",
|
"card_address" : "Adresa:",
|
||||||
"buy" : "Kupi",
|
"buy" : "Kupi",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "Provjerite radi li Orbot prije spajanja na ovaj čvor.",
|
"orbot_running_alert": "Provjerite radi li Orbot prije spajanja na ovaj čvor.",
|
||||||
"contact_list_contacts": "Kontakti",
|
"contact_list_contacts": "Kontakti",
|
||||||
"contact_list_wallets": "Moji novčanici",
|
"contact_list_wallets": "Moji novčanici",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Bitcoin plaćanja zahtijevaju 1 potvrdu, što može potrajati 20 minuta ili dulje. Hvala na Vašem strpljenju! Dobit ćete e-poruku kada plaćanje bude potvrđeno.",
|
||||||
"send_to_this_address" : "Pošaljite ${currency} ${tag}na ovu adresu",
|
"send_to_this_address" : "Pošaljite ${currency} ${tag}na ovu adresu",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}će stići na ovu adresu",
|
"arrive_in_this_address" : "${currency} ${tag}će stići na ovu adresu",
|
||||||
"do_not_send": "Ne šalji",
|
"do_not_send": "Ne šalji",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Scansiona la tua impronta per autenticarti",
|
"biometric_auth_reason" : "Scansiona la tua impronta per autenticarti",
|
||||||
"version" : "Versione ${currentVersion}",
|
"version" : "Versione ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Invierai i tuoi fondi a\n${recipient_name}",
|
"extracted_address_content" : "Invierai i tuoi fondi a\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Indirizzo:",
|
"card_address" : "Indirizzo:",
|
||||||
"buy" : "Comprare",
|
"buy" : "Comprare",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "Assicurati che Orbot sia in esecuzione prima di connetterti a questo nodo.",
|
"orbot_running_alert": "Assicurati che Orbot sia in esecuzione prima di connetterti a questo nodo.",
|
||||||
"contact_list_contacts": "Contatti",
|
"contact_list_contacts": "Contatti",
|
||||||
"contact_list_wallets": "I miei portafogli",
|
"contact_list_wallets": "I miei portafogli",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "I pagamenti in bitcoin richiedono 1 conferma, che può richiedere 20 minuti o più. Grazie per la vostra pazienza! Riceverai un'e-mail quando il pagamento sarà confermato.",
|
||||||
"send_to_this_address" : "Invia ${currency} ${tag}a questo indirizzo",
|
"send_to_this_address" : "Invia ${currency} ${tag}a questo indirizzo",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}arriverà a questo indirizzo",
|
"arrive_in_this_address" : "${currency} ${tag}arriverà a questo indirizzo",
|
||||||
"do_not_send": "Non inviare",
|
"do_not_send": "Non inviare",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "प指紋をスキャンして認証する",
|
"biometric_auth_reason" : "प指紋をスキャンして認証する",
|
||||||
"version" : "バージョン ${currentVersion}",
|
"version" : "バージョン ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "に送金します\n${recipient_name}",
|
"extracted_address_content" : "に送金します\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "住所:",
|
"card_address" : "住所:",
|
||||||
"buy" : "購入",
|
"buy" : "購入",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "このノードに接続する前に、Orbot が実行されていることを確認してください",
|
"orbot_running_alert": "このノードに接続する前に、Orbot が実行されていることを確認してください",
|
||||||
"contact_list_contacts": "連絡先",
|
"contact_list_contacts": "連絡先",
|
||||||
"contact_list_wallets": "マイウォレット",
|
"contact_list_wallets": "マイウォレット",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "ビットコインの支払いには 1 回の確認が必要で、これには 20 分以上かかる場合があります。お待ち頂きまして、ありがとうございます!支払いが確認されると、メールが送信されます。",
|
||||||
"send_to_this_address" : "${currency} ${tag}をこのアドレスに送金",
|
"send_to_this_address" : "${currency} ${tag}をこのアドレスに送金",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}はこの住所に到着します",
|
"arrive_in_this_address" : "${currency} ${tag}はこの住所に到着します",
|
||||||
"do_not_send": "送信しない",
|
"do_not_send": "送信しない",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "지문을 스캔하여 인증",
|
"biometric_auth_reason" : "지문을 스캔하여 인증",
|
||||||
"version" : "버전 ${currentVersion}",
|
"version" : "버전 ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "당신은에 자금을 보낼 것입니다\n${recipient_name}",
|
"extracted_address_content" : "당신은에 자금을 보낼 것입니다\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "주소:",
|
"card_address" : "주소:",
|
||||||
"buy" : "구입",
|
"buy" : "구입",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "이 노드에 연결하기 전에 Orbot이 실행 중인지 확인하십시오.",
|
"orbot_running_alert": "이 노드에 연결하기 전에 Orbot이 실행 중인지 확인하십시오.",
|
||||||
"contact_list_contacts": "콘택트 렌즈",
|
"contact_list_contacts": "콘택트 렌즈",
|
||||||
"contact_list_wallets": "내 지갑",
|
"contact_list_wallets": "내 지갑",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "비트코인 결제는 1번의 확인이 필요하며 20분 이상이 소요될 수 있습니다. 기다려 주셔서 감사합니다! 결제가 확인되면 이메일이 전송됩니다.",
|
||||||
"send_to_this_address" : "이 주소로 ${currency} ${tag}송금",
|
"send_to_this_address" : "이 주소로 ${currency} ${tag}송금",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}이(가) 이 주소로 도착합니다",
|
"arrive_in_this_address" : "${currency} ${tag}이(가) 이 주소로 도착합니다",
|
||||||
"do_not_send": "보내지 마세요",
|
"do_not_send": "보내지 마세요",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "စစ်မှန်ကြောင်းအထောက်အထားပြရန် သင့်လက်ဗွေကို စကန်ဖတ်ပါ။",
|
"biometric_auth_reason" : "စစ်မှန်ကြောင်းအထောက်အထားပြရန် သင့်လက်ဗွေကို စကန်ဖတ်ပါ။",
|
||||||
"version" : "ဗားရှင်း ${currentVersion}",
|
"version" : "ဗားရှင်း ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "သင်သည် \n${recipient_name} သို့ ရန်ပုံငွေများ ပေးပို့ပါမည်",
|
"extracted_address_content" : "သင်သည် \n${recipient_name} သို့ ရန်ပုံငွေများ ပေးပို့ပါမည်",
|
||||||
|
|
||||||
"card_address" : "လိပ်စာ-",
|
"card_address" : "လိပ်စာ-",
|
||||||
"buy" : "ဝယ်ပါ။",
|
"buy" : "ဝယ်ပါ။",
|
||||||
|
@ -677,8 +677,12 @@
|
||||||
"enabled" : "ဖွင့်ထားသည်။",
|
"enabled" : "ဖွင့်ထားသည်။",
|
||||||
"tor_only" : "Tor သာ",
|
"tor_only" : "Tor သာ",
|
||||||
"unmatched_currencies" : "သင့်လက်ရှိပိုက်ဆံအိတ်၏ငွေကြေးသည် စကင်ဖတ်ထားသော QR နှင့် မကိုက်ညီပါ။",
|
"unmatched_currencies" : "သင့်လက်ရှိပိုက်ဆံအိတ်၏ငွေကြေးသည် စကင်ဖတ်ထားသော QR နှင့် မကိုက်ညီပါ။",
|
||||||
|
"orbot_running_alert": "ဤ node သို့မချိတ်ဆက်မီ Orbot အလုပ်လုပ်နေကြောင်း သေချာပါစေ။",
|
||||||
"contact_list_contacts" : "အဆက်အသွယ်များ",
|
"contact_list_contacts" : "အဆက်အသွယ်များ",
|
||||||
"contact_list_wallets" : "ကျွန်ုပ်၏ ပိုက်ဆံအိတ်များ",
|
"contact_list_wallets" : "ကျွန်ုပ်၏ ပိုက်ဆံအိတ်များ",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Bitcoin ငွေပေးချေမှုများသည် မိနစ် 20 သို့မဟုတ် ထို့ထက်ပိုကြာနိုင်သည် 1 အတည်ပြုချက် လိုအပ်သည်။ မင်းရဲ့စိတ်ရှည်မှုအတွက် ကျေးဇူးတင်ပါတယ်။ ငွေပေးချေမှုကို အတည်ပြုပြီးသောအခါ သင့်ထံ အီးမေးလ်ပို့ပါမည်။",
|
||||||
"send_to_this_address" : "ဤလိပ်စာသို့ ${currency} ${tag}သို့ ပို့ပါ။",
|
"send_to_this_address" : "ဤလိပ်စာသို့ ${currency} ${tag}သို့ ပို့ပါ။",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}ဤလိပ်စာသို့ ရောက်ရှိပါမည်။"
|
"arrive_in_this_address" : "${currency} ${tag}ဤလိပ်စာသို့ ရောက်ရှိပါမည်။",
|
||||||
|
"do_not_send": "မပို့ပါနှင့်",
|
||||||
|
"error_dialog_content": "အိုး၊ ကျွန်ုပ်တို့တွင် အမှားအယွင်းအချို့ရှိသည်။\n\nအပလီကေးရှင်းကို ပိုမိုကောင်းမွန်စေရန်အတွက် ပျက်စီးမှုအစီရင်ခံစာကို ကျွန်ုပ်တို့၏ပံ့ပိုးကူညီရေးအဖွဲ့ထံ ပေးပို့ပါ။"
|
||||||
}
|
}
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Scan uw vingerafdruk om te verifiëren",
|
"biometric_auth_reason" : "Scan uw vingerafdruk om te verifiëren",
|
||||||
"version" : "Versie ${currentVersion}",
|
"version" : "Versie ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "U stuurt geld naar\n${recipient_name}",
|
"extracted_address_content" : "U stuurt geld naar\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Adres:",
|
"card_address" : "Adres:",
|
||||||
"buy" : "Kopen",
|
"buy" : "Kopen",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "Zorg ervoor dat Orbot actief is voordat u verbinding maakt met dit knooppunt.",
|
"orbot_running_alert": "Zorg ervoor dat Orbot actief is voordat u verbinding maakt met dit knooppunt.",
|
||||||
"contact_list_contacts": "Contacten",
|
"contact_list_contacts": "Contacten",
|
||||||
"contact_list_wallets": "Mijn portefeuilles",
|
"contact_list_wallets": "Mijn portefeuilles",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Bitcoin-betalingen vereisen 1 bevestiging, wat 20 minuten of langer kan duren. Dank voor uw geduld! U ontvangt een e-mail wanneer de betaling is bevestigd.",
|
||||||
"send_to_this_address" : "Stuur ${currency} ${tag}naar dit adres",
|
"send_to_this_address" : "Stuur ${currency} ${tag}naar dit adres",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}komt aan op dit adres",
|
"arrive_in_this_address" : "${currency} ${tag}komt aan op dit adres",
|
||||||
"do_not_send": "Niet sturen",
|
"do_not_send": "Niet sturen",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Zeskanuj swój odcisk palca, aby uwierzytelnić",
|
"biometric_auth_reason" : "Zeskanuj swój odcisk palca, aby uwierzytelnić",
|
||||||
"version" : "Wersja ${currentVersion}",
|
"version" : "Wersja ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Wysyłasz środki na\n${recipient_name}",
|
"extracted_address_content" : "Wysyłasz środki na\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Adres:",
|
"card_address" : "Adres:",
|
||||||
"buy" : "Kup",
|
"buy" : "Kup",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "Upewnij się, że Orbot działa przed połączeniem z tym węzłem.",
|
"orbot_running_alert": "Upewnij się, że Orbot działa przed połączeniem z tym węzłem.",
|
||||||
"contact_list_contacts": "Łączność",
|
"contact_list_contacts": "Łączność",
|
||||||
"contact_list_wallets": "Moje portfele",
|
"contact_list_wallets": "Moje portfele",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Płatności Bitcoin wymagają 1 potwierdzenia, co może zająć 20 minut lub dłużej. Dziękuję za cierpliwość! Otrzymasz wiadomość e-mail, gdy płatność zostanie potwierdzona.",
|
||||||
"send_to_this_address" : "Wyślij ${currency} ${tag}na ten adres",
|
"send_to_this_address" : "Wyślij ${currency} ${tag}na ten adres",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}dotrze na ten adres",
|
"arrive_in_this_address" : "${currency} ${tag}dotrze na ten adres",
|
||||||
"do_not_send": "Nie wysyłaj",
|
"do_not_send": "Nie wysyłaj",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Digitalize sua impressão digital para autenticar",
|
"biometric_auth_reason" : "Digitalize sua impressão digital para autenticar",
|
||||||
"version" : "Versão ${currentVersion}",
|
"version" : "Versão ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Você enviará fundos para\n${recipient_name}",
|
"extracted_address_content" : "Você enviará fundos para\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Endereço:",
|
"card_address" : "Endereço:",
|
||||||
"buy" : "Comprar",
|
"buy" : "Comprar",
|
||||||
|
@ -679,6 +679,7 @@
|
||||||
"orbot_running_alert": "Certifique-se de que o Orbot esteja em execução antes de se conectar a este nó.",
|
"orbot_running_alert": "Certifique-se de que o Orbot esteja em execução antes de se conectar a este nó.",
|
||||||
"contact_list_contacts": "Contatos",
|
"contact_list_contacts": "Contatos",
|
||||||
"contact_list_wallets": "minhas carteiras",
|
"contact_list_wallets": "minhas carteiras",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Os pagamentos em Bitcoin exigem 1 confirmação, o que pode levar 20 minutos ou mais. Obrigado pela sua paciência! Você receberá um e-mail quando o pagamento for confirmado.",
|
||||||
"send_to_this_address" : "Envie ${currency} ${tag}para este endereço",
|
"send_to_this_address" : "Envie ${currency} ${tag}para este endereço",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}chegará neste endereço",
|
"arrive_in_this_address" : "${currency} ${tag}chegará neste endereço",
|
||||||
"do_not_send": "não envie",
|
"do_not_send": "não envie",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Отсканируйте свой отпечаток пальца для аутентификации",
|
"biometric_auth_reason" : "Отсканируйте свой отпечаток пальца для аутентификации",
|
||||||
"version" : "Версия ${currentVersion}",
|
"version" : "Версия ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Вы будете отправлять средства\n${recipient_name}",
|
"extracted_address_content" : "Вы будете отправлять средства\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Адрес:",
|
"card_address" : "Адрес:",
|
||||||
"buy" : "Купить",
|
"buy" : "Купить",
|
||||||
|
@ -680,6 +680,7 @@
|
||||||
"orbot_running_alert": "Перед подключением к этому узлу убедитесь, что Orbot запущен.",
|
"orbot_running_alert": "Перед подключением к этому узлу убедитесь, что Orbot запущен.",
|
||||||
"contact_list_contacts": "Контакты",
|
"contact_list_contacts": "Контакты",
|
||||||
"contact_list_wallets": "Мои кошельки",
|
"contact_list_wallets": "Мои кошельки",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Биткойн-платежи требуют 1 подтверждения, что может занять 20 минут или дольше. Спасибо тебе за твое терпение! Вы получите электронное письмо, когда платеж будет подтвержден.",
|
||||||
"send_to_this_address" : "Отправить ${currency} ${tag}на этот адрес",
|
"send_to_this_address" : "Отправить ${currency} ${tag}на этот адрес",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}придет на этот адрес",
|
"arrive_in_this_address" : "${currency} ${tag}придет на этот адрес",
|
||||||
"do_not_send": "Не отправлять",
|
"do_not_send": "Не отправлять",
|
||||||
|
|
|
@ -396,7 +396,7 @@
|
||||||
"biometric_auth_reason" : "สแกนลายนิ้วมือของคุณเพื่อยืนยันตัวตน",
|
"biometric_auth_reason" : "สแกนลายนิ้วมือของคุณเพื่อยืนยันตัวตน",
|
||||||
"version" : "เวอร์ชัน ${currentVersion}",
|
"version" : "เวอร์ชัน ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "คุณกำลังจะส่งเงินไปยัง\n${recipient_name}",
|
"extracted_address_content" : "คุณกำลังจะส่งเงินไปยัง\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "ที่อยู่:",
|
"card_address" : "ที่อยู่:",
|
||||||
"buy" : "ซื้อ",
|
"buy" : "ซื้อ",
|
||||||
|
@ -678,6 +678,7 @@
|
||||||
"orbot_running_alert": "โปรดตรวจสอบว่า Orbot กำลังทำงานก่อนที่จะเชื่อมต่อกับโหนดนี้",
|
"orbot_running_alert": "โปรดตรวจสอบว่า Orbot กำลังทำงานก่อนที่จะเชื่อมต่อกับโหนดนี้",
|
||||||
"contact_list_contacts": "ติดต่อ",
|
"contact_list_contacts": "ติดต่อ",
|
||||||
"contact_list_wallets": "กระเป๋าเงินของฉัน",
|
"contact_list_wallets": "กระเป๋าเงินของฉัน",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "การชำระเงินด้วย Bitcoin ต้องการการยืนยัน 1 ครั้ง ซึ่งอาจใช้เวลา 20 นาทีหรือนานกว่านั้น ขอบคุณสำหรับความอดทนของคุณ! คุณจะได้รับอีเมลเมื่อการชำระเงินได้รับการยืนยัน",
|
||||||
"send_to_this_address" : "ส่ง ${currency} ${tag}ไปยังที่อยู่นี้",
|
"send_to_this_address" : "ส่ง ${currency} ${tag}ไปยังที่อยู่นี้",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}จะมาถึงที่อยู่นี้",
|
"arrive_in_this_address" : "${currency} ${tag}จะมาถึงที่อยู่นี้",
|
||||||
"do_not_send": "อย่าส่ง",
|
"do_not_send": "อย่าส่ง",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "Kimlik doğrulaması için parmak izini okutun",
|
"biometric_auth_reason" : "Kimlik doğrulaması için parmak izini okutun",
|
||||||
"version" : "Sürüm ${currentVersion}",
|
"version" : "Sürüm ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Parayı buraya gönderceksin:\n${recipient_name}",
|
"extracted_address_content" : "Parayı buraya gönderceksin:\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Adres:",
|
"card_address" : "Adres:",
|
||||||
"buy" : "Alış",
|
"buy" : "Alış",
|
||||||
|
@ -677,8 +677,12 @@
|
||||||
"enabled": "Etkin",
|
"enabled": "Etkin",
|
||||||
"tor_only": "Yalnızca Tor",
|
"tor_only": "Yalnızca Tor",
|
||||||
"unmatched_currencies": "Mevcut cüzdanınızın para birimi taranan QR ile eşleşmiyor",
|
"unmatched_currencies": "Mevcut cüzdanınızın para birimi taranan QR ile eşleşmiyor",
|
||||||
|
"orbot_running_alert": "Lütfen bu düğüme bağlanmadan önce Orbot'un çalıştığından emin olun.",
|
||||||
"contact_list_contacts": "Rehberim",
|
"contact_list_contacts": "Rehberim",
|
||||||
"contact_list_wallets": "Cüzdanlarım",
|
"contact_list_wallets": "Cüzdanlarım",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Bitcoin ödemeleri, 20 dakika veya daha uzun sürebilen 1 onay gerektirir. Sabrınız için teşekkürler! Ödeme onaylandığında e-posta ile bilgilendirileceksiniz.",
|
||||||
"send_to_this_address" : "Bu adrese ${currency} ${tag}gönder",
|
"send_to_this_address" : "Bu adrese ${currency} ${tag}gönder",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}bu adrese ulaşacak"
|
"arrive_in_this_address" : "${currency} ${tag}bu adrese ulaşacak",
|
||||||
|
"do_not_send": "Gönderme",
|
||||||
|
"error_dialog_content": "Hay aksi, bir hatamız var.\n\nUygulamayı daha iyi hale getirmek için lütfen kilitlenme raporunu destek ekibimize gönderin."
|
||||||
}
|
}
|
||||||
|
|
|
@ -397,7 +397,7 @@
|
||||||
"biometric_auth_reason" : "Відскануйте свій відбиток пальця для аутентифікації",
|
"biometric_auth_reason" : "Відскануйте свій відбиток пальця для аутентифікації",
|
||||||
"version" : "Версія ${currentVersion}",
|
"version" : "Версія ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "Ви будете відправляти кошти\n${recipient_name}",
|
"extracted_address_content" : "Ви будете відправляти кошти\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "Адреса:",
|
"card_address" : "Адреса:",
|
||||||
"buy" : "Купити",
|
"buy" : "Купити",
|
||||||
|
@ -679,6 +679,7 @@
|
||||||
"orbot_running_alert": "Перед підключенням до цього вузла переконайтеся, що Orbot запущено.",
|
"orbot_running_alert": "Перед підключенням до цього вузла переконайтеся, що Orbot запущено.",
|
||||||
"contact_list_contacts": "Контакти",
|
"contact_list_contacts": "Контакти",
|
||||||
"contact_list_wallets": "Мої гаманці",
|
"contact_list_wallets": "Мої гаманці",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "Платежі Bitcoin потребують 1 підтвердження, яке може зайняти 20 хвилин або більше. Дякую за Ваше терпіння! Ви отримаєте електронний лист, коли платіж буде підтверджено.",
|
||||||
"send_to_this_address" : "Надіслати ${currency} ${tag}на цю адресу",
|
"send_to_this_address" : "Надіслати ${currency} ${tag}на цю адресу",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}надійде на цю адресу",
|
"arrive_in_this_address" : "${currency} ${tag}надійде на цю адресу",
|
||||||
"do_not_send": "Не надсилайте",
|
"do_not_send": "Не надсилайте",
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
"biometric_auth_reason" : "扫描指纹进行身份认证",
|
"biometric_auth_reason" : "扫描指纹进行身份认证",
|
||||||
"version" : "版本 ${currentVersion}",
|
"version" : "版本 ${currentVersion}",
|
||||||
|
|
||||||
"openalias_alert_content" : "您将汇款至\n${recipient_name}",
|
"extracted_address_content" : "您将汇款至\n${recipient_name}",
|
||||||
|
|
||||||
"card_address" : "地址:",
|
"card_address" : "地址:",
|
||||||
"buy" : "购买",
|
"buy" : "购买",
|
||||||
|
@ -678,6 +678,7 @@
|
||||||
"orbot_running_alert": "请确保 Orbot 在连接到此节点之前正在运行。",
|
"orbot_running_alert": "请确保 Orbot 在连接到此节点之前正在运行。",
|
||||||
"contact_list_contacts": "联系人",
|
"contact_list_contacts": "联系人",
|
||||||
"contact_list_wallets": "我的钱包",
|
"contact_list_wallets": "我的钱包",
|
||||||
|
"bitcoin_payments_require_1_confirmation": "比特币支付需要 1 次确认,这可能需要 20 分钟或更长时间。谢谢你的耐心!确认付款后,您将收到电子邮件。",
|
||||||
"send_to_this_address" : "发送 ${currency} ${tag}到这个地址",
|
"send_to_this_address" : "发送 ${currency} ${tag}到这个地址",
|
||||||
"arrive_in_this_address" : "${currency} ${tag}将到达此地址",
|
"arrive_in_this_address" : "${currency} ${tag}将到达此地址",
|
||||||
"do_not_send": "不要发送",
|
"do_not_send": "不要发送",
|
||||||
|
|
Loading…
Reference in a new issue