fix strings not marked as translatable

This commit is contained in:
erciccione
2018-10-16 12:32:37 +01:00
parent 3aa6da058a
commit 6dcd2b76fa
2 changed files with 5 additions and 5 deletions

View File

@@ -151,7 +151,7 @@ Rectangle {
RowLayout {
LineEdit {
id: signFileLine
labelText: "Message from file"
labelText: qsTr("Message from file") + translationManager.emptyString
placeholderText: qsTr("Path to file") + translationManager.emptyString;
readOnly: false
Layout.fillWidth: true
@@ -218,7 +218,7 @@ Rectangle {
LineEdit {
id: verifyMessageLine
Layout.fillWidth: true
labelText: qsTr("Verify message")
labelText: qsTr("Verify message") + translationManager.emptyString;
placeholderText: qsTr("Message to verify") + translationManager.emptyString;
readOnly: false
}