From 5393f4688cf6e5f56e455c10bf99b8f12b732d50 Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Sun, 13 Sep 2020 09:07:41 +0200 Subject: [PATCH] main: add translation to primary account only in subaddressaccount 0 --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index 67799a9c..657ec323 100644 --- a/main.qml +++ b/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 {