To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 30 / 30da10719771ca2dd5b41906f732295b752ed80d.svn-base @ 1298:4f746d8966dd

History | View | Annotate | Download (910 Bytes)

1
/* Korean initialisation for the jQuery calendar extension. */
2
/* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */
3
jQuery(function($){
4
	$.datepicker.regional['ko'] = {
5
		closeText: '닫기',
6
		prevText: '이전달',
7
		nextText: '다음달',
8
		currentText: '오늘',
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: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'],
14
		dayNamesShort: ['일','월','화','수','목','금','토'],
15
		dayNamesMin: ['일','월','화','수','목','금','토'],
16
		weekHeader: 'Wk',
17
		dateFormat: 'yy-mm-dd',
18
		firstDay: 0,
19
		isRTL: false,
20
		showMonthAfterYear: true,
21
		yearSuffix: '년'};
22
	$.datepicker.setDefaults($.datepicker.regional['ko']);
23
});