[Qt] Use identical strings for expired payment request message

- used in sendcoinsdialog.cpp and paymentserver.cpp
- removes an unneded translation string
This commit is contained in:
Philip Kaufmann 2015-02-03 22:44:33 +01:00
parent 06087bda87
commit 6171e494fc

View file

@ -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.