Skip to content

Commit 392b51f

Browse files
committed
Added Korean Locale
1 parent 0a68b5c commit 392b51f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* Korean translation for the jQuery Timepicker Addon */
2+
/* Written by JoongSeob Vito Kim (http://www.dorajistyle.pe.kr) */
3+
(function($) {
4+
$.timepicker.regional['ko'] = {
5+
timeOnlyTitle: '시간을 선택하세요.',
6+
timeText: '시간',
7+
hourText: '시',
8+
minuteText: '분',
9+
secondText: '초',
10+
millisecText: '밀리초',
11+
timezoneText: '시각대',
12+
currentText: '현재',
13+
closeText: '닫기',
14+
timeFormat: 'hh:mm',
15+
amNames: ['오전', 'AM'],
16+
pmNames: ['오후', 'PM'],
17+
ampm: false
18+
};
19+
$.timepicker.setDefaults($.timepicker.regional['ko']);
20+
})(jQuery);

0 commit comments

Comments
 (0)