aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2015-02-03 22:44:33 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2015-04-15 14:31:52 +0200
commit6171e494fcd38a4e9a2921e066c10720a74e0ddb (patch)
tree0ee6f7bfd1c9d2e0edf7cb89bbd271467adb4650 /src/qt
parent06087bda87214e3f4995a0de65633511d4158d78 (diff)
downloadbitcoin-6171e494fcd38a4e9a2921e066c10720a74e0ddb.tar.xz
[Qt] Use identical strings for expired payment request message
- used in sendcoinsdialog.cpp and paymentserver.cpp - removes an unneded translation string
Diffstat (limited to 'src/qt')
-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 774667d4ac..59939fa871 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.