···22import {Dimensions, View} from 'react-native'
33import {Image as RNImage} from 'react-native-image-crop-picker'
44import {AppBskyActorDefs} from '@atproto/api'
55-import {msg, Trans} from '@lingui/macro'
55+import {msg, Plural, Trans} from '@lingui/macro'
66import {useLingui} from '@lingui/react'
7788import {compressIfNeeded} from '#/lib/media/manip'
···332332 ]}
333333 label={_(msg`Display name is too long`)}>
334334 <Trans>
335335- Display name is too long. The maximum number of characters is{' '}
336336- {DISPLAY_NAME_MAX_GRAPHEMES}.
335335+ Display name is too long.{' '}
336336+ <Plural
337337+ value={DISPLAY_NAME_MAX_GRAPHEMES}
338338+ other="The maximum number of characters is #."
339339+ />
337340 </Trans>
338341 </TextField.SuffixText>
339342 )}
···363366 ]}
364367 label={_(msg`Description is too long`)}>
365368 <Trans>
366366- Description is too long. The maximum number of characters is{' '}
367367- {DESCRIPTION_MAX_GRAPHEMES}.
369369+ Description is too long.{' '}
370370+ <Plural
371371+ value={DESCRIPTION_MAX_GRAPHEMES}
372372+ other="The maximum number of characters is #."
373373+ />
368374 </Trans>
369375 </TextField.SuffixText>
370376 )}