Bluesky app fork with some witchin' additions 💫

Tweak copy to remove remaining uses of `sign up` (#7987)

* tweak copy in Deactivated.tsx

* tweak copy in Policies.tsx

* tweak comment in createNativeStackNavigatorWithAuth.tsx

* tweak copy in LoginForm.tsx

* tweak copy in StarterPackLandingScreen.tsx

* format

* Apply suggestions from code review

Co-authored-by: Hailey <hailey@blueskyweb.xyz>

* Update src/screens/StarterPack/StarterPackLandingScreen.tsx

Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

* Update src/screens/StarterPack/StarterPackLandingScreen.tsx

Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

---------

Co-authored-by: Hailey <hailey@blueskyweb.xyz>

authored by

surfdude29
Hailey
surfdude29
and committed by
GitHub
8d1f97b5 4a7fa07e

+9 -7
+2 -2
src/screens/Deactivated.tsx
··· 200 200 <Trans>Or, continue with another account.</Trans> 201 201 </Text> 202 202 <Button 203 - label={_(msg`Sign in or sign up`)} 203 + label={_(msg`Sign in or create an account`)} 204 204 size="large" 205 205 variant="solid" 206 206 color="secondary" 207 207 onPress={() => setShowLoggedOut(true)}> 208 208 <ButtonText> 209 - <Trans>Sign in or sign up</Trans> 209 + <Trans>Sign in or create an account</Trans> 210 210 </ButtonText> 211 211 </Button> 212 212 </>
+1 -1
src/screens/Login/LoginForm.tsx
··· 215 215 blurOnSubmit={false} // prevents flickering due to onSubmitEditing going to next field 216 216 editable={!isProcessing} 217 217 accessibilityHint={_( 218 - msg`Input the username or email address you used at signup`, 218 + msg`Enter the username or email address you used when you created your account`, 219 219 )} 220 220 /> 221 221 </TextField.Root>
+3 -1
src/screens/Signup/StepInfo/Policies.tsx
··· 103 103 104 104 {under13 ? ( 105 105 <Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}> 106 - <Trans>You must be 13 years of age or older to sign up.</Trans> 106 + <Trans> 107 + You must be 13 years of age or older to create an account. 108 + </Trans> 107 109 </Text> 108 110 ) : needsGuardian ? ( 109 111 <Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}>
+2 -2
src/screens/StarterPack/StarterPackLandingScreen.tsx
··· 300 300 ) : null} 301 301 </View> 302 302 <Button 303 - label={_(msg`Signup without a starter pack`)} 303 + label={_(msg`Create an account without using this starter pack`)} 304 304 variant="solid" 305 305 color="secondary" 306 306 size="large" 307 307 style={[a.py_lg]} 308 308 onPress={onJoinWithoutPress}> 309 309 <ButtonText> 310 - <Trans>Signup without a starter pack</Trans> 310 + <Trans>Create an account without using this starter pack</Trans> 311 311 </ButtonText> 312 312 </Button> 313 313 </View>
+1 -1
src/view/shell/createNativeStackNavigatorWithAuth.tsx
··· 137 137 } 138 138 139 139 // Show the bottom bar if we have a session only on mobile web. If we don't have a session, we want to show it 140 - // on both tablet and mobile web so that we see the sign up CTA. 140 + // on both tablet and mobile web so that we see the create account CTA. 141 141 const showBottomBar = hasSession ? isMobile : isTabletOrMobile 142 142 143 143 return (