In Below my codepen link i have event Calendar which fetch English month directly but i wanted change its month name to Arabic
For example : February needs to be changed to "فبراير"
Codepen Link : Click Here
$('.b-calendar__header .month').each(function() {
var text = $(this).text();
$(this).text(text.replace('February', 'فبراير'));
});
I tried This way but not working
Please Help