Merge branch 'feature/quota-limit' of https://github.com/ONLYOFFICE/DocSpace-client into feature/quota-limit

This commit is contained in:
Tatiana Lopaeva 2024-08-16 13:43:05 +03:00
commit 90a9295057
2 changed files with 2 additions and 5 deletions

View File

@ -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}}</1> is ready to be filled out.",

View File

@ -84,7 +84,7 @@ export const CreatedPDFFormDialog = inject<TStore>(
onClose={onClose}
displayType={ModalDialogType.modal}
>
<ModalDialog.Header>{t("PDFFormDialogTitle")}</ModalDialog.Header>
<ModalDialog.Header>{t("PDFform")}</ModalDialog.Header>
<ModalDialog.Body>
<Wrapper>
{theme.isBase ? <HeaderIcon /> : <HeaderDarkIcon />}
@ -104,15 +104,12 @@ export const CreatedPDFFormDialog = inject<TStore>(
size={ButtonSize.normal}
label={primaryButtonLabel}
onClick={onSubmit}
// isLoading={isLoading}
/>
<Button
scale
tabIndex={0}
onClick={onClose}
size={ButtonSize.normal}
label={t("Common:Later")}
// isDisabled={isLoading}
/>
</ModalDialog.Footer>
</ModalDialog>