diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-01-30 16:31:55 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-01-30 16:31:55 -0500 |
| commit | 21e8c7ca17763f3cc28b4bbfb7365a08ccc034d1 (patch) | |
| tree | c37d1d4a0c96bb99459ee27b5ec176713daabe55 | |
| parent | 8ef1b4109322ef98d0ec4421914deafd08f5e8b0 (diff) | |
| parent | e59e2470482f9d2fbcd7846f5b34ddf41043c943 (diff) | |
| download | monzero-gui-21e8c7ca17763f3cc28b4bbfb7365a08ccc034d1.tar.gz monzero-gui-21e8c7ca17763f3cc28b4bbfb7365a08ccc034d1.tar.xz monzero-gui-21e8c7ca17763f3cc28b4bbfb7365a08ccc034d1.zip | |
Merge pull request #2749
e59e247 Merchant: strip html tags out of translatable string (xiphon)
| -rw-r--r-- | pages/merchant/Merchant.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pages/merchant/Merchant.qml b/pages/merchant/Merchant.qml index aa17d9f3..58ca99b5 100644 --- a/pages/merchant/Merchant.qml +++ b/pages/merchant/Merchant.qml @@ -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 |
