[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:
Philip Kaufmann
2015-03-18 11:22:27 +01:00
committed by Wladimir J. van der Laan
parent c0555dc8eb
commit 985ec17eee
3 changed files with 12 additions and 12 deletions

View File

@@ -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);
}