Merge pull request #1664

6dcd2b7 fix strings not marked as translatable (erciccione)
d32dabf syn and add unpicked strings in language files (erciccione)
This commit is contained in:
luigi1111
2018-11-06 11:25:07 -06:00
37 changed files with 6646 additions and 6564 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
}