diff --git a/web/public/locales/en/views/classificationModel.json b/web/public/locales/en/views/classificationModel.json
index 0e9095e49..fa3ec03cf 100644
--- a/web/public/locales/en/views/classificationModel.json
+++ b/web/public/locales/en/views/classificationModel.json
@@ -1,7 +1,9 @@
{
"documentTitle": "Classification Models - Frigate",
"details": {
- "scoreInfo": "Score represents the average classification confidence across all detections of this object."
+ "scoreInfo": "Score represents the average classification confidence across all detections of this object.",
+ "none": "None",
+ "unknown": "Unknown"
},
"button": {
"deleteClassificationAttempts": "Delete Classification Images",
@@ -83,7 +85,6 @@
"aria": "Select Recent Classifications"
},
"categories": "Classes",
- "none": "None",
"createCategory": {
"new": "Create New Class"
},
diff --git a/web/src/components/card/ClassificationCard.tsx b/web/src/components/card/ClassificationCard.tsx
index 4e5f224b0..e8bb9f9cb 100644
--- a/web/src/components/card/ClassificationCard.tsx
+++ b/web/src/components/card/ClassificationCard.tsx
@@ -161,7 +161,11 @@ export const ClassificationCard = forwardRef<
)}
>
- {data.name == "unknown" ? t("details.unknown") : data.name}
+ {data.name == "unknown"
+ ? t("details.unknown")
+ : data.name == "none"
+ ? t("details.none")
+ : data.name}
{data.score != undefined && (
onCategorizeImage(category)}
>
{category === "none"
- ? t("none")
+ ? t("details.none")
: category.replaceAll("_", " ")}
))}
diff --git a/web/src/components/overlay/dialog/TrainFilterDialog.tsx b/web/src/components/overlay/dialog/TrainFilterDialog.tsx
index 46d802a19..b44b766fb 100644
--- a/web/src/components/overlay/dialog/TrainFilterDialog.tsx
+++ b/web/src/components/overlay/dialog/TrainFilterDialog.tsx
@@ -170,7 +170,9 @@ export function ClassFilterContent({
{
diff --git a/web/src/views/classification/ModelTrainingView.tsx b/web/src/views/classification/ModelTrainingView.tsx
index ea9facd08..f3b555af2 100644
--- a/web/src/views/classification/ModelTrainingView.tsx
+++ b/web/src/views/classification/ModelTrainingView.tsx
@@ -707,7 +707,7 @@ function LibrarySelector({
className="flex-grow cursor-pointer capitalize"
onClick={() => setPageToggle(id)}
>
- {id === "none" ? t("none") : id.replaceAll("_", " ")}
+ {id === "none" ? t("details.none") : id.replaceAll("_", " ")}
({dataset?.[id].length})