feat(welcome/native): updated settings name placeholder example text

pull/11663/head jitsi-meet_7417
Calin Chitu 3 years ago committed by Calinteodor
parent 746fde7c10
commit 98ef0e74d6
  1. 1
      lang/main.json
  2. 2
      react/features/welcome/components/native/settings/components/SettingsView.js

@ -973,6 +973,7 @@
"disableCrashReportingWarning": "Are you sure you want to disable crash reporting? The setting will be applied after you restart the app.",
"disableP2P": "Disable Peer-To-Peer mode",
"displayName": "Display name",
"displayNamePlaceholderText": "Eg: John Doe",
"email": "Email",
"header": "Settings",
"profileSection": "Profile",

@ -211,7 +211,7 @@ class SettingsView extends AbstractSettingsView<Props, State> {
label = { this.props.t('settingsView.displayName') }
mode = 'outlined'
onChangeText = { this._onChangeDisplayName }
placeholder = 'John Doe'
placeholder = { this.props.t('settingsView.displayNamePlaceholderText') }
spellCheck = { false }
style = { styles.textInputContainer }
textContentType = { 'name' } // iOS only

Loading…
Cancel
Save