Pop Up Window text

I want to change the text “Do you want to edit…” in the pop up window when you click an event. I have tried changing the text in locale.js and locale_en.js to confirm_recurring:“Do you want to edit the whole set of repeated events?”, to confirm_recurring:“Do you want to view the whole set of repeated events?”, but it doesn’t make the change in the pop up window.

but it doesn’t make the change in the pop up window

Are you sure that modified locale.js was included in the page ?

Moreover you can redefine modify only confirm_recurring element:

scheduler.locale.labels.confirm_recurring = “Do you want to view the whole set of repeated events?”,

Thank you. And that would go into dhtmlxscheduler_recurring.js somewhere?

scheduler.locale.labels.confirm_recurring is defined in locale.js ( in case of EN locale - it is included in the dhtmlxscheduler.js )

You can add your custom line at the end of dhtmlxscheduler.js, or just place it on the page, where scheduler will be initialized.

Thank you. I finally used Dreamweaver to edit the file and it worked very well.