Articles in this section
Category / Section

Set language for embedded sign page

Published:
2 mins read

BoldSign offers robust support for multiple languages within embedded sign requests, allowing users to interact with the system in their preferred language. This enhanced user experience fosters better understanding and engagement.

Language support

BoldSign supports a range of languages, that are:

  • EN (English)
  • FR (French)
  • NO (Norwegian)
  • DE (German)
  • ES (Spanish)
  • BG (Bulgarian)
  • CS (Czech)
  • DA (Danish)
  • IT (Italian)
  • NL (Dutch)
  • PL (Polish)
  • PT (Portuguese)
  • RO (Romanian)
  • RU (Russian)
  • SV (Swedish)

Send a document to the signer with preffered language

To ensure that signers complete the signing process in their preferred language, follow these steps:

Here are example codes you can use to do this:

Code snippet to disable email notifications

curl -X 'POST' \
 'https://api.boldsign.com/v1/document/send' \
 -H 'accept: application/json' \
 -H 'X-API-KEY: {your API key}' \
 -H 'Content-Type: multipart/form-data' \
 -F 'Signers={
 "name": "hanky",
 "emailAddress": "hankyWhites@gmail.com",
 "signerType": "Signer",
 "signerRole": "Signer",
 "formFields": [
   {
     "id": "signature",
     "name": "signature",
     "fieldType": "Signature",
     "pageNumber": 1,
     "bounds": {
       "x": 100,
       "y": 100,
       "width": 200,
       "height": 200
     },
     "isRequired": true
}
 ],
 "locale": "FR"
}' \
 -F 'Files={your file}' \
 -F 'DisableEmails=true' \
 -F 'DocumentInfo={
 "locale": "FR",
 "title": "string",
 "description": "string"
 }' \

Replace the values (Files, Signers, etc.) with the actual values. Set the Locale field to your desired language code. Also, provide DocumentInfo with the necessary information if you want to send the document in different languages other than EN. In case you want the signature process to occur within your application, set DisableEmails to true.

Upon execution, the document will be created, and a document ID will be generated.

Configure UI for embedded sign request

Design a user interface (UI) within your application that collects necessary information for the embedded sign request. This information serves as the basis for signing the document. For integrating the embedded sign page in your application, refer to this article Embedded Sign Request guide.

Integrate the generated link in an iFrame

After generating the embed link, integrate it into an iFrame within your application. This iFrame empowers your application users to sign the document with the preferred language, the signer can also change the language on the signing page of the document by using the drop-down menu located in the top right corner.

Language options on the signing page

By following these steps, you provide users with the flexibility to sign documents in their desired language, enhancing their overall experience and ensuring clarity during the signing process.

Was this article useful?
Like
Dislike
Help us improve this page
Please provide feedback or comments
Access denied
Access denied