add missing TranslationManager.emptyString

This commit is contained in:
selsta
2019-04-16 16:35:30 +02:00
parent d2c47606ca
commit 15a5f76334
21 changed files with 765 additions and 65 deletions

View File

@@ -102,7 +102,7 @@ Item {
Layout.maximumWidth: 400 * scaleRatio
Label {
text: qsTr("Please enter new password")
text: qsTr("Please enter new password") + translationManager.emptyString
Layout.fillWidth: true
font.pixelSize: 16 * scaleRatio
@@ -180,7 +180,7 @@ Item {
}
Label {
text: qsTr("Please confirm new password")
text: qsTr("Please confirm new password") + translationManager.emptyString
Layout.fillWidth: true
font.pixelSize: 16 * scaleRatio
@@ -281,7 +281,7 @@ Item {
}
MoneroComponents.StandardButton {
id: okButton
text: qsTr("Continue")
text: qsTr("Continue") + translationManager.emptyString
KeyNavigation.tab: cancelButton
enabled: passwordInput1.text === passwordInput2.text
onClicked: {