diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-12-05 08:47:54 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-12-05 08:47:54 -0600 |
| commit | 3d7ded209a4f3c56dc60dc4ebcc41db1f9cb98a2 (patch) | |
| tree | 5f4b121fc9fe4e5134ffe3b5ff0f062bc4e5b13d /pages | |
| parent | 63d4ba6df8950caa12b3714672d723a6ed03e2dd (diff) | |
| parent | 983a3ba7adc8b055abc2ac3466998262aa0c8160 (diff) | |
| download | monzero-gui-3d7ded209a4f3c56dc60dc4ebcc41db1f9cb98a2.tar.gz monzero-gui-3d7ded209a4f3c56dc60dc4ebcc41db1f9cb98a2.tar.xz monzero-gui-3d7ded209a4f3c56dc60dc4ebcc41db1f9cb98a2.zip | |
Merge pull request #2540
983a3ba Translation: fix untranslated strings (selsta)
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/History.qml | 4 | ||||
| -rw-r--r-- | pages/merchant/Merchant.qml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pages/History.qml b/pages/History.qml index d95a6eac..10ae0b34 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -227,7 +227,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 } @@ -446,7 +446,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 { "<p>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).</p>" - ); + ) + 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: "<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 12px;}</style>Currently selected address: " + addressLabel + " <a href='#'>(Change)</a>" + 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 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 } |
