diff options
Diffstat (limited to 'gui/src/renderer/components')
| -rw-r--r-- | gui/src/renderer/components/Settings.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/src/renderer/components/Settings.tsx b/gui/src/renderer/components/Settings.tsx index c48d57641a..ddcc8ed3e6 100644 --- a/gui/src/renderer/components/Settings.tsx +++ b/gui/src/renderer/components/Settings.tsx @@ -21,6 +21,7 @@ import styles from './SettingsStyles'; import { LoginState } from '../redux/account/reducers'; export interface IProps { + preferredLocaleDisplayName: string; loginState: LoginState; accountExpiry?: string; expiryLocale: string; @@ -64,6 +65,7 @@ export default class Settings extends Component<IProps> { <View> <Cell.CellButton onPress={this.props.onViewSelectLanguage}> <Cell.Label>{messages.pgettext('settings-view', 'Language')}</Cell.Label> + <Cell.SubText>{this.props.preferredLocaleDisplayName}</Cell.SubText> <Cell.Icon height={12} width={7} source="icon-chevron" /> </Cell.CellButton> |
