mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Update room context menu copy (#7361)
This commit is contained in:
parent
5163ad216f
commit
9436f3b58d
3 changed files with 6 additions and 9 deletions
|
@ -213,7 +213,7 @@ const RoomContextMenu = ({ room, onFinished, ...props }: IProps) => {
|
||||||
});
|
});
|
||||||
onFinished();
|
onFinished();
|
||||||
}}
|
}}
|
||||||
label={_t("Copy link")}
|
label={_t("Copy room link")}
|
||||||
iconClassName="mx_RoomTile_iconCopyLink"
|
iconClassName="mx_RoomTile_iconCopyLink"
|
||||||
/>;
|
/>;
|
||||||
}
|
}
|
||||||
|
|
|
@ -511,13 +511,13 @@ export default class RoomTile extends React.PureComponent<IProps, IState> {
|
||||||
{ canInvite ? (
|
{ canInvite ? (
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
onClick={this.onInviteClick}
|
onClick={this.onInviteClick}
|
||||||
label={_t("Invite People")}
|
label={_t("Invite")}
|
||||||
iconClassName="mx_RoomTile_iconInvite"
|
iconClassName="mx_RoomTile_iconInvite"
|
||||||
/>
|
/>
|
||||||
) : null }
|
) : null }
|
||||||
{ !isDm ? <IconizedContextMenuOption
|
{ !isDm ? <IconizedContextMenuOption
|
||||||
onClick={this.onCopyRoomClick}
|
onClick={this.onCopyRoomClick}
|
||||||
label={_t("Copy Room Link")}
|
label={_t("Copy room link")}
|
||||||
iconClassName="mx_RoomTile_iconCopyLink"
|
iconClassName="mx_RoomTile_iconCopyLink"
|
||||||
/> : null }
|
/> : null }
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
|
@ -529,7 +529,7 @@ export default class RoomTile extends React.PureComponent<IProps, IState> {
|
||||||
<IconizedContextMenuOptionList red>
|
<IconizedContextMenuOptionList red>
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
onClick={this.onLeaveRoomClick}
|
onClick={this.onLeaveRoomClick}
|
||||||
label={_t("Leave Room")}
|
label={_t("Leave")}
|
||||||
iconClassName="mx_RoomTile_iconSignOut"
|
iconClassName="mx_RoomTile_iconSignOut"
|
||||||
/>
|
/>
|
||||||
</IconizedContextMenuOptionList>
|
</IconizedContextMenuOptionList>
|
||||||
|
|
|
@ -1809,9 +1809,8 @@
|
||||||
"Favourited": "Favourited",
|
"Favourited": "Favourited",
|
||||||
"Favourite": "Favourite",
|
"Favourite": "Favourite",
|
||||||
"Low Priority": "Low Priority",
|
"Low Priority": "Low Priority",
|
||||||
"Invite People": "Invite People",
|
"Copy room link": "Copy room link",
|
||||||
"Copy Room Link": "Copy Room Link",
|
"Leave": "Leave",
|
||||||
"Leave Room": "Leave Room",
|
|
||||||
"%(count)s unread messages including mentions.|other": "%(count)s unread messages including mentions.",
|
"%(count)s unread messages including mentions.|other": "%(count)s unread messages including mentions.",
|
||||||
"%(count)s unread messages including mentions.|one": "1 unread mention.",
|
"%(count)s unread messages including mentions.|one": "1 unread mention.",
|
||||||
"%(count)s unread messages.|other": "%(count)s unread messages.",
|
"%(count)s unread messages.|other": "%(count)s unread messages.",
|
||||||
|
@ -2820,9 +2819,7 @@
|
||||||
"Report": "Report",
|
"Report": "Report",
|
||||||
"View in room": "View in room",
|
"View in room": "View in room",
|
||||||
"Forget": "Forget",
|
"Forget": "Forget",
|
||||||
"Leave": "Leave",
|
|
||||||
"Mentions only": "Mentions only",
|
"Mentions only": "Mentions only",
|
||||||
"Copy link": "Copy link",
|
|
||||||
"See room timeline (devtools)": "See room timeline (devtools)",
|
"See room timeline (devtools)": "See room timeline (devtools)",
|
||||||
"Room": "Room",
|
"Room": "Room",
|
||||||
"Space": "Space",
|
"Space": "Space",
|
||||||
|
|
Loading…
Reference in a new issue