You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/OpenSign/public/locales/en/translation.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -682,6 +682,8 @@
682
682
"form-title-2":"Security Setting",
683
683
"public-tour-message":"The template needs to be public before you can generate a shareable link.",
684
684
"add-user-template": "You need to add a role before you can add fields for it.",
685
-
"pdf-uncompatible": "This pdf is not compatible with opensign, please contact <[email protected]>"
685
+
"pdf-uncompatible": "This pdf is not compatible with opensign, please contact <[email protected]>",
686
+
"text-field-tour":"Fields of type 'Text' must be filled in advance before the document is sent. If you need the signers to provide input, use the 'Text Input' field instead.",
687
+
"attach-signer-tour":"You need to attach a Signer to every role. You can do that by clicking this icon. Once you select a Signer it will be attached to all the fields associated with that role which appear in the same colour."
Copy file name to clipboardExpand all lines: apps/OpenSign/public/locales/es/translation.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -682,6 +682,8 @@
682
682
"p3": "Consejo: si sus firmantes están familiarizados con OpenSign y lo utilizan con frecuencia, es posible que desee desactivar la visita guiada para disfrutar de una experiencia más fluida. Elija la opción que mejor se adapte a sus necesidades de firma de documentos"
683
683
},
684
684
"form-title-1": "Configuración del flujo de documentos",
685
-
"form-title-2": "Configuración de seguridad"
685
+
"form-title-2": "Configuración de seguridad",
686
+
"text-field-tour":"Los campos de tipo 'Texto' deben completarse con anticipación antes de enviar el documento. Si necesita que los firmantes proporcionen información, utilice el campo 'Entrada de texto'",
687
+
"attach-signer-tour" :"Debe adjuntar un firmante a cada función. Puede hacerlo haciendo clic en este icono. Una vez que seleccione un Firmante, se adjuntará a todos los campos asociados con ese rol que aparecen en el mismo color."
Copy file name to clipboardExpand all lines: apps/OpenSign/public/locales/fr/translation.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -681,7 +681,9 @@
681
681
"form-title-2": "Paramètre de sécurité",
682
682
"public-tour-message": "Le modèle doit être public avant que vous puissiez générer un lien partageable.",
683
683
"add-user-template":"Vous devez ajouter un rôle avant de pouvoir lui ajouter des champs. ",
684
-
"pdf-uncompatible":"Ce pdf n'est pas compatible avec opensign, veuillez contacter <[email protected]>"
684
+
"pdf-uncompatible":"Ce pdf n'est pas compatible avec opensign, veuillez contacter <[email protected]>",
685
+
"text-field-tour" :"Les champs de type 'Texte' doivent être remplis à l'avance avant l'envoi du document. Si vous avez besoin que les signataires fournissent des informations, utilisez plutôt le champ 'Saisie de texte'.",
686
+
"attach-signer-tour" :"Vous devez associer un signataire à chaque rôle. Vous pouvez le faire en cliquant sur cette icône. Une fois que vous avez sélectionné un signataire, il sera attaché à tous les champs associés à ce rôle qui apparaissent dans la même couleur."
@@ -1648,8 +1657,15 @@ function PlaceHolderSign() {
1648
1657
constsignerAssignTour=[
1649
1658
{
1650
1659
selector: '[data-tut="assignSigner"]',
1651
-
content:
1652
-
"You need to attach a Signer to every role. You can do that by clicking this icon. Once you select a Signer it will be attached to all the fields associated with that role which appear in the same colour. ",
1660
+
content: t("attach-signer-tour"),
1661
+
position: "top",
1662
+
style: {fontSize: "13px"}
1663
+
}
1664
+
];
1665
+
consttextFieldTour=[
1666
+
{
1667
+
selector: '[data-tut="IsSigned"]',
1668
+
content: t("text-field-tour"),
1653
1669
position: "top",
1654
1670
style: {fontSize: "13px"}
1655
1671
}
@@ -1759,6 +1775,13 @@ function PlaceHolderSign() {
1759
1775
rounded={5}
1760
1776
closeWithMask={false}
1761
1777
/>
1778
+
<Tour
1779
+
onRequestClose={()=>setIsSendAlert({})}
1780
+
steps={textFieldTour}
1781
+
isOpen={isSendAlert.mssg===textWidget}
1782
+
rounded={5}
1783
+
closeWithMask={false}
1784
+
/>
1762
1785
{/* this component used to render all pdf pages in left side */}
1763
1786
<RenderAllPdfPage
1764
1787
signPdfUrl={pdfDetails[0].URL}
@@ -1779,20 +1802,18 @@ function PlaceHolderSign() {
1779
1802
<divclassName=" w-full md:w-[95%] ">
1780
1803
{/* this modal is used show alert set placeholder for all signers before send mail */}
Copy file name to clipboardExpand all lines: apps/OpenSign/src/script/locales/en/translation.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -682,6 +682,8 @@
682
682
"form-title-2": "Security Setting",
683
683
"public-tour-message": "The template needs to be public before you can generate a shareable link.",
684
684
"add-user-template": "You need to add a role before you can add fields for it.",
685
-
"pdf-uncompatible": "This pdf is not compatible with opensign, please contact <[email protected]>"
685
+
"pdf-uncompatible": "This pdf is not compatible with opensign, please contact <[email protected]>",
686
+
"text-field-tour":"Fields of type 'Text' must be filled in advance before the document is sent. If you need the signers to provide input, use the 'Text Input' field instead.",
687
+
"attach-signer-tour":"You need to attach a Signer to every role. You can do that by clicking this icon. Once you select a Signer it will be attached to all the fields associated with that role which appear in the same colour."
Copy file name to clipboardExpand all lines: apps/OpenSign/src/script/locales/es/translation.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -682,5 +682,7 @@
682
682
"p3": "Consejo: si sus firmantes están familiarizados con OpenSign y lo utilizan con frecuencia, es posible que desee desactivar la visita guiada para disfrutar de una experiencia más fluida. Elija la opción que mejor se adapte a sus necesidades de firma de documentos"
683
683
},
684
684
"form-title-1": "Configuración del flujo de documentos",
685
-
"form-title-2": "Configuración de seguridad"
685
+
"form-title-2": "Configuración de seguridad",
686
+
"text-field-tour":"Los campos de tipo 'Texto' deben completarse con anticipación antes de enviar el documento. Si necesita que los firmantes proporcionen información, utilice el campo 'Entrada de texto'",
687
+
"attach-signer-tour" :"Debe adjuntar un firmante a cada función. Puede hacerlo haciendo clic en este icono. Una vez que seleccione un Firmante, se adjuntará a todos los campos asociados con ese rol que aparecen en el mismo color."
0 commit comments