In the src/views/splash/presentation.jsx file, there are a few strings that are not translated.
I labeled this with relatively high impact/severity because it appears to affect all new non-English users.
@benjiwheeler I think I can do this
<DropdownBanner
className="warning"
key="confirmedEmail"
onRequestDismiss={() => { // eslint-disable-line react/jsx-no-bind
this.props.onDismiss('confirmed_email');
}}
>
<FormattedMessage
id="emailbanner.confirmEmail"
values={{
link: (
<a
href="#"
onClick={this.props.onShowEmailConfirmationModal}
>
<FormattedMessage id="emailbanner.confirmEmailLink" />
</a>
)
}}
/>
<a href="/info/faq/#accounts">
<FormattedMessage id="emailbanner.havingTrouble" />
</a>
</DropdownBanner>,
"emailbanner.confirmEmail": "{link} to enable sharing",
"emailbanner.confirmEmailLink": "Confirm your email",
"emailbanner.havingTrouble": "Having trouble?"
@apple502j Thanks! Go for it!
Closing this to avoid intersecting with https://github.com/LLK/scratch-www/issues/4390
Most helpful comment
@benjiwheeler I think I can do this