Merge pull request #2749

e59e247 Merchant: strip html tags out of translatable string (xiphon)
This commit is contained in:
luigi1111 2020-01-30 16:31:55 -05:00
commit 21e8c7ca17
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -265,7 +265,10 @@ Item {
font.pixelSize: 12
font.bold: false
color: "white"
text: qsTr("<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 12px;}</style>Currently selected address: ") + addressLabel + qsTr(" <a href='#'>(Change)</a>") + translationManager.emptyString
text: "<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 12px;}</style>%1: %2 <a href='#'>(%3)</a>"
.arg(qsTr("Currently selected address"))
.arg(addressLabel)
.arg(qsTr("Change")) + translationManager.emptyString
textFormat: Text.RichText
themeTransition: false