diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2025-09-04 21:08:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-04 15:08:23 -0500 |
commit | 9738f4858dea04a5832b9d374e06c4b879abae29 (patch) | |
tree | 2685538cead1066e58ace0725b30509f79bfd7c6 /src/components/dialogs | |
parent | 0dafc2ccd6e221249128ab4d0c570042951f1906 (diff) | |
download | voidsky-9738f4858dea04a5832b9d374e06c4b879abae29.tar.zst |
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
Diffstat (limited to 'src/components/dialogs')
-rw-r--r-- | src/components/dialogs/DeviceLocationRequestDialog.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
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"> |