diff options
Diffstat (limited to 'src/screens/StarterPack/StarterPackLandingScreen.tsx')
-rw-r--r-- | src/screens/StarterPack/StarterPackLandingScreen.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index 7dda45f96..5f1d5e062 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -113,7 +113,7 @@ function LandingScreenLoaded({ moderationOpts: ModerationOpts }) { const {creator, listItemsSample, feeds} = starterPack - const {_} = useLingui() + const {_, i18n} = useLingui() const t = useTheme() const activeStarterPack = useActiveStarterPack() const setActiveStarterPack = useSetActiveStarterPack() @@ -225,7 +225,9 @@ function LandingScreenLoaded({ t.atoms.text_contrast_medium, ]} numberOfLines={1}> - <Trans>{formatCount(JOINED_THIS_WEEK)} joined this week</Trans> + <Trans> + {formatCount(i18n, JOINED_THIS_WEEK)} joined this week + </Trans> </Text> </View> </View> |