1 /* http://keith-wood.name/countdown.html
\r
2 * Polish initialisation for the jQuery countdown extension
\r
3 * Written by Pawel Lewtak lewtak@gmail.com (2008) */
\r
5 $.countdown.regional['pl'] = {
\r
6 labels: ['lat', 'miesięcy', 'tygodni', 'dni', 'godzin', 'minut', 'sekund'],
\r
7 labels1: ['rok', 'miesiąc', 'tydzień', 'dzień', 'godzina', 'minuta', 'sekunda'],
\r
8 labels2: ['lata', 'miesiące', 'tygodnie', 'dni', 'godziny', 'minuty', 'sekundy'],
\r
9 compactLabels: ['l', 'm', 't', 'd'], compactLabels1: ['r', 'm', 't', 'd'],
\r
10 whichLabels: function(amount) {
\r
11 var units = amount % 10;
\r
12 var tens = Math.floor((amount % 100) / 10);
\r
13 return (amount == 1 ? 1 : (units >= 2 && units <= 4 && tens != 1 ? 2 : 0));
\r
15 timeSeparator: ':', isRTL: false};
\r
16 $.countdown.setDefaults($.countdown.regional['pl']);
\r