From 44bb6263962989d848dea62597b97a3b6d7cdbf5 Mon Sep 17 00:00:00 2001 From: barrystyle Date: Sat, 15 Jun 2019 17:23:22 +0800 Subject: [PATCH] change URI referencing bitcoin to nyc3 --- src/qt/forms/sendcoinsentry.ui | 2 +- src/qt/guiutil.cpp | 10 +++++----- src/qt/locale/nyc3_af.ts | 8 ++++---- src/qt/locale/nyc3_af_ZA.ts | 8 ++++---- src/qt/locale/nyc3_ar.ts | 6 +++--- src/qt/locale/nyc3_be_BY.ts | 4 ++-- src/qt/locale/nyc3_bg.ts | 4 ++-- src/qt/locale/nyc3_ca.ts | 10 +++++----- src/qt/locale/nyc3_ca@valencia.ts | 10 +++++----- src/qt/locale/nyc3_ca_ES.ts | 10 +++++----- src/qt/locale/nyc3_cs.ts | 12 ++++++------ src/qt/locale/nyc3_cy.ts | 6 +++--- src/qt/locale/nyc3_da.ts | 6 +++--- src/qt/locale/nyc3_de.ts | 6 +++--- src/qt/locale/nyc3_el_GR.ts | 6 +++--- src/qt/locale/nyc3_en.ts | 6 +++--- src/qt/locale/nyc3_en_GB.ts | 12 ++++++------ src/qt/locale/nyc3_eo.ts | 4 ++-- src/qt/locale/nyc3_es.ts | 6 +++--- src/qt/locale/nyc3_es_CL.ts | 4 ++-- src/qt/locale/nyc3_es_CO.ts | 8 ++++---- src/qt/locale/nyc3_es_DO.ts | 6 +++--- src/qt/locale/nyc3_es_ES.ts | 6 +++--- src/qt/locale/nyc3_et.ts | 4 ++-- src/qt/locale/nyc3_fa.ts | 4 ++-- src/qt/locale/nyc3_fa_IR.ts | 4 ++-- src/qt/locale/nyc3_fi.ts | 12 ++++++------ src/qt/locale/nyc3_fr.ts | 6 +++--- src/qt/locale/nyc3_fr_FR.ts | 8 ++++---- src/qt/locale/nyc3_gl.ts | 8 ++++---- src/qt/locale/nyc3_he.ts | 6 +++--- src/qt/locale/nyc3_hr.ts | 10 +++++----- src/qt/locale/nyc3_hu.ts | 4 ++-- src/qt/locale/nyc3_id.ts | 8 ++++---- src/qt/locale/nyc3_id_ID.ts | 6 +++--- src/qt/locale/nyc3_is.ts | 8 ++++---- src/qt/locale/nyc3_it.ts | 10 +++++----- src/qt/locale/nyc3_it_IT.ts | 8 ++++---- src/qt/locale/nyc3_ja.ts | 12 ++++++------ src/qt/locale/nyc3_ka.ts | 8 ++++---- src/qt/locale/nyc3_ko_KR.ts | 12 ++++++------ src/qt/locale/nyc3_lv_LV.ts | 6 +++--- src/qt/locale/nyc3_ms_MY.ts | 4 ++-- src/qt/locale/nyc3_nb.ts | 8 ++++---- src/qt/locale/nyc3_ne.ts | 2 +- src/qt/locale/nyc3_nl.ts | 12 ++++++------ src/qt/locale/nyc3_pl.ts | 6 +++--- src/qt/locale/nyc3_pt_BR.ts | 12 ++++++------ src/qt/locale/nyc3_pt_PT.ts | 8 ++++---- src/qt/locale/nyc3_ro.ts | 8 ++++---- src/qt/locale/nyc3_ro_RO.ts | 8 ++++---- src/qt/locale/nyc3_ru_RU.ts | 6 +++--- src/qt/locale/nyc3_sk.ts | 10 +++++----- src/qt/locale/nyc3_sl_SI.ts | 6 +++--- src/qt/locale/nyc3_sr.ts | 4 ++-- src/qt/locale/nyc3_sr@latin.ts | 4 ++-- src/qt/locale/nyc3_sv.ts | 8 ++++---- src/qt/locale/nyc3_szl.ts | 6 +++--- src/qt/locale/nyc3_ta.ts | 4 ++-- src/qt/locale/nyc3_th_TH.ts | 8 ++++---- src/qt/locale/nyc3_tr.ts | 8 ++++---- src/qt/locale/nyc3_uk.ts | 10 +++++----- src/qt/locale/nyc3_uz@Cyrl.ts | 4 ++-- src/qt/locale/nyc3_vi.ts | 12 ++++++------ src/qt/locale/nyc3_vi_VN.ts | 4 ++-- src/qt/locale/nyc3_zh.ts | 4 ++-- src/qt/locale/nyc3_zh_CN.ts | 10 +++++----- src/qt/locale/nyc3_zh_HK.ts | 4 ++-- src/qt/locale/nyc3_zh_TW.ts | 6 +++--- src/qt/nyc3.cpp | 2 +- src/qt/nyc3gui.cpp | 4 ++-- src/qt/paymentserver.cpp | 10 +++++----- src/qt/paymentserver.h | 2 +- src/qt/recentrequeststablemodel.h | 2 +- 74 files changed, 255 insertions(+), 255 deletions(-) diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui index 83bdb61d7..0abde9b4d 100644 --- a/src/qt/forms/sendcoinsentry.ui +++ b/src/qt/forms/sendcoinsentry.ui @@ -199,7 +199,7 @@ - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Qt::PlainText diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index bc6667782..d0741d7d8 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -112,8 +112,8 @@ void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent) bool parseNYC3URI(const QUrl &uri, SendCoinsRecipient *out) { - // return if URI is not valid or is no bitcoin: URI - if(!uri.isValid() || uri.scheme() != QString("bitcoin")) + // return if URI is not valid or is no nyc3: URI + if(!uri.isValid() || uri.scheme() != QString("nyc3")) return false; SendCoinsRecipient rv; @@ -175,7 +175,7 @@ bool parseNYC3URI(QString uri, SendCoinsRecipient *out) QString formatNYC3URI(const SendCoinsRecipient &info) { - QString ret = QString("bitcoin:%1").arg(info.address); + QString ret = QString("nyc3:%1").arg(info.address); int paramCount = 0; if (info.amount) @@ -622,8 +622,8 @@ fs::path static GetAutostartFilePath() { std::string chain = gArgs.GetChainName(); if (chain == CBaseChainParams::MAIN) - return GetAutostartDir() / "bitcoin.desktop"; - return GetAutostartDir() / strprintf("bitcoin-%s.lnk", chain); + return GetAutostartDir() / "nyc3.desktop"; + return GetAutostartDir() / strprintf("nyc3-%s.lnk", chain); } bool GetStartOnSystemStartup() diff --git a/src/qt/locale/nyc3_af.ts b/src/qt/locale/nyc3_af.ts index a1b11e916..a841deb30 100644 --- a/src/qt/locale/nyc3_af.ts +++ b/src/qt/locale/nyc3_af.ts @@ -394,8 +394,8 @@ Orebalk - Request payments (generates QR codes and bitcoin: URIs) - Versoek betalings (genereer QR-kodes en bitcoin: URI's) + Request payments (generates QR codes and nyc3: URIs) + Versoek betalings (genereer QR-kodes en nyc3: URI's) Show the list of used sending addresses and labels @@ -406,8 +406,8 @@ Vertoon die lys van gebruikte ontvangers-adresse en etikette - Open a bitcoin: URI or payment request - Skep 'n bitcoin: URI of betalingsversoek + Open a nyc3: URI or payment request + Skep 'n nyc3: URI of betalingsversoek &Command-line options diff --git a/src/qt/locale/nyc3_af_ZA.ts b/src/qt/locale/nyc3_af_ZA.ts index 2c7f84199..685be2245 100644 --- a/src/qt/locale/nyc3_af_ZA.ts +++ b/src/qt/locale/nyc3_af_ZA.ts @@ -398,8 +398,8 @@ Blad nutsbalk - Request payments (generates QR codes and bitcoin: URIs) - Versoek betalings (genereer QR kodes en bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Versoek betalings (genereer QR kodes en nyc3: URIs) Show the list of used sending addresses and labels @@ -410,8 +410,8 @@ Wys die lys van gebruikte ontvangsadresse en etikette - Open a bitcoin: URI or payment request - Open 'n bitcoin: URI of betalingsversoek + Open a nyc3: URI or payment request + Open 'n nyc3: URI of betalingsversoek &Command-line options diff --git a/src/qt/locale/nyc3_ar.ts b/src/qt/locale/nyc3_ar.ts index 91994f797..1fb6a7783 100644 --- a/src/qt/locale/nyc3_ar.ts +++ b/src/qt/locale/nyc3_ar.ts @@ -406,7 +406,7 @@ شريط أدوات علامات التبويب - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) أطلب دفعات (يولد كودات الرمز المربع وبيت كوين: العناوين المعطاة) @@ -418,7 +418,7 @@ عرض قائمة عناوين الإستقبال المستخدمة والملصقات - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request فتح URI : NYC3 أو طلب دفع @@ -2214,7 +2214,7 @@ أدخل تسمية لهذا العنوان لإضافته إلى قائمة العناوين المستخدمة - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. الرسالة التي تم إرفاقها مع البتكوين: العنوان الذي سيتم تخزينه مع المعاملة للرجوع إليه. ملاحظة: لن يتم إرسال هذه الرسالة عبر شبكة البتكوين. diff --git a/src/qt/locale/nyc3_be_BY.ts b/src/qt/locale/nyc3_be_BY.ts index a74905260..db02beb15 100644 --- a/src/qt/locale/nyc3_be_BY.ts +++ b/src/qt/locale/nyc3_be_BY.ts @@ -358,7 +358,7 @@ Дапамога - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Запатрабаваць плацёж (генеруецца QR-код для біткойн URI) @@ -370,7 +370,7 @@ Паказаць спіс адрасоў і метак для прымання - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Адкрыць біткойн: URI ці запыт плацяжу diff --git a/src/qt/locale/nyc3_bg.ts b/src/qt/locale/nyc3_bg.ts index 3adecadde..bc6a33e95 100644 --- a/src/qt/locale/nyc3_bg.ts +++ b/src/qt/locale/nyc3_bg.ts @@ -406,7 +406,7 @@ Раздели - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Изискване на плащания(генерира QR кодове и биткойн: URIs) @@ -418,7 +418,7 @@ Покажи списък с използваните адреси и имена. - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Отворете биткойн: URI или заявка за плащане diff --git a/src/qt/locale/nyc3_ca.ts b/src/qt/locale/nyc3_ca.ts index 19eb7646d..45a7d9dfe 100644 --- a/src/qt/locale/nyc3_ca.ts +++ b/src/qt/locale/nyc3_ca.ts @@ -410,8 +410,8 @@ Barra d'eines de les pestanyes - Request payments (generates QR codes and bitcoin: URIs) - Sol·licita pagaments (genera codis QR i bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Sol·licita pagaments (genera codis QR i nyc3: URI) Show the list of used sending addresses and labels @@ -422,7 +422,7 @@ Mostra la llista d'adreces de recepció i etiquetes utilitzades - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Obre una bitcoin: sol·licitud d'URI o pagament @@ -2318,8 +2318,8 @@ Nota: Com que la comissió es calcula en funció dels bytes, una comissió de "1 Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Un missatge que s'ha adjuntat al nyc3: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3. Pay To: diff --git a/src/qt/locale/nyc3_ca@valencia.ts b/src/qt/locale/nyc3_ca@valencia.ts index a52201309..ab4e55154 100644 --- a/src/qt/locale/nyc3_ca@valencia.ts +++ b/src/qt/locale/nyc3_ca@valencia.ts @@ -362,8 +362,8 @@ Barra d'eines de les pestanyes - Request payments (generates QR codes and bitcoin: URIs) - Sol·licita pagaments (genera codis QR i bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Sol·licita pagaments (genera codis QR i nyc3: URI) Show the list of used sending addresses and labels @@ -374,7 +374,7 @@ Mostra la llista d'adreces de recepció i etiquetes utilitzades - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Obri una bitcoin: sol·licitud d'URI o pagament @@ -1816,8 +1816,8 @@ Introduïu una etiqueta per a esta adreça per afegir-la a la llista d'adreces utilitzades - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Un missatge que s'ha adjuntat al nyc3: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3. Pay To: diff --git a/src/qt/locale/nyc3_ca_ES.ts b/src/qt/locale/nyc3_ca_ES.ts index 48a4ad8f7..8559bf412 100644 --- a/src/qt/locale/nyc3_ca_ES.ts +++ b/src/qt/locale/nyc3_ca_ES.ts @@ -398,8 +398,8 @@ Barra d'eines de les pestanyes - Request payments (generates QR codes and bitcoin: URIs) - Sol·licita pagaments (genera codis QR i bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Sol·licita pagaments (genera codis QR i nyc3: URI) Show the list of used sending addresses and labels @@ -410,7 +410,7 @@ Mostra la llista d'adreces de recepció i etiquetes utilitzades - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Obre una bitcoin: sol·licitud d'URI o pagament @@ -2048,8 +2048,8 @@ Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Un missatge que s'ha adjuntat al nyc3: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3. Pay To: diff --git a/src/qt/locale/nyc3_cs.ts b/src/qt/locale/nyc3_cs.ts index 76b54147b..e160d7067 100644 --- a/src/qt/locale/nyc3_cs.ts +++ b/src/qt/locale/nyc3_cs.ts @@ -414,8 +414,8 @@ Panel s listy - Request payments (generates QR codes and bitcoin: URIs) - Požaduj platby (generuje QR kódy a bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Požaduj platby (generuje QR kódy a nyc3: URI) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ Ukaž seznam použitých přijímacích adres a jejich označení - Open a bitcoin: URI or payment request - Načti bitcoin: URI nebo platební požadavek + Open a nyc3: URI or payment request + Načti nyc3: URI nebo platební požadavek &Command-line options @@ -2474,8 +2474,8 @@ Poznámka: Jelikož je poplatek počítaný za bajt, poplatek o hodnotě "100 sa Zadej označení této adresy; obojí se ti pak uloží do adresáře - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Zpráva, která byla připojena k bitcoin: URI a která se ti pro přehled uloží k transakci. Poznámka: Tahle zpráva se neposílá s platbou po bitcoinové síti. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Zpráva, která byla připojena k nyc3: URI a která se ti pro přehled uloží k transakci. Poznámka: Tahle zpráva se neposílá s platbou po bitcoinové síti. Pay To: diff --git a/src/qt/locale/nyc3_cy.ts b/src/qt/locale/nyc3_cy.ts index 7b31aabba..c7c73e490 100644 --- a/src/qt/locale/nyc3_cy.ts +++ b/src/qt/locale/nyc3_cy.ts @@ -386,8 +386,8 @@ Bar offer tabiau - Request payments (generates QR codes and bitcoin: URIs) - Gofyn taliadau (creu côd QR a bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Gofyn taliadau (creu côd QR a nyc3: URIs) Show the list of used sending addresses and labels @@ -398,7 +398,7 @@ Dangos rhestr o gyfeiriadau derbyn a labelau wedi eu defnyddio - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Agor NYC3: URI neu ofyn taliad diff --git a/src/qt/locale/nyc3_da.ts b/src/qt/locale/nyc3_da.ts index 0b6372857..00c9c1715 100644 --- a/src/qt/locale/nyc3_da.ts +++ b/src/qt/locale/nyc3_da.ts @@ -414,7 +414,7 @@ Faneværktøjslinje - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Anmod om betalinger (genererer QR-koder og “bitcoin:”-URI'er) @@ -426,7 +426,7 @@ Vis listen over brugte modtagelsesadresser og -mærkater - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Åbn en “bitcoin:”-URI eller betalingsanmodning @@ -2446,7 +2446,7 @@ Note: Siden gebyret er kalkuleret på en per-byte basis, et gebyr på "100 satos Indtast et mærkat for denne adresse for at føje den til listen over brugte adresser - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. En besked, som blev føjet til “bitcon:”-URI'en, som vil gemmes med transaktionen til din reference. Bemærk: Denne besked vil ikke blive sendt over NYC3-netværket. diff --git a/src/qt/locale/nyc3_de.ts b/src/qt/locale/nyc3_de.ts index bb50dd7b9..32f3cb983 100644 --- a/src/qt/locale/nyc3_de.ts +++ b/src/qt/locale/nyc3_de.ts @@ -414,7 +414,7 @@ Registerkartenleiste - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Zahlungen anfordern (erzeugt QR-Codes und "bitcoin:"-URIs) @@ -426,7 +426,7 @@ Liste verwendeter Empfangsadressen und Bezeichnungen anzeigen - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Eine "bitcoin:"-URI oder Zahlungsanforderung öffnen @@ -2470,7 +2470,7 @@ Hinweis: Eine Gebühr von "100 Satoshis pro kB" bei einer Größe der Transaktio Adressbezeichnung eingeben, die dann zusammen mit der Adresse der Liste bereits verwendeter Adressen hinzugefügt wird. - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Eine an die "bitcoin:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das NYC3-Netzwerk gesendet. diff --git a/src/qt/locale/nyc3_el_GR.ts b/src/qt/locale/nyc3_el_GR.ts index 5bb19e212..01400ddee 100644 --- a/src/qt/locale/nyc3_el_GR.ts +++ b/src/qt/locale/nyc3_el_GR.ts @@ -406,7 +406,7 @@ Εργαλειοθήκη καρτελών - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις bitcoin: ) @@ -418,8 +418,8 @@ Προβολή της λίστας των χρησιμοποιημένων διευθύνσεων και ετικετών λήψεως - Open a bitcoin: URI or payment request - Άνοιγμα bitcoin: URI αίτησης πληρωμής + Open a nyc3: URI or payment request + Άνοιγμα nyc3: URI αίτησης πληρωμής &Command-line options diff --git a/src/qt/locale/nyc3_en.ts b/src/qt/locale/nyc3_en.ts index b503346ef..e24da94cc 100644 --- a/src/qt/locale/nyc3_en.ts +++ b/src/qt/locale/nyc3_en.ts @@ -526,7 +526,7 @@ - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) @@ -541,7 +541,7 @@ - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request @@ -3192,7 +3192,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satos - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. diff --git a/src/qt/locale/nyc3_en_GB.ts b/src/qt/locale/nyc3_en_GB.ts index 73a6d3528..73ae70da3 100644 --- a/src/qt/locale/nyc3_en_GB.ts +++ b/src/qt/locale/nyc3_en_GB.ts @@ -414,8 +414,8 @@ Tabs toolbar - Request payments (generates QR codes and bitcoin: URIs) - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Request payments (generates QR codes and nyc3: URIs) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ Show the list of used receiving addresses and labels - Open a bitcoin: URI or payment request - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request + Open a nyc3: URI or payment request &Command-line options @@ -2446,8 +2446,8 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p Enter a label for this address to add it to the list of used addresses - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Pay To: diff --git a/src/qt/locale/nyc3_eo.ts b/src/qt/locale/nyc3_eo.ts index 68cfae095..7ec0217ab 100644 --- a/src/qt/locale/nyc3_eo.ts +++ b/src/qt/locale/nyc3_eo.ts @@ -370,7 +370,7 @@ Langeto-breto - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Peti pagon (kreas QR-kodojn kaj URI-ojn kun prefikso bitcoin:) @@ -382,7 +382,7 @@ Vidigi la liston de uzitaj ricevaj adresoj kaj etikedoj - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Malfermi bitcoin:-URI-on aŭ pagpeton diff --git a/src/qt/locale/nyc3_es.ts b/src/qt/locale/nyc3_es.ts index 06448c11e..a65374218 100644 --- a/src/qt/locale/nyc3_es.ts +++ b/src/qt/locale/nyc3_es.ts @@ -410,7 +410,7 @@ Barra de pestañas - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Solicitar pagos (generando códigos QR e identificadores URI "bitcoin:") @@ -422,7 +422,7 @@ Muestra la lista de direcciones de recepción y etiquetas - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Abrir un identificador URI "bitcoin:" o una petición de pago @@ -2433,7 +2433,7 @@ Nota: Dado que la comisión se calcula por byte, una comisión de "100 satoshis Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Un mensaje que se adjuntó a la bitcoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red NYC3. diff --git a/src/qt/locale/nyc3_es_CL.ts b/src/qt/locale/nyc3_es_CL.ts index 115f8c446..057402c12 100644 --- a/src/qt/locale/nyc3_es_CL.ts +++ b/src/qt/locale/nyc3_es_CL.ts @@ -402,7 +402,7 @@ Barra de pestañas - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Pide pagos (genera codigos QR and bitcoin: URls) @@ -414,7 +414,7 @@ Mostrar la lista de direcciones de recepción y etiquetas - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Abrir un identificador URI bitcoin o una petición de pago diff --git a/src/qt/locale/nyc3_es_CO.ts b/src/qt/locale/nyc3_es_CO.ts index 15b8380b5..32da0846a 100644 --- a/src/qt/locale/nyc3_es_CO.ts +++ b/src/qt/locale/nyc3_es_CO.ts @@ -379,8 +379,8 @@ Exportar los datos en la pestaña actual a un archivo Barra de herramientas de pestañas - Request payments (generates QR codes and bitcoin: URIs) - Solicitar pagos (genera códigos QR y bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Solicitar pagos (genera códigos QR y nyc3: URIs) Show the list of used sending addresses and labels @@ -391,8 +391,8 @@ Exportar los datos en la pestaña actual a un archivo Mostrar la lista de direcciones y etiquetas de recepción usadas - Open a bitcoin: URI or payment request - Abra un bitcoin: URI o solicitud de pago + Open a nyc3: URI or payment request + Abra un nyc3: URI o solicitud de pago &Command-line options diff --git a/src/qt/locale/nyc3_es_DO.ts b/src/qt/locale/nyc3_es_DO.ts index 50925a956..85e0e6a0a 100644 --- a/src/qt/locale/nyc3_es_DO.ts +++ b/src/qt/locale/nyc3_es_DO.ts @@ -306,7 +306,7 @@ Barra de pestañas - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Solicitar pagos (genera codigo QR y URL's de NYC3) @@ -318,8 +318,8 @@ Muestra la lista de direcciones de recepción y etiquetas - Open a bitcoin: URI or payment request - Abrir un bitcoin: URI o petición de pago + Open a nyc3: URI or payment request + Abrir un nyc3: URI o petición de pago &Command-line options diff --git a/src/qt/locale/nyc3_es_ES.ts b/src/qt/locale/nyc3_es_ES.ts index 2903e3789..1eaad501d 100644 --- a/src/qt/locale/nyc3_es_ES.ts +++ b/src/qt/locale/nyc3_es_ES.ts @@ -406,7 +406,7 @@ Barra de pestañas - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Solicitar pagos (generando códigos QR e identificadores URI "bitcoin:") @@ -418,7 +418,7 @@ Muestra la lista de direcciones de recepción y etiquetas - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Abrir un identificador URI "bitcoin:" o una petición de pago @@ -2162,7 +2162,7 @@ Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Un mensaje que se adjuntó a la bitcoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red NYC3. diff --git a/src/qt/locale/nyc3_et.ts b/src/qt/locale/nyc3_et.ts index 67b520979..593954a36 100644 --- a/src/qt/locale/nyc3_et.ts +++ b/src/qt/locale/nyc3_et.ts @@ -366,11 +366,11 @@ Vahelehe tööriistariba - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Loo maksepäring (genereerib QR koodid ja bitcoini: URId) - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Ava bitcoini: URI või maksepäring diff --git a/src/qt/locale/nyc3_fa.ts b/src/qt/locale/nyc3_fa.ts index 818da4c58..f24d46b17 100644 --- a/src/qt/locale/nyc3_fa.ts +++ b/src/qt/locale/nyc3_fa.ts @@ -390,7 +390,7 @@ نوارابزار برگه‌ها - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) درخواست پرداخت ( تولید کد کیوار و ادرس بیت کوین) @@ -402,7 +402,7 @@ نمایش لیست آدرس های دریافت و لیبل ها - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request بازکردن یک بیت کوین: آدرس یا درخواست پرداخت diff --git a/src/qt/locale/nyc3_fa_IR.ts b/src/qt/locale/nyc3_fa_IR.ts index d222a51db..61b270417 100644 --- a/src/qt/locale/nyc3_fa_IR.ts +++ b/src/qt/locale/nyc3_fa_IR.ts @@ -406,7 +406,7 @@ نوار ابزار - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) درخواست پرداخت (ساخت کد QR و بیت‌کوین: URIs) @@ -418,7 +418,7 @@ نمایش لیست آدرس‌ها و لیبل‌های دریافتی استفاده شده - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request بازکردن بیت‌کوین: آدرس یا درخواست پرداخت diff --git a/src/qt/locale/nyc3_fi.ts b/src/qt/locale/nyc3_fi.ts index fe2cfded3..fd849e52b 100644 --- a/src/qt/locale/nyc3_fi.ts +++ b/src/qt/locale/nyc3_fi.ts @@ -414,8 +414,8 @@ Välilehtipalkki - Request payments (generates QR codes and bitcoin: URIs) - Pyydä maksuja (Luo QR koodit ja bitcoin: URIt) + Request payments (generates QR codes and nyc3: URIs) + Pyydä maksuja (Luo QR koodit ja nyc3: URIt) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ Näytä vastaanottamiseen käytettyjen osoitteiden ja nimien lista - Open a bitcoin: URI or payment request - Avaa bitcoin: URI tai maksupyyntö + Open a nyc3: URI or payment request + Avaa nyc3: URI tai maksupyyntö &Command-line options @@ -2370,8 +2370,8 @@ Aseta nimi tälle osoitteelle lisätäksesi sen käytettyjen osoitteiden listalle. - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Viesti joka liitettiin bitcoin: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä NYC3-verkkoon. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Viesti joka liitettiin nyc3: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä NYC3-verkkoon. Pay To: diff --git a/src/qt/locale/nyc3_fr.ts b/src/qt/locale/nyc3_fr.ts index f2be7e707..1b76b5f51 100644 --- a/src/qt/locale/nyc3_fr.ts +++ b/src/qt/locale/nyc3_fr.ts @@ -414,7 +414,7 @@ Barre d’outils des onglets - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Demander des paiements (génère des codes QR et des URI bitcoin:) @@ -426,7 +426,7 @@ Afficher la liste d’adresses de réception et d’étiquettes utilisées - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Ouvrir une URI bitcoin: ou une demande de paiement @@ -2474,7 +2474,7 @@ Note : Les frais étant calculés par octet, des frais de « 100 satoshis par Saisir une étiquette pour cette adresse afin de l’ajouter à la liste d’adresses utilisées - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Un message qui était joint à l’URI bitcoin: et qui sera stocké avec la transaction pour référence. Note : Ce message ne sera pas envoyé par le réseau NYC3. diff --git a/src/qt/locale/nyc3_fr_FR.ts b/src/qt/locale/nyc3_fr_FR.ts index e9a7c6e27..cd11c66cd 100644 --- a/src/qt/locale/nyc3_fr_FR.ts +++ b/src/qt/locale/nyc3_fr_FR.ts @@ -410,8 +410,8 @@ Barre d'outils des onglets - Request payments (generates QR codes and bitcoin: URIs) - Demander des paiements (générer QR codes et bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Demander des paiements (générer QR codes et nyc3: URIs) Show the list of used sending addresses and labels @@ -422,8 +422,8 @@ Afficher la liste des labels et adresses de réception utilisées - Open a bitcoin: URI or payment request - Ouvrir un bitcoin: URI ou demande de paiement + Open a nyc3: URI or payment request + Ouvrir un nyc3: URI ou demande de paiement &Command-line options diff --git a/src/qt/locale/nyc3_gl.ts b/src/qt/locale/nyc3_gl.ts index 5f2349079..2dc36f17b 100644 --- a/src/qt/locale/nyc3_gl.ts +++ b/src/qt/locale/nyc3_gl.ts @@ -202,8 +202,8 @@ Barra de ferramentas - Request payments (generates QR codes and bitcoin: URIs) - Solicitar pagos (xenera códigos QR e bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Solicitar pagos (xenera códigos QR e nyc3: URIs) Show the list of used sending addresses and labels @@ -214,8 +214,8 @@ Amosar a listaxe de etiquetas e direccións para recibir empregadas - Open a bitcoin: URI or payment request - Abrir un bitcoin: URI ou solicitude de pago + Open a nyc3: URI or payment request + Abrir un nyc3: URI ou solicitude de pago &Command-line options diff --git a/src/qt/locale/nyc3_he.ts b/src/qt/locale/nyc3_he.ts index 555f6ca7f..cbd0322f3 100644 --- a/src/qt/locale/nyc3_he.ts +++ b/src/qt/locale/nyc3_he.ts @@ -410,7 +410,7 @@ סרגל כלים לשוניות - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) בקשת תשלומים (יצירה של קודים מסוג QR וסכימות כתובות משאב של :bitcoin) @@ -422,7 +422,7 @@ הצגת רשימת הכתובות והתוויות הנמצאות בשימוש - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request פתיחת ביטקוין: כתובת משאב או בקשת תשלום @@ -2338,7 +2338,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p יש להזין תווית עבור כתובת זו כדי להוסיף אותה לרשימת הכתובות בשימוש - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. הודעה שצורפה לביטקוין: כתובת שתאוחסן בהעברה לצורך מעקב מצדך. לתשומת לבך: הודעה זו לא תישלח ברשת הביטקוין. diff --git a/src/qt/locale/nyc3_hr.ts b/src/qt/locale/nyc3_hr.ts index 2f3e9aff8..f83cbba4f 100644 --- a/src/qt/locale/nyc3_hr.ts +++ b/src/qt/locale/nyc3_hr.ts @@ -410,8 +410,8 @@ Traka kartica - Request payments (generates QR codes and bitcoin: URIs) - Zatražite uplatu (stvara QR kod i bitcoin: URI adresu) + Request payments (generates QR codes and nyc3: URIs) + Zatražite uplatu (stvara QR kod i nyc3: URI adresu) Show the list of used sending addresses and labels @@ -422,8 +422,8 @@ Prikažite popis korištenih adresa i oznaka za primanje novca - Open a bitcoin: URI or payment request - Otvorite bitcoin: URI adresu ili zahtjev za uplatu + Open a nyc3: URI or payment request + Otvorite nyc3: URI adresu ili zahtjev za uplatu &Command-line options @@ -2369,7 +2369,7 @@ Napomena: Budući da se naknada računa po bajtu, naknada od "100 satošija po k Unesite oznaku za ovu adresu kako bi ju dodali u vaš adresar - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Poruka koja je dodana uplati: URI koji će biti spremljen s transakcijom za referencu. Napomena: Ova poruka neće biti poslana preko NYC3 mreže. diff --git a/src/qt/locale/nyc3_hu.ts b/src/qt/locale/nyc3_hu.ts index 0a13ad77a..221a55a57 100644 --- a/src/qt/locale/nyc3_hu.ts +++ b/src/qt/locale/nyc3_hu.ts @@ -399,7 +399,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka Fül eszköztár - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Fizetési kérelem (QR-kódot és "bitcoin:" URI azonosítót hoz létre) @@ -411,7 +411,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka A használt fogadó címek és címkék megtekintése - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request "bitcoin:" URI azonosító vagy fizetési kérelem megnyitása diff --git a/src/qt/locale/nyc3_id.ts b/src/qt/locale/nyc3_id.ts index eb765899e..02eb740ec 100644 --- a/src/qt/locale/nyc3_id.ts +++ b/src/qt/locale/nyc3_id.ts @@ -414,8 +414,8 @@ Toolbar Tabs - Request payments (generates QR codes and bitcoin: URIs) - Meminta pembayaran (generate kode QR dan bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Meminta pembayaran (generate kode QR dan nyc3: URIs) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ Perlihatkan daftar address penerima dan labelnya - Open a bitcoin: URI or payment request - Buka bitcoin: URI atau permintaan pembayaran + Open a nyc3: URI or payment request + Buka nyc3: URI atau permintaan pembayaran &Command-line options diff --git a/src/qt/locale/nyc3_id_ID.ts b/src/qt/locale/nyc3_id_ID.ts index 62a82df3e..433ca121e 100644 --- a/src/qt/locale/nyc3_id_ID.ts +++ b/src/qt/locale/nyc3_id_ID.ts @@ -414,8 +414,8 @@ Baris tab - Request payments (generates QR codes and bitcoin: URIs) - Permintaan pembayaran (membuat kode QR dan bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Permintaan pembayaran (membuat kode QR dan nyc3: URIs) Show the list of used sending addresses and labels @@ -426,7 +426,7 @@ Tampilkan daftar alamat dan label yang diterima - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Buka URI bitcoin: atau permintaan pembayaran diff --git a/src/qt/locale/nyc3_is.ts b/src/qt/locale/nyc3_is.ts index 4ff3e5e69..b94b45c0c 100644 --- a/src/qt/locale/nyc3_is.ts +++ b/src/qt/locale/nyc3_is.ts @@ -394,8 +394,8 @@ Tólaborð flipa - Request payments (generates QR codes and bitcoin: URIs) - Óska eftir greiðslum (býr til QR kóða og bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Óska eftir greiðslum (býr til QR kóða og nyc3: URI) Show the list of used sending addresses and labels @@ -406,8 +406,8 @@ Sýna færslugildi sem notuð hafa verið til að taka við mynt og merkingar þeirra - Open a bitcoin: URI or payment request - Opna bitcoin: URI eða greiðslubeiðni + Open a nyc3: URI or payment request + Opna nyc3: URI eða greiðslubeiðni Indexing blocks on disk... diff --git a/src/qt/locale/nyc3_it.ts b/src/qt/locale/nyc3_it.ts index de683972d..ce1dae262 100644 --- a/src/qt/locale/nyc3_it.ts +++ b/src/qt/locale/nyc3_it.ts @@ -414,8 +414,8 @@ Barra degli strumenti - Request payments (generates QR codes and bitcoin: URIs) - Richiedi pagamenti (genera codici QR e bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Richiedi pagamenti (genera codici QR e nyc3: URI) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ Mostra la lista degli indirizzi di ricezione utilizzati - Open a bitcoin: URI or payment request - Apri un bitcoin: URI o una richiesta di pagamento + Open a nyc3: URI or payment request + Apri un nyc3: URI o una richiesta di pagamento &Command-line options @@ -2475,7 +2475,7 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di " Inserisci un'etichetta per questo indirizzo per aggiungerlo alla lista degli indirizzi utilizzati - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Messaggio incluso nel bitcoin URI e che sarà memorizzato con la transazione per tuo riferimento. Nota: Questo messaggio non sarà inviato attraverso la rete NYC3. diff --git a/src/qt/locale/nyc3_it_IT.ts b/src/qt/locale/nyc3_it_IT.ts index ae4db3c09..9fe618975 100644 --- a/src/qt/locale/nyc3_it_IT.ts +++ b/src/qt/locale/nyc3_it_IT.ts @@ -402,8 +402,8 @@ Barra degli strumenti - Request payments (generates QR codes and bitcoin: URIs) - Richiedi pagamenti (genera codici QR e bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Richiedi pagamenti (genera codici QR e nyc3: URI) Show the list of used sending addresses and labels @@ -414,8 +414,8 @@ Mostra la lista degli indirizzi di ricezione usati e le relative etichette - Open a bitcoin: URI or payment request - Apri un bitcoin: URI o una richiesta di pagamento + Open a nyc3: URI or payment request + Apri un nyc3: URI o una richiesta di pagamento &Command-line options diff --git a/src/qt/locale/nyc3_ja.ts b/src/qt/locale/nyc3_ja.ts index 05cbc55f3..5e74f7082 100644 --- a/src/qt/locale/nyc3_ja.ts +++ b/src/qt/locale/nyc3_ja.ts @@ -414,8 +414,8 @@ タブツールバー - Request payments (generates QR codes and bitcoin: URIs) - 支払いをリクエストする (QRコードと bitcoin: URIを生成する)< + Request payments (generates QR codes and nyc3: URIs) + 支払いをリクエストする (QRコードと nyc3: URIを生成する)< Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ 受け取ったことがあるアドレスとラベルの一覧を表示する - Open a bitcoin: URI or payment request - bitcoin: URIや支払いリクエストを開く + Open a nyc3: URI or payment request + nyc3: URIや支払いリクエストを開く &Command-line options @@ -2470,8 +2470,8 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p このアドレスに対するラベルを入力することで、送金したことがあるアドレスの一覧に追加することができます - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - bitcoin: URIに添付されていたメッセージです。これは参照用として取引とともに保存されます。注意: メッセージは NYC3 ネットワーク上へ送信されません。 + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + nyc3: URIに添付されていたメッセージです。これは参照用として取引とともに保存されます。注意: メッセージは NYC3 ネットワーク上へ送信されません。 Pay To: diff --git a/src/qt/locale/nyc3_ka.ts b/src/qt/locale/nyc3_ka.ts index 91b1fd9bb..da7892dab 100644 --- a/src/qt/locale/nyc3_ka.ts +++ b/src/qt/locale/nyc3_ka.ts @@ -382,7 +382,7 @@ ბარათების პანელი - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) გადახდის მოთხოვნა (შეიქმნება QR-კოდები და bitcoin: ბმულები) @@ -394,8 +394,8 @@ გამოყენებული მიღების მისამართებისა და ნიშნულების სიის ჩვენება - Open a bitcoin: URI or payment request - bitcoin: URI-ის ან გადახდის მოთხოვნის გახსნა + Open a nyc3: URI or payment request + nyc3: URI-ის ან გადახდის მოთხოვნის გახსნა &Command-line options @@ -1330,7 +1330,7 @@ შეიყვანეთ ამ მისამართის ნიშნული გამოყენებული მისამართების სიაში დასამატებლად - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. მესიჯი, რომელიც თან ერთვის მონეტებს: URI, რომელიც შეინახება ტრანსაქციასთან ერთად თქვენთვის. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. diff --git a/src/qt/locale/nyc3_ko_KR.ts b/src/qt/locale/nyc3_ko_KR.ts index a00b9995f..f5afde25b 100644 --- a/src/qt/locale/nyc3_ko_KR.ts +++ b/src/qt/locale/nyc3_ko_KR.ts @@ -414,8 +414,8 @@ 툴바 색인표 - Request payments (generates QR codes and bitcoin: URIs) - 지불 요청하기 (QR코드와 bitcoin: URI를 생성합니다) + Request payments (generates QR codes and nyc3: URIs) + 지불 요청하기 (QR코드와 nyc3: URI를 생성합니다) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ 한번 이상 사용된 받는 주소와 라벨의 목록을 보여줍니다 - Open a bitcoin: URI or payment request - bitcoin: URI 또는 지불요청 열기 + Open a nyc3: URI or payment request + nyc3: URI 또는 지불요청 열기 &Command-line options @@ -2474,8 +2474,8 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p 이 주소에 라벨을 입력하면 사용된 주소 목록에 라벨이 표시됩니다 - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - bitcoin: URI에 추가된 메시지는 참고를 위해 거래내역과 함께 저장될 것입니다. Note: 이 메시지는 비트코인 네트워크로 전송되지 않습니다. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + nyc3: URI에 추가된 메시지는 참고를 위해 거래내역과 함께 저장될 것입니다. Note: 이 메시지는 비트코인 네트워크로 전송되지 않습니다. Pay To: diff --git a/src/qt/locale/nyc3_lv_LV.ts b/src/qt/locale/nyc3_lv_LV.ts index c6ed2741a..48be650de 100644 --- a/src/qt/locale/nyc3_lv_LV.ts +++ b/src/qt/locale/nyc3_lv_LV.ts @@ -274,11 +274,11 @@ Ciļņu rīkjosla - Request payments (generates QR codes and bitcoin: URIs) - Pieprasīt maksājumus (izveido QR kodu un bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Pieprasīt maksājumus (izveido QR kodu un nyc3: URIs) - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Atvērt bitcoin URI vai maksājuma pieprasījumu diff --git a/src/qt/locale/nyc3_ms_MY.ts b/src/qt/locale/nyc3_ms_MY.ts index efda102eb..12b099eeb 100644 --- a/src/qt/locale/nyc3_ms_MY.ts +++ b/src/qt/locale/nyc3_ms_MY.ts @@ -410,8 +410,8 @@ Alihkan fail data ke dalam tab semasa - Request payments (generates QR codes and bitcoin: URIs) - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Request payments (generates QR codes and nyc3: URIs) diff --git a/src/qt/locale/nyc3_nb.ts b/src/qt/locale/nyc3_nb.ts index ec79660eb..376a2485b 100644 --- a/src/qt/locale/nyc3_nb.ts +++ b/src/qt/locale/nyc3_nb.ts @@ -402,8 +402,8 @@ Verktøylinje for faner - Request payments (generates QR codes and bitcoin: URIs) - Forespør betalinger (genererer QR-koder og bitcoin: URIer) + Request payments (generates QR codes and nyc3: URIs) + Forespør betalinger (genererer QR-koder og nyc3: URIer) Show the list of used sending addresses and labels @@ -414,7 +414,7 @@ Vis listen over bruke mottaksadresser og merkelapper - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Åpne en NYC3: URI eller betalingsetterspørring @@ -2284,7 +2284,7 @@ Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. En melding som var tilknyttet bitcoinen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over NYC3-nettverket. diff --git a/src/qt/locale/nyc3_ne.ts b/src/qt/locale/nyc3_ne.ts index 1564eb506..3ecd9b644 100644 --- a/src/qt/locale/nyc3_ne.ts +++ b/src/qt/locale/nyc3_ne.ts @@ -348,7 +348,7 @@ यो ठेगानालाई प्रयोग गरिएको ठेगानाको सूचीमा थप्न एउटा लेबल प्रविष्ट गर्नुहोस् - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. बिटकोइनमा संलग्न गरिएको सन्देश: तपाईंको मध्यस्थको लागि कारोबारको साथमा भण्डारण गरिने URI । नोट: यो सन्देश बिटकोइन नेटवर्क मार्फत पठाइने छैन । diff --git a/src/qt/locale/nyc3_nl.ts b/src/qt/locale/nyc3_nl.ts index ce252db94..8ca9d5343 100644 --- a/src/qt/locale/nyc3_nl.ts +++ b/src/qt/locale/nyc3_nl.ts @@ -414,8 +414,8 @@ Tab-werkbalk - Request payments (generates QR codes and bitcoin: URIs) - Vraag betaling aan (genereert QR-codes en bitcoin: URI's) + Request payments (generates QR codes and nyc3: URIs) + Vraag betaling aan (genereert QR-codes en nyc3: URI's) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ Toon de lijst met gebruikte ontvangstadressen en labels - Open a bitcoin: URI or payment request - Open een bitcoin: URI of betalingsverzoek + Open a nyc3: URI or payment request + Open een nyc3: URI of betalingsverzoek &Command-line options @@ -2474,8 +2474,8 @@ Notitie: Omdat de vergoeding per byte wordt gerekend, zal een vergoeding van "10 Vul een label voor dit adres in om het aan de lijst met gebruikte adressen toe te voegen - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Een bericht dat werd toegevoegd aan de bitcoin: URI welke wordt opgeslagen met de transactie ter referentie. Opmerking: Dit bericht zal niet worden verzonden over het NYC3netwerk. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Een bericht dat werd toegevoegd aan de nyc3: URI welke wordt opgeslagen met de transactie ter referentie. Opmerking: Dit bericht zal niet worden verzonden over het NYC3netwerk. Pay To: diff --git a/src/qt/locale/nyc3_pl.ts b/src/qt/locale/nyc3_pl.ts index 563d32b68..f5188bb71 100644 --- a/src/qt/locale/nyc3_pl.ts +++ b/src/qt/locale/nyc3_pl.ts @@ -414,7 +414,7 @@ Pasek zakładek - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Żądaj płatności (generuje kod QR oraz bitcoinowe URI) @@ -426,7 +426,7 @@ Pokaż listę adresów i etykiet użytych do odbierania - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Otwórz URI bitcoin: lub żądanie zapłaty @@ -2411,7 +2411,7 @@ Uwaga: Ponieważ opłata jest naliczana za każdy bajt, opłata "100 satoshi za Wprowadź etykietę dla tego adresu by dodać go do listy użytych adresów - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Wiadomość, która została dołączona do URI bitcoin:, która będzie przechowywana wraz z transakcją w celach informacyjnych. Uwaga: Ta wiadomość nie będzie rozsyłana w sieci NYC3. diff --git a/src/qt/locale/nyc3_pt_BR.ts b/src/qt/locale/nyc3_pt_BR.ts index 0a8928035..a1d711721 100644 --- a/src/qt/locale/nyc3_pt_BR.ts +++ b/src/qt/locale/nyc3_pt_BR.ts @@ -414,8 +414,8 @@ Barra de ferramentas - Request payments (generates QR codes and bitcoin: URIs) - Solicitações de pagamentos (gera códigos QR e bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Solicitações de pagamentos (gera códigos QR e nyc3: URIs) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ Mostrar a lista de endereços de recebimento usados ​​e rótulos - Open a bitcoin: URI or payment request - Abrir um bitcoin: URI ou cobrança + Open a nyc3: URI or payment request + Abrir um nyc3: URI ou cobrança &Command-line options @@ -2474,8 +2474,8 @@ Nota: Como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por Digite um rótulo para este endereço para adicioná-lo no catálogo - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - A mensagem que foi anexada ao bitcoin: URI na qual será gravada na transação para sua referência. Nota: Essa mensagem não será gravada publicamente na rede NYC3. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A mensagem que foi anexada ao nyc3: URI na qual será gravada na transação para sua referência. Nota: Essa mensagem não será gravada publicamente na rede NYC3. Pay To: diff --git a/src/qt/locale/nyc3_pt_PT.ts b/src/qt/locale/nyc3_pt_PT.ts index 8b4c8208d..3508c042e 100644 --- a/src/qt/locale/nyc3_pt_PT.ts +++ b/src/qt/locale/nyc3_pt_PT.ts @@ -414,8 +414,8 @@ Barra de ferramentas dos separadores - Request payments (generates QR codes and bitcoin: URIs) - Solicitar pagamentos (gera códigos QR e bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Solicitar pagamentos (gera códigos QR e nyc3: URIs) Show the list of used sending addresses and labels @@ -426,7 +426,7 @@ Mostrar a lista de etiquetas e endereços de receção usados - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Abrir URI bitcoin: ou pedido de pagamento @@ -2464,7 +2464,7 @@ Nota: como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por u Introduza uma etiqueta para este endereço para o adicionar à sua lista de endereços usados - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Uma mensagem que estava anexada ao URI bitcoin: que será armazenada com a transação para sua referência. Nota: Esta mensagem não será enviada através da rede NYC3. diff --git a/src/qt/locale/nyc3_ro.ts b/src/qt/locale/nyc3_ro.ts index 639184677..265edffef 100644 --- a/src/qt/locale/nyc3_ro.ts +++ b/src/qt/locale/nyc3_ro.ts @@ -366,8 +366,8 @@ &Ajutor - Request payments (generates QR codes and bitcoin: URIs) - Cerere plată (generează coduri QR și bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Cerere plată (generează coduri QR și nyc3: URIs) Show the list of used sending addresses and labels @@ -378,8 +378,8 @@ Afișează lista adreselor de primire utilizate și etichetele. - Open a bitcoin: URI or payment request - Deschide un bitcoin: URI sau cerere de plată + Open a nyc3: URI or payment request + Deschide un nyc3: URI sau cerere de plată &Command-line options diff --git a/src/qt/locale/nyc3_ro_RO.ts b/src/qt/locale/nyc3_ro_RO.ts index d59833a71..744925ff6 100644 --- a/src/qt/locale/nyc3_ro_RO.ts +++ b/src/qt/locale/nyc3_ro_RO.ts @@ -410,7 +410,7 @@ Bara de unelte - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Cereţi plăţi (generează coduri QR şi bitcoin-uri: URls) @@ -422,7 +422,7 @@ Arată lista de adrese pentru primire şi etichetele - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Deschidere bitcoin: o adresa URI sau o cerere de plată @@ -2378,8 +2378,8 @@ Nota: Cum taxa este calculata per byte, o taxa de "100 satoshi per kB" pentru o Introduceţi eticheta pentru ca această adresa să fie introdusă în lista de adrese folosite - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - un mesaj a fost ataşat la bitcoin: URI care va fi stocat cu tranzacţia pentru referinţa dvs. Notă: Acest mesaj nu va fi trimis către reţeaua bitcoin. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + un mesaj a fost ataşat la nyc3: URI care va fi stocat cu tranzacţia pentru referinţa dvs. Notă: Acest mesaj nu va fi trimis către reţeaua bitcoin. Pay To: diff --git a/src/qt/locale/nyc3_ru_RU.ts b/src/qt/locale/nyc3_ru_RU.ts index 26afe4519..4e7f85336 100644 --- a/src/qt/locale/nyc3_ru_RU.ts +++ b/src/qt/locale/nyc3_ru_RU.ts @@ -414,7 +414,7 @@ Панель вкладок - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Запросить платеж @@ -426,7 +426,7 @@ Показать список использованных адресов и меток получателей - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Открыть биткойн: URI или запрос платежа @@ -2466,7 +2466,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p Введите метку для этого адреса, чтобы добавить его в список используемых адресов - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Сообщение прикрепленное к bitcoin идентификатору будет сохранено вместе с транзакцией для вашего сведения. Заметьте: сообщение не будет отправлено через сеть NYC3. diff --git a/src/qt/locale/nyc3_sk.ts b/src/qt/locale/nyc3_sk.ts index 12345a998..351f1e6da 100644 --- a/src/qt/locale/nyc3_sk.ts +++ b/src/qt/locale/nyc3_sk.ts @@ -414,8 +414,8 @@ Lišta záložiek - Request payments (generates QR codes and bitcoin: URIs) - Vyžiadať platby (vygeneruje QR kódy a bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Vyžiadať platby (vygeneruje QR kódy a nyc3: URI) Show the list of used sending addresses and labels @@ -426,7 +426,7 @@ Zobraziť zoznam použitých prijímacích adries a ich popisov - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Otvoriť bitcoin URI alebo výzvu k platbe @@ -2475,8 +2475,8 @@ Poznámka: Keďže poplatok je počítaný za bajt, poplatok o hodnote "100 sato Vložte popis pre túto adresu aby sa uložila do zoznamu použitých adries - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Správa ktorá bola pripojená k bitcoin: URI a ktorá bude uložená s transakcou pre Vaše potreby. Poznámka: Táto správa nebude poslaná cez sieť NYC3. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Správa ktorá bola pripojená k nyc3: URI a ktorá bude uložená s transakcou pre Vaše potreby. Poznámka: Táto správa nebude poslaná cez sieť NYC3. Pay To: diff --git a/src/qt/locale/nyc3_sl_SI.ts b/src/qt/locale/nyc3_sl_SI.ts index 380770751..9d44b5dea 100644 --- a/src/qt/locale/nyc3_sl_SI.ts +++ b/src/qt/locale/nyc3_sl_SI.ts @@ -406,7 +406,7 @@ Orodna vrstica zavihkov - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Zahtevajte plačilo (ustvarite zahtevek s kodo QR in URI tipa bitcoin:) @@ -418,7 +418,7 @@ Preglejte in uredite seznam naslovov, na katere ste kdaj prejeli plačila - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Izvedite plačilo iz zahtevka v datoteki ali iz URI tipa bitcoin: @@ -1552,7 +1552,7 @@ Če vnesete oznako za zgornji naslov, se bo skupaj z naslovom shranila v imenk že uporabljenih naslovov - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Sporočilo, ki ste ga pripeli na URI tipa bitcoin:. Shranjeno bo skupaj s podatki o transakciji. Opomba: Sporočilo ne bo poslano preko omrežja NYC3. diff --git a/src/qt/locale/nyc3_sr.ts b/src/qt/locale/nyc3_sr.ts index 9b77e4dda..bb7dfe9a9 100644 --- a/src/qt/locale/nyc3_sr.ts +++ b/src/qt/locale/nyc3_sr.ts @@ -410,7 +410,7 @@ Трака са картицама - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Затражи плаћање (генерише QR кодове и биткоин: URI-е) @@ -422,7 +422,7 @@ Прегледајте листу коришћених адреса и етикета за пријем уплата - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Отворите биткоин: URI или захтев за плаћање diff --git a/src/qt/locale/nyc3_sr@latin.ts b/src/qt/locale/nyc3_sr@latin.ts index 2423b67f1..140b0e44a 100644 --- a/src/qt/locale/nyc3_sr@latin.ts +++ b/src/qt/locale/nyc3_sr@latin.ts @@ -394,8 +394,8 @@ Alatke za tabove - Request payments (generates QR codes and bitcoin: URIs) - Zatražite plaćanje (generiše QR kodove i bitcoin: URI-e) + Request payments (generates QR codes and nyc3: URIs) + Zatražite plaćanje (generiše QR kodove i nyc3: URI-e) Error diff --git a/src/qt/locale/nyc3_sv.ts b/src/qt/locale/nyc3_sv.ts index f02c5b850..d99b6a845 100644 --- a/src/qt/locale/nyc3_sv.ts +++ b/src/qt/locale/nyc3_sv.ts @@ -415,7 +415,7 @@ Var vänlig och försök igen. Verktygsfält för tabbar - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Begär betalningar (skapar QR-koder och bitcoin: -URIer) @@ -427,8 +427,8 @@ Var vänlig och försök igen. Visa listan med använda mottagningsadresser och etiketter - Open a bitcoin: URI or payment request - Öppna en bitcoin: URI eller betalningsbegäran + Open a nyc3: URI or payment request + Öppna en nyc3: URI eller betalningsbegäran &Command-line options @@ -2447,7 +2447,7 @@ Notera: Då avgiften beräknas per byte kommer en avgift på 50 satoshi tas ut f Ange en etikett för denna adress för att lägga till den i listan med använda adresser - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Ett meddelande som bifogades bitcoin: -URIn och som lagras med transaktionen som referens. NB: Meddelandet kommer inte att sändas över NYC3-nätverket. diff --git a/src/qt/locale/nyc3_szl.ts b/src/qt/locale/nyc3_szl.ts index 2851c532f..197b2ea31 100644 --- a/src/qt/locale/nyc3_szl.ts +++ b/src/qt/locale/nyc3_szl.ts @@ -410,7 +410,7 @@ Lajsta szkart - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Żōndej płatu (gyneruje kod QR jak tyż URI bitcoin:) @@ -422,7 +422,7 @@ Pokŏż wykŏz adres i etyket użytych do ôdbiyraniŏ - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Ôdewrzij URI bitcoin: abo żōndanie płatu @@ -1686,7 +1686,7 @@ Wiadōmość: - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Wiadōmość, kerŏ ôstała prziwstōnŏ do URI bitcoin:, kerŏ bydzie przechowowanŏ z transakcyjōm w cylach informacyjnych. Napōmniynie: Ta wiadōmość niy bydzie rozszyrzowanŏ w necu NYC3. diff --git a/src/qt/locale/nyc3_ta.ts b/src/qt/locale/nyc3_ta.ts index 78a27e5aa..816c5d293 100644 --- a/src/qt/locale/nyc3_ta.ts +++ b/src/qt/locale/nyc3_ta.ts @@ -378,7 +378,7 @@ தாவல்கள் கருவிப்பட்டி - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) கொடுப்பனவுகளை கோருதல் (QR குறியீடுகள் மற்றும் bitcoin உருவாக்குகிறது: URI கள்) @@ -390,7 +390,7 @@ பயன்படுத்திய முகவரிகள் மற்றும் லேபிள்களின் பட்டியலைக் காட்டு - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request ஒரு NYC3 திறக்க: URI அல்லது பணம் கோரிக்கை diff --git a/src/qt/locale/nyc3_th_TH.ts b/src/qt/locale/nyc3_th_TH.ts index 7141aefaa..1c14d8bf1 100644 --- a/src/qt/locale/nyc3_th_TH.ts +++ b/src/qt/locale/nyc3_th_TH.ts @@ -238,8 +238,8 @@ แถบเครื่องมือ - Request payments (generates QR codes and bitcoin: URIs) - เรียกเก็บ การชำระเงิน (สร้าง QR codes และ bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + เรียกเก็บ การชำระเงิน (สร้าง QR codes และ nyc3: URIs) Show the list of used sending addresses and labels @@ -250,8 +250,8 @@ แสดงรายการ ที่เก็บเงินที่จะรับ bitcoin เข้า และป้ายชื่อ ที่ใช้ไปแล้ว - Open a bitcoin: URI or payment request - เปิด bitcoin: URI หรือ การเรียกเก็บเงิน (การเรียกให้ชำระเงิน) + Open a nyc3: URI or payment request + เปิด nyc3: URI หรือ การเรียกเก็บเงิน (การเรียกให้ชำระเงิน) &Command-line options diff --git a/src/qt/locale/nyc3_tr.ts b/src/qt/locale/nyc3_tr.ts index 3ed67fb97..ae9c7a1eb 100644 --- a/src/qt/locale/nyc3_tr.ts +++ b/src/qt/locale/nyc3_tr.ts @@ -410,7 +410,7 @@ Sekme araç çubuğu - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Ödeme talep et (QR kodu ve bitcoin URI'si oluşturur) @@ -422,7 +422,7 @@ Kullanılmış alım adresleri ve etiketlerin listesini göster - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Bir bitcoin: bağlantısı ya da ödeme talebi aç @@ -2326,8 +2326,8 @@ Kullanılmış adres listesine eklemek için bu adrese bir etiket girin - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Referans için bitcoin: URI'siyle iliştirilmiş işlemle birlikte depolanacak bir ileti. Not: Bu mesaj NYC3 ağı üzerinden gönderilmeyecektir. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Referans için nyc3: URI'siyle iliştirilmiş işlemle birlikte depolanacak bir ileti. Not: Bu mesaj NYC3 ağı üzerinden gönderilmeyecektir. Pay To: diff --git a/src/qt/locale/nyc3_uk.ts b/src/qt/locale/nyc3_uk.ts index 6e9b2b618..915c539b4 100644 --- a/src/qt/locale/nyc3_uk.ts +++ b/src/qt/locale/nyc3_uk.ts @@ -414,8 +414,8 @@ Панель вкладок - Request payments (generates QR codes and bitcoin: URIs) - Створити запит платежу (генерує QR-код та bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + Створити запит платежу (генерує QR-код та nyc3: URI) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ Показати список адрес і міток, що були використані для отримання - Open a bitcoin: URI or payment request - Відкрити bitcoin: URI чи запит платежу + Open a nyc3: URI or payment request + Відкрити nyc3: URI чи запит платежу &Command-line options @@ -2432,7 +2432,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p Введіть мітку для цієї адреси для додавання її в список використаних адрес - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. Повідомлення, що було додане до bitcoin:URI та буде збережено разом з транзакцією для довідки. Примітка: Це повідомлення не буде відправлено в мережу NYC3. diff --git a/src/qt/locale/nyc3_uz@Cyrl.ts b/src/qt/locale/nyc3_uz@Cyrl.ts index d094ebea2..63078e483 100644 --- a/src/qt/locale/nyc3_uz@Cyrl.ts +++ b/src/qt/locale/nyc3_uz@Cyrl.ts @@ -210,7 +210,7 @@ Ички ойналар асбоблар панели - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Тўловлар (QR кодлари ва bitcoin ёрдамида яратишлар: URI’лар) сўраш @@ -222,7 +222,7 @@ Фойдаланилган қабул қилинган манзиллар ва ёрлиқлар рўйхатини кўрсатиш - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request NYC3’ни очиш: URI ёки тўлов сўрови diff --git a/src/qt/locale/nyc3_vi.ts b/src/qt/locale/nyc3_vi.ts index 21dc38d32..1da88933e 100644 --- a/src/qt/locale/nyc3_vi.ts +++ b/src/qt/locale/nyc3_vi.ts @@ -410,8 +410,8 @@ Các thanh công cụ - Request payments (generates QR codes and bitcoin: URIs) - Yêu cầu thanh toán (tạo QR code và bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + Yêu cầu thanh toán (tạo QR code và nyc3: URIs) Show the list of used sending addresses and labels @@ -422,8 +422,8 @@ Hiển thị danh sách các địa chỉ và nhãn đã dùng để nhận - Open a bitcoin: URI or payment request - Mở một bitcoin: URI hoặc yêu cầu thanh toán + Open a nyc3: URI or payment request + Mở một nyc3: URI hoặc yêu cầu thanh toán &Command-line options @@ -2268,8 +2268,8 @@ Nhập một label cho cái address này để thêm vào danh sách địa chỉ đã sử dụng - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. - Một tin nhắn được đính kèm với số bitcoin: URI mà sẽ được lưu giữ với transaction dành cho tài liệu tham khảo. Lưu ý: Tin nhắn này sẽ không được gửi thông qua NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + Một tin nhắn được đính kèm với số nyc3: URI mà sẽ được lưu giữ với transaction dành cho tài liệu tham khảo. Lưu ý: Tin nhắn này sẽ không được gửi thông qua NYC3 network. Pay To: diff --git a/src/qt/locale/nyc3_vi_VN.ts b/src/qt/locale/nyc3_vi_VN.ts index feb10bd61..798a36f7c 100644 --- a/src/qt/locale/nyc3_vi_VN.ts +++ b/src/qt/locale/nyc3_vi_VN.ts @@ -391,7 +391,7 @@ Ví của bạn chưa được mã hóa. Thanh công cụ (toolbar) - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) Yêu cầu thanh toán(tạo mã QR và địa chỉ NYC3: URLs) @@ -403,7 +403,7 @@ Ví của bạn chưa được mã hóa. Hiện thỉ danh sách các địa chỉ và nhãn đã dùng để nhận. - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request Mở bitcoin:URL hoặc yêu cầu thanh toán diff --git a/src/qt/locale/nyc3_zh.ts b/src/qt/locale/nyc3_zh.ts index 0787ccc18..44027fa53 100644 --- a/src/qt/locale/nyc3_zh.ts +++ b/src/qt/locale/nyc3_zh.ts @@ -330,7 +330,7 @@ 标签工具栏 - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) 请求支付(生成二维码和比特币链接) @@ -765,7 +765,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p 输入此地址的标签,将其添加到使用的地址列表中 - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. 附在比特币上的消息:URI将与交易一起存储,供参考。注意:此信息不会通过比特币网络发送。 diff --git a/src/qt/locale/nyc3_zh_CN.ts b/src/qt/locale/nyc3_zh_CN.ts index 6ea1cdfd3..e9d9a8673 100644 --- a/src/qt/locale/nyc3_zh_CN.ts +++ b/src/qt/locale/nyc3_zh_CN.ts @@ -414,8 +414,8 @@ 分页工具栏 - Request payments (generates QR codes and bitcoin: URIs) - 请求支付 (生成二维码和 bitcoin: URI) + Request payments (generates QR codes and nyc3: URIs) + 请求支付 (生成二维码和 nyc3: URI) Show the list of used sending addresses and labels @@ -426,8 +426,8 @@ 显示用过的接收地址和标签的列表 - Open a bitcoin: URI or payment request - 打开一个 bitcoin: URI 或支付请求 + Open a nyc3: URI or payment request + 打开一个 nyc3: URI 或支付请求 &Command-line options @@ -2462,7 +2462,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p 请为此地址输入一个标签以将它加入用过的地址列表 - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. bitcoin:URI 附带的备注信息,将会和交易一起存储,备查。 注意:该消息不会通过比特币网络传输。 diff --git a/src/qt/locale/nyc3_zh_HK.ts b/src/qt/locale/nyc3_zh_HK.ts index b5b9467ea..528cd589c 100644 --- a/src/qt/locale/nyc3_zh_HK.ts +++ b/src/qt/locale/nyc3_zh_HK.ts @@ -362,8 +362,8 @@ 說明 &H - Request payments (generates QR codes and bitcoin: URIs) - 要求付款 (產生QR碼 bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) + 要求付款 (產生QR碼 nyc3: URIs) Indexing blocks on disk... diff --git a/src/qt/locale/nyc3_zh_TW.ts b/src/qt/locale/nyc3_zh_TW.ts index e62776d42..329779d20 100644 --- a/src/qt/locale/nyc3_zh_TW.ts +++ b/src/qt/locale/nyc3_zh_TW.ts @@ -414,7 +414,7 @@ 分頁工具列 - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and nyc3: URIs) 要求付款(產生 QR Code 和 bitcoin 付款協議的資源識別碼: URI) @@ -426,7 +426,7 @@ 顯示已使用過的收款位址和標記的清單 - Open a bitcoin: URI or payment request + Open a nyc3: URI or payment request 開啓 bitcoin 協議的資源識別碼(URI)或付款要求 @@ -2422,7 +2422,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p 請輸入這個位址的標記,來把它加進去已使用過位址的清單。 - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. + A message that was attached to the nyc3: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network. 附加在 NYC3 付款協議的資源識別碼(URI)中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到 NYC3 網路上。 diff --git a/src/qt/nyc3.cpp b/src/qt/nyc3.cpp index b97c1a8ba..6e8e1edf0 100644 --- a/src/qt/nyc3.cpp +++ b/src/qt/nyc3.cpp @@ -365,7 +365,7 @@ void NYC3Application::initializeResult(bool success) #ifdef ENABLE_WALLET // Now that initialization/startup is done, process any command-line - // bitcoin: URIs or payment requests: + // nyc3: URIs or payment requests: if (paymentServer) { connect(paymentServer, &PaymentServer::receivedPaymentRequest, window, &NYC3GUI::handlePaymentRequest); connect(window, &NYC3GUI::receivedURI, paymentServer, &PaymentServer::handleURIOrFile); diff --git a/src/qt/nyc3gui.cpp b/src/qt/nyc3gui.cpp index 4e1f463b5..3f8003dca 100644 --- a/src/qt/nyc3gui.cpp +++ b/src/qt/nyc3gui.cpp @@ -256,7 +256,7 @@ void NYC3GUI::createActions() sendCoinsMenuAction->setToolTip(sendCoinsMenuAction->statusTip()); receiveCoinsAction = new QAction(platformStyle->SingleColorIcon(":/icons/receiving_addresses"), tr("&Receive"), this); - receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and bitcoin: URIs)")); + receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and nyc3: URIs)")); receiveCoinsAction->setToolTip(receiveCoinsAction->statusTip()); receiveCoinsAction->setCheckable(true); receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3)); @@ -332,7 +332,7 @@ void NYC3GUI::createActions() usedReceivingAddressesAction->setStatusTip(tr("Show the list of used receiving addresses and labels")); openAction = new QAction(platformStyle->TextColorIcon(":/icons/open"), tr("Open &URI..."), this); - openAction->setStatusTip(tr("Open a bitcoin: URI or payment request")); + openAction->setStatusTip(tr("Open a nyc3: URI or payment request")); m_open_wallet_action = new QAction(tr("Open Wallet"), this); m_open_wallet_action->setMenu(new QMenu(this)); diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index 14a28286a..a6a3d51fa 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -101,11 +101,11 @@ void PaymentServer::ipcParseCommandLine(interfaces::Node& node, int argc, char* if (arg.startsWith("-")) continue; - // If the bitcoin: URI contains a payment request, we are not able to detect the + // If the nyc3: URI contains a payment request, we are not able to detect the // network as that would require fetching and parsing the payment request. // That means clicking such an URI which contains a testnet payment request // will start a mainnet instance and throw a "wrong network" error. - if (arg.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // bitcoin: URI + if (arg.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // nyc3: URI { savedPaymentRequests.append(arg); @@ -243,7 +243,7 @@ PaymentServer::~PaymentServer() } // -// OSX-specific way of handling bitcoin: URIs and PaymentRequest mime types. +// OSX-specific way of handling nyc3: URIs and PaymentRequest mime types. // Also used by paymentservertests.cpp and when opening a payment request file // via "Open URI..." menu entry. // @@ -289,7 +289,7 @@ void PaymentServer::handleURIOrFile(const QString& s) Q_EMIT message(tr("URI handling"), tr("'bitcoin://' is not a valid URI. Use 'bitcoin:' instead."), CClientUIInterface::MSG_ERROR); } - else if (s.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // bitcoin: URI + else if (s.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // nyc3: URI { QUrlQuery uri((QUrl(s))); #ifdef ENABLE_BIP70 @@ -506,7 +506,7 @@ void PaymentServer::initNetManager() return; delete netManager; - // netManager is used to fetch paymentrequests given in bitcoin: URIs + // netManager is used to fetch paymentrequests given in nyc3: URIs netManager = new QNetworkAccessManager(this); QNetworkProxy proxy; diff --git a/src/qt/paymentserver.h b/src/qt/paymentserver.h index 77284a46d..a57b6e071 100644 --- a/src/qt/paymentserver.h +++ b/src/qt/paymentserver.h @@ -6,7 +6,7 @@ #define BITCOIN_QT_PAYMENTSERVER_H // This class handles payment requests from clicking on -// bitcoin: URIs +// nyc3: URIs // // This is somewhat tricky, because we have to deal with // the situation where the user clicks on a link during diff --git a/src/qt/recentrequeststablemodel.h b/src/qt/recentrequeststablemodel.h index d71041235..362c23f57 100644 --- a/src/qt/recentrequeststablemodel.h +++ b/src/qt/recentrequeststablemodel.h @@ -50,7 +50,7 @@ private: Qt::SortOrder order; }; -/** Model for list of recently generated payment requests / bitcoin: URIs. +/** Model for list of recently generated payment requests / nyc3: URIs. * Part of wallet model. */ class RecentRequestsTableModel: public QAbstractTableModel