jquery-ui-timepicker-bg.js 661 B

12345678910111213141516171819202122
  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. 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['bg']);
  22. })(jQuery);