datepicker-ko.js 1.1 KB

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