diff options
author | Ansh <anshnanda10@gmail.com> | 2023-11-20 13:29:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 13:29:27 -0800 |
commit | c5b6f88e9a694d79126af4f742e66833dfd528bd (patch) | |
tree | 0bfdc49ace558adc3d9d5a76fc4726f16f853d4e /src/view/screens/Settings.tsx | |
parent | 019aae5f01cb7b503d242917ae0092c2818f3b71 (diff) | |
download | voidsky-c5b6f88e9a694d79126af4f742e66833dfd528bd.tar.zst |
Hindi Internationalization (#1914)
* get basic hindi support to work * get web app language switcher in * Refactor i18n implementation and remove unused code * add missing strings * add dropdowns and modals missing strings * complete all hindi translations * fix merge conflicts * fix legeacy persisted state * fix data in RecommendedFeeds * fix lint
Diffstat (limited to 'src/view/screens/Settings.tsx')
-rw-r--r-- | src/view/screens/Settings.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx index 6c61a699b..1f7623440 100644 --- a/src/view/screens/Settings.tsx +++ b/src/view/screens/Settings.tsx @@ -268,7 +268,7 @@ export const SettingsScreen = withAuthRequired(function Settings({}: Props) { return ( <View style={[s.hContentRegion]} testID="settingsScreen"> - <ViewHeader title="Settings" /> + <ViewHeader title={_(msg`Settings`)} /> <ScrollView style={[s.hContentRegion]} contentContainerStyle={isMobile && pal.viewLight} @@ -281,7 +281,7 @@ export const SettingsScreen = withAuthRequired(function Settings({}: Props) { </Text> <View style={[styles.infoLine]}> <Text type="lg-medium" style={pal.text}> - Email:{' '} + <Trans>Email:</Trans>{' '} </Text> {currentAccount.emailConfirmed && ( <> |