[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:
parent
06087bda87
commit
6171e494fc
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue