mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-04 04:27:42 +03:00
face library i18n fixes
This commit is contained in:
parent
52d94231c7
commit
fa3f2404e8
@ -8,7 +8,7 @@
|
|||||||
"subLabelScore": "Sub Label Score",
|
"subLabelScore": "Sub Label Score",
|
||||||
"scoreInfo": "The sub label score is the weighted score for all of the recognized face confidences, so this may differ from the score shown on the snapshot.",
|
"scoreInfo": "The sub label score is the weighted score for all of the recognized face confidences, so this may differ from the score shown on the snapshot.",
|
||||||
"face": "Face Details",
|
"face": "Face Details",
|
||||||
"faceDesc": "Details for the face and associated object",
|
"faceDesc": "Details of the tracked object that generated this face",
|
||||||
"timestamp": "Timestamp"
|
"timestamp": "Timestamp"
|
||||||
},
|
},
|
||||||
"documentTitle": "Face Library - Frigate",
|
"documentTitle": "Face Library - Frigate",
|
||||||
@ -16,6 +16,7 @@
|
|||||||
"title": "Upload Face Image",
|
"title": "Upload Face Image",
|
||||||
"desc": "Upload an image to scan for faces and include for {{pageToggle}}"
|
"desc": "Upload an image to scan for faces and include for {{pageToggle}}"
|
||||||
},
|
},
|
||||||
|
"collections": "Collections",
|
||||||
"createFaceLibrary": {
|
"createFaceLibrary": {
|
||||||
"title": "Create Collection",
|
"title": "Create Collection",
|
||||||
"desc": "Create a new collection",
|
"desc": "Create a new collection",
|
||||||
|
|||||||
@ -443,7 +443,7 @@ function LibrarySelector({
|
|||||||
<DropdownMenu>
|
<DropdownMenu>
|
||||||
<DropdownMenuTrigger asChild>
|
<DropdownMenuTrigger asChild>
|
||||||
<Button className="flex justify-between smart-capitalize">
|
<Button className="flex justify-between smart-capitalize">
|
||||||
{pageToggle || t("selectFace")}
|
{pageToggle == "train" ? t("train.title") : pageToggle}
|
||||||
<span className="ml-2 text-primary-variant">
|
<span className="ml-2 text-primary-variant">
|
||||||
({(pageToggle && faceData?.[pageToggle]?.length) || 0})
|
({(pageToggle && faceData?.[pageToggle]?.length) || 0})
|
||||||
</span>
|
</span>
|
||||||
@ -467,7 +467,7 @@ function LibrarySelector({
|
|||||||
<>
|
<>
|
||||||
<DropdownMenuSeparator />
|
<DropdownMenuSeparator />
|
||||||
<div className="mb-1 ml-1.5 text-xs text-secondary-foreground">
|
<div className="mb-1 ml-1.5 text-xs text-secondary-foreground">
|
||||||
Collections
|
{t("collections")}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user