memo/client/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js
2011-03-10 08:20:27 -05:00

23 lines
No EOL
972 B
JavaScript
Executable file

/* Korean initialisation for the jQuery calendar extension. */
/* Written by DaeKwon Kang (ncrash.dk@gmail.com). */
jQuery(function($){
$.datepicker.regional['ko'] = {
closeText: '닫기',
prevText: '이전달',
nextText: '다음달',
currentText: '오늘',
monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4(APR)','5(MAY)','6(JUN)',
'7(JUL)','8(AUG)','9(SEP)','10(OCT)','11(NOV)','12(DEC)'],
monthNamesShort: ['1(JAN)','2(FEB)','3(MAR)','4(APR)','5(MAY)','6(JUN)',
'7(JUL)','8(AUG)','9(SEP)','10(OCT)','11(NOV)','12(DEC)'],
dayNames: ['','','','','','',''],
dayNamesShort: ['','','','','','',''],
dayNamesMin: ['','','','','','',''],
weekHeader: 'Wk',
dateFormat: 'yy-mm-dd',
firstDay: 0,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: ''};
$.datepicker.setDefaults($.datepicker.regional['ko']);
});