mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-04-22 19:31:41 +08:00
23 lines
587 B
JavaScript
23 lines
587 B
JavaScript
/* Simplified Chinese translation for the jQuery Timepicker Addon /
|
|
/ Written by Will Lu */
|
|
(function($) {
|
|
$.timepicker.regional['en-US'] = {
|
|
timeOnlyTitle: 'Select time',
|
|
timeText: 'time',
|
|
hourText: 'hour',
|
|
minuteText: 'minute',
|
|
secondText: 'second',
|
|
millisecText: 'millisecond',
|
|
microsecText: 'Microseconds',
|
|
timezoneText: 'time zone',
|
|
currentText: 'present time',
|
|
closeText: 'close',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['AM', 'A'],
|
|
pmNames: ['PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['en-US']);
|
|
})(jQuery);
|