diff options
author | Eric Bailey <git@esb.lol> | 2024-07-25 18:07:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 18:07:15 -0500 |
commit | 783fd351ba5299a74cc9e6885939ef09034ed97d (patch) | |
tree | a204d2745402ba183bc68be15dbdc3677303f7ba /src/screens/Signup | |
parent | e7b485f185913dd52f807c232b3b9c9a580ae33d (diff) | |
download | voidsky-783fd351ba5299a74cc9e6885939ef09034ed97d.tar.zst |
Add labels to a few missing places (#4838)
Diffstat (limited to 'src/screens/Signup')
-rw-r--r-- | src/screens/Signup/StepInfo/Policies.tsx | 10 | ||||
-rw-r--r-- | src/screens/Signup/index.tsx | 1 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/screens/Signup/StepInfo/Policies.tsx b/src/screens/Signup/StepInfo/Policies.tsx index f25bda274..a3a067222 100644 --- a/src/screens/Signup/StepInfo/Policies.tsx +++ b/src/screens/Signup/StepInfo/Policies.tsx @@ -45,14 +45,20 @@ export const Policies = ({ const els = [] if (tos) { els.push( - <InlineLinkText key="tos" to={tos}> + <InlineLinkText + label={_(msg`Read the Bluesky Terms of Service`)} + key="tos" + to={tos}> {_(msg`Terms of Service`)} </InlineLinkText>, ) } if (pp) { els.push( - <InlineLinkText key="pp" to={pp}> + <InlineLinkText + label={_(msg`Read the Bluesky Privacy Policy`)} + key="pp" + to={pp}> {_(msg`Privacy Policy`)} </InlineLinkText>, ) diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index da0383884..189760460 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -166,6 +166,7 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { <Text style={[t.atoms.text, !gtMobile && a.text_md]}> <Trans>Having trouble?</Trans>{' '} <InlineLinkText + label={_(msg`Contact support`)} to={FEEDBACK_FORM_URL({email: state.email})} style={[!gtMobile && a.text_md]}> <Trans>Contact support</Trans> |