Update copy
This commit is contained in:
@@ -75,8 +75,9 @@ function Inner({style}: ViewStyleProp & {}) {
|
|||||||
style={[a.flex_row, a.justify_between, a.align_start, a.gap_xl]}>
|
style={[a.flex_row, a.justify_between, a.align_start, a.gap_xl]}>
|
||||||
<Text style={[a.text_sm, a.leading_snug]}>
|
<Text style={[a.text_sm, a.leading_snug]}>
|
||||||
<Trans>
|
<Trans>
|
||||||
You're accessing Bluesky from a region that requires you to
|
You're using Bluesky from a location that legally requires you
|
||||||
verify your age prior to accessing certain content and features.
|
to verify your age prior to accessing certain content and
|
||||||
|
features.
|
||||||
</Trans>
|
</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import {View} from 'react-native'
|
|||||||
import {Trans} from '@lingui/macro'
|
import {Trans} from '@lingui/macro'
|
||||||
|
|
||||||
import {atoms as a, select, useTheme} from '#/alf'
|
import {atoms as a, select, useTheme} from '#/alf'
|
||||||
import {Shield_Stroke2_Corner0_Rounded as Shield} from '#/components/icons/Shield'
|
import {ShieldCheck_Stroke2_Corner0_Rounded as Shield} from '#/components/icons/Shield'
|
||||||
import {Text} from '#/components/Typography'
|
import {Text} from '#/components/Typography'
|
||||||
|
|
||||||
export function AgeAssuranceBadge() {
|
export function AgeAssuranceBadge() {
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ import {Button, ButtonIcon, ButtonText} from '#/components/Button'
|
|||||||
import * as Dialog from '#/components/Dialog'
|
import * as Dialog from '#/components/Dialog'
|
||||||
import {Divider} from '#/components/Divider'
|
import {Divider} from '#/components/Divider'
|
||||||
import * as TextField from '#/components/forms/TextField'
|
import * as TextField from '#/components/forms/TextField'
|
||||||
import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/Envelope'
|
import {ShieldCheck_Stroke2_Corner0_Rounded as Shield} from '#/components/icons/Shield'
|
||||||
import {LanguageSelect} from '#/components/LanguageSelect'
|
import {LanguageSelect} from '#/components/LanguageSelect'
|
||||||
import {InlineLinkText} from '#/components/Link'
|
import {InlineLinkText} from '#/components/Link'
|
||||||
import {Loader} from '#/components/Loader'
|
import {Loader} from '#/components/Loader'
|
||||||
@@ -131,7 +131,10 @@ function Inner() {
|
|||||||
<View style={[a.pb_xl, a.gap_sm]}>
|
<View style={[a.pb_xl, a.gap_sm]}>
|
||||||
{success ? (
|
{success ? (
|
||||||
<Text style={[a.text_sm, a.leading_snug]}>
|
<Text style={[a.text_sm, a.leading_snug]}>
|
||||||
<Trans>Please check your email to contine the process.</Trans>
|
<Trans>
|
||||||
|
Please check your email inbox for further instructions. It may
|
||||||
|
take a minute or two to arrive.
|
||||||
|
</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
@@ -144,15 +147,16 @@ function Inner() {
|
|||||||
style={[a.text_sm, a.leading_snug]}>
|
style={[a.text_sm, a.leading_snug]}>
|
||||||
KWS
|
KWS
|
||||||
</InlineLinkText>{' '}
|
</InlineLinkText>{' '}
|
||||||
to verify that you’re an adult. When you click "Get an email"
|
to verify that you’re an adult. When you click "Begin" below,
|
||||||
below, Bluesky will share your email address with KWS.
|
Bluesky will securely store and share your email address with
|
||||||
|
KWS.
|
||||||
</Trans>
|
</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
<Text style={[a.text_sm, a.leading_snug]}>
|
<Text style={[a.text_sm, a.leading_snug]}>
|
||||||
<Trans>
|
<Trans>
|
||||||
If KWS cannot use your email address to confirm that you
|
KWS will then email you instructions for verifying your age.
|
||||||
previously verified your age, you’ll be taken to the KWS
|
When you’re done, you'll be brought back to continue using
|
||||||
website to provide more details.
|
Bluesky.
|
||||||
</Trans>
|
</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
<Text style={[a.text_sm, a.leading_snug]}>
|
<Text style={[a.text_sm, a.leading_snug]}>
|
||||||
@@ -237,10 +241,10 @@ function Inner() {
|
|||||||
color="primary"
|
color="primary"
|
||||||
onPress={onSubmit}>
|
onPress={onSubmit}>
|
||||||
<ButtonText>
|
<ButtonText>
|
||||||
<Trans>Get an email</Trans>
|
<Trans>Begin</Trans>
|
||||||
</ButtonText>
|
</ButtonText>
|
||||||
<ButtonIcon
|
<ButtonIcon
|
||||||
icon={isPending ? Loader : Envelope}
|
icon={isPending ? Loader : Shield}
|
||||||
position="right"
|
position="right"
|
||||||
/>
|
/>
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -56,9 +56,8 @@ function Inner({style}: ViewStyleProp & {}) {
|
|||||||
</View>
|
</View>
|
||||||
<Text style={[a.text_md, a.leading_snug]}>
|
<Text style={[a.text_md, a.leading_snug]}>
|
||||||
<Trans>
|
<Trans>
|
||||||
You're currently accessing Bluesky from a location that by law
|
You're using Bluesky from a location that legally requires you to
|
||||||
requires you to verify your age prior to accessing certain content
|
verify your age prior to accessing certain content and features.
|
||||||
and features.
|
|
||||||
</Trans>
|
</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
|
|||||||
@@ -66,9 +66,9 @@ export function AgeRestrictedScreen({
|
|||||||
|
|
||||||
<Text style={[a.text_md, a.leading_snug, a.pb_sm]}>
|
<Text style={[a.text_md, a.leading_snug, a.pb_sm]}>
|
||||||
<Trans>
|
<Trans>
|
||||||
You're currently accessing Bluesky from a location that by law
|
You're using Bluesky from a location that legally requires you
|
||||||
requires you to verify your age prior to accessing certain
|
to verify your age prior to accessing certain content and
|
||||||
content and features.
|
features.
|
||||||
</Trans>
|
</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user