replaced gender l10n strings with existing ones

This commit is contained in:
Ben Wheeler 2019-07-27 22:43:31 -04:00
parent a2b96e9bac
commit 8725cee6a1
2 changed files with 2 additions and 4 deletions

View file

@ -87,13 +87,13 @@ class GenderStep extends React.Component {
onSubmit={handleSubmit}
>
<GenderOption
label={this.props.intl.formatMessage({id: 'registration.genderOptionFemale'})}
label={this.props.intl.formatMessage({id: 'general.female'})}
selectedValue={values.gender}
value="Female"
onSetFieldValue={setFieldValue}
/>
<GenderOption
label={this.props.intl.formatMessage({id: 'registration.genderOptionMale'})}
label={this.props.intl.formatMessage({id: 'general.male'})}
selectedValue={values.gender}
value="Male"
onSetFieldValue={setFieldValue}

View file

@ -155,8 +155,6 @@
"registration.createUsername": "Create a username",
"registration.genderStepTitle": "What's your gender?",
"registration.genderStepDescription": "Scratch welcomes people of all genders. We will always keep this information private.",
"registration.genderOptionFemale": "Female",
"registration.genderOptionMale": "Male",
"registration.genderOptionAnother": "Another gender:",
"registration.genderOptionPreferNotToSay": "Prefer not to say",
"registration.emailStepTitle": "What's your email?",