diff --git a/packages/client/public/locales/en/PDFFormDialog.json b/packages/client/public/locales/en/PDFFormDialog.json index 93408f6085..784ade7520 100644 --- a/packages/client/public/locales/en/PDFFormDialog.json +++ b/packages/client/public/locales/en/PDFFormDialog.json @@ -1,5 +1,5 @@ { - "PDFFormDialogTitle": "Ready-to-fill-out PDF form", + "PDFform": "PDF form", "PDFFormEditDialogDescription": "Do you want to switch to the form editing mode? Please note that the form will no longer be available for filling out and you will need to click the Start filling button again after editing to fill it out.", "PDFFormEditDialogTitle": "Form editing", "PDFFormIsReadyToast": "PDF form <1>{{filename}} is ready to be filled out.", diff --git a/packages/client/src/components/dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx b/packages/client/src/components/dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx index 2a97e2e06c..7945ddf7b3 100644 --- a/packages/client/src/components/dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx +++ b/packages/client/src/components/dialogs/CreatedPDFFormDialog/CreatedPDFFormDialog.tsx @@ -84,7 +84,7 @@ export const CreatedPDFFormDialog = inject( onClose={onClose} displayType={ModalDialogType.modal} > - {t("PDFFormDialogTitle")} + {t("PDFform")} {theme.isBase ? : } @@ -104,15 +104,12 @@ export const CreatedPDFFormDialog = inject( size={ButtonSize.normal} label={primaryButtonLabel} onClick={onSubmit} - // isLoading={isLoading} />