mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
main: add translation to primary account only in subaddressaccount 0
This commit is contained in:
parent
41e1908a42
commit
5393f4688c
1 changed files with 1 additions and 1 deletions
2
main.qml
2
main.qml
|
@ -1630,7 +1630,7 @@ ApplicationWindow {
|
|||
currentAccountLabel: {
|
||||
if (currentWallet) {
|
||||
var accountLabel = currentWallet.getSubaddressLabel(currentWallet.currentSubaddressAccount, 0);
|
||||
if (accountLabel === "Primary account") {
|
||||
if (accountLabel === "Primary account" && currentWallet.currentSubaddressAccount == 0) {
|
||||
//add translation
|
||||
return qsTr("Primary account") + translationManager.emptyString;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue