jquery.ui.datepicker.js 1.2 KB

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