Modified to use "measure word" in "# others" (#4607)
parent
de1b7f7045
commit
0a0c738790
|
@ -493,17 +493,29 @@ function Footer({
|
||||||
</Text>
|
</Text>
|
||||||
are included in your starter pack
|
are included in your starter pack
|
||||||
</Trans>
|
</Trans>
|
||||||
) : (
|
) : state.currentStep === 'Profiles' ? (
|
||||||
<Trans>
|
<Trans context="profiles">
|
||||||
<Text style={[a.font_bold, textStyles]}>
|
<Text style={[a.font_bold, textStyles]}>
|
||||||
{getName(items[initialNamesIndex])},{' '}
|
{getName(items[initialNamesIndex])},{' '}
|
||||||
</Text>
|
</Text>
|
||||||
<Text style={[a.font_bold, textStyles]}>
|
<Text style={[a.font_bold, textStyles]}>
|
||||||
{getName(items[initialNamesIndex + 1])},{' '}
|
{getName(items[initialNamesIndex + 1])},{' '}
|
||||||
</Text>
|
</Text>
|
||||||
and {items.length - 2}{' '}
|
and{' '}
|
||||||
<Plural value={items.length - 2} one="other" other="others" /> are
|
<Plural value={items.length - 2} one="# other" other="# others" />{' '}
|
||||||
included in your starter pack
|
are included in your starter pack
|
||||||
|
</Trans>
|
||||||
|
) : (
|
||||||
|
<Trans context="feeds">
|
||||||
|
<Text style={[a.font_bold, textStyles]}>
|
||||||
|
{getName(items[initialNamesIndex])},{' '}
|
||||||
|
</Text>
|
||||||
|
<Text style={[a.font_bold, textStyles]}>
|
||||||
|
{getName(items[initialNamesIndex + 1])},{' '}
|
||||||
|
</Text>
|
||||||
|
and{' '}
|
||||||
|
<Plural value={items.length - 2} one="# other" other="# others" />{' '}
|
||||||
|
are included in your starter pack
|
||||||
</Trans>
|
</Trans>
|
||||||
)}
|
)}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
Loading…
Reference in New Issue