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