fix: fix classification missing i18n (#21179)

This commit is contained in:
GuoQing Liu
2025-12-07 11:35:48 -07:00
committed by GitHub
parent 88a8de0b1c
commit 644c7fa6b4
5 changed files with 20 additions and 5 deletions
+6 -1
View File
@@ -371,7 +371,12 @@ export default function FaceLibrary() {
{selectedFaces?.length > 0 ? (
<div className="flex items-center justify-center gap-2">
<div className="mx-1 flex w-48 items-center justify-center text-sm text-muted-foreground">
<div className="p-1">{`${selectedFaces.length} selected`}</div>
<div className="p-1">
{t("selected", {
ns: "views/event",
count: selectedFaces.length,
})}
</div>
<div className="p-1">{"|"}</div>
<div
className="cursor-pointer p-2 text-primary hover:rounded-lg hover:bg-secondary"