corrade-http-templates – Blame information for rev 62

Subversion Repositories:
Rev:
Rev Author Line No. Line
62 office 1 /* Korean initialisation for the jQuery calendar extension. */
2 /* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie and Myeongjin Lee. */
3 ( function( factory ) {
4 if ( typeof define === "function" && define.amd ) {
5  
6 // AMD. Register as an anonymous module.
7 define( [ "../widgets/datepicker" ], factory );
8 } else {
9  
10 // Browser globals
11 factory( jQuery.datepicker );
12 }
13 }( function( datepicker ) {
14  
15 datepicker.regional.ko = {
16 closeText: "닫기",
17 prevText: "이전달",
18 nextText: "다음달",
19 currentText: "오늘",
20 monthNames: [ "1월","2월","3월","4월","5월","6월",
21 "7월","8월","9월","10월","11월","12월" ],
22 monthNamesShort: [ "1월","2월","3월","4월","5월","6월",
23 "7월","8월","9월","10월","11월","12월" ],
24 dayNames: [ "일요일","월요일","화요일","수요일","목요일","금요일","토요일" ],
25 dayNamesShort: [ "일","월","화","수","목","금","토" ],
26 dayNamesMin: [ "일","월","화","수","목","금","토" ],
27 weekHeader: "주",
28 dateFormat: "yy. m. d.",
29 firstDay: 0,
30 isRTL: false,
31 showMonthAfterYear: true,
32 yearSuffix: "년" };
33 datepicker.setDefaults( datepicker.regional.ko );
34  
35 return datepicker.regional.ko;
36  
37 } ) );