diff options
Diffstat (limited to 'src/screens/Signup/StepInfo/Policies.tsx')
-rw-r--r-- | src/screens/Signup/StepInfo/Policies.tsx | 10 |
1 files changed, 8 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>, ) |