Add translation for Add account option in account switcher (#10058)
This commit is contained in:
parent
410d1c6394
commit
739cd8d25b
|
@ -3622,5 +3622,8 @@
|
|||
"example": "Visa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"addAccount": {
|
||||
"message": "Add account"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -49,6 +49,6 @@
|
|||
>
|
||||
<i class="bwi bwi-plus tw-text-2xl" aria-hidden="true"></i>
|
||||
<div>
|
||||
{{ account.name }}
|
||||
{{ account.name | i18n }}
|
||||
</div>
|
||||
</button>
|
||||
|
|
|
@ -80,7 +80,7 @@ export class AccountSwitcherService {
|
|||
|
||||
if (!hasMaxAccounts) {
|
||||
options.push({
|
||||
name: "Add account",
|
||||
name: "addAccount",
|
||||
id: this.SPECIAL_ADD_ACCOUNT_ID,
|
||||
isActive: false,
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue