Merge pull request #3205

6fab741f SettingsInfo: add selected node to info page (selsta)
This commit is contained in:
Alexander Blair 2020-11-06 05:10:52 -08:00
commit f491b41100
No known key found for this signature in database
GPG Key ID: C64552D877C32479

View File

@ -47,7 +47,7 @@ Rectangle {
} else if(appWindow.walletMode === 1){
return qsTr("Simple mode") + " (bootstrap)" + translationManager.emptyString;
} else if(appWindow.walletMode === 2){
return qsTr("Advanced mode") + translationManager.emptyString;
return "%1 (%2)".arg(qsTr("Advanced mode")).arg(persistentSettings.useRemoteNode ? qsTr("Remote node") : qsTr("Local node")) + translationManager.emptyString;
}
}