diff --git a/web/public/locales/en/views/faceLibrary.json b/web/public/locales/en/views/faceLibrary.json index 48bc6401c..8965de413 100644 --- a/web/public/locales/en/views/faceLibrary.json +++ b/web/public/locales/en/views/faceLibrary.json @@ -27,7 +27,10 @@ "steps": { "faceName": "Enter Face Name", "uploadFace": "Upload Face Image", - "nextSteps": "Next Steps" + "nextSteps": "Next Steps", + "description": { + "uploadFace": "Upload an image of {{name}}. This should be an image including their face straight-on. Note that the image does not need to be cropped to just their face.", + } }, "train": { "title": "Train", diff --git a/web/src/components/overlay/detail/FaceCreateWizardDialog.tsx b/web/src/components/overlay/detail/FaceCreateWizardDialog.tsx index b2ac8d591..9fb3c9fad 100644 --- a/web/src/components/overlay/detail/FaceCreateWizardDialog.tsx +++ b/web/src/components/overlay/detail/FaceCreateWizardDialog.tsx @@ -128,13 +128,18 @@ export default function CreateFaceWizardDialog({ )} {step == 1 && ( - -
- + <> +
+ {t("steps.description.uploadFace", { name })}
- + +
+ +
+
+ )} {step == 2 && (