Tweak location strings (#10518)

This commit is contained in:
surfdude29
2026-05-26 16:51:58 +01:00
committed by GitHub
parent dc62ce2fb0
commit a5a6293467
4 changed files with 8 additions and 8 deletions
@@ -394,11 +394,11 @@ function AccessSection() {
<Trans> <Trans>
Is your location not accurate?{' '} Is your location not accurate?{' '}
<SimpleInlineLinkText <SimpleInlineLinkText
label={_(msg`Confirm your location`)} label={_(msg`Update your location`)}
{...createStaticClick(() => { {...createStaticClick(() => {
locationControl.open() locationControl.open()
})}> })}>
Tap here to confirm your location. Tap here to update your location with GPS.
</SimpleInlineLinkText>{' '} </SimpleInlineLinkText>{' '}
</Trans> </Trans>
</Admonition> </Admonition>
@@ -275,11 +275,11 @@ function RegionNotice() {
<Text style={[a.text_sm, a.leading_snug]}> <Text style={[a.text_sm, a.leading_snug]}>
<Trans> <Trans>
<InlineLinkText <InlineLinkText
label={l`Confirm your location`} label={l`Update your location`}
{...createStaticClick(() => { {...createStaticClick(() => {
locationControl.open() locationControl.open()
})}> })}>
Tap here to confirm your location. Tap here to update your location with GPS.
</InlineLinkText> </InlineLinkText>
</Trans> </Trans>
</Text> </Text>
@@ -38,7 +38,7 @@ export function DeviceLocationRequestDialog({
<Dialog.Handle /> <Dialog.Handle />
<Dialog.ScrollableInner <Dialog.ScrollableInner
label={_(msg`Confirm your location`)} label={_(msg`Update your location`)}
style={[web({maxWidth: 380})]}> style={[web({maxWidth: 380})]}>
<DeviceLocationRequestDialogInner <DeviceLocationRequestDialogInner
onLocationAcquired={onLocationAcquired} onLocationAcquired={onLocationAcquired}
@@ -103,7 +103,7 @@ function DeviceLocationRequestDialogInner({onLocationAcquired}: Props) {
return ( return (
<View style={[a.gap_md]}> <View style={[a.gap_md]}>
<Text style={[a.text_xl, a.font_bold]}> <Text style={[a.text_xl, a.font_bold]}>
<Trans>Confirm your location</Trans> <Trans>Update your location</Trans>
</Text> </Text>
<View style={[a.gap_sm, a.pb_xs]}> <View style={[a.gap_sm, a.pb_xs]}>
<Text style={[a.text_md, a.leading_snug, t.atoms.text_contrast_medium]}> <Text style={[a.text_md, a.leading_snug, t.atoms.text_contrast_medium]}>
+2 -2
View File
@@ -320,11 +320,11 @@ export function StepInfo({
<Trans> <Trans>
Have we got your location wrong?{' '} Have we got your location wrong?{' '}
<SimpleInlineLinkText <SimpleInlineLinkText
label={l`Tap here to confirm your location with GPS.`} label={l`Tap here to update your location with GPS.`}
{...createStaticClick(() => { {...createStaticClick(() => {
locationControl.open() locationControl.open()
})}> })}>
Tap here to confirm your location with GPS. Tap here to update your location with GPS.
</SimpleInlineLinkText> </SimpleInlineLinkText>
</Trans> </Trans>
</Admonition.Text> </Admonition.Text>