From 983a3ba7adc8b055abc2ac3466998262aa0c8160 Mon Sep 17 00:00:00 2001 From: selsta Date: Mon, 2 Dec 2019 00:08:43 +0100 Subject: [PATCH] Translation: fix untranslated strings --- pages/History.qml | 4 ++-- pages/merchant/Merchant.qml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/History.qml b/pages/History.qml index f2cb860b..7639100c 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -228,7 +228,7 @@ Rectangle { MoneroComponents.TextPlain { font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 15 - text: qsTr("Sort by") + ":" + text: qsTr("Sort by") + ":" + translationManager.emptyString color: MoneroComponents.Style.defaultFontColor anchors.verticalCenter: parent.verticalCenter } @@ -447,7 +447,7 @@ Rectangle { MoneroComponents.TextPlain { font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 15 - text: qsTr("Page") + ":" + text: qsTr("Page") + ":" + translationManager.emptyString color: MoneroComponents.Style.defaultFontColor anchors.verticalCenter: parent.verticalCenter } diff --git a/pages/merchant/Merchant.qml b/pages/merchant/Merchant.qml index 8096001e..aa17d9f3 100644 --- a/pages/merchant/Merchant.qml +++ b/pages/merchant/Merchant.qml @@ -158,7 +158,7 @@ Item { "

It's up to you whether to accept unconfirmed transactions or not. It is likely they'll be " + "confirmed in short order, but there is still a possibility they might not, so for larger " + "values you may want to wait for one or more confirmation(s).

" - ); + ) + translationManager.emptyString; } else if(root.trackingError !== ""){ return root.trackingError; } else if(trackingModel.count < 1){ @@ -265,7 +265,7 @@ Item { font.pixelSize: 12 font.bold: false color: "white" - text: "Currently selected address: " + addressLabel + " (Change)" + text: qsTr("Currently selected address: ") + addressLabel + qsTr(" (Change)") + translationManager.emptyString textFormat: Text.RichText themeTransition: false @@ -446,7 +446,7 @@ Item { font.pixelSize: 14 font.bold: false color: "white" - text: qsTr("Amount to receive") + " (XMR)" + text: qsTr("Amount to receive") + " (XMR)" + translationManager.emptyString themeTransition: false }