diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/BlockedGeoOverlay.tsx | 2 | ||||
-rw-r--r-- | src/components/ageAssurance/AgeAssuranceAccountCard.tsx | 2 | ||||
-rw-r--r-- | src/components/dialogs/DeviceLocationRequestDialog.tsx | 12 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/components/BlockedGeoOverlay.tsx b/src/components/BlockedGeoOverlay.tsx index df8ed63d4..8dd55c2bf 100644 --- a/src/components/BlockedGeoOverlay.tsx +++ b/src/components/BlockedGeoOverlay.tsx @@ -156,7 +156,7 @@ export function BlockedGeoOverlay() { props.disableDialogAction() props.setDialogError( _( - msg`We're sorry, but based on your device's location, you are currently located in a region we cannot provide access at this time.`, + msg`We're sorry, but based on your device's location, you are currently located in a region where we cannot provide access at this time.`, ), ) } else { diff --git a/src/components/ageAssurance/AgeAssuranceAccountCard.tsx b/src/components/ageAssurance/AgeAssuranceAccountCard.tsx index be9935d9f..a7accfa74 100644 --- a/src/components/ageAssurance/AgeAssuranceAccountCard.tsx +++ b/src/components/ageAssurance/AgeAssuranceAccountCard.tsx @@ -90,7 +90,7 @@ function Inner({style}: ViewStyleProp & {}) { {...createStaticClick(() => { locationControl.open() })}> - Click here to confirm your location. + Tap here to confirm your location. </InlineLinkText>{' '} </Trans> </Text> diff --git a/src/components/dialogs/DeviceLocationRequestDialog.tsx b/src/components/dialogs/DeviceLocationRequestDialog.tsx index 6c82dc0e9..ac3362406 100644 --- a/src/components/dialogs/DeviceLocationRequestDialog.tsx +++ b/src/components/dialogs/DeviceLocationRequestDialog.tsx @@ -89,7 +89,7 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) { } else { setError( _( - msg`Unable to access location. You'll need to visit your system settings to enable location services for Bluesky`, + msg`Unable to access location. You'll need to visit your system settings to enable location services for Bluesky.`, ), ) } @@ -114,9 +114,9 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) { <View style={[a.gap_sm, a.pb_xs]}> <Text style={[a.text_md, a.leading_snug, t.atoms.text_contrast_medium]}> <Trans> - Click below to allow Bluesky to access your GPS location. We will - then use that data to more accurately determine the content and - features available in your region. + Tap below to allow Bluesky to access your GPS location. We will then + use that data to more accurately determine the content and features + available in your region. </Trans> </Text> @@ -143,7 +143,7 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) { {!dialogDisabled && ( <Button disabled={isRequesting} - label={_(msg`Confirm your location`)} + label={_(msg`Allow location access`)} onPress={onPressConfirm} size={isWeb ? 'small' : 'large'} color="primary"> @@ -156,7 +156,7 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) { {!isWeb && ( <Button - label={_(msg`Confirm your location`)} + label={_(msg`Cancel`)} onPress={() => close()} size={isWeb ? 'small' : 'large'} color="secondary"> |