aboutsummaryrefslogtreecommitdiff
path: root/components/PasswordDialog.qml
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-04-16 16:35:30 +0200
committerselsta <selsta@sent.at>2019-04-16 16:35:30 +0200
commit15a5f763349c6e3b3d3570fd4de6a83a03d726ad (patch)
treec425d914730cb2debe0b2f7e248199fc1a445111 /components/PasswordDialog.qml
parentd2c47606ca8446e58ef122117f8f84b578691bab (diff)
downloadmonzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.tar.gz
monzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.tar.xz
monzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.zip
add missing TranslationManager.emptyString
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 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()