var text = new Array();

text['today'] = '오늘';
text['time'] = '시간';

text['dayNamesShort'] = new Array(
'일',
'월',
'화',
'수',
'목',
'금',
'토'
);
text['dayNames'] = new Array(
'일요일',
'월요일',
'화요일',
'수요일',
'목요일',
'금요일',
'토요일'
);

text['monthNamesShort'] = new Array(
'1월',
'2월',
'3월',
'4월',
'5월',
'6월',
'7월',
'8월',
'9월',
'10월',
'11월',
'12월'
);

text['monthNames'] = new Array(
'1월',
'2월',
'3월',
'4월',
'5월',
'6월',
'7월',
'8월',
'9월',
'10월',
'11월',
'12월'
);


text['footerDateFormat'] = '%Y년 %m월 %j일 (%D)',
text['dateFormat'] = '%Y.%m.%d',
text['footerDefaultText'] = '일자를 선택하세요',

text['clear'] = '일자 삭제',
text['prev_year'] = '이전 년',
text['prev_month'] = '이전 월',
text['next_month'] = '다음 월',
text['next_year'] = '다음 년',
text['close'] = '닫기',


// weekend days (0 - sunday, ... 6 - saturday)
text['weekend'] = "0,6";
text['make_first'] = "Start with %s";


RichCalendar.rc_lang_data['ko'] = text;

