jquery-ui-timepicker-vi.js 594 B

12345678910111213141516171819202122
  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: 'Mili giây',
  11. microsecText: 'Micrô giây',
  12. timezoneText: 'Múi giờ',
  13. currentText: 'Hiện thời',
  14. closeText: 'Đóng',
  15. timeFormat: 'HH:mm',
  16. timeSuffix: '',
  17. amNames: ['SA', 'S'],
  18. pmNames: ['CH', 'C'],
  19. isRTL: false
  20. };
  21. $.timepicker.setDefaults($.timepicker.regional['vi']);
  22. })(jQuery);