2011-08-15 08:59:30 +02:00
|
|
|
/* Polish translation for the jQuery Timepicker Addon */
|
2011-08-14 21:51:28 +02:00
|
|
|
/* Written by Michał Pena */
|
|
|
|
(function($) {
|
|
|
|
$.timepicker.regional['pl'] = {
|
|
|
|
timeOnlyTitle: 'Wybierz godzinę',
|
|
|
|
timeText: 'Czas',
|
|
|
|
hourText: 'Godzina',
|
|
|
|
minuteText: 'Minuta',
|
|
|
|
secondText: 'Sekunda',
|
|
|
|
millisecText: 'Milisekunda',
|
|
|
|
timezoneText: 'Strefa czasowa',
|
|
|
|
currentText: 'Teraz',
|
|
|
|
closeText: 'Gotowe',
|
|
|
|
timeFormat: 'hh:mm tt',
|
2011-08-15 08:59:30 +02:00
|
|
|
amNames: ['AM', 'A'],
|
|
|
|
pmNames: ['PM', 'P'],
|
2011-08-14 21:51:28 +02:00
|
|
|
ampm: false
|
|
|
|
};
|
|
|
|
$.timepicker.setDefaults($.timepicker.regional['pl']);
|
|
|
|
})(jQuery);
|