dynamic translation support. closes #24

This commit is contained in:
Ilya Kitaev
2016-07-20 22:28:11 +03:00
parent 39b88daf32
commit 32ebf180ac
34 changed files with 837 additions and 314 deletions

View File

@@ -100,7 +100,7 @@ Item {
horizontalAlignment: Text.AlignHCenter
//renderType: Text.NativeRendering
color: "#4A4646"
text: qsTr("This is the name of your wallet. You can change it to a different name if youd like:")
text: qsTr("This is the name of your wallet. You can change it to a different name if youd like:") + translationManager.emptyString
}
}
@@ -122,7 +122,7 @@ Item {
renderType: Text.NativeRendering
color: "#FF6C3C"
focus: true
text: qsTr("My account name")
text: qsTr("My account name") + translationManager.emptyString
}
Rectangle {
@@ -172,7 +172,7 @@ Item {
font.pixelSize: 18
//renderType: Text.NativeRendering
color: "#4A4646"
text: qsTr("Your wallet is stored in")
text: qsTr("Your wallet is stored in") + translationManager.emptyString
}
Item {
@@ -184,7 +184,7 @@ Item {
id: fileDialog
selectMultiple: false
selectFolder: true
title: "Please choose a directory"
title: qsTr("Please choose a directory") + translationManager.emptyString
onAccepted: {
fileUrlInput.text = fileDialog.folder
fileDialog.visible = false