SettingsInfo: add portable mode to wallet mode

This commit is contained in:
selsta 2021-06-22 02:30:54 +02:00
parent 453388f744
commit 54e183a7f5
No known key found for this signature in database
GPG key ID: 2EA0A99A8B07AE5E

View file

@ -42,13 +42,15 @@ Rectangle {
Layout.fillWidth: true
property alias infoHeight: infoLayout.height
property string walletModeString: {
var modeStr;
if(appWindow.walletMode === 0){
return qsTr("Simple mode") + translationManager.emptyString;
modeStr = qsTr("Simple mode") + translationManager.emptyString;
} else if(appWindow.walletMode === 1){
return qsTr("Simple mode") + " (bootstrap)" + translationManager.emptyString;
modeStr = qsTr("Simple mode") + " (bootstrap)" + translationManager.emptyString;
} else if(appWindow.walletMode === 2){
return "%1 (%2)".arg(qsTr("Advanced mode")).arg(persistentSettings.useRemoteNode ? qsTr("Remote node") : qsTr("Local node")) + translationManager.emptyString;
modeStr = "%1 (%2)".arg(qsTr("Advanced mode")).arg(persistentSettings.useRemoteNode ? qsTr("Remote node") : qsTr("Local node")) + translationManager.emptyString;
}
return modeStr + (persistentSettings.portable ? ", %1".arg(qsTr("portable")) : "");
}
ColumnLayout {