diff --git a/packages/doceditor/public/locales/en/CompletedForm.json b/packages/doceditor/public/locales/en/CompletedForm.json index b6d5fd088a..80cdfb6a3e 100644 --- a/packages/doceditor/public/locales/en/CompletedForm.json +++ b/packages/doceditor/public/locales/en/CompletedForm.json @@ -1,6 +1,6 @@ { "BackToRoom": "Back to room", - "CheckReadyForm": "Check ready form", + "CheckReadyForms": "Check ready forms", "Description": "Your form completed and saved", "DescriptionForAnonymous": "You submitted the filled PDF form which was assigned a unique number. To check the status, contact the form owner providing the assigned number.", "DescriptionForRegisteredUser": "The filled PDF form is saved and available to you in the Complete folder. To check the status, contact the form owner providing the assigned number.", diff --git a/packages/doceditor/src/components/completed-form/CompletedForm.tsx b/packages/doceditor/src/components/completed-form/CompletedForm.tsx index 7640faaff0..adea60283b 100644 --- a/packages/doceditor/src/components/completed-form/CompletedForm.tsx +++ b/packages/doceditor/src/components/completed-form/CompletedForm.tsx @@ -234,7 +234,7 @@ export const CompletedForm = ({ primary size={ButtonSize.medium} label={ - isAnonim ? t("Common:Download") : t("CompletedForm:CheckReadyForm") + isAnonim ? t("Common:Download") : t("CompletedForm:CheckReadyForms") } onClick={isAnonim ? handleDownload : gotoCompleteFolder} />