From e59e2470482f9d2fbcd7846f5b34ddf41043c943 Mon Sep 17 00:00:00 2001 From: xiphon Date: Tue, 28 Jan 2020 16:31:04 +0000 Subject: [PATCH] Merchant: strip html tags out of translatable string --- pages/merchant/Merchant.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pages/merchant/Merchant.qml b/pages/merchant/Merchant.qml index aa17d9f3c0..58ca99b52b 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("Currently selected address: ") + addressLabel + qsTr(" (Change)") + translationManager.emptyString + text: "%1: %2 (%3)" + .arg(qsTr("Currently selected address")) + .arg(addressLabel) + .arg(qsTr("Change")) + translationManager.emptyString textFormat: Text.RichText themeTransition: false