Align action_* strings with Element X project in Localazy (#11437)

This commit is contained in:
Michael Telatynski 2023-08-22 20:55:15 +01:00 committed by GitHub
parent bdd3710f25
commit df4a2218d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
166 changed files with 1697 additions and 1555 deletions

View file

@ -133,9 +133,9 @@ const ActiveLoadedCallEvent = forwardRef<any, ActiveLoadedCallEventProps>(({ mxE
case ConnectionState.Connecting:
return [_t("Join"), "primary", null];
case ConnectionState.Connected:
return [_t("Leave"), "danger", disconnect];
return [_t("action|leave"), "danger", disconnect];
case ConnectionState.Disconnecting:
return [_t("Leave"), "danger", null];
return [_t("action|leave"), "danger", null];
}
}, [connectionState, connect, disconnect]);

View file

@ -137,13 +137,13 @@ export default class EditHistoryMessage extends React.PureComponent<IProps, ISta
// hide the button when already redacted
let redactButton: JSX.Element | undefined;
if (!this.props.mxEvent.isRedacted() && !this.props.isBaseEvent && this.state.canRedact) {
redactButton = <AccessibleButton onClick={this.onRedactClick}>{_t("Remove")}</AccessibleButton>;
redactButton = <AccessibleButton onClick={this.onRedactClick}>{_t("action|remove")}</AccessibleButton>;
}
let viewSourceButton: JSX.Element | undefined;
if (SettingsStore.getValue("developerMode")) {
viewSourceButton = (
<AccessibleButton onClick={this.onViewSourceClick}>{_t("View Source")}</AccessibleButton>
<AccessibleButton onClick={this.onViewSourceClick}>{_t("action|view_source")}</AccessibleButton>
);
}

View file

@ -137,7 +137,7 @@ export default class LegacyCallEvent extends React.PureComponent<IProps, IState>
onClick={this.props.callEventGrouper.rejectCall}
kind="danger"
>
<span> {_t("Decline")} </span>
<span> {_t("action|decline")} </span>
</AccessibleButton>
<AccessibleButton
className="mx_LegacyCallEvent_content_button mx_LegacyCallEvent_content_button_answer"
@ -234,7 +234,7 @@ export default class LegacyCallEvent extends React.PureComponent<IProps, IState>
kind={InfoTooltipKind.Warning}
/>
{_t("Connection failed")}
{this.renderCallBackButton(_t("Retry"))}
{this.renderCallBackButton(_t("action|retry"))}
{this.props.timestamp}
</div>
);

View file

@ -170,7 +170,7 @@ export default class MKeyVerificationRequest extends React.Component<IProps> {
stateNode = (
<div className="mx_cryptoEvent_buttons">
<AccessibleButton kind="danger" onClick={this.onRejectClicked}>
{_t("Decline")}
{_t("action|decline")}
</AccessibleButton>
<AccessibleButton kind="primary" onClick={this.onAcceptClicked}>
{_t("Accept")}

View file

@ -173,7 +173,7 @@ const ReactButton: React.FC<IReactButtonProps> = ({ mxEvent, reactions, onFocusC
<React.Fragment>
<ContextMenuTooltipButton
className="mx_MessageActionBar_iconButton"
title={_t("React")}
title={_t("action|react")}
onClick={onClick}
onContextMenu={onClick}
isExpanded={menuDisplayed}
@ -391,7 +391,7 @@ export default class MessageActionBar extends React.PureComponent<IMessageAction
toolbarOpts.push(
<RovingAccessibleTooltipButton
className="mx_MessageActionBar_iconButton"
title={_t("Edit")}
title={_t("action|edit")}
onClick={this.onEditClick}
onContextMenu={this.onEditClick}
key="edit"
@ -429,7 +429,7 @@ export default class MessageActionBar extends React.PureComponent<IMessageAction
0,
<RovingAccessibleTooltipButton
className="mx_MessageActionBar_iconButton"
title={_t("Retry")}
title={_t("action|retry")}
onClick={this.onResendClick}
onContextMenu={this.onResendClick}
key="resend"
@ -455,7 +455,7 @@ export default class MessageActionBar extends React.PureComponent<IMessageAction
0,
<RovingAccessibleTooltipButton
className="mx_MessageActionBar_iconButton"
title={_t("Reply")}
title={_t("action|reply")}
onClick={this.onReplyClick}
onContextMenu={this.onReplyClick}
key="reply"

View file

@ -499,7 +499,7 @@ export default class TextualBody extends React.Component<IBodyProps, IState> {
)}
</div>
),
button: _t("Continue"),
button: _t("action|continue"),
onFinished(confirmed) {
if (!confirmed) {
return;

View file

@ -95,7 +95,7 @@ export default class TileErrorBoundary extends React.Component<IProps, IState> {
<>
&nbsp;
<AccessibleButton onClick={this.onViewSource} kind="link">
{_t("View Source")}
{_t("action|view_source")}
</AccessibleButton>
</>
);