Date format change
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?
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?
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.