Fix i18n plural for selected review count

This commit is contained in:
Josh Hawkins 2025-04-22 21:44:22 -05:00
parent 78c1694451
commit 0c09a0ade1
2 changed files with 1 additions and 2 deletions

View File

@ -31,6 +31,6 @@
"label": "View new review items",
"button": "New Items To Review"
},
"selected": "selected",
"selected": "{{count}} selected",
"camera": "Camera"
}

View File

@ -96,7 +96,6 @@ export default function ReviewActionGroup({
<div className="absolute inset-x-2 inset-y-0 flex items-center justify-between gap-2 bg-background py-2 md:left-auto">
<div className="mx-1 flex items-center justify-center text-sm text-muted-foreground">
<div className="p-1">
{selectedReviews.length}{" "}
{t("selected", {
ns: "views/events",
count: selectedReviews.length,