aboutsummaryrefslogtreecommitdiff
path: root/components/PasswordDialog.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-04-16 16:54:17 -0400
committerluigi1111 <luigi1111w@gmail.com>2019-04-16 16:54:17 -0400
commit10926644bfe049b3c7b1dcd9b274a3a79cfa1e94 (patch)
treeb3b57df2159b0cfbb611b1adc1e57670b977c30c /components/PasswordDialog.qml
parente760d33dad2ce3a0a1565f957c3232007ee4dcce (diff)
parent15a5f763349c6e3b3d3570fd4de6a83a03d726ad (diff)
downloadmonzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.tar.gz
monzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.tar.xz
monzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.zip
Merge pull request #2088
15a5f76 add missing TranslationManager.emptyString (selsta)
Diffstat (limited to 'components/PasswordDialog.qml')
-rw-r--r--components/PasswordDialog.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml
index 842c0549..e292603b 100644
--- a/components/PasswordDialog.qml
+++ b/components/PasswordDialog.qml
@@ -99,7 +99,7 @@ Item {
Layout.maximumWidth: 400 * scaleRatio
Label {
- text: root.walletName.length > 0 ? qsTr("Please enter wallet password for: ") + root.walletName : qsTr("Please enter wallet password")
+ text: (root.walletName.length > 0 ? qsTr("Please enter wallet password for: ") + root.walletName : qsTr("Please enter wallet password")) + translationManager.emptyString
Layout.fillWidth: true
font.pixelSize: 16 * scaleRatio
@@ -232,7 +232,7 @@ Item {
MoneroComponents.StandardButton {
id: okButton
small: true
- text: qsTr("Continue")
+ text: qsTr("Continue") + translationManager.emptyString
KeyNavigation.tab: cancelButton
onClicked: {
root.close()