diff options
| author | Philip Kaufmann <[email protected]> | 2015-03-18 11:22:27 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-04-20 13:29:22 +0200 |
| commit | 985ec17eee08c7bb0f351a04f6b8ad218654d449 (patch) | |
| tree | 71ef594449e1467ce27f49e04f42459dcf43e12d /src/qt/sendcoinsdialog.cpp | |
| parent | depends: latest config.guess and config.sub (diff) | |
| download | discoin-985ec17eee08c7bb0f351a04f6b8ad218654d449.tar.xz discoin-985ec17eee08c7bb0f351a04f6b8ad218654d449.zip | |
[Qt, Trivial] misc minor string changes
- write "Bitcoins" uppercase
- replace secure/insecure for payment requests with
authenticated/unauthenticated
- change a translatable string for payment request expiry to match another
existing string to only get ONE resulting string to translate
Diffstat (limited to 'src/qt/sendcoinsdialog.cpp')
| -rw-r--r-- | src/qt/sendcoinsdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 59939fa87..0360f160d 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -274,11 +274,11 @@ void SendCoinsDialog::on_sendButton_clicked() recipientElement = tr("%1 to %2").arg(amount, address); } } - else if(!rcp.authenticatedMerchant.isEmpty()) // secure payment request + else if(!rcp.authenticatedMerchant.isEmpty()) // authenticated payment request { recipientElement = tr("%1 to %2").arg(amount, GUIUtil::HtmlEscape(rcp.authenticatedMerchant)); } - else // insecure payment request + else // unauthenticated payment request { recipientElement = tr("%1 to %2").arg(amount, address); } |