aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2019-03-30 00:24:03 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-03-30 00:24:03 +0800
commitadcf03eacc4ec5b6dc0e753ce81b2df6071e1f75 (patch)
tree24c8f8d666b2b9ab9572862d18effc23c1e3b8d1 /ui/app/pages
parent1d14646a4cb5d35753943b9c8cc8dfe2fb3e7769 (diff)
downloadtangerine-wallet-browser-adcf03eacc4ec5b6dc0e753ce81b2df6071e1f75.tar.gz
tangerine-wallet-browser-adcf03eacc4ec5b6dc0e753ce81b2df6071e1f75.tar.zst
tangerine-wallet-browser-adcf03eacc4ec5b6dc0e753ce81b2df6071e1f75.zip
About tab copy changes; Update route for Info & Help in account menu (#6356)
Diffstat (limited to 'ui/app/pages')
-rw-r--r--ui/app/pages/settings/settings.component.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/pages/settings/settings.component.js b/ui/app/pages/settings/settings.component.js
index 3d415c6b8..061e65060 100644
--- a/ui/app/pages/settings/settings.component.js
+++ b/ui/app/pages/settings/settings.component.js
@@ -22,7 +22,7 @@ const ROUTES_TO_I18N_KEYS = {
[GENERAL_ROUTE]: 'general',
[ADVANCED_ROUTE]: 'advanced',
[SECURITY_ROUTE]: 'securityAndPrivacy',
- [ABOUT_US_ROUTE]: 'aboutUs',
+ [ABOUT_US_ROUTE]: 'about',
}
export default class SettingsPage extends PureComponent {
@@ -92,7 +92,7 @@ export default class SettingsPage extends PureComponent {
{ content: t('general'), description: t('generalSettingsDescription'), key: GENERAL_ROUTE },
{ content: t('advanced'), description: t('advancedSettingsDescription'), key: ADVANCED_ROUTE },
{ content: t('securityAndPrivacy'), description: t('securitySettingsDescription'), key: SECURITY_ROUTE },
- { content: t('aboutUs'), key: ABOUT_US_ROUTE },
+ { content: t('about'), description: t('aboutSettingsDescription'), key: ABOUT_US_ROUTE },
]}
isActive={key => {
if (key === GENERAL_ROUTE && this.isCurrentPath(SETTINGS_ROUTE)) {