From 2c16a446d76dae0a47a4e85c001bcb0883c9f6e4 Mon Sep 17 00:00:00 2001 From: Andy Mornes Date: Mon, 1 Sep 2014 02:20:50 -0400 Subject: [PATCH] Wrapping a string for translation --- src/qt/utilitydialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 922472cbd..17b559f93 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -295,7 +295,7 @@ void PaperWalletDialog::on_printButton_clicked() while( true ) { bool ok; - QString amountInput = QInputDialog::getText(this, tr("Load Paper Wallets"), "Please wait for wallets to print and verify readability.
Enter the number of DOGE you wish to send to each wallet:", QLineEdit::Normal, QString(), &ok); + QString amountInput = QInputDialog::getText(this, tr("Load Paper Wallets"), tr("Please wait for wallets to print and verify readability.
Enter the number of DOGE you wish to send to each wallet:"), QLineEdit::Normal, QString(), &ok); if(!ok) { return;