diff options
| author | Philip Kaufmann <[email protected]> | 2015-02-03 22:44:33 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2015-04-15 14:31:52 +0200 |
| commit | 6171e494fcd38a4e9a2921e066c10720a74e0ddb (patch) | |
| tree | 0ee6f7bfd1c9d2e0edf7cb89bbd271467adb4650 | |
| parent | [Qt] minor comment updates in PaymentServer (diff) | |
| download | discoin-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.cpp | 2 |
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. |