diff --git a/src/components/SettingsPage/ReleaseNotesButton.js b/src/components/SettingsPage/ReleaseNotesButton.js index d6864d05..336d8e52 100644 --- a/src/components/SettingsPage/ReleaseNotesButton.js +++ b/src/components/SettingsPage/ReleaseNotesButton.js @@ -32,7 +32,7 @@ class ReleaseNotesButton extends PureComponent { openModal(MODAL_RELEASES_NOTES, version) }} > - {t('app:settings.about.releaseNotesBtn')} + {t('app:settings.help.releaseNotesBtn')} ) } diff --git a/src/components/SettingsPage/index.js b/src/components/SettingsPage/index.js index 51faedbf..a4f31813 100644 --- a/src/components/SettingsPage/index.js +++ b/src/components/SettingsPage/index.js @@ -13,7 +13,7 @@ import Pills from 'components/base/Pills' import Box from 'components/base/Box' import SectionDisplay from './sections/Display' import SectionCurrencies from './sections/Currencies' -import SectionAbout from './sections/About' +import SectionHelp from './sections/Help' import SectionTools from './sections/Tools' const mapStateToProps = state => ({ @@ -48,9 +48,9 @@ class SettingsPage extends PureComponent { value: SectionCurrencies, }, { - key: 'about', - label: props.t('app:settings.tabs.about'), - value: SectionAbout, + key: 'help', + label: props.t('app:settings.tabs.help'), + value: SectionHelp, }, ] diff --git a/src/components/SettingsPage/sections/About.js b/src/components/SettingsPage/sections/Help.js similarity index 77% rename from src/components/SettingsPage/sections/About.js rename to src/components/SettingsPage/sections/Help.js index 4e89356e..583523ae 100644 --- a/src/components/SettingsPage/sections/About.js +++ b/src/components/SettingsPage/sections/Help.js @@ -25,23 +25,23 @@ type Props = { t: T, } -class SectionAbout extends PureComponent { +class SectionHelp extends PureComponent { render() { const { t } = this.props const version = __APP_VERSION__ return (
- +
} - title={t('app:settings.tabs.about')} - desc={t('app:settings.about.desc')} + title={t('app:settings.tabs.help')} + desc={t('app:settings.help.desc')} /> - + @@ -65,14 +65,14 @@ class SectionAbout extends PureComponent { @@ -81,4 +81,4 @@ class SectionAbout extends PureComponent { } } -export default translate()(SectionAbout) +export default translate()(SectionHelp) diff --git a/static/i18n/en/app.yml b/static/i18n/en/app.yml index 2edb6b3c..2871d629 100644 --- a/static/i18n/en/app.yml +++ b/static/i18n/en/app.yml @@ -310,7 +310,7 @@ settings: # Always ensure descriptions carry full stops (.) display: General currencies: Currencies profile: Profile - about: Help + help: Help display: desc: Change settings that affect Ledger Live in general. language: Display language @@ -354,7 +354,7 @@ settings: # Always ensure descriptions carry full stops (.) analyticsDesc: Enable analytics of anonymous data to help Ledger improve the user experience. This includes the operating system, language, firmware versions and the number of added accounts. reportErrors: Report bugs reportErrorsDesc: Share anonymous usage and diagnostics data to help improve Ledger products, services and security features. - about: + help: desc: Learn about Ledger Live features or get help. version: Version releaseNotesBtn: Details # Close button instead of continue.