From 3b4f1e91e32772b324e49117eac7fbc9d7fcf642 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 21 Feb 2025 11:10:33 -0800 Subject: [PATCH] consistent sentence case captialisation (#7749) --- src/view/com/profile/ProfileMenu.tsx | 34 ++++++++++++++-------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/view/com/profile/ProfileMenu.tsx b/src/view/com/profile/ProfileMenu.tsx index df9283efec..1d9c7a8e4a 100644 --- a/src/view/com/profile/ProfileMenu.tsx +++ b/src/view/com/profile/ProfileMenu.tsx @@ -225,10 +225,10 @@ let ProfileMenu = ({ - Search Posts + Search posts @@ -245,8 +245,8 @@ let ProfileMenu = ({ testID="profileHeaderDropdownFollowBtn" label={ isFollowing - ? _(msg`Unfollow Account`) - : _(msg`Follow Account`) + ? _(msg`Unfollow account`) + : _(msg`Follow account`) } onPress={ isFollowing @@ -255,9 +255,9 @@ let ProfileMenu = ({ }> {isFollowing ? ( - Unfollow Account + Unfollow account ) : ( - Follow Account + Follow account )} @@ -270,7 +270,7 @@ let ProfileMenu = ({ label={_(msg`Add to Lists`)} onPress={onPressAddRemoveLists}> - Add to Lists + Add to lists @@ -282,15 +282,15 @@ let ProfileMenu = ({ testID="profileHeaderDropdownMuteBtn" label={ profile.viewer?.muted - ? _(msg`Unmute Account`) - : _(msg`Mute Account`) + ? _(msg`Unmute account`) + : _(msg`Mute account`) } onPress={onPressMuteAccount}> {profile.viewer?.muted ? ( - Unmute Account + Unmute account ) : ( - Mute Account + Mute account )} blockPromptControl.open()}> {profile.viewer?.blocking ? ( - Unblock Account + Unblock account ) : ( - Block Account + Block account )} - Report Account + Report account