diff options
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/Deactivated.tsx | 4 | ||||
-rw-r--r-- | src/screens/Login/LoginForm.tsx | 2 | ||||
-rw-r--r-- | src/screens/Signup/StepInfo/Policies.tsx | 4 | ||||
-rw-r--r-- | src/screens/StarterPack/StarterPackLandingScreen.tsx | 4 |
4 files changed, 8 insertions, 6 deletions
diff --git a/src/screens/Deactivated.tsx b/src/screens/Deactivated.tsx index c98967364..22b9d9d2f 100644 --- a/src/screens/Deactivated.tsx +++ b/src/screens/Deactivated.tsx @@ -200,13 +200,13 @@ export function Deactivated() { <Trans>Or, continue with another account.</Trans> </Text> <Button - label={_(msg`Sign in or sign up`)} + label={_(msg`Sign in or create an account`)} size="large" variant="solid" color="secondary" onPress={() => setShowLoggedOut(true)}> <ButtonText> - <Trans>Sign in or sign up</Trans> + <Trans>Sign in or create an account</Trans> </ButtonText> </Button> </> diff --git a/src/screens/Login/LoginForm.tsx b/src/screens/Login/LoginForm.tsx index 3cbe4ae63..6c3d7633a 100644 --- a/src/screens/Login/LoginForm.tsx +++ b/src/screens/Login/LoginForm.tsx @@ -215,7 +215,7 @@ export const LoginForm = ({ blurOnSubmit={false} // prevents flickering due to onSubmitEditing going to next field editable={!isProcessing} accessibilityHint={_( - msg`Input the username or email address you used at signup`, + msg`Enter the username or email address you used when you created your account`, )} /> </TextField.Root> diff --git a/src/screens/Signup/StepInfo/Policies.tsx b/src/screens/Signup/StepInfo/Policies.tsx index 3cde95be7..81533c58e 100644 --- a/src/screens/Signup/StepInfo/Policies.tsx +++ b/src/screens/Signup/StepInfo/Policies.tsx @@ -103,7 +103,9 @@ export const Policies = ({ {under13 ? ( <Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}> - <Trans>You must be 13 years of age or older to sign up.</Trans> + <Trans> + You must be 13 years of age or older to create an account. + </Trans> </Text> ) : needsGuardian ? ( <Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}> diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index a48fbc61c..b522bc906 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -300,14 +300,14 @@ function LandingScreenLoaded({ ) : null} </View> <Button - label={_(msg`Signup without a starter pack`)} + label={_(msg`Create an account without using this starter pack`)} variant="solid" color="secondary" size="large" style={[a.py_lg]} onPress={onJoinWithoutPress}> <ButtonText> - <Trans>Signup without a starter pack</Trans> + <Trans>Create an account without using this starter pack</Trans> </ButtonText> </Button> </View> |