diff options
-rw-r--r-- | src/screens/Signup/StepInfo/Policies.tsx | 2 | ||||
-rw-r--r-- | src/screens/Signup/index.tsx | 18 |
2 files changed, 13 insertions, 7 deletions
diff --git a/src/screens/Signup/StepInfo/Policies.tsx b/src/screens/Signup/StepInfo/Policies.tsx index 8a656203f..4879ae7b3 100644 --- a/src/screens/Signup/StepInfo/Policies.tsx +++ b/src/screens/Signup/StepInfo/Policies.tsx @@ -76,7 +76,7 @@ export const Policies = ({ {under13 ? ( <Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}> - You must be 13 years of age or older to sign up. + <Trans>You must be 13 years of age or older to sign up.</Trans> </Text> ) : needsGuardian ? ( <Text style={[a.font_bold, a.leading_snug, t.atoms.text_contrast_high]}> diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index 4211194c7..a085fe44c 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -170,34 +170,40 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { <View style={[a.flex_row, a.justify_between, a.pb_lg]}> <Button - label="Back" + label={_(msg`Go back to previous step`)} variant="solid" color="secondary" size="medium" onPress={onBackPress}> - Back + <ButtonText> + <Trans>Back</Trans> + </ButtonText> </Button> {state.activeStep !== SignupStep.CAPTCHA && ( <> {isError ? ( <Button - label="Retry" + label={_(msg`Press to retry`)} variant="solid" color="primary" size="medium" disabled={state.isLoading} onPress={() => refetch()}> - Retry + <ButtonText> + <Trans>Retry</Trans> + </ButtonText> </Button> ) : ( <Button - label="Next" + label={_(msg`Continue to next step`)} variant="solid" color="primary" size="medium" disabled={!state.canNext || state.isLoading} onPress={onNextPress}> - <ButtonText>Next</ButtonText> + <ButtonText> + <Trans>Next</Trans> + </ButtonText> </Button> )} </> |