aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2015-02-03 22:44:33 +0100
committerPhilip Kaufmann <[email protected]>2015-04-15 14:31:52 +0200
commit6171e494fcd38a4e9a2921e066c10720a74e0ddb (patch)
tree0ee6f7bfd1c9d2e0edf7cb89bbd271467adb4650
parent[Qt] minor comment updates in PaymentServer (diff)
downloaddiscoin-6171e494fcd38a4e9a2921e066c10720a74e0ddb.tar.xz
discoin-6171e494fcd38a4e9a2921e066c10720a74e0ddb.zip
[Qt] Use identical strings for expired payment request message
- used in sendcoinsdialog.cpp and paymentserver.cpp - removes an unneded translation string
-rw-r--r--src/qt/sendcoinsdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp
index 774667d4a..59939fa87 100644
--- a/src/qt/sendcoinsdialog.cpp
+++ b/src/qt/sendcoinsdialog.cpp
@@ -531,7 +531,7 @@ void SendCoinsDialog::processSendCoinsReturn(const WalletModel::SendCoinsReturn
msgParams.first = tr("A fee higher than %1 is considered an absurdly high fee.").arg(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), 10000000));
break;
case WalletModel::PaymentRequestExpired:
- msgParams.first = tr("Payment request expired!");
+ msgParams.first = tr("Payment request expired.");
msgParams.second = CClientUIInterface::MSG_ERROR;
break;
// included to prevent a compiler warning.