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

View File

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