This commit is contained in:
Josh Hawkins 2025-05-05 13:16:49 -05:00
parent 57e2c0c4e0
commit 68a3a60927
2 changed files with 3 additions and 2 deletions

View File

@ -33,5 +33,6 @@
}, },
"selected_one": "{{count}} selected", "selected_one": "{{count}} selected",
"selected_other": "{{count}} selected", "selected_other": "{{count}} selected",
"camera": "Camera" "camera": "Camera",
"detected": "detected"
} }

View File

@ -229,7 +229,7 @@ export function AnimatedEventCard({
.map((text) => text.charAt(0).toUpperCase() + text.substring(1)) .map((text) => text.charAt(0).toUpperCase() + text.substring(1))
.sort() .sort()
.join(", ") .join(", ")
.replaceAll("-verified", "")} detected`} .replaceAll("-verified", "")} ` + t("detected")}
</TooltipContent> </TooltipContent>
</Tooltip> </Tooltip>
); );