[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/lang/ko/ -> jquery.ui.datepicker.js (source)

   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      "use strict";
   5  
   6      if ( typeof define === "function" && define.amd ) {
   7  
   8          // AMD. Register as an anonymous module.
   9          define( [ "../widgets/datepicker" ], factory );
  10      } else {
  11  
  12          // Browser globals
  13          factory( jQuery.datepicker );
  14      }
  15  } )( function( datepicker ) {
  16  "use strict";
  17  
  18  datepicker.regional.ko = {
  19      closeText: "닫기",
  20      prevText: "이전달",
  21      nextText: "다음달",
  22      currentText: "오늘",
  23      monthNames: [ "1월", "2월", "3월", "4월", "5월", "6월",
  24      "7월", "8월", "9월", "10월", "11월", "12월" ],
  25      monthNamesShort: [ "1월", "2월", "3월", "4월", "5월", "6월",
  26      "7월", "8월", "9월", "10월", "11월", "12월" ],
  27      dayNames: [ "일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일" ],
  28      dayNamesShort: [ "일", "월", "화", "수", "목", "금", "토" ],
  29      dayNamesMin: [ "일", "월", "화", "수", "목", "금", "토" ],
  30      weekHeader: "주",
  31      dateFormat: "yy. m. d.",
  32      firstDay: 0,
  33      isRTL: false,
  34      showMonthAfterYear: true,
  35      yearSuffix: "년" };
  36  datepicker.setDefaults( datepicker.regional.ko );
  37  
  38  return datepicker.regional.ko;
  39  
  40  } );