From 15a5f763349c6e3b3d3570fd4de6a83a03d726ad Mon Sep 17 00:00:00 2001 From: selsta Date: Tue, 16 Apr 2019 16:35:30 +0200 Subject: add missing TranslationManager.emptyString --- components/PasswordDialog.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/PasswordDialog.qml') diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index f820e4df..e4633c06 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -100,7 +100,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 @@ -233,7 +233,7 @@ Item { MoneroComponents.StandardButton { id: okButton small: true - text: qsTr("Continue") + text: qsTr("Continue") + translationManager.emptyString KeyNavigation.tab: cancelButton onClicked: { root.close() -- cgit v1.2.3