Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Modified to use "measure word" in "# others" (#4607)

authored by

Takayuki KUSANO and committed by
GitHub
0a0c7387 de1b7f70

+16 -4
+16 -4
src/screens/StarterPack/Wizard/index.tsx
··· 493 493 </Text> 494 494 are included in your starter pack 495 495 </Trans> 496 + ) : state.currentStep === 'Profiles' ? ( 497 + <Trans context="profiles"> 498 + <Text style={[a.font_bold, textStyles]}> 499 + {getName(items[initialNamesIndex])},{' '} 500 + </Text> 501 + <Text style={[a.font_bold, textStyles]}> 502 + {getName(items[initialNamesIndex + 1])},{' '} 503 + </Text> 504 + and{' '} 505 + <Plural value={items.length - 2} one="# other" other="# others" />{' '} 506 + are included in your starter pack 507 + </Trans> 496 508 ) : ( 497 - <Trans> 509 + <Trans context="feeds"> 498 510 <Text style={[a.font_bold, textStyles]}> 499 511 {getName(items[initialNamesIndex])},{' '} 500 512 </Text> 501 513 <Text style={[a.font_bold, textStyles]}> 502 514 {getName(items[initialNamesIndex + 1])},{' '} 503 515 </Text> 504 - and {items.length - 2}{' '} 505 - <Plural value={items.length - 2} one="other" other="others" /> are 506 - included in your starter pack 516 + and{' '} 517 + <Plural value={items.length - 2} one="# other" other="# others" />{' '} 518 + are included in your starter pack 507 519 </Trans> 508 520 )} 509 521 </Text>