jquery-ui-timepicker-vi.js 592 B

123456789101112131415161718192021
  1. /* Vietnamese translation for the jQuery Timepicker Addon */
  2. /* Written by Nguyen Dinh Trung */
  3. (function($) {
  4. $.timepicker.regional['vi'] = {
  5. timeOnlyTitle: 'Chọn giờ',
  6. timeText: 'Thời gian',
  7. hourText: 'Giờ',
  8. minuteText: 'Phút',
  9. secondText: 'Giây',
  10. millisecText: 'Phần nghìn giây',
  11. microsecText: 'Miligiây',
  12. timezoneText: 'Múi giờ',
  13. currentText: 'Hiện thời',
  14. closeText: 'Đóng',
  15. timeFormat: 'H:m',
  16. amNames: ['SA', 'AM', 'A'],
  17. pmNames: ['CH', 'PM', 'P'],
  18. isRTL: false
  19. };
  20. $.timepicker.setDefaults($.timepicker.regional['vi']);
  21. })(jQuery);