Skip to content

Commit c0dfa11

Browse files
committed
Datepicker i18n: Fix monthNames, monthNamesShort, dayNames, showMonthAfterYear on the Korean translation . Fixed #8010 - Datepicker i18n: Fix some issues on the Korean translation
1 parent e2d9b02 commit c0dfa11

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ui/i18n/jquery.ui.datepicker-ko.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
/* Korean initialisation for the jQuery calendar extension. */
2-
/* Written by DaeKwon Kang (ncrash.dk@gmail.com). */
2+
/* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */
33
jQuery(function($){
44
$.datepicker.regional['ko'] = {
55
closeText: '닫기',
66
prevText: '이전달',
77
nextText: '다음달',
88
currentText: '오늘',
9-
monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)',
10-
'7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'],
11-
monthNamesShort: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)',
12-
'7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'],
13-
dayNames: ['','','','','','',''],
9+
monthNames: ['1월','2월','3월','4월','5월','6월',
10+
'7월','8월','9월','10월','11월','12월'],
11+
monthNamesShort: ['1월','2월','3월','4월','5월','6월',
12+
'7월','8월','9월','10월','11월','12월'],
13+
dayNames: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'],
1414
dayNamesShort: ['일','월','화','수','목','금','토'],
1515
dayNamesMin: ['일','월','화','수','목','금','토'],
1616
weekHeader: 'Wk',
1717
dateFormat: 'yy-mm-dd',
1818
firstDay: 0,
1919
isRTL: false,
20-
showMonthAfterYear: false,
20+
showMonthAfterYear: true,
2121
yearSuffix: '년'};
2222
$.datepicker.setDefaults($.datepicker.regional['ko']);
2323
});

0 commit comments

Comments
 (0)