You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jquery.ui.datepicker-ko.js 1.0KB

12345678910111213141516171819202122232425
  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 */