From c757bf2f1b5d0567f2f50d77185150f74b354b09 Mon Sep 17 00:00:00 2001 From: Younes Date: Mon, 16 Dec 2024 18:42:26 +0100 Subject: [PATCH] chore: fix translations --- apps/frontend/src/components/chapters/form.tsx | 2 ++ apps/frontend/src/locales/fr/common.json | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/frontend/src/components/chapters/form.tsx b/apps/frontend/src/components/chapters/form.tsx index 03eb7eb1..f0096e1c 100644 --- a/apps/frontend/src/components/chapters/form.tsx +++ b/apps/frontend/src/components/chapters/form.tsx @@ -122,6 +122,8 @@ export const ChapterFormContent: React.FC< const utils = trpc.useUtils(); const createMutation = trpc.chapter.create.useMutation(); + const { t } = useTranslation(); + const validationSchema = Yup.object().shape({ startTime: Yup.number(), stopTime: Yup.number(), diff --git a/apps/frontend/src/locales/fr/common.json b/apps/frontend/src/locales/fr/common.json index 12eb9418..60889015 100644 --- a/apps/frontend/src/locales/fr/common.json +++ b/apps/frontend/src/locales/fr/common.json @@ -262,5 +262,6 @@ "chapters.form.reset.confirm.description": "Etes-vous sûr de vouloir réinitialiser tous les chapitres ?", "chapters.form.button.add": " Ajouter un chapitre", "chapters.form.button.reset": "Réinitialiser les chapitres", - "chapters.form.title.placeholder": "Titre du chapitre" + "chapters.form.title.placeholder": "Titre du chapitre", + "chapters.form.description.placeholder": "Description du chapitre" }