diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2024-03-22 17:18:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-22 10:18:00 -0700 |
commit | d507fa9f384527a02aad646d8e0b49df819937a0 (patch) | |
tree | b0c73033ea601201b07b77acdcb824e82eeaae3f /src/screens/Signup/StepInfo/Policies.tsx | |
parent | 5b44aa962f5c50eacff08a8c3feee5fb8db752cb (diff) | |
download | voidsky-d507fa9f384527a02aad646d8e0b49df819937a0.tar.zst |
Mark `under13` and `Next` and `Back` buttons in signup for localisation (#3341)
* Mark under13 string for translation * Mark buttons for localisation * tweak label * wrap in `ButtonText` * lint * try to fix lint again
Diffstat (limited to 'src/screens/Signup/StepInfo/Policies.tsx')
-rw-r--r-- | src/screens/Signup/StepInfo/Policies.tsx | 2 |
1 files changed, 1 insertions, 1 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]}> |