jquery-ui-timepicker-zh-CN.js 579 B

12345678910111213141516171819202122
  1. /* Simplified Chinese translation for the jQuery Timepicker Addon /
  2. / Written by Will Lu */
  3. (function($) {
  4. $.timepicker.regional['zh-CN'] = {
  5. timeOnlyTitle: '选择时间',
  6. timeText: '时间',
  7. hourText: '小时',
  8. minuteText: '分钟',
  9. secondText: '秒钟',
  10. millisecText: '毫秒',
  11. microsecText: '微秒',
  12. timezoneText: '时区',
  13. currentText: '现在时间',
  14. closeText: '关闭',
  15. timeFormat: 'HH:mm',
  16. timeSuffix: '',
  17. amNames: ['AM', 'A'],
  18. pmNames: ['PM', 'P'],
  19. isRTL: false
  20. };
  21. $.timepicker.setDefaults($.timepicker.regional['zh-CN']);
  22. })(jQuery);