From f5aa08f53030e433c517b53c4798fa5d942c4844 Mon Sep 17 00:00:00 2001 From: Steven Roose Date: Mon, 30 Mar 2020 12:38:23 +0100 Subject: [PATCH 1/2] Replace some Bitcoin mentions with Elements --- src/qt/bitcoin.cpp | 2 +- src/qt/intro.cpp | 7 ++++--- src/qt/paymentserver.cpp | 4 ++-- src/qt/sendcoinsdialog.cpp | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 34c9bb34af..baec43e4fc 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -390,7 +390,7 @@ void BitcoinApplication::shutdownResult() void BitcoinApplication::handleRunawayException(const QString &message) { - QMessageBox::critical(nullptr, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + message); + QMessageBox::critical(nullptr, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Elements can no longer continue safely and will quit.") + QString("\n\n") + message); ::exit(EXIT_FAILURE); } diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 902c58b462..fc3bb7479e 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -129,8 +129,8 @@ Intro::Intro(QWidget *parent, uint64_t blockchain_size, uint64_t chain_state_siz ui->lblExplanation1->setText(ui->lblExplanation1->text() .arg(tr(PACKAGE_NAME)) .arg(m_blockchain_size) - .arg(2009) - .arg(tr("Bitcoin")) + .arg(2018) + .arg(tr("Liquid")) ); ui->lblExplanation2->setText(ui->lblExplanation2->text().arg(tr(PACKAGE_NAME))); @@ -149,7 +149,8 @@ Intro::Intro(QWidget *parent, uint64_t blockchain_size, uint64_t chain_state_siz } requiredSpace += m_chain_state_size; ui->sizeWarningLabel->setText( - tr("%1 will download and store a copy of the Bitcoin block chain.").arg(tr(PACKAGE_NAME)) + " " + + //ELEMENTS: the Bitcoin mention is removed here which breaks translations + tr("%1 will download and store a copy of the block chain.").arg(tr(PACKAGE_NAME)) + " " + storageRequiresMsg.arg(requiredSpace) + " " + tr("The wallet will also be stored in this directory.") ); diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index 25e8e594cd..dc31ab1fb0 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -66,7 +66,7 @@ const char* BIP71_MIMETYPE_PAYMENTREQUEST = "application/bitcoin-paymentrequest" // static QString ipcServerName() { - QString name("BitcoinQt"); + QString name("ElementsQt"); // Append a simple hash of the datadir // Note that GetDataDir(true) returns a different path @@ -340,7 +340,7 @@ void PaymentServer::handleURIOrFile(const QString& s) } else Q_EMIT message(tr("URI handling"), - tr("URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters."), + tr("URI cannot be parsed! This can be caused by an invalid address or malformed URI parameters."), CClientUIInterface::ICON_WARNING); return; diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index c2518932af..6cacda42aa 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -811,7 +811,7 @@ void SendCoinsDialog::coinControlChangeEdited(const QString& text) } else if (!IsValidDestination(dest)) // Invalid address { - ui->labelCoinControlChangeLabel->setText(tr("Warning: Invalid Bitcoin address")); + ui->labelCoinControlChangeLabel->setText(tr("Warning: Invalid address")); } else // Valid address { From 5e3019570f0ef93335725d8fd1a0ce602009889b Mon Sep 17 00:00:00 2001 From: Philippe McLean Date: Fri, 3 Apr 2020 17:14:26 -0700 Subject: [PATCH 2/2] Add parameter for chain name in initial download string --- src/qt/intro.cpp | 3 +-- src/qt/locale/bitcoin_ar.ts | 6 +++--- src/qt/locale/bitcoin_ca.ts | 6 +++--- src/qt/locale/bitcoin_cs.ts | 4 ++-- src/qt/locale/bitcoin_da.ts | 6 +++--- src/qt/locale/bitcoin_de.ts | 6 +++--- src/qt/locale/bitcoin_en.ts | 2 +- src/qt/locale/bitcoin_en_GB.ts | 6 +++--- src/qt/locale/bitcoin_es.ts | 6 +++--- src/qt/locale/bitcoin_es_CL.ts | 6 +++--- src/qt/locale/bitcoin_fi.ts | 6 +++--- src/qt/locale/bitcoin_fr.ts | 6 +++--- src/qt/locale/bitcoin_he.ts | 6 +++--- src/qt/locale/bitcoin_hr.ts | 6 +++--- src/qt/locale/bitcoin_hu.ts | 6 +++--- src/qt/locale/bitcoin_id_ID.ts | 6 +++--- src/qt/locale/bitcoin_it.ts | 6 +++--- src/qt/locale/bitcoin_ja.ts | 6 +++--- src/qt/locale/bitcoin_ko_KR.ts | 6 +++--- src/qt/locale/bitcoin_nb.ts | 6 +++--- src/qt/locale/bitcoin_nl.ts | 6 +++--- src/qt/locale/bitcoin_pl.ts | 6 +++--- src/qt/locale/bitcoin_pt_BR.ts | 6 +++--- src/qt/locale/bitcoin_pt_PT.ts | 4 ++-- src/qt/locale/bitcoin_ro_RO.ts | 4 ++-- src/qt/locale/bitcoin_sk.ts | 4 ++-- src/qt/locale/bitcoin_sv.ts | 6 +++--- src/qt/locale/bitcoin_szl.ts | 6 +++--- src/qt/locale/bitcoin_uk.ts | 4 ++-- src/qt/locale/bitcoin_vi.ts | 6 +++--- src/qt/locale/bitcoin_zh_CN.ts | 4 ++-- src/qt/locale/bitcoin_zh_TW.ts | 6 +++--- 32 files changed, 86 insertions(+), 87 deletions(-) diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index fc3bb7479e..b36dcbeb01 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -149,8 +149,7 @@ Intro::Intro(QWidget *parent, uint64_t blockchain_size, uint64_t chain_state_siz } requiredSpace += m_chain_state_size; ui->sizeWarningLabel->setText( - //ELEMENTS: the Bitcoin mention is removed here which breaks translations - tr("%1 will download and store a copy of the block chain.").arg(tr(PACKAGE_NAME)) + " " + + tr("%1 will download and store a copy of the %2 block chain.").arg(tr(PACKAGE_NAME)).arg(tr("Liquid")) + " " + storageRequiresMsg.arg(requiredSpace) + " " + tr("The wallet will also be stored in this directory.") ); diff --git a/src/qt/locale/bitcoin_ar.ts b/src/qt/locale/bitcoin_ar.ts index d9abd93a34..bc10ff4b11 100644 --- a/src/qt/locale/bitcoin_ar.ts +++ b/src/qt/locale/bitcoin_ar.ts @@ -833,8 +833,8 @@ سيتم تخزين %1 جيجابايت تقريباً من البيانات في هذا الدليل. - %1 will download and store a copy of the Bitcoin block chain. - سيقوم %1 بتنزيل نسخة من سلسلة كتل بتكوين وتخزينها. + %1 will download and store a copy of the %2 block chain. + The wallet will also be stored in this directory. @@ -3193,4 +3193,4 @@ خطأ - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ca.ts b/src/qt/locale/bitcoin_ca.ts index ba918349f1..2f0af62e6c 100644 --- a/src/qt/locale/bitcoin_ca.ts +++ b/src/qt/locale/bitcoin_ca.ts @@ -873,8 +873,8 @@ Aproximadament %1 GB de dades s'emmagatzemaran en aquest directori. - %1 will download and store a copy of the Bitcoin block chain. - %1 descarregarà i emmagatzemarà una còpia de la cadena de blocs Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 descarregarà i emmagatzemarà una còpia de la cadena de blocs %2. The wallet will also be stored in this directory. @@ -3556,4 +3556,4 @@ Nota: Com que la comissió es calcula en funció dels bytes, una comissió de "1 Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index abe13e6386..18c2c03f8a 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -873,7 +873,7 @@ Bude proto potřebovat do tohoto adresáře uložit přibližně %1 GB dat. - %1 will download and store a copy of the Bitcoin block chain. + %1 will download and store a copy of the %2 block chain. %1 bude stahovat kopii bločenky. @@ -3672,4 +3672,4 @@ Poznámka: Jelikož je poplatek počítaný za bajt, poplatek o hodnotě "100 sa Chyba - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 49125eaa6a..3af3e3c070 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -873,8 +873,8 @@ Omtrent %1 GB data vil blive gemt i denne mappe. - %1 will download and store a copy of the Bitcoin block chain. - %1 vil downloade og gemme en kopi af Bitcoin-blokkæden. + %1 will download and store a copy of the %2 block chain. + %1 vil downloade og gemme en kopi af %2-blokkæden. The wallet will also be stored in this directory. @@ -3664,4 +3664,4 @@ Note: Siden gebyret er kalkuleret på en per-byte basis, et gebyr på "100 satos Fejl - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 41a4bd8470..a697ae6c08 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -873,8 +873,8 @@ Etwa %1 GB Daten werden in diesem Verzeichnis gespeichert. - %1 will download and store a copy of the Bitcoin block chain. - %1 wird heruntergeladen und als eine Kopie von dem Bitcoin Blockchain gespeichert. + %1 will download and store a copy of the %2 block chain. + %1 wird heruntergeladen und als eine Kopie von dem %2 Blockchain gespeichert. The wallet will also be stored in this directory. @@ -3665,4 +3665,4 @@ Hinweis: Eine Gebühr von "100 Satoshis pro kB" bei einer Größe der Transaktio Fehler - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index a770a6fad8..2a1b64c0b9 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -1111,7 +1111,7 @@ - %1 will download and store a copy of the Bitcoin block chain. + %1 will download and store a copy of the %2 block chain. diff --git a/src/qt/locale/bitcoin_en_GB.ts b/src/qt/locale/bitcoin_en_GB.ts index 9e193ae0e6..c398a679b6 100644 --- a/src/qt/locale/bitcoin_en_GB.ts +++ b/src/qt/locale/bitcoin_en_GB.ts @@ -873,8 +873,8 @@ Approximately %1 GB of data will be stored in this directory. - %1 will download and store a copy of the Bitcoin block chain. - %1 will download and store a copy of the Bitcoin block chain. + %1 will download and store a copy of the %2 block chain. + %1 will download and store a copy of the %2 block chain. The wallet will also be stored in this directory. @@ -3676,4 +3676,4 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 70261ddd95..57f8b7a59e 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -872,8 +872,8 @@ Se almacenará aproximadamente %1 GB de datos en este directorio. - %1 will download and store a copy of the Bitcoin block chain. - %1 descargará y almacenará una copia de la cadena de bloques de Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 descargará y almacenará una copia de la cadena de bloques de %2. The wallet will also be stored in this directory. @@ -3675,4 +3675,4 @@ Nota: Dado que la comisión se calcula por byte, una comisión de "100 satoshis Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index 3a26d5fde2..bedbe89d81 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -844,8 +844,8 @@ Aproximadamente %1 GB de información será almacenado en este directorio. - %1 will download and store a copy of the Bitcoin block chain. - %1 descargará y almacenará una copia del blockchain de Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 descargará y almacenará una copia del blockchain de %2. The wallet will also be stored in this directory. @@ -3178,4 +3178,4 @@ Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index f971ab2df5..c3e51416b3 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -867,8 +867,8 @@ Noin %1 GB tietoa varastoidaan tähän hakemistoon. - %1 will download and store a copy of the Bitcoin block chain. - %1 lataa ja tallentaa kopion Bitcoinin lohkoketjusta. + %1 will download and store a copy of the %2 block chain. + %1 lataa ja tallentaa kopion %2in lohkoketjusta. The wallet will also be stored in this directory. @@ -3522,4 +3522,4 @@ Virhe - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fr.ts b/src/qt/locale/bitcoin_fr.ts index 75faa990b6..45870bda31 100644 --- a/src/qt/locale/bitcoin_fr.ts +++ b/src/qt/locale/bitcoin_fr.ts @@ -873,8 +873,8 @@ Approximativement %1 Go de données seront stockés dans ce répertoire. - %1 will download and store a copy of the Bitcoin block chain. - %1 téléchargera et stockera une copie de la chaîne de blocs Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 téléchargera et stockera une copie de la chaîne de blocs %2. The wallet will also be stored in this directory. @@ -3664,4 +3664,4 @@ Note : Les frais étant calculés par octet, des frais de « 100 satoshis par Erreur - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index b9989d5c53..6e22a620cc 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -869,8 +869,8 @@ מידע בנפח של כ-%1 ג׳יגה-בייט יאוחסן בתיקייה זו. - %1 will download and store a copy of the Bitcoin block chain. - %1 תוריד ותאחסן עותק של שרשרת הבלוקים של ביטקוין. + %1 will download and store a copy of the %2 block chain. + The wallet will also be stored in this directory. @@ -3352,4 +3352,4 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p שגיאה - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index 381c99946b..fd3e38f973 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -872,8 +872,8 @@ Otprilike %1 GB podataka bit će spremljeno u ovoj mapi. - %1 will download and store a copy of the Bitcoin block chain. - %1 preuzet će i pohraniti kopiju Bitcoinovog lanca blokova. + %1 will download and store a copy of the %2 block chain. + %1 preuzet će i pohraniti kopiju %2ovog lanca blokova. The wallet will also be stored in this directory. @@ -3663,4 +3663,4 @@ Napomena: Budući da se naknada računa po bajtu, naknada od "100 satošija po k Greška - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 60ebc60d69..5b4f94d667 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -840,8 +840,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka Hozzávetőlegesen %1 GB adatot fogunk ebben a könyvtárban tárolni. - %1 will download and store a copy of the Bitcoin block chain. - %1 le fog töltődni és a Bitcoin blokk lánc egy másolatát fogja tárolni. + %1 will download and store a copy of the %2 block chain. + %1 le fog töltődni és a %2 blokk lánc egy másolatát fogja tárolni. The wallet will also be stored in this directory. @@ -3119,4 +3119,4 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka Hiba - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_id_ID.ts b/src/qt/locale/bitcoin_id_ID.ts index d1c4e82676..71bb5b0380 100644 --- a/src/qt/locale/bitcoin_id_ID.ts +++ b/src/qt/locale/bitcoin_id_ID.ts @@ -869,8 +869,8 @@ %1 GB data akan disimpan di direktori ini. - %1 will download and store a copy of the Bitcoin block chain. - %1 akan mengunduh dan menyimpan salinan Bitcoin block chain. + %1 will download and store a copy of the %2 block chain. + %1 akan mengunduh dan menyimpan salinan %2 block chain. The wallet will also be stored in this directory. @@ -2134,4 +2134,4 @@ Gagal - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index d769fbd0e5..a752f36354 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -865,8 +865,8 @@ Verranno salvati circa %1 GB di dati in questa cartella. - %1 will download and store a copy of the Bitcoin block chain. - %1 scaricherà e salverà una copia della block chain di Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 scaricherà e salverà una copia della block chain di %2. The wallet will also be stored in this directory. @@ -3633,4 +3633,4 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di " Errore - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ja.ts b/src/qt/locale/bitcoin_ja.ts index 1a016a0dcb..cf9fd7fe4c 100644 --- a/src/qt/locale/bitcoin_ja.ts +++ b/src/qt/locale/bitcoin_ja.ts @@ -873,8 +873,8 @@ おおむね%1GBのデータがこのディレクトリに保存されます。 - %1 will download and store a copy of the Bitcoin block chain. - %1はBitcoinのブロックチェーンの複製をダウンロードし保存します。 + %1 will download and store a copy of the %2 block chain. + %1は%2のブロックチェーンの複製をダウンロードし保存します。 The wallet will also be stored in this directory. @@ -3665,4 +3665,4 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p エラー - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ko_KR.ts b/src/qt/locale/bitcoin_ko_KR.ts index 931415a27d..d9df2c4b35 100644 --- a/src/qt/locale/bitcoin_ko_KR.ts +++ b/src/qt/locale/bitcoin_ko_KR.ts @@ -873,8 +873,8 @@ 약 %1GB의 데이터가 이 디렉토리에 저장됩니다. - %1 will download and store a copy of the Bitcoin block chain. - %1은 Bitcoin 블록 체인의 사본을 다운로드하여 저장합니다. + %1 will download and store a copy of the %2 block chain. + %1은 %2 블록 체인의 사본을 다운로드하여 저장합니다. The wallet will also be stored in this directory. @@ -3665,4 +3665,4 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p 오류 - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 73adc5342d..64389a1f02 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -847,8 +847,8 @@ Omtrent %1GB data vil bli lagret i denne mappen. - %1 will download and store a copy of the Bitcoin block chain. - %1 vil laste ned og lagre en kopi av Bitcoin blokkjeden. + %1 will download and store a copy of the %2 block chain. + %1 vil laste ned og lagre en kopi av %2 blokkjeden. The wallet will also be stored in this directory. @@ -3526,4 +3526,4 @@ Feil - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 9c9b94888d..0ec2341431 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -873,8 +873,8 @@ Gemiddeld %1 GB aan data zal worden opgeslagen in deze map. - %1 will download and store a copy of the Bitcoin block chain. - %1 zal een kopie van de blokketen van Bitcoin downloaden en opslaan. + %1 will download and store a copy of the %2 block chain. + %1 zal een kopie van de blokketen van %2 downloaden en opslaan. The wallet will also be stored in this directory. @@ -3676,4 +3676,4 @@ Notitie: Omdat de vergoeding per byte wordt gerekend, zal een vergoeding van "10 Fout - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index 20ea489b4c..f1b2b1c61d 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -873,8 +873,8 @@ Około %1 GB danych zostanie zapisane w tym katalogu. - %1 will download and store a copy of the Bitcoin block chain. - %1 pobierze i zapisze lokalnie kopię łańcucha bloków Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 pobierze i zapisze lokalnie kopię łańcucha bloków %2. The wallet will also be stored in this directory. @@ -3675,4 +3675,4 @@ Zwróć uwagę, że poprawnie zweryfikowana wiadomość potwierdza to, że nadaw Błąd - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 5dc182b13c..e63406c7e1 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -869,8 +869,8 @@ Aproximadamente %1 GB de dados serão armazenados neste diretório. - %1 will download and store a copy of the Bitcoin block chain. - %1 irá baixar e armazenar uma cópia da block chain do Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 irá baixar e armazenar uma cópia da block chain do %2. The wallet will also be stored in this directory. @@ -3669,4 +3669,4 @@ Diretório de blocos especificados "%s" não existe. Erro - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pt_PT.ts b/src/qt/locale/bitcoin_pt_PT.ts index 4736680ba5..5cb2ef275d 100644 --- a/src/qt/locale/bitcoin_pt_PT.ts +++ b/src/qt/locale/bitcoin_pt_PT.ts @@ -861,8 +861,8 @@ Aproximadamente %1 GB de dados irão ser guardados nesta pasta. - %1 will download and store a copy of the Bitcoin block chain. - %1 irá descarregar e armazenar uma cópia da cadeia de blocos da Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 irá descarregar e armazenar uma cópia da cadeia de blocos da %2. The wallet will also be stored in this directory. diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index 59a64f353d..f12f48561e 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -869,8 +869,8 @@ Aproximativ %1 GB de date vor fi stocate in acest director. - %1 will download and store a copy of the Bitcoin block chain. - %1 va descarca si stoca o copie a blockchainului Bitcoin + %1 will download and store a copy of the %2 block chain. + %1 va descarca si stoca o copie a blockchainului %2. The wallet will also be stored in this directory. diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index 7a6dabb555..4159e96a0c 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -873,7 +873,7 @@ Približne %1 GB dát bude uložených v tejto zložke. - %1 will download and store a copy of the Bitcoin block chain. + %1 will download and store a copy of the %2 block chain. %1 bude sťahovať kopiu reťazca blokov. @@ -3673,4 +3673,4 @@ Poznámka: Keďže poplatok je počítaný za bajt, poplatok o hodnote "100 sato Chyba - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index 08ef9b0e59..6383ba0909 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -874,8 +874,8 @@ Var vänlig och försök igen. Ungefär %1 GB data kommer att lagras i den här katalogen. - %1 will download and store a copy of the Bitcoin block chain. - %1 kommer att ladda ner och lagra en kopia av Bitcoin-blockkedjan. + %1 will download and store a copy of the %2 block chain. + %1 kommer att ladda ner och lagra en kopia av %2-blockkedjan. The wallet will also be stored in this directory. @@ -3677,4 +3677,4 @@ Notera: Då avgiften beräknas per byte kommer en avgift på 50 satoshi tas ut f Fel - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_szl.ts b/src/qt/locale/bitcoin_szl.ts index 9559df2a7d..8a22ae7950 100644 --- a/src/qt/locale/bitcoin_szl.ts +++ b/src/qt/locale/bitcoin_szl.ts @@ -861,8 +861,8 @@ Kole %1 GB datōw ôstanie spamiyntane w tym katalogu. - %1 will download and store a copy of the Bitcoin block chain. - %1 sebiere i spamiyntŏ kopijõ kety blokōw Bitcoin. + %1 will download and store a copy of the %2 block chain. + %1 sebiere i spamiyntŏ kopijõ kety blokōw %2. The wallet will also be stored in this directory. @@ -2120,4 +2120,4 @@ Feler - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 60e5f6a5b5..72b727a901 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -865,7 +865,7 @@ Близько %1 Гб даних буде збережено в цьому каталозі. - %1 will download and store a copy of the Bitcoin block chain. + %1 will download and store a copy of the %2 block chain. %1 буде завантажувати та зберігати копію ланцюжка блоків біткінів. @@ -3654,4 +3654,4 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p Помилка - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_vi.ts b/src/qt/locale/bitcoin_vi.ts index ee0d1b3261..6ecf478252 100644 --- a/src/qt/locale/bitcoin_vi.ts +++ b/src/qt/locale/bitcoin_vi.ts @@ -843,8 +843,8 @@ Gần đúng %1 GB of data sẽ được lưu giữ trong danh mục này. - %1 will download and store a copy of the Bitcoin block chain. - %1 sẽ download và lưu trữ một bản copy của Bitcoin block chain. + %1 will download and store a copy of the %2 block chain. + %1 sẽ download và lưu trữ một bản copy của %2 block chain. The wallet will also be stored in this directory. @@ -3434,4 +3434,4 @@ Lỗi - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index b763298985..ea3bfd32b6 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -868,8 +868,8 @@ 会在此目录中存储约 %1 GB 的数据。 - %1 will download and store a copy of the Bitcoin block chain. - %1 将会下载并存储比特币区块链。 + %1 will download and store a copy of the %2 block chain. + The wallet will also be stored in this directory. diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 919af7ac48..363244b0b2 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -873,8 +873,8 @@ 在這個目錄中大約會存放 %1 GB 的資料。 - %1 will download and store a copy of the Bitcoin block chain. - %1 會下載 Bitcoin 區塊鏈並且儲存一份副本。 + %1 will download and store a copy of the %2 block chain. + %1 會下載 %2 區塊鏈並且儲存一份副本。 The wallet will also be stored in this directory. @@ -3668,4 +3668,4 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p 錯誤 - \ No newline at end of file +