Skip to content

Commit

Permalink
verji changes/additions, translations
Browse files Browse the repository at this point in the history
  • Loading branch information
eiksta committed Jun 5, 2024
1 parent c318dcb commit 505f395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/FormattingUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ export function formatCommaSeparatedList(items: ReactNode[], itemLimit?: number)
}

if (remaining > 0) {
return _t("common|(items)s and (count)s others", { items: joinedItems, count: remaining });
return _t("common|formattingresult", { items: joinedItems, count: remaining });
} else {
return _t("common|(items)s and (lastItem)s", { items: joinedItems, lastItem });
return _t("common|formattingresult2", { items: joinedItems, lastItem });
}
}
}

0 comments on commit 505f395

Please sign in to comment.