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>
This commit is contained in:
@@ -200,13 +200,13 @@ export function Deactivated() {
|
|||||||
<Trans>Or, continue with another account.</Trans>
|
<Trans>Or, continue with another account.</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
<Button
|
<Button
|
||||||
label={_(msg`Sign in or sign up`)}
|
label={_(msg`Sign in or create an account`)}
|
||||||
size="large"
|
size="large"
|
||||||
variant="solid"
|
variant="solid"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
onPress={() => setShowLoggedOut(true)}>
|
onPress={() => setShowLoggedOut(true)}>
|
||||||
<ButtonText>
|
<ButtonText>
|
||||||
<Trans>Sign in or sign up</Trans>
|
<Trans>Sign in or create an account</Trans>
|
||||||
</ButtonText>
|
</ButtonText>
|
||||||
</Button>
|
</Button>
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -215,7 +215,7 @@ export const LoginForm = ({
|
|||||||
blurOnSubmit={false} // prevents flickering due to onSubmitEditing going to next field
|
blurOnSubmit={false} // prevents flickering due to onSubmitEditing going to next field
|
||||||
editable={!isProcessing}
|
editable={!isProcessing}
|
||||||
accessibilityHint={_(
|
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>
|
</TextField.Root>
|
||||||
|
|||||||
@@ -103,7 +103,9 @@ export const Policies = ({
|
|||||||
|
|
||||||
{under13 ? (
|
{under13 ? (
|
||||||
<Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}>
|
<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>
|
</Text>
|
||||||
) : needsGuardian ? (
|
) : needsGuardian ? (
|
||||||
<Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}>
|
<Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}>
|
||||||
|
|||||||
@@ -300,14 +300,14 @@ function LandingScreenLoaded({
|
|||||||
) : null}
|
) : null}
|
||||||
</View>
|
</View>
|
||||||
<Button
|
<Button
|
||||||
label={_(msg`Signup without a starter pack`)}
|
label={_(msg`Create an account without using this starter pack`)}
|
||||||
variant="solid"
|
variant="solid"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
size="large"
|
size="large"
|
||||||
style={[a.py_lg]}
|
style={[a.py_lg]}
|
||||||
onPress={onJoinWithoutPress}>
|
onPress={onJoinWithoutPress}>
|
||||||
<ButtonText>
|
<ButtonText>
|
||||||
<Trans>Signup without a starter pack</Trans>
|
<Trans>Create an account without using this starter pack</Trans>
|
||||||
</ButtonText>
|
</ButtonText>
|
||||||
</Button>
|
</Button>
|
||||||
</View>
|
</View>
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ function NativeStackNavigator({
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 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
|
// 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
|
||||||
// on both tablet and mobile web so that we see the sign up CTA.
|
// on both tablet and mobile web so that we see the create account CTA.
|
||||||
const showBottomBar = hasSession ? isMobile : isTabletOrMobile
|
const showBottomBar = hasSession ? isMobile : isTabletOrMobile
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
Reference in New Issue
Block a user