From c6ceeedc80eda6e50fb26d8b47d3945f351cb554 Mon Sep 17 00:00:00 2001 From: Orion C Date: Wed, 20 Nov 2024 12:19:52 +0100 Subject: [PATCH] Fix wording --- front/src/dashboard/registry/ImportModal.tsx | 34 ++++++++++++-------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/front/src/dashboard/registry/ImportModal.tsx b/front/src/dashboard/registry/ImportModal.tsx index ecc12fb650..006d1f9d76 100644 --- a/front/src/dashboard/registry/ImportModal.tsx +++ b/front/src/dashboard/registry/ImportModal.tsx @@ -34,12 +34,12 @@ type StepProps = { const steps = [ { - title: "Téléchargement du fichier", + title: "Sélection du fichier", component: Step1, buttons: ["CANCEL", "VALIDATE"] }, - { title: "Vérification", component: Step2 }, - { title: "Importation", component: Step3, buttons: ["CANCEL", "CLOSE"] } + { title: "Téléversement en cours", component: Step2 }, + { title: "Import en cours", component: Step3, buttons: ["CANCEL", "CLOSE"] } ]; const REGISTRY_UPLOAD_SIGNED_URL = gql` @@ -245,9 +245,9 @@ function Step2({ getValues, goToNextStep, setRegistryImportId }: StepProps) { return (
@@ -309,11 +309,19 @@ function Step3({ registryImportId }) { const stats = [ `${ data?.registryImport?.numberOfErrors ?? 0 - } déclarations en erreur non prises en compte`, - `${data?.registryImport?.numberOfInsertions ?? 0} nouvelles déclarations`, - `${data?.registryImport?.numberOfEdits ?? 0} déclarations corrigées`, - `${data?.registryImport?.numberOfCancellations ?? 0} déclarations annulées`, - `${data?.registryImport?.numberOfSkipped ?? 0} déclarations ignorées` + } lignes n'ont pas pu être traitées car elles comportent au moins une erreur`, + `${ + data?.registryImport?.numberOfInsertions ?? 0 + } nouvelles lignes ont été importées`, + `${ + data?.registryImport?.numberOfEdits ?? 0 + } lignes existantes ont été modifées`, + `${ + data?.registryImport?.numberOfCancellations ?? 0 + } lignes existantes ont été annulées`, + `${ + data?.registryImport?.numberOfSkipped ?? 0 + } lignes ont été ignorées (numéro unique déjà déclaré et aucun motif présent)` ].filter(v => !v.startsWith("0")); return ( @@ -321,7 +329,7 @@ function Step3({ registryImportId }) { {isStillRunning && ( <> @@ -347,7 +355,7 @@ function Step3({ registryImportId }) { {isSuccessful && ( @@ -361,7 +369,7 @@ function Step3({ registryImportId }) { {isPartiallySuccessful && (