Mercurial > hg > rc2
comparison plugins/jqueryui/js/i18n/jquery.ui.datepicker-ko.js @ 0:4681f974d28b
vanilla 1.3.3 distro, I hope
author | Charlie Root |
---|---|
date | Thu, 04 Jan 2018 15:52:31 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4681f974d28b |
---|---|
1 /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */ | |
2 /* Korean initialisation for the jQuery calendar extension. */ | |
3 /* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */ | |
4 jQuery(function($){ | |
5 $.datepicker.regional['ko'] = { | |
6 closeText: '닫기', | |
7 prevText: '이전달', | |
8 nextText: '다음달', | |
9 currentText: '오늘', | |
10 monthNames: ['1월','2월','3월','4월','5월','6월', | |
11 '7월','8월','9월','10월','11월','12월'], | |
12 monthNamesShort: ['1월','2월','3월','4월','5월','6월', | |
13 '7월','8월','9월','10월','11월','12월'], | |
14 dayNames: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'], | |
15 dayNamesShort: ['일','월','화','수','목','금','토'], | |
16 dayNamesMin: ['일','월','화','수','목','금','토'], | |
17 weekHeader: 'Wk', | |
18 dateFormat: 'yy-mm-dd', | |
19 firstDay: 0, | |
20 isRTL: false, | |
21 showMonthAfterYear: true, | |
22 yearSuffix: '년'}; | |
23 $.datepicker.setDefaults($.datepicker.regional['ko']); | |
24 }); | |
25 /* @license-end */ |