mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
[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
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
c0555dc8eb
commit
985ec17eee
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user