jquery-ui-timepicker-pl.js 584 B

12345678910111213141516171819202122
  1. /* Polish translation for the jQuery Timepicker Addon */
  2. /* Written by Michał Pena */
  3. (function($) {
  4. $.timepicker.regional['pl'] = {
  5. timeOnlyTitle: 'Wybierz godzinę',
  6. timeText: 'Czas',
  7. hourText: 'Godzina',
  8. minuteText: 'Minuta',
  9. secondText: 'Sekunda',
  10. millisecText: 'Milisekunda',
  11. microsecText: 'Mikrosekunda',
  12. timezoneText: 'Strefa czasowa',
  13. currentText: 'Teraz',
  14. closeText: 'Gotowe',
  15. timeFormat: 'HH:mm',
  16. timeSuffix: '',
  17. amNames: ['AM', 'A'],
  18. pmNames: ['PM', 'P'],
  19. isRTL: false
  20. };
  21. $.timepicker.setDefaults($.timepicker.regional['pl']);
  22. })(jQuery);