Change "None" to "Off" in notification options (#9539)

pull/28217/head
Arne Wilken 2022-11-10 13:39:14 +01:00 committed by GitHub
parent 06f69abad9
commit 8ebdcab7d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ export const RoomNotificationContextMenu = ({ room, onFinished, ...props }: IPro
/>;
const muteOption: JSX.Element = <IconizedContextMenuRadio
label={_t("None")}
label={_t("Off")}
active={notificationState === RoomNotifState.Mute}
iconClassName="mx_RoomNotificationContextMenu_iconBellCrossed"
onClick={wrapHandler(() => setNotificationState(RoomNotifState.Mute))}