Skip to content

Commit 6171e49

Browse files
author
Philip Kaufmann
committed
[Qt] Use identical strings for expired payment request message
- used in sendcoinsdialog.cpp and paymentserver.cpp - removes an unneded translation string
1 parent 06087bd commit 6171e49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/sendcoinsdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ void SendCoinsDialog::processSendCoinsReturn(const WalletModel::SendCoinsReturn
531531
msgParams.first = tr("A fee higher than %1 is considered an absurdly high fee.").arg(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), 10000000));
532532
break;
533533
case WalletModel::PaymentRequestExpired:
534-
msgParams.first = tr("Payment request expired!");
534+
msgParams.first = tr("Payment request expired.");
535535
msgParams.second = CClientUIInterface::MSG_ERROR;
536536
break;
537537
// included to prevent a compiler warning.

0 commit comments

Comments
 (0)