In my project i have a requiremenr to customize the today button label in the scheduler. And the new lable can have more than one value, based on our requirement. As far i have investigated i couldn't find a proper solution for this.
currenlty to customize view names(ex: week, month, timeline,) i am changing them in the configuartion like below,
views = { title: ''MyMonthLable', name: 'month', type: 'month'}
i would like to know whether it possible to do the same for the Today button lable in each view in the configuration, (or any available template to do so)
If this is not possible i would like to which method in your source code returns the lable for Today button, so that i can overrride in each view class and cutomize it to return the new lable. (currenlty i am using this similar pattern and overrride dateForTitle(), and some other methods)
Thank you.