mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-06 13:37:43 +03:00
Translations
This commit is contained in:
parent
13d7eec965
commit
0680802d3a
@ -17,6 +17,7 @@
|
|||||||
"createFaceLibrary": {
|
"createFaceLibrary": {
|
||||||
"title": "Create Face Library",
|
"title": "Create Face Library",
|
||||||
"desc": "Create a new face library",
|
"desc": "Create a new face library",
|
||||||
|
"new": "Create New Face",
|
||||||
"nextSteps": "It is recommended to use the Train tab to select and train images for each person as they are detected. When building a strong foundation it is strongly recommended to only train on images that are straight-on. Ignore images from cameras that recognize faces from an angle."
|
"nextSteps": "It is recommended to use the Train tab to select and train images for each person as they are detected. When building a strong foundation it is strongly recommended to only train on images that are straight-on. Ignore images from cameras that recognize faces from an angle."
|
||||||
},
|
},
|
||||||
"train": {
|
"train": {
|
||||||
|
|||||||
@ -672,7 +672,7 @@ function FaceAttempt({
|
|||||||
<TextEntryDialog
|
<TextEntryDialog
|
||||||
open={true}
|
open={true}
|
||||||
setOpen={setNewFace}
|
setOpen={setNewFace}
|
||||||
title="Create New Face"
|
title={t("createFaceLibrary.new")}
|
||||||
onSave={(newName) => onTrainAttempt(newName)}
|
onSave={(newName) => onTrainAttempt(newName)}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
@ -730,7 +730,7 @@ function FaceAttempt({
|
|||||||
onClick={() => setNewFace(true)}
|
onClick={() => setNewFace(true)}
|
||||||
>
|
>
|
||||||
<LuPlus />
|
<LuPlus />
|
||||||
Create New Face
|
{t("createFaceLibrary.new")}
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
{faceNames.map((faceName) => (
|
{faceNames.map((faceName) => (
|
||||||
<DropdownMenuItem
|
<DropdownMenuItem
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user