source: trunk/themes/default/js/ui/i18n/jquery.ui.datepicker-ko.js @ 18630

Last change on this file since 18630 was 18630, checked in by rvelices, 12 years ago

feature 2771: upgrade jquery from 1.7.2 to 1.8.2 and jquery.ui from 1.8.16 to 1.9.0
Attention plugins: jquery ui effect script ids change when using combine_script because file names changed ...

File size: 910 bytes
Line 
1/* Korean initialisation for the jQuery calendar extension. */
2/* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */
3jQuery(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});
Note: See TracBrowser for help on using the repository browser.