jquery-ui-timepicker-bg.js 601 B

1234567891011121314151617181920
  1. /* Bulgarian translation for the jQuery Timepicker Addon */
  2. /* Written by Plamen Kovandjiev */
  3. (function($) {
  4. $.timepicker.regional['bg'] = {
  5. timeOnlyTitle: 'Изберете време',
  6. timeText: 'Време',
  7. hourText: 'Час',
  8. minuteText: 'Минути',
  9. secondText: 'Секунди',
  10. millisecText: 'Милисекунди',
  11. timezoneText: 'Часови пояс',
  12. currentText: 'Сега',
  13. closeText: 'Затвори',
  14. timeFormat: 'hh:mm tt',
  15. amNames: ['AM', 'A'],
  16. pmNames: ['PM', 'P'],
  17. ampm: false
  18. };
  19. $.timepicker.setDefaults($.timepicker.regional['bg']);
  20. })(jQuery);