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/App.native.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/App.native.tsx') diff --git a/src/App.native.tsx b/src/App.native.tsx index 6402b4a89..9de901767 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -39,6 +39,8 @@ import { import {Provider as UnreadNotifsProvider} from 'state/queries/notifications/unread' import * as persisted from '#/state/persisted' import {Splash} from '#/Splash' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' SplashScreen.preventAutoHideAsync() @@ -46,17 +48,18 @@ function InnerApp() { const colorMode = useColorMode() const {isInitialLoad, currentAccount} = useSession() const {resumeSession} = useSessionApi() + const {_} = useLingui() // init useEffect(() => { notifications.init(queryClient) listenSessionDropped(() => { - Toast.show('Sorry! Your session expired. Please log in again.') + Toast.show(_(msg`Sorry! Your session expired. Please log in again.`)) }) const account = persisted.get('session').currentAccount resumeSession(account) - }, [resumeSession]) + }, [resumeSession, _]) return ( -- cgit 1.4.1