From 008893b911c354ea70fbb4ceacefe2dafc7567b9 Mon Sep 17 00:00:00 2001 From: Stanislas Signoud Date: Tue, 9 Jan 2024 23:37:15 +0100 Subject: Internationalize more strings (#2440) Co-authored-by: Ansh --- src/view/com/lists/ProfileLists.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/view/com/lists/ProfileLists.tsx') diff --git a/src/view/com/lists/ProfileLists.tsx b/src/view/com/lists/ProfileLists.tsx index db981717f..89d6ab480 100644 --- a/src/view/com/lists/ProfileLists.tsx +++ b/src/view/com/lists/ProfileLists.tsx @@ -10,11 +10,12 @@ import {useAnalytics} from 'lib/analytics/analytics' import {usePalette} from 'lib/hooks/usePalette' import {useProfileListsQuery, RQKEY} from '#/state/queries/profile-lists' import {logger} from '#/logger' -import {Trans} from '@lingui/macro' +import {Trans, msg} from '@lingui/macro' import {cleanError} from '#/lib/strings/errors' import {useTheme} from '#/lib/ThemeContext' import {FeedLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {isNative} from '#/platform/detection' +import {useLingui} from '@lingui/react' const LOADING = {_reactKey: '__loading__'} const EMPTY = {_reactKey: '__empty__'} @@ -42,6 +43,7 @@ export const ProfileLists = React.forwardRef( const pal = usePalette('default') const theme = useTheme() const {track} = useAnalytics() + const {_} = useLingui() const [isPTRing, setIsPTRing] = React.useState(false) const opts = React.useMemo(() => ({enabled}), [enabled]) const { @@ -149,7 +151,9 @@ export const ProfileLists = React.forwardRef( } else if (item === LOAD_MORE_ERROR_ITEM) { return ( ) @@ -164,7 +168,7 @@ export const ProfileLists = React.forwardRef( /> ) }, - [error, refetch, onPressRetryLoadMore, pal], + [error, refetch, onPressRetryLoadMore, pal, _], ) return ( -- cgit 1.4.1