Skip to content

Commit

Permalink
fix and others i18n (#6367)
Browse files Browse the repository at this point in the history
  • Loading branch information
walmat authored Dec 20, 2024
1 parent 011df97 commit 94b8a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Discover/TrendingTokens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function FriendHolders({ friends }: { friends: FarcasterUser[] }) {
{friends.length > 2 && (
<Text color="labelTertiary" size="11pt" weight="bold">
{' '}
{i18n.t('trending_tokens.and_others', { count: howManyOthers })}
{i18n.t(t.and_others[howManyOthers === 1 ? 'one' : 'other'], { count: howManyOthers })}
</Text>
)}
</View>
Expand Down

0 comments on commit 94b8a96

Please sign in to comment.