Migrate more strings to translation keys (#11599)

This commit is contained in:
Michael Telatynski 2023-09-12 08:36:06 +01:00 committed by GitHub
parent 0583fc8090
commit d00ba74aaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
81 changed files with 3023 additions and 2661 deletions

View file

@ -384,12 +384,12 @@ export default class ForgotPassword extends React.Component<Props, State> {
public renderSetPassword(): JSX.Element {
const submitButtonChild =
this.state.phase === Phase.ResettingPassword ? <Spinner w={16} h={16} /> : _t("Reset password");
this.state.phase === Phase.ResettingPassword ? <Spinner w={16} h={16} /> : _t("auth|reset_password_action");
return (
<>
<LockIcon className="mx_AuthBody_lockIcon" />
<h1>{_t("Reset your password")}</h1>
<h1>{_t("auth|reset_password_title")}</h1>
<form onSubmit={this.onSubmitForm}>
<fieldset disabled={this.state.phase === Phase.ResettingPassword}>
<div className="mx_AuthBody_fieldRow">