diff --git a/apps/OpenSign/public/locales/en/translation.json b/apps/OpenSign/public/locales/en/translation.json index e3c02ce5b..c07cdedda 100644 --- a/apps/OpenSign/public/locales/en/translation.json +++ b/apps/OpenSign/public/locales/en/translation.json @@ -706,6 +706,7 @@ "p1": "The document creator will receive an email notification whenever a signer signs the document.", "note": "Note: Notification email will not be sent for the last signer, as the document creator will receive a completion email instead." }, + "expiry-date": "Expiry Date", "expiry-date-updated": "The expiry date has been successfully extended to {{newexpirydate}}", "expiry-date-error": "Please provide a new expiry date that is later than the current one" } diff --git a/apps/OpenSign/public/locales/es/translation.json b/apps/OpenSign/public/locales/es/translation.json index 5154c87d7..d2cc76701 100644 --- a/apps/OpenSign/public/locales/es/translation.json +++ b/apps/OpenSign/public/locales/es/translation.json @@ -706,6 +706,7 @@ "p1": "El creador del documento recibirá una notificación por correo electrónico cada vez que un firmante firme el documento.", "note": "Nota: No se enviará un correo electrónico de notificación al último firmante, ya que el creador del documento recibirá un correo electrónico de finalización." }, + "expiry-date": "Date d'expiration", "expiry-date-updated": "La fecha de vencimiento se ha extendido con éxito hasta el {{newexpirydate}}", "expiry-date-error": "Proporcione una nueva fecha de vencimiento que sea posterior a la actual" } diff --git a/apps/OpenSign/public/locales/fr/translation.json b/apps/OpenSign/public/locales/fr/translation.json index 321cf94d2..3aa1ebc05 100644 --- a/apps/OpenSign/public/locales/fr/translation.json +++ b/apps/OpenSign/public/locales/fr/translation.json @@ -705,6 +705,7 @@ "p1": "Le créateur du document recevra une notification par e-mail chaque fois qu'un signataire signera le document.", "note": "Remarque : L'e-mail de notification ne sera pas envoyé pour le dernier signataire, car le créateur du document recevra à la place un e-mail de fin." }, + "expiry-date": "Fecha de caducidad", "expiry-date-updated": "La fecha de vencimiento se ha extendido con éxito hasta el {{newexpirydate}}", "expiry-date-error": "Veuillez fournir une nouvelle date d'expiration postérieure à la date actuelle" } diff --git a/apps/OpenSign/src/primitives/GetReportDisplay.js b/apps/OpenSign/src/primitives/GetReportDisplay.js index 4f3a2f79b..6ef484120 100644 --- a/apps/OpenSign/src/primitives/GetReportDisplay.js +++ b/apps/OpenSign/src/primitives/GetReportDisplay.js @@ -1848,7 +1848,9 @@ const ReportTable = (props) => { className="px-4 py-2 flex flex-col" onSubmit={(e) => handleUpdateExpiry(e, item)} > - + {props?.headMsg && props?.headMsg} -
-

{props.bodyMssg && props.bodyMssg}

-
-
- {isCreator && ( - - )} - {props.isDownloadBtn && ( - - )} -
+ {!isExtendExpiry && ( +
+

{props.bodyMssg && props.bodyMssg}

+
+ )} + {!isExtendExpiry && ( +
+ {isCreator && ( + + )} + {props.isDownloadBtn && ( + + )} +
+ )} {props.footerMessage && ( <>
@@ -93,10 +97,13 @@ function CustomModal(props) { )} {isExtendExpiry && (
+ setExpiryDate(e.target.value)} />
@@ -111,7 +118,7 @@ function CustomModal(props) { setIsExtendExpiry(false); }} > - {t("close")} + {t("cancel")}
diff --git a/apps/OpenSign/src/script/locales/en/translation.json b/apps/OpenSign/src/script/locales/en/translation.json index b5dad6262..69ad3caa6 100644 --- a/apps/OpenSign/src/script/locales/en/translation.json +++ b/apps/OpenSign/src/script/locales/en/translation.json @@ -706,6 +706,7 @@ "p1": "The document creator will receive an email notification whenever a signer signs the document.", "note": "Note: Notification email will not be sent for the last signer, as the document creator will receive a completion email instead." }, + "expiry-date":"Expiry date", "expiry-date-updated": "The expiry date has been successfully extended to {{newexpirydate}}", "expiry-date-error": "Please provide a new expiry date that is later than the current one" } diff --git a/apps/OpenSign/src/script/locales/es/translation.json b/apps/OpenSign/src/script/locales/es/translation.json index cf964b53e..115a038e5 100644 --- a/apps/OpenSign/src/script/locales/es/translation.json +++ b/apps/OpenSign/src/script/locales/es/translation.json @@ -706,6 +706,7 @@ "p1": "El creador del documento recibirá una notificación por correo electrónico cada vez que un firmante firme el documento.", "note": "Nota: No se enviará un correo electrónico de notificación al último firmante, ya que el creador del documento recibirá un correo electrónico de finalización." }, + "expiry-date": "Date d'expiration", "expiry-date-updated": "La fecha de vencimiento se ha extendido con éxito hasta el {{newexpirydate}}", "expiry-date-error": "Proporcione una nueva fecha de vencimiento que sea posterior a la actual" } diff --git a/apps/OpenSign/src/script/locales/fr/translation.json b/apps/OpenSign/src/script/locales/fr/translation.json index 3611ee6f3..ae5854a8b 100644 --- a/apps/OpenSign/src/script/locales/fr/translation.json +++ b/apps/OpenSign/src/script/locales/fr/translation.json @@ -705,6 +705,7 @@ "p1": "Le créateur du document recevra une notification par e-mail chaque fois qu'un signataire signera le document.", "note": "Remarque : L'e-mail de notification ne sera pas envoyé pour le dernier signataire, car le créateur du document recevra à la place un e-mail de fin." }, + "expiry-date": "Fecha de caducidad", "expiry-date-updated": "La date d'expiration a été prolongée avec succès jusqu'au {{newexpirydate}}", "expiry-date-error": "Veuillez fournir une nouvelle date d'expiration postérieure à la date actuelle" }