Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Date format change

Avatar

Level 2

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?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

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