22 lines
566 B
JavaScript
22 lines
566 B
JavaScript
|
/* Polish translation for the jQuery Timepicker Addon */
|
||
|
/* Written by Michał Pena */
|
||
|
(function($) {
|
||
|
$.timepicker.regional['pl'] = {
|
||
|
timeOnlyTitle: 'Wybierz godzinę',
|
||
|
timeText: 'Czas',
|
||
|
hourText: 'Godzina',
|
||
|
minuteText: 'Minuta',
|
||
|
secondText: 'Sekunda',
|
||
|
millisecText: 'Milisekunda',
|
||
|
microsecText: 'Mikrosekunda',
|
||
|
timezoneText: 'Strefa czasowa',
|
||
|
currentText: 'Teraz',
|
||
|
closeText: 'Gotowe',
|
||
|
timeFormat: 'HH:mm',
|
||
|
amNames: ['AM', 'A'],
|
||
|
pmNames: ['PM', 'P'],
|
||
|
isRTL: false
|
||
|
};
|
||
|
$.timepicker.setDefaults($.timepicker.regional['pl']);
|
||
|
})(jQuery);
|