about summary refs log tree commit diff
path: root/src/components/dms
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/dms')
-rw-r--r--src/components/dms/ConvoMenu.tsx8
-rw-r--r--src/components/dms/MessageMenu.tsx2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/components/dms/ConvoMenu.tsx b/src/components/dms/ConvoMenu.tsx
index 16e8d98c6..cf1dbc171 100644
--- a/src/components/dms/ConvoMenu.tsx
+++ b/src/components/dms/ConvoMenu.tsx
@@ -171,13 +171,13 @@ let ConvoMenu = ({
               <Menu.ItemIcon icon={Person} />
             </Menu.Item>
             <Menu.Item
-              label={_(msg`Mute notifications`)}
+              label={_(msg`Mute conversation`)}
               onPress={() => muteConvo({mute: !convo?.muted})}>
               <Menu.ItemText>
                 {convo?.muted ? (
-                  <Trans>Unmute notifications</Trans>
+                  <Trans>Unmute conversation</Trans>
                 ) : (
-                  <Trans>Mute notifications</Trans>
+                  <Trans>Mute conversation</Trans>
                 )}
               </Menu.ItemText>
               <Menu.ItemIcon icon={convo?.muted ? Unmute : Mute} />
@@ -222,7 +222,7 @@ let ConvoMenu = ({
         control={leaveConvoControl}
         title={_(msg`Leave conversation`)}
         description={_(
-          msg`Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants.`,
+          msg`Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant.`,
         )}
         confirmButtonCta={_(msg`Leave`)}
         confirmButtonColor="negative"
diff --git a/src/components/dms/MessageMenu.tsx b/src/components/dms/MessageMenu.tsx
index f4645f286..553e1be53 100644
--- a/src/components/dms/MessageMenu.tsx
+++ b/src/components/dms/MessageMenu.tsx
@@ -119,7 +119,7 @@ export let MessageMenu = ({
         control={deleteControl}
         title={_(msg`Delete message`)}
         description={_(
-          msg`Are you sure you want to delete this message? The message will be deleted for you, but not for other participants.`,
+          msg`Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant.`,
         )}
         confirmButtonCta={_(msg`Delete`)}
         confirmButtonColor="negative"