fix(locale): Remove hard coded string literals (#3333)

This commit is contained in:
tiuweehan
2020-02-28 18:12:10 +08:00
committed by GitHub
parent 1dcb79a874
commit 7c45a3cda9
22 changed files with 216 additions and 6 deletions

View File

@ -132,7 +132,7 @@ export default class GitHubAuthenticationPage extends React.Component {
}
render() {
const { inProgress, config } = this.props;
const { inProgress, config, t } = this.props;
const { loginError, requestingFork, findingFork } = this.state;
return (
@ -143,6 +143,7 @@ export default class GitHubAuthenticationPage extends React.Component {
logoUrl={config.logo_url}
siteUrl={config.site_url}
{...this.getAuthenticationPageRenderArgs()}
t={t}
/>
);
}