Date format change | Community
Skip to main content
New Participant
August 25, 2020
Solved

Date format change

  • August 25, 2020
  • 1 reply
  • 1839 views

Hi,

 

Can I change the language of month? For example instead May in english, I'd like write in french (mai) or spanish (mayo). Is it possible too?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by _Manoj_Kumar_

Hello @kumarg ,

 

You can download the moment.js from here.

Then upload this file in the Administration > Configuration > Javascript Codes. Use the Name as cus:moment.js.

Then in your workflow you can use this to get the translated output.

loadLibrary('cus:moment.js'); moment.locale('fr'); var stringMonth=moment().format('MMMM'); logInfo(stringMonth);

The Output will be French August which is août.

 

Thanks

 

 

1 reply

_Manoj_Kumar_
_Manoj_Kumar_Accepted solution
New Participant
August 25, 2020

Hello @kumarg ,

 

You can download the moment.js from here.

Then upload this file in the Administration > Configuration > Javascript Codes. Use the Name as cus:moment.js.

Then in your workflow you can use this to get the translated output.

loadLibrary('cus:moment.js'); moment.locale('fr'); var stringMonth=moment().format('MMMM'); logInfo(stringMonth);

The Output will be French August which is août.

 

Thanks

 

 

     Manoj     Find me on LinkedIn