diff options
Diffstat (limited to 'wizard/WizardCreateWallet1.qml')
| -rw-r--r-- | wizard/WizardCreateWallet1.qml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/wizard/WizardCreateWallet1.qml b/wizard/WizardCreateWallet1.qml index 088df200..109aa726 100644 --- a/wizard/WizardCreateWallet1.qml +++ b/wizard/WizardCreateWallet1.qml @@ -60,7 +60,12 @@ Rectangle { spacing: 20 WizardHeader { - title: qsTr("Create a new wallet") + translationManager.emptyString + title: { + var nettype = persistentSettings.nettype; + return qsTr("Create a new wallet") + (nettype === 2 ? " (" + qsTr("stagenet") + ")" + : nettype === 1 ? " (" + qsTr("testnet") + ")" + : "") + translationManager.emptyString + } subtitle: qsTr("Creates a new wallet on this computer.") + translationManager.emptyString } |
