You've already forked element-web
mirror of
https://github.com/element-hq/element-web.git
synced 2025-11-28 09:24:05 +03:00
Migrate more strings to translation keys (#11665)
This commit is contained in:
committed by
GitHub
parent
de250df520
commit
54c88c57ed
@@ -52,7 +52,7 @@ export const RoomNotificationContextMenu: React.FC<IProps> = ({ room, onFinished
|
||||
|
||||
const defaultOption: JSX.Element = (
|
||||
<IconizedContextMenuRadio
|
||||
label={_t("Match default setting")}
|
||||
label={_t("room|context_menu|notifications_default")}
|
||||
active={notificationState === RoomNotifState.AllMessages}
|
||||
iconClassName="mx_RoomNotificationContextMenu_iconBell"
|
||||
onClick={wrapHandler(() => setNotificationState(RoomNotifState.AllMessages))}
|
||||
@@ -79,7 +79,7 @@ export const RoomNotificationContextMenu: React.FC<IProps> = ({ room, onFinished
|
||||
|
||||
const muteOption: JSX.Element = (
|
||||
<IconizedContextMenuRadio
|
||||
label={_t("Mute room")}
|
||||
label={_t("room|context_menu|notifications_mute")}
|
||||
active={notificationState === RoomNotifState.Mute}
|
||||
iconClassName="mx_RoomNotificationContextMenu_iconBellCrossed"
|
||||
onClick={wrapHandler(() => setNotificationState(RoomNotifState.Mute))}
|
||||
|
||||
Reference in New Issue
Block a user