PluginProbe
Booking Calendar / 10.10
Booking Calendar v10.10
11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 All 203 releases
booking / js / datepick / jquery.datepick-ko.js

jquery.datepick-ko.js in Booking Calendar 10.10, at js/datepick/jquery.datepick-ko.js

27 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Korean initialisation for the jQuery calendar extension. */
2 /* Written by DaeKwon Kang (ncrash.dk@gmail.com). */
3 (function($) {
4 $.datepick.regional['ko'] = {
5 clearText: '지우기', clearStatus: '',
6 closeText: '닫기', closeStatus: '',
7 prevText: '이전달', prevStatus: '',
8 prevBigText: '<<', prevBigStatus: '',
9 nextText: '다음달', nextStatus: '',
10 nextBigText: '>>', nextBigStatus: '',
11 currentText: '오늘', currentStatus: '',
12 monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)',
13 '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'],
14 monthNamesShort: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)',
15 '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'],
16 monthStatus: '', yearStatus: '',
17 weekHeader: 'Wk', weekStatus: '',
18 dayNames: ['','','','','','',''],
19 dayNamesShort: ['','','','','','',''],
20 dayNamesMin: ['','','','','','',''],
21 dayStatus: 'DD', dateStatus: 'D, M d',
22 dateFormat: 'yy-mm-dd', firstDay: 0,
23 initStatus: '', isRTL: false,
24 showMonthAfterYear: false, yearSuffix: ''};
25 $.datepick.setDefaults($.datepick.regional['ko']);
26 })(jQuery);
27