Align action_*
strings with Element X project in Localazy (#11437)
This commit is contained in:
parent
bdd3710f25
commit
df4a2218d7
166 changed files with 1697 additions and 1555 deletions
|
@ -425,7 +425,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
|
|||
redactButton = (
|
||||
<IconizedContextMenuOption
|
||||
iconClassName="mx_MessageContextMenu_iconRedact"
|
||||
label={_t("Remove")}
|
||||
label={_t("action|remove")}
|
||||
onClick={this.onRedactClick}
|
||||
/>
|
||||
);
|
||||
|
@ -456,7 +456,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
|
|||
forwardButton = (
|
||||
<IconizedContextMenuOption
|
||||
iconClassName="mx_MessageContextMenu_iconForward"
|
||||
label={_t("Forward")}
|
||||
label={_t("action|forward")}
|
||||
onClick={this.onForwardClick(forwardableEvent)}
|
||||
/>
|
||||
);
|
||||
|
@ -530,7 +530,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
|
|||
quoteButton = (
|
||||
<IconizedContextMenuOption
|
||||
iconClassName="mx_MessageContextMenu_iconQuote"
|
||||
label={_t("Quote")}
|
||||
label={_t("action|quote")}
|
||||
onClick={this.onQuoteClick}
|
||||
/>
|
||||
);
|
||||
|
@ -600,7 +600,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
|
|||
<IconizedContextMenuOption
|
||||
iconClassName="mx_MessageContextMenu_iconCopy"
|
||||
onClick={this.onCopyLinkClick}
|
||||
label={_t("Copy link")}
|
||||
label={_t("action|copy_link")}
|
||||
element="a"
|
||||
{
|
||||
// XXX: Typescript signature for AccessibleButton doesn't work properly for non-inputs like `a`
|
||||
|
@ -619,7 +619,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
|
|||
copyButton = (
|
||||
<IconizedContextMenuOption
|
||||
iconClassName="mx_MessageContextMenu_iconCopy"
|
||||
label={_t("Copy")}
|
||||
label={_t("action|copy")}
|
||||
triggerOnMouseDown={true} // We use onMouseDown so that the selection isn't cleared when we click
|
||||
onClick={this.onCopyClick}
|
||||
/>
|
||||
|
@ -631,7 +631,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
|
|||
editButton = (
|
||||
<IconizedContextMenuOption
|
||||
iconClassName="mx_MessageContextMenu_iconEdit"
|
||||
label={_t("Edit")}
|
||||
label={_t("action|edit")}
|
||||
onClick={this.onEditClick}
|
||||
/>
|
||||
);
|
||||
|
@ -642,7 +642,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
|
|||
replyButton = (
|
||||
<IconizedContextMenuOption
|
||||
iconClassName="mx_MessageContextMenu_iconReply"
|
||||
label={_t("Reply")}
|
||||
label={_t("action|reply")}
|
||||
onClick={this.onReplyClick}
|
||||
/>
|
||||
);
|
||||
|
@ -664,7 +664,7 @@ export default class MessageContextMenu extends React.Component<IProps, IState>
|
|||
reactButton = (
|
||||
<IconizedContextMenuOption
|
||||
iconClassName="mx_MessageContextMenu_iconReact"
|
||||
label={_t("React")}
|
||||
label={_t("action|react")}
|
||||
onClick={this.onReactClick}
|
||||
inputRef={this.reactButtonRef}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue