diff --git a/client/public/locales/en/translation.json b/client/public/locales/en/translation.json index d15a7d46b9..7c4247bafe 100644 --- a/client/public/locales/en/translation.json +++ b/client/public/locales/en/translation.json @@ -186,7 +186,7 @@ "overrideAssessmentConfirmation": "Do you want to create a dedicated assessment for this application and override the inherited archetype assessment(s)?", "overrideArchetypeReviewDescription": "The application {{name}} already is associated with archetypes: {{what}}.", "overrideArchetypeReviewConfirmation": "Do you want to create a dedicated review for this application and override the inherited archetype review?", - "overrideReviewConfirmation": "This archetype has already been reviewed. Do you want to continue?", + "editArchetypeReviewConfirmation": "This archetype has already been reviewed. Do you want to continue?", "reasonForError": "The reported reason for the error:", "reviewInstructions": "Use this section to provide your assessment of the possible migration/modernization plan and effort estimation.", "savingSelection": "Saving selection", diff --git a/client/src/app/pages/archetypes/archetypes-page.tsx b/client/src/app/pages/archetypes/archetypes-page.tsx index ba53891879..170e7e30bc 100644 --- a/client/src/app/pages/archetypes/archetypes-page.tsx +++ b/client/src/app/pages/archetypes/archetypes-page.tsx @@ -583,7 +583,7 @@ const Archetypes: React.FC = () => { })} titleIconVariant={"warning"} isOpen={reviewToEdit !== null} - message={t("message.overrideArchetypeReviewConfirmation")} + message={t("message.editArchetypeReviewConfirmation")} confirmBtnVariant={ButtonVariant.primary} confirmBtnLabel={t("actions.continue")} cancelBtnLabel={t("actions.cancel")}