···1313 AtUri,
1414 type RichText as RichTextAPI,
1515} from '@atproto/api'
1616-import {msg} from '@lingui/macro'
1616+import {msg, plural} from '@lingui/macro'
1717import {useLingui} from '@lingui/react'
1818import {useNavigation} from '@react-navigation/native'
1919···384384 if (e instanceof MaxHiddenRepliesError) {
385385 Toast.show(
386386 _(
387387- msg({
388388- message: `You can hide a maximum of ${MAX_HIDDEN_REPLIES} replies.`,
389389- context: 'toast',
387387+ plural(MAX_HIDDEN_REPLIES, {
388388+ other: 'You can hide a maximum of # replies.',
390389 }),
391390 ),
392391 )
+9-9
src/screens/Signup/StepInfo/index.tsx
···11import React, {useRef} from 'react'
22import {type TextInput, View} from 'react-native'
33-import {msg, Trans} from '@lingui/macro'
33+import {msg, Plural, Trans} from '@lingui/macro'
44import {useLingui} from '@lingui/react'
55import * as EmailValidator from 'email-validator'
66import type tldts from 'tldts'
···312312 <Admonition.Content>
313313 <Admonition.Text>
314314 {!isOverAppMinAccessAge ? (
315315- <Trans>
316316- You must be {MIN_ACCESS_AGE} years of age or older
317317- to create an account.
318318- </Trans>
315315+ <Plural
316316+ value={MIN_ACCESS_AGE}
317317+ other="You must be # years of age or older to create an account."
318318+ />
319319 ) : (
320320- <Trans>
321321- You must be {aaRegionConfig.minAccessAge} years of
322322- age or older to create an account in your region.
323323- </Trans>
320320+ <Plural
321321+ value={aaRegionConfig.minAccessAge}
322322+ other="You must be # years of age or older to create an account in your region."
323323+ />
324324 )}
325325 </Admonition.Text>
326326 {IS_NATIVE &&
+5-2
src/view/com/composer/videos/SubtitleDialog.tsx
···11import {useCallback, useState} from 'react'
22import {Keyboard, type StyleProp, View, type ViewStyle} from 'react-native'
33-import {msg, Trans} from '@lingui/macro'
33+import {msg, Plural, Trans} from '@lingui/macro'
44import {useLingui} from '@lingui/react'
5566import {MAX_ALT_TEXT} from '#/lib/constants'
···134134 a.leading_snug,
135135 a.mt_md,
136136 ]}>
137137- <Trans>Alt text must be less than {MAX_ALT_TEXT} characters.</Trans>
137137+ <Plural
138138+ value={MAX_ALT_TEXT}
139139+ other="Alt text must be less than # characters."
140140+ />
138141 </Text>
139142 )}
140143