support i18n jQuery-UI datepicker

This commit is contained in:
MinSoo Kim 2016-02-23 00:56:05 +09:00
parent 25de7998c2
commit 81b1fd5752
76 changed files with 2783 additions and 1 deletions

View file

@ -0,0 +1,7 @@
/**
* @brief Load i18n file of datepicker
* @author MinSoo Kim <misol.kr@gmail.com>
**/
if(typeof current_lang !== "undefined" && current_lang !== 'en') {
jQuery.getScript(request_uri + "./common/js/plugins/ui/i18n/datepicker-"+ current_lang.replace("jp", "ja") +".js");
}