Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 632c2ac

Browse files
committed
Quick settings: Change the copy / labels on the options
1 parent edef4cc commit 632c2ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/views/context_menus/RoomNotificationContextMenu.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const RoomNotificationContextMenu: React.FC<IProps> = ({ room, onFinished
5252

5353
const defaultOption: JSX.Element = (
5454
<IconizedContextMenuRadio
55-
label={_t("Use default")}
55+
label={_t("Match default setting")}
5656
active={notificationState === RoomNotifState.AllMessages}
5757
iconClassName="mx_RoomNotificationContextMenu_iconBell"
5858
onClick={wrapHandler(() => setNotificationState(RoomNotifState.AllMessages))}
@@ -70,7 +70,7 @@ export const RoomNotificationContextMenu: React.FC<IProps> = ({ room, onFinished
7070

7171
const mentionsOption: JSX.Element = (
7272
<IconizedContextMenuRadio
73-
label={_t("Mentions & Keywords")}
73+
label={_t("Mentions & keywords")}
7474
active={notificationState === RoomNotifState.MentionsOnly}
7575
iconClassName="mx_RoomNotificationContextMenu_iconBellMentions"
7676
onClick={wrapHandler(() => setNotificationState(RoomNotifState.MentionsOnly))}
@@ -79,7 +79,7 @@ export const RoomNotificationContextMenu: React.FC<IProps> = ({ room, onFinished
7979

8080
const muteOption: JSX.Element = (
8181
<IconizedContextMenuRadio
82-
label={_t("Off")}
82+
label={_t("Mute room")}
8383
active={notificationState === RoomNotifState.Mute}
8484
iconClassName="mx_RoomNotificationContextMenu_iconBellCrossed"
8585
onClick={wrapHandler(() => setNotificationState(RoomNotifState.Mute))}

0 commit comments

Comments
 (0)