You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
787 B
24 lines
787 B
/* Chinese translation for the jQuery Timepicker Addon */
|
|
/* Written by Alang.lin */
|
|
(function ($) {
|
|
if ($.timepicker) {
|
|
$.timepicker.regional['zh-TW'] = {
|
|
timeOnlyTitle: '選擇時分秒',
|
|
timeText: '時間',
|
|
hourText: '時',
|
|
minuteText: '分',
|
|
secondText: '秒',
|
|
millisecText: '毫秒',
|
|
microsecText: '微秒',
|
|
timezoneText: '時區',
|
|
currentText: '現在時間',
|
|
closeText: '確定',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['上午', 'AM', 'A'],
|
|
pmNames: ['下午', 'PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['zh-TW']);
|
|
}
|
|
})(jQuery);
|