WizardLanguage: add missing qsTr()

This commit is contained in:
selsta
2019-07-25 04:45:37 +02:00
parent 0461a28701
commit 2f5c926c82

View File

@@ -157,7 +157,7 @@ Rectangle {
MoneroComponents.StandardButton { MoneroComponents.StandardButton {
id: idChangeLang id: idChangeLang
Layout.minimumWidth: 150 Layout.minimumWidth: 150
text: "Language" text: qsTr("Language") + translationManager.emptyString
onClicked: { onClicked: {
appWindow.toggleLanguageView(); appWindow.toggleLanguageView();
@@ -167,7 +167,7 @@ Rectangle {
MoneroComponents.StandardButton { MoneroComponents.StandardButton {
id: btnContinue id: btnContinue
Layout.minimumWidth: 150 Layout.minimumWidth: 150
text: "Continue" text: qsTr("Continue") + translationManager.emptyString
onClicked: { onClicked: {
wizardController.wizardStackView.backTransition = false; wizardController.wizardStackView.backTransition = false;