diff options
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/com/auth/SplashScreen.tsx | 2 | ||||
-rw-r--r-- | src/view/com/auth/SplashScreen.web.tsx | 2 | ||||
-rw-r--r-- | src/view/com/profile/ProfileMenu.tsx | 2 | ||||
-rw-r--r-- | src/view/com/util/forms/PostDropdownBtnMenuItems.tsx | 2 | ||||
-rw-r--r-- | src/view/com/util/post-ctrls/PostCtrls.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/DebugMod.tsx | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/src/view/com/auth/SplashScreen.tsx b/src/view/com/auth/SplashScreen.tsx index e205bb540..9de36665c 100644 --- a/src/view/com/auth/SplashScreen.tsx +++ b/src/view/com/auth/SplashScreen.tsx @@ -60,7 +60,7 @@ export const SplashScreen = ({ onPress={onPressSignin} label={_(msg`Sign in`)} accessibilityHint={_( - msg`Opens flow to sign into your existing Bluesky account`, + msg`Opens flow to sign in to your existing Bluesky account`, )} size="large" variant="solid" diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index d718ca832..eded80358 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -122,7 +122,7 @@ export const SplashScreen = ({ onPress={onPressSignin} label={_(msg`Sign in`)} accessibilityHint={_( - msg`Opens flow to sign into your existing Bluesky account`, + msg`Opens flow to sign in to your existing Bluesky account`, )} size="large" variant="solid" diff --git a/src/view/com/profile/ProfileMenu.tsx b/src/view/com/profile/ProfileMenu.tsx index 102b34922..df9283efe 100644 --- a/src/view/com/profile/ProfileMenu.tsx +++ b/src/view/com/profile/ProfileMenu.tsx @@ -399,7 +399,7 @@ let ProfileMenu = ({ control={loggedOutWarningPromptControl} title={_(msg`Note about sharing`)} description={_( - msg`This profile is only visible to logged-in users. It won't be visible to people who aren't logged in.`, + msg`This profile is only visible to logged-in users. It won't be visible to people who aren't signed in.`, )} onConfirm={onPressShare} confirmButtonCta={_(msg`Share anyway`)} diff --git a/src/view/com/util/forms/PostDropdownBtnMenuItems.tsx b/src/view/com/util/forms/PostDropdownBtnMenuItems.tsx index 41f7e74a6..030873c2a 100644 --- a/src/view/com/util/forms/PostDropdownBtnMenuItems.tsx +++ b/src/view/com/util/forms/PostDropdownBtnMenuItems.tsx @@ -717,7 +717,7 @@ let PostDropdownMenuItems = ({ control={loggedOutWarningPromptControl} title={_(msg`Note about sharing`)} description={_( - msg`This post is only visible to logged-in users. It won't be visible to people who aren't logged in.`, + msg`This post is only visible to logged-in users. It won't be visible to people who aren't signed in.`, )} onConfirm={onSharePost} confirmButtonCta={_(msg`Share anyway`)} diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index b61bad2ca..9515b770c 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -366,7 +366,7 @@ let PostCtrls = ({ control={loggedOutWarningPromptControl} title={_(msg`Note about sharing`)} description={_( - msg`This post is only visible to logged-in users. It won't be visible to people who aren't logged in.`, + msg`This post is only visible to logged-in users. It won't be visible to people who aren't signed in.`, )} onConfirm={onShare} confirmButtonCta={_(msg`Share anyway`)} diff --git a/src/view/screens/DebugMod.tsx b/src/view/screens/DebugMod.tsx index 4ff0a4b8b..2224a4462 100644 --- a/src/view/screens/DebugMod.tsx +++ b/src/view/screens/DebugMod.tsx @@ -378,9 +378,9 @@ export const DebugModScreen = ({}: NativeStackScreenProps< <Toggle.Checkbox /> <Toggle.LabelText>Adult disabled</Toggle.LabelText> </Toggle.Item> - <Toggle.Item name="loggedOut" label="Logged out"> + <Toggle.Item name="loggedOut" label="Signed out"> <Toggle.Checkbox /> - <Toggle.LabelText>Logged out</Toggle.LabelText> + <Toggle.LabelText>Signed out</Toggle.LabelText> </Toggle.Item> </View> </Toggle.Group> |