Skip to content

Commit 8c36506

Browse files
committed
Merge branch 'frontend-enable-account-labels'
2 parents addd2b6 + ec5f291 commit 8c36506

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontends/web/src/locales/en/app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1111,9 +1111,9 @@
11111111
"description": "Select your default currency",
11121112
"title": "Default currency"
11131113
},
1114-
"enableWallet": {
1114+
"enableAccount": {
11151115
"description": "Disabling your account means it will not appear in the sidebar or the portfolio. You can always enable it again from here. Coins on this account will not be affected and will remain safe.",
1116-
"title": "Enable/disable wallet"
1116+
"title": "Enable/disable account"
11171117
},
11181118
"hideAmounts": {
11191119
"description": "Displays a toggle to hide your balance and amounts to improve your privacy when using the app in public.",

frontends/web/src/routes/settings/manage-accounts.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ class ManageAccounts extends Component<Props, State> {
326326
htmlFor={currentlyEditedAccount.code}>
327327
<span className={style.toggleLabelText}>
328328
<EyeOpenedDark />
329-
{t('newSettings.appearance.enableWallet.title')}
329+
{t('newSettings.appearance.enableAccount.title')}
330330
</span>
331331
<Toggle
332332
checked={currentlyEditedAccount.active}
@@ -342,7 +342,7 @@ class ManageAccounts extends Component<Props, State> {
342342
}, () => event.target.disabled = false);
343343
}} />
344344
</Label>
345-
<p>{t('newSettings.appearance.enableWallet.description')}</p>
345+
<p>{t('newSettings.appearance.enableAccount.description')}</p>
346346
{this.renderWatchOnlyToggle()}
347347
<DialogButtons>
348348
<Button

0 commit comments

Comments
 (0)