Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add plural formatting for too long handle error (#7999)

authored by

surfdude29 and committed by
GitHub
ffbcbf81 98fe7edb

+6 -2
+6 -2
src/screens/Signup/StepHandle.tsx
··· 1 1 import React, {useRef} from 'react' 2 2 import {View} from 'react-native' 3 - import {msg, Trans} from '@lingui/macro' 3 + import {msg, Plural, Trans} from '@lingui/macro' 4 4 import {useLingui} from '@lingui/react' 5 5 6 6 import { ··· 182 182 draftValue.length > MAX_SERVICE_HANDLE_LENGTH ? ( 183 183 <Text style={[a.text_md, a.flex_1]}> 184 184 <Trans> 185 - No longer than {MAX_SERVICE_HANDLE_LENGTH} characters 185 + No longer than{' '} 186 + <Plural 187 + value={MAX_SERVICE_HANDLE_LENGTH} 188 + other="# characters" 189 + /> 186 190 </Trans> 187 191 </Text> 188 192 ) : (