fix lingui change

This commit is contained in:
Samuel Newman
2026-03-03 16:15:52 +02:00
parent d92627205c
commit 12b34bb0c5
+3 -4
View File
@@ -1,6 +1,5 @@
import {useMemo} from 'react' import {useMemo} from 'react'
import {Platform, View} from 'react-native' import {Platform, View} from 'react-native'
import {msg} from '@lingui/core/macro'
import {Trans, useLingui} from '@lingui/react/macro' import {Trans, useLingui} from '@lingui/react/macro'
import {HITSLOP_30} from '#/lib/constants' import {HITSLOP_30} from '#/lib/constants'
@@ -125,7 +124,7 @@ function TranslationLanguageSelect({
sourceLanguage: string sourceLanguage: string
}) { }) {
const ax = useAnalytics() const ax = useAnalytics()
const {_} = useLingui() const {t: l} = useLingui()
const langPrefs = useLanguagePrefs() const langPrefs = useLanguagePrefs()
const {translate} = useTranslateOnDevice() const {translate} = useTranslateOnDevice()
@@ -163,7 +162,7 @@ function TranslationLanguageSelect({
<Select.Root <Select.Root
value={sourceLanguage} value={sourceLanguage}
onValueChange={handleChangeTranslationLanguage}> onValueChange={handleChangeTranslationLanguage}>
<Select.Trigger hitSlop={10} label={_(msg`Change source language`)}> <Select.Trigger hitSlop={10} label={l`Change source language`}>
{({props}) => { {({props}) => {
return ( return (
<Text {...props} style={[a.text_xs]}> <Text {...props} style={[a.text_xs]}>
@@ -173,7 +172,7 @@ function TranslationLanguageSelect({
}} }}
</Select.Trigger> </Select.Trigger>
<Select.Content <Select.Content
label={_(msg`Select the source language`)} label={l`Select the source language`}
renderItem={({label, value}) => ( renderItem={({label, value}) => (
<Select.Item value={value} label={label}> <Select.Item value={value} label={label}>
<Select.ItemIndicator /> <Select.ItemIndicator />