Skip to content

Commit 9738f48

Browse files
authored
Tweak location-related strings and labels (#8975)
* tweak string in BlockedGeoOverlay.tsx * tweak string in AgeAssuranceAccountCard.tsx * tweak string and labels in DeviceLocationRequestDialog.tsx * prettier * add missing `.` in DeviceLocationRequestDialog.tsx
1 parent 0dafc2c commit 9738f48

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/components/BlockedGeoOverlay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export function BlockedGeoOverlay() {
156156
props.disableDialogAction()
157157
props.setDialogError(
158158
_(
159-
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.`,
159+
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.`,
160160
),
161161
)
162162
} else {

src/components/ageAssurance/AgeAssuranceAccountCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function Inner({style}: ViewStyleProp & {}) {
9090
{...createStaticClick(() => {
9191
locationControl.open()
9292
})}>
93-
Click here to confirm your location.
93+
Tap here to confirm your location.
9494
</InlineLinkText>{' '}
9595
</Trans>
9696
</Text>

src/components/dialogs/DeviceLocationRequestDialog.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) {
8989
} else {
9090
setError(
9191
_(
92-
msg`Unable to access location. You'll need to visit your system settings to enable location services for Bluesky`,
92+
msg`Unable to access location. You'll need to visit your system settings to enable location services for Bluesky.`,
9393
),
9494
)
9595
}
@@ -114,9 +114,9 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) {
114114
<View style={[a.gap_sm, a.pb_xs]}>
115115
<Text style={[a.text_md, a.leading_snug, t.atoms.text_contrast_medium]}>
116116
<Trans>
117-
Click below to allow Bluesky to access your GPS location. We will
118-
then use that data to more accurately determine the content and
119-
features available in your region.
117+
Tap below to allow Bluesky to access your GPS location. We will then
118+
use that data to more accurately determine the content and features
119+
available in your region.
120120
</Trans>
121121
</Text>
122122

@@ -143,7 +143,7 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) {
143143
{!dialogDisabled && (
144144
<Button
145145
disabled={isRequesting}
146-
label={_(msg`Confirm your location`)}
146+
label={_(msg`Allow location access`)}
147147
onPress={onPressConfirm}
148148
size={isWeb ? 'small' : 'large'}
149149
color="primary">
@@ -156,7 +156,7 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) {
156156

157157
{!isWeb && (
158158
<Button
159-
label={_(msg`Confirm your location`)}
159+
label={_(msg`Cancel`)}
160160
onPress={() => close()}
161161
size={isWeb ? 'small' : 'large'}
162162
color="secondary">

0 commit comments

Comments
 (0)