mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-05 13:07:44 +03:00
Translations
This commit is contained in:
parent
13d7eec965
commit
0680802d3a
@ -17,6 +17,7 @@
|
||||
"createFaceLibrary": {
|
||||
"title": "Create 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."
|
||||
},
|
||||
"train": {
|
||||
|
||||
@ -672,7 +672,7 @@ function FaceAttempt({
|
||||
<TextEntryDialog
|
||||
open={true}
|
||||
setOpen={setNewFace}
|
||||
title="Create New Face"
|
||||
title={t("createFaceLibrary.new")}
|
||||
onSave={(newName) => onTrainAttempt(newName)}
|
||||
/>
|
||||
)}
|
||||
@ -730,7 +730,7 @@ function FaceAttempt({
|
||||
onClick={() => setNewFace(true)}
|
||||
>
|
||||
<LuPlus />
|
||||
Create New Face
|
||||
{t("createFaceLibrary.new")}
|
||||
</DropdownMenuItem>
|
||||
{faceNames.map((faceName) => (
|
||||
<DropdownMenuItem
|
||||
|
||||
Loading…
Reference in New Issue
Block a user