aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardMain.qml
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-07-20 22:28:11 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-07-20 22:28:11 +0300
commit32ebf180acce258f8efb9bcaeca945a1fdd311ce (patch)
tree3f617d1ef44e919cbaac2aa22c77cdbc4c50d77c /wizard/WizardMain.qml
parent39b88daf326cdbbbac5f757769168d41e6d3517b (diff)
downloadmonzero-gui-32ebf180acce258f8efb9bcaeca945a1fdd311ce.tar.gz
monzero-gui-32ebf180acce258f8efb9bcaeca945a1fdd311ce.tar.xz
monzero-gui-32ebf180acce258f8efb9bcaeca945a1fdd311ce.zip
dynamic translation support. closes #24
Diffstat (limited to 'wizard/WizardMain.qml')
-rw-r--r--wizard/WizardMain.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml
index 987ac897..1103c2ff 100644
--- a/wizard/WizardMain.qml
+++ b/wizard/WizardMain.qml
@@ -82,9 +82,9 @@ Rectangle {
// disable "next" button until passwords match
nextButton.enabled = passwordPage.passwordValid;
if (currentPath === "create_wallet") {
- passwordPage.titleText = qsTr("Now that your wallet has been created, please set a password for the wallet")
+ passwordPage.titleText = qsTr("Now that your wallet has been created, please set a password for the wallet") + translationManager.emptyString
} else {
- passwordPage.titleText = qsTr("Now that your wallet has been restored, please set a password for the wallet")
+ passwordPage.titleText = qsTr("Now that your wallet has been restored, please set a password for the wallet") + translationManager.emptyString
}
break;
case finishPage:
@@ -306,7 +306,7 @@ Rectangle {
anchors.bottom: parent.bottom
anchors.margins: 50
width: 110
- text: qsTr("USE MONERO")
+ text: qsTr("USE MONERO") + translationManager.emptyString
shadowReleasedColor: "#FF4304"
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"