Locaization

Hello,

I have found out, that link “View more(X events)” in month view is not localized. Is it possible to somehow add custom message to it without editing js code?

Hello,
text of ‘view more’ link is defined as a template function, you can redefine it. Here is the default implementation:scheduler.templates.month_events_link = function(date, count){ return "<a>View more("+count+" events)</a>"; };

Thanks! Works perfect :slight_smile: