


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?
Views
Replies
Sign in to like this content
Total Likes
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
Views
Replies
Sign in to like this content
Total Likes
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
Views
Replies
Sign in to like this content
Total Likes