Skip to main content
Answer

Localized full date format in CLM (month names in Portuguese)

  • September 30, 2025
  • 2 replies
  • 44 views

Forum|alt.badge.img+4

Hello,
I’m using a date field in CLM forms and I need the “dd MMMM yyyy” format, but the month name is always displayed in English (e.g., 30 September 2025).

Is there any option to generate the date in a localized full format, so the month name appears in Portuguese (e.g., 30 de Setembro de 2025)?
If not, is Docusign planning to support/translate localized date formats in CLM document generation?

Thanks!

 

Best answer by Servesh

Hi ​@rodvillani 

I believe it’s possible to have this date on document in Portugese with a little C# magic something like updating a date variable and using Merge XML step.

string inputDate = GetVariableValue("InputDate"); // replace InputDate with actual variable
var englishCulture = new System.Globalization.CultureInfo("en-US");
var portugueseCulture = new System.Globalization.CultureInfo("pt-PT");
string format = "dd MMMM yyyy";

string result = System.DateTime.Parse(inputDate, englishCulture)
.ToString(format, portugueseCulture);

return result;

 

Not sure if a translation is available at form level.

2 replies

Forum|alt.badge.img+6
  • Digital Collaborator
  • Answer
  • October 10, 2025

Hi ​@rodvillani 

I believe it’s possible to have this date on document in Portugese with a little C# magic something like updating a date variable and using Merge XML step.

string inputDate = GetVariableValue("InputDate"); // replace InputDate with actual variable
var englishCulture = new System.Globalization.CultureInfo("en-US");
var portugueseCulture = new System.Globalization.CultureInfo("pt-PT");
string format = "dd MMMM yyyy";

string result = System.DateTime.Parse(inputDate, englishCulture)
.ToString(format, portugueseCulture);

return result;

 

Not sure if a translation is available at form level.


Forum|alt.badge.img+4
  • Author
  • Troubleshooter
  • November 3, 2025

@Servesh That’s exactly what I do currently, I was just hoping there would be a more dynamic way. Maybe in the future. Thank you!