Migrate more strings to translation keys (#11608)

This commit is contained in:
Michael Telatynski 2023-09-19 07:17:31 +01:00 committed by GitHub
parent 46072caa3a
commit e9c9377e78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
78 changed files with 2402 additions and 2411 deletions

View file

@ -295,7 +295,7 @@ export default class UserMenu extends React.Component<IProps, IState> {
topSection = (
<div className="mx_UserMenu_contextMenu_header mx_UserMenu_contextMenu_guestPrompts">
{_t(
"Got an account? <a>Sign in</a>",
"auth|sign_in_prompt",
{},
{
a: (sub) => (
@ -307,7 +307,7 @@ export default class UserMenu extends React.Component<IProps, IState> {
)}
{SettingsStore.getValue(UIFeature.Registration)
? _t(
"New here? <a>Create an account</a>",
"auth|create_account_prompt",
{},
{
a: (sub) => (
@ -338,7 +338,7 @@ export default class UserMenu extends React.Component<IProps, IState> {
feedbackButton = (
<IconizedContextMenuOption
iconClassName="mx_UserMenu_iconMessage"
label={_t("Feedback")}
label={_t("common|feedback")}
onClick={this.onProvideFeedback}
/>
);