Changing the names of the Navigation buttons

I want to edit the text of the navigation buttons - Year Month Week

Where do I find those labels to edit?

Hi,
on server side you can do it by changig value of Label property of View instances
C#:

var year = new YearView(); year.Label = "Year";
On the client side, you can do the same by modifying properties on locale object:
scheduler.locale.labels._tab
i.e.
JS:

scheduler.locale.labels.year_tab = "Year";

Thanks,

Found it and was able to change. Worked perfect.

Curt