Translations

This commit is contained in:
Nicolas Mowen 2025-03-28 11:17:08 -06:00
parent 13d7eec965
commit 0680802d3a
2 changed files with 3 additions and 2 deletions

View File

@ -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": {

View File

@ -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