Basics

jqScheduler for PHP comes with a lot of predefined language packs. They are located in the installation package, in the /php/localization folder. Language packs are in the form of php files, containing definitions for all strings in the schedule that can be localized - this includes messages, captions, search/add/delete dialog labels, etc.

In order to use a particular language pack, you need to use the PHP method setLocale($lang_pack) wher the $lang_pack is 5 letter code where the first two letter represent the language and the lastr two letter represent the Country. The example below set the Bulgarian language pack.

... ... $eventcal = new jqScheduler($conn); $eventcal->setLocale('bg_BG'); ...

By defaulr a English language pack is used. In this case it is not needed to use setLocale method.