Browse Source

Fix address format error message

pull/63/head
Jonathan "Duke" Leto 5 years ago
parent
commit
abbe325ade
  1. 2
      res/zec_qt_wallet_de.ts
  2. 2
      res/zec_qt_wallet_es.ts
  3. 2
      res/zec_qt_wallet_fr.ts
  4. 2
      res/zec_qt_wallet_it.ts
  5. 2
      res/zec_qt_wallet_pt.ts
  6. 2
      res/zec_qt_wallet_template.ts
  7. 2
      src/mainwindow.cpp

2
res/zec_qt_wallet_de.ts

@ -678,7 +678,7 @@
</message>
<message>
<location filename="../src/mainwindow.cpp" line="882"/>
<source>Error paying pirate URI</source>
<source>Error paying Hush URI</source>
<translation>Fehler bei der Bezahl HUSH URI</translation>
</message>
<message>

2
res/zec_qt_wallet_es.ts

@ -634,7 +634,7 @@
</message>
<message>
<location filename="../src/mainwindow.cpp" line="882"/>
<source>Error paying pirate URI</source>
<source>Error paying Hush URI</source>
<translation>Error al pagar HUSH URI</translation>
</message>
<message>

2
res/zec_qt_wallet_fr.ts

@ -664,7 +664,7 @@
</message>
<message>
<location filename="../src/mainwindow.cpp" line="882"/>
<source>Error paying pirate URI</source>
<source>Error paying Hush URI</source>
<translation>Erreur lors du paiement de l&apos;URI</translation>
</message>
<message>

2
res/zec_qt_wallet_it.ts

@ -642,7 +642,7 @@
</message>
<message>
<location filename="../src/mainwindow.cpp" line="882"/>
<source>Error paying pirate URI</source>
<source>Error paying Hush URI</source>
<translation>Errore nel pagamento dell&apos;URI Hush</translation>
</message>
<message>

2
res/zec_qt_wallet_pt.ts

@ -634,7 +634,7 @@
</message>
<message>
<location filename="../src/mainwindow.cpp" line="882"/>
<source>Error paying pirate URI</source>
<source>Error paying Hush URI</source>
<translation type="unfinished"></translation>
</message>
<message>

2
res/zec_qt_wallet_template.ts

@ -642,7 +642,7 @@
</message>
<message>
<location filename="../src/mainwindow.cpp" line="882"/>
<source>Error paying pirate URI</source>
<source>Error paying Hush URI</source>
<translation type="unfinished"></translation>
</message>
<message>

2
src/mainwindow.cpp

@ -891,7 +891,7 @@ void MainWindow::payZcashURI(QString uri, QString myAddr) {
qDebug() << "Received URI " << uri;
PaymentURI paymentInfo = Settings::parseURI(uri);
if (!paymentInfo.error.isEmpty()) {
QMessageBox::critical(this, tr("Error paying pirate URI"),
QMessageBox::critical(this, tr("Error paying Hush URI"),
tr("URI should be of the form 'hush:<addr>?amt=x&memo=y") + "\n" + paymentInfo.error);
return;
}

Loading…
Cancel
Save