/* Chinese initialisation for the jQuery UI date picker plugin. */ /* Written by jhlee (jhlee@appsoulute.com). */ (function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define([ "../jquery.ui.datepicker" ], factory ); } else { // Browser globals factory( jQuery.datepicker ); } }(function( datepicker ) { datepicker.regional['ko-KR'] = { closeText: '´Ý±â', prevText: '<ÀÌÀü ¿ù', nextText: '´ÙÀ½ ¿ù>', currentText: '¿À´Ã', monthNames: ['1¿ù','2¿ù','3¿ù','4¿ù','5¿ù','6¿ù', '7¿ù','8¿ù','9¿ù','10¿ù','11¿ù','12¿ù'], monthNamesShort: ['1¿ù','2¿ù','3¿ù','4¿ù','5¿ù','6¿ù', '7êÅ','8êÅ','9êÅ','10êÅ','11êÅ','12êÅ'], dayNames: ['ÀÏ¿äÀÏ','¿ù¿äÀÏ','È­¿äÀÏ','¼ö¿äÀÏ','¸ñ¿äÀÏ','±Ý¿äÀÏ','Åä¿äÀÏ'], dayNamesShort: ['ÀÏÁÖÀÏ','¿ù¿äÀÏ','È­¿äÀÏ','¼ö¿äÀÏ','¸ñ¿äÀÏ','±Ý¿äÀÏ','Åä¿äÀÏ'], dayNamesMin: ['ÀÏ','¿ù','È­','¼ö','¸ñ','±Ý','Åä'], weekHeader: 'ÁÖ', dateFormat: 'yy-mm-dd', firstDay: 1, isRTL: false, showMonthAfterYear: true, yearSuffix: '³â'}; datepicker.setDefaults(datepicker.regional['ko-KR']); return datepicker.regional['ko-KR']; }));