From 4b8a335effb54baa3b098d1a21c8663766baa888 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 25 May 2026 14:29:53 +0300 Subject: [PATCH] run lingui script --- src/components/Lightbox/Lightbox.web.tsx | 42 ++++++++++------------- src/components/Lightbox/chrome/Header.tsx | 7 ++-- 2 files changed, 22 insertions(+), 27 deletions(-) diff --git a/src/components/Lightbox/Lightbox.web.tsx b/src/components/Lightbox/Lightbox.web.tsx index 4f88412d9a..641b2c3402 100644 --- a/src/components/Lightbox/Lightbox.web.tsx +++ b/src/components/Lightbox/Lightbox.web.tsx @@ -1,9 +1,7 @@ import {useCallback, useEffect, useRef, useState} from 'react' import {Pressable, StyleSheet, View} from 'react-native' import {Image} from 'expo-image' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' -import {Trans} from '@lingui/react/macro' +import {Trans, useLingui} from '@lingui/react/macro' import {FocusGuards, FocusScope} from 'radix-ui/internal' import {RemoveScrollBar} from 'react-remove-scroll-bar' @@ -67,12 +65,12 @@ function LightboxContainer({ children: React.ReactNode handleBackgroundPress: () => void }) { - const {_} = useLingui() + const {t: l} = useLingui() FocusGuards.useFocusGuards() return ( @@ -81,7 +79,7 @@ function LightboxContainer({
{children}
@@ -100,7 +98,7 @@ function LightboxGallery({ onClose: () => void }) { const t = useTheme() - const {_} = useLingui() + const {t: l} = useLingui() const {reduceMotionEnabled} = useA11y() const [index, setIndex] = useState(initialIndex) const [hasAnyLoaded, setAnyHasLoaded] = useState(false) @@ -196,7 +194,7 @@ function LightboxGallery({ ]} hoverStyle={styles.blurredBackdropHover} color="secondary" - label={_(msg`Previous image`)} + label={l`Previous image`} shape="round" size={gtPhone ? 'large' : 'small'}> { setAltExpanded(!isAltExpanded) }}> @@ -254,11 +250,11 @@ function LightboxGallery({ ) : null} {imgs.length > 1 && (
- {_(msg`Image ${index + 1} of ${imgs.length}`)} + {l`Image ${index + 1} of ${imgs.length}`}
)} - + {({props}) => ( )} @@ -274,7 +270,7 @@ function LightboxGallery({ { const url = img.uri if ( @@ -293,9 +289,9 @@ function LightboxGallery({ ) { try { await navigator.clipboard.writeText(url) - Toast.show(_(msg`Link copied to clipboard`)) + Toast.show(l`Link copied to clipboard`) } catch { - Toast.show(_(msg`Failed to copy link`), {type: 'error'}) + Toast.show(l`Failed to copy link`, {type: 'error'}) } } }}> @@ -305,14 +301,14 @@ function LightboxGallery({ { saveImageToMediaLibrary({uri: img.uri}).then( () => { - Toast.show(_(msg`Image saved`)) + Toast.show(l`Image saved`) }, () => { - Toast.show(_(msg`Failed to save image`), {type: 'error'}) + Toast.show(l`Failed to save image`, {type: 'error'}) }, ) }}> @@ -327,7 +323,7 @@ function LightboxGallery({ diff --git a/src/components/Lightbox/chrome/Header.tsx b/src/components/Lightbox/chrome/Header.tsx index 31e09e236d..98dff40ba4 100644 --- a/src/components/Lightbox/chrome/Header.tsx +++ b/src/components/Lightbox/chrome/Header.tsx @@ -1,7 +1,6 @@ import {View} from 'react-native' import {useSafeAreaInsets} from 'react-native-safe-area-context' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import {atoms as a} from '#/alf' import {TimesLarge_Stroke2_Corner0_Rounded as CloseIcon} from '#/components/icons/Times' @@ -24,7 +23,7 @@ export function Header({ imageCount, activeIndex, }: Props) { - const {_} = useLingui() + const {t: l} = useLingui() const insets = useSafeAreaInsets() return ( @@ -45,7 +44,7 @@ export function Header({