8889841cjquery.countdown-de.js 0000644 00000001106 15044514476 0011036 0 ustar 00 /* http://keith-wood.name/countdown.html
German initialisation for the jQuery countdown extension
Written by Samuel Wulf. */
(function($) {
'use strict';
$.countdown.regionalOptions.de = {
labels: ['Jahre','Monate','Wochen','Tage','Stunden','Minuten','Sekunden'],
labels1: ['Jahr','Monat','Woche','Tag','Stunde','Minute','Sekunde'],
compactLabels: ['J','M','W','T'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.de);
})(jQuery);
jquery.countdown-hr.js 0000644 00000002114 15044514476 0011057 0 ustar 00 /* http://keith-wood.name/countdown.html
* Croatian l10n for the jQuery countdown plugin
* Written by Dejan Broz info@hqfactory.com (2011)
* Improved by zytzagoo (2014) */
(function($) {
'use strict';
$.countdown.regionalOptions.hr = {
labels: ['Godina','Mjeseci','Tjedana','Dana','Sati','Minuta','Sekundi'], // plurals
labels1: ['Godina','Mjesec','Tjedan','Dan','Sat','Minutu','Sekundu'], // singles
labels2: ['Godine','Mjeseca','Tjedana','Dana','Sata','Minute','Sekunde'], // paucals
compactLabels: ['g','m','t','d'],
whichLabels: function(amount){
amount = parseInt(amount, 10);
if (amount % 10 === 1 && amount % 100 !== 11) {
return 1; // singles (/.*1$/ && ! /.*11$/)
}
if (amount % 10 >= 2 && amount % 10 <= 4 && (amount % 100 < 10 || amount % 100 >= 20)) {
return 2; // paucals (/.*[234]$/ && ! /.*1[234]$/
}
return 0; // default plural (most common case)
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.hr);
})(jQuery);
jquery.countdown-es.js 0000644 00000001163 15044514476 0011060 0 ustar 00 /* http://keith-wood.name/countdown.html
* Spanish initialisation for the jQuery countdown extension
* Written by Sergio Carracedo Martinez webmaster@neodisenoweb.com (2008) */
(function($) {
'use strict';
$.countdown.regionalOptions.es = {
labels: ['Años','Meses','Semanas','Días','Horas','Minutos','Segundos'],
labels1: ['Año','Mes','Semana','Día','Hora','Minuto','Segundo'],
compactLabels: ['a','m','s','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.es);
})(jQuery);
jquery.countdown-fr.js 0000644 00000001266 15044514476 0011064 0 ustar 00 /* http://keith-wood.name/countdown.html
French initialisation for the jQuery countdown extension
Written by Keith Wood (wood.keith{at}optusnet.com.au) Jan 2008. */
(function($) {
'use strict';
$.countdown.regionalOptions.fr = {
labels: ['Années','Mois','Semaines','Jours','Heures','Minutes','Secondes'],
labels1: ['Année','Mois','Semaine','Jour','Heure','Minute','Seconde'],
compactLabels: ['a','m','s','j'],
whichLabels: function(amount) {
return (amount > 1 ? 0 : 1);
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.fr);
})(jQuery);
jquery.countdown-ar.js 0000644 00000001264 15044514476 0011055 0 ustar 00 /* http://keith-wood.name/countdown.html
Arabic (عربي) initialisation for the jQuery countdown extension
Translated by Talal Al Asmari (talal@psdgroups.com), April 2009. */
(function($) {
'use strict';
$.countdown.regionalOptions.ar = {
labels: ['سنوات','أشهر','أسابيع','أيام','ساعات','دقائق','ثواني'],
labels1: ['سنة','شهر','أسبوع','يوم','ساعة','دقيقة','ثانية'],
compactLabels: ['س','ش','أ','ي'],
whichLabels: null,
digits: ['٠','١','٢','٣','٤','٥','٦','٧','٨','٩'],
timeSeparator: ':',
isRTL: true
};
$.countdown.setDefaults($.countdown.regionalOptions.ar);
})(jQuery);
jquery.countdown-nl.js 0000644 00000001146 15044514476 0011063 0 ustar 00 /* http://keith-wood.name/countdown.html
Dutch initialisation for the jQuery countdown extension
Written by Mathias Bynens Mar 2008. */
(function($) {
'use strict';
$.countdown.regionalOptions.nl = {
labels: ['Jaren','Maanden','Weken','Dagen','Uren','Minuten','Seconden'],
labels1: ['Jaar','Maand','Week','Dag','Uur','Minuut','Seconde'],
compactLabels: ['j','m','w','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.nl);
})(jQuery);
jquery.countdown-sl.js 0000644 00000001707 15044514476 0011073 0 ustar 00 /* http://keith-wood.name/countdown.html
* Slovenian localisation for the jQuery countdown extension
* Written by Borut Tomažin (debijan{at}gmail.com) (2011)
* updated by Jan Zavrl (jan@iuvo.si) (2015) */
(function($) {
'use strict';
$.countdown.regionalOptions.sl = {
labels: ['Let','Mesecev','Tednov','Dni','Ur','Minut','Sekund'], // Plurals
labels1: ['Leto','Mesec','Teden','Dan','Ura','Minuta','Sekunda'], // Singles
labels2: ['Leti','Meseca','Tedna','Dneva','Uri','Minuti','Sekundi'], // Doubles
labels3: ['Leta','Meseci','Tedni','Dnevi','Ure','Minute','Sekunde'], // 3's
labels4: ['Leta','Meseci','Tedni','Dnevi','Ure','Minute','Sekunde'], // 4's
compactLabels: ['l','m','t','d'],
whichLabels: function(amount) {
return (amount > 4 ? 0 : amount);
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.sl);
})(jQuery);
jquery.countdown-nb.js 0000644 00000001053 15044514476 0011046 0 ustar 00 /* http://keith-wood.name/countdown.html
Norwegian Bokmål translation
Written by Kristian Ravnevand */
(function($) {
'use strict';
$.countdown.regionalOptions.nb = {
labels: ['År','Måneder','Uker','Dager','Timer','Minutter','Sekunder'],
labels1: ['År','Måned','Uke','Dag','Time','Minutt','Sekund'],
compactLabels: ['Å','M','U','D'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.nb);
})(jQuery);
jquery.countdown-gu.js 0000644 00000001376 15044514476 0011072 0 ustar 00 /* http://keith-wood.name/countdown.html
* Gujarati initialization for the jQuery countdown extension
* Written by Sahil Jariwala jariwala.sahil@gmail.com (2012) */
(function($) {
'use strict';
$.countdown.regionalOptions.gu = {
labels: ['વર્ષ','મહિનો','અઠવાડિયા','દિવસ','કલાક','મિનિટ','સેકન્ડ'],
labels1: ['વર્ષ','મહિનો','અઠવાડિયા','દિવસ','કલાક','મિનિટ','સેકન્ડ'],
compactLabels: ['વ','મ','અ','દિ'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.gu);
})(jQuery);
jquery.countdown-et.js 0000644 00000001171 15044514476 0011060 0 ustar 00 /* http://keith-wood.name/countdown.html
Estonian initialisation for the jQuery countdown extension
Written by Helmer */
(function($) {
'use strict';
$.countdown.regionalOptions.et = {
labels: ['Aastat','Kuud','Nädalat','Päeva','Tundi','Minutit','Sekundit'],
labels1: ['Aasta','Kuu','Nädal','Päev','Tund','Minut','Sekund'],
compactLabels: ['a','k','n','p'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.et);
})(jQuery);
jquery.countdown-pt-BR.js 0000644 00000001302 15044514476 0011370 0 ustar 00 /* http://keith-wood.name/countdown.html
Brazilian initialisation for the jQuery countdown extension
Translated by Marcelo Pellicano de Oliveira (pellicano@gmail.com) Feb 2008.
and Juan Roldan (juan.roldan[at]relayweb.com.br) Mar 2012. */
(function($) {
'use strict';
$.countdown.regionalOptions['pt-BR'] = {
labels: ['Anos','Meses','Semanas','Dias','Horas','Minutos','Segundos'],
labels1: ['Ano','Mês','Semana','Dia','Hora','Minuto','Segundo'],
compactLabels: ['a','m','s','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions['pt-BR']);
})(jQuery);
jquery.countdown-fa.js 0000644 00000001315 15044514476 0011036 0 ustar 00 /* http://keith-wood.name/countdown.html
Persian (فارسی) initialisation for the jQuery countdown extension
Written by Alireza Ziaie (ziai@magfa.com) Oct 2008.
Digits corrected by Hamed Ramezanian Feb 2013. */
(function($) {
'use strict';
$.countdown.regionalOptions.fa = {
labels: ['سال','ماه','هفته','روز','ساعت','دقیقه','ثانیه'],
labels1: ['سال','ماه','هفته','روز','ساعت','دقیقه','ثانیه'],
compactLabels: ['س','م','ه','ر'],
whichLabels: null,
digits: ['۰','۱','۲','۳','۴','۵','۶','۷','۸','۹'],
timeSeparator: ':',
isRTL: true
};
$.countdown.setDefaults($.countdown.regionalOptions.fa);
})(jQuery);
jquery.countdown-kk.js 0000644 00000001241 15044514476 0011053 0 ustar 00 /* http://keith-wood.name/countdown.html
* Kazakh initialisation for the jQuery countdown extension
* Written by Veaceslav Grimalschi grimalschi@yandex.ru (2019) */
(function($) {
'use strict';
$.countdown.regionalOptions['kk'] = {
labels: ['Жыл','Ай','Апта','Күн','Сағат','Минут','Секунд'],
labels1: ['Жыл','Ай','Апта','Күн','Сағат','Минут','Секунд'],
compactLabels: ['ж','а','а','к'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions['kk']);
})(jQuery);
jquery.countdown-th.js 0000644 00000001422 15044514476 0011062 0 ustar 00 /* http://keith-wood.name/countdown.html
Thai initialisation for the jQuery countdown extension
Written by Pornchai Sakulsrimontri (li_sin_th@yahoo.com). */
(function($) {
'use strict';
$.countdown.regionalOptions.th = {
labels: ['ปี','เดือน','สัปดาห์','วัน','ชั่วโมง','นาที','วินาที'],
labels1: ['ปี','เดือน','สัปดาห์','วัน','ชั่วโมง','นาที','วินาที'],
compactLabels: ['ปี','เดือน','สัปดาห์','วัน'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.th);
})(jQuery);
jquery.countdown-fi.js 0000644 00000001230 15044514476 0011042 0 ustar 00 /* http://keith-wood.name/countdown.html
Finnish initialisation for the jQuery countdown extension
Written by Kalle Vänskä and Juha Suni (juhis.suni@gmail.com). Corrected by Olli. */
(function($) {
'use strict';
$.countdown.regionalOptions.fi = {
labels: ['vuotta','kuukautta','viikkoa','päivää','tuntia','minuuttia','sekuntia'],
labels1: ['vuosi','kuukausi','viikko','päivä','tunti','minuutti','sekunti'],
compactLabels: ['v','kk','vk','pv'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.fi);
})(jQuery); jquery.countdown-bs.js 0000644 00000001416 15044514476 0011056 0 ustar 00 /* http://keith-wood.name/countdown.html
* Bosnian Latin initialisation for the jQuery countdown extension
* Written by Miralem Mehic miralem@mehic.info (2011) */
(function($) {
'use strict';
$.countdown.regionalOptions.bs = {
labels: ['Godina','Mjeseci','Sedmica','Dana','Sati','Minuta','Sekundi'],
labels1: ['Godina','Mjesec','Sedmica','Dan','Sat','Minuta','Sekunda'],
labels2: ['Godine','Mjeseca','Sedmica','Dana','Sata','Minute','Sekunde'],
compactLabels: ['g','m','t','d'],
whichLabels: function(amount) {
return (amount === 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.bs);
})(jQuery);
jquery.countdown-ms.js 0000644 00000001131 15044514476 0011063 0 ustar 00 /* http://keith-wood.name/countdown.html
Malay initialisation for the jQuery countdown extension
Written by Jason Ong (jason{at}portalgroove.com) May 2010. */
(function($) {
'use strict';
$.countdown.regionalOptions.ms = {
labels: ['Tahun','Bulan','Minggu','Hari','Jam','Minit','Saat'],
labels1: ['Tahun','Bulan','Minggu','Hari','Jam','Minit','Saat'],
compactLabels: ['t','b','m','h'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.ms);
})(jQuery);
jquery.countdown-ur.js 0000644 00000001266 15044514476 0011103 0 ustar 00 /* http://keith-wood.name/countdown.html
Urdu (اردو) initialisation for the jQuery countdown extension
Translated by Azhar Rasheed (azhar.rasheed19@gmail.com), November 2013. */
(function($) {
'use strict';
$.countdown.regionalOptions.ur = {
labels: ['سال','مہينے','ہفتے','دن','گھنٹے','منٹس','سيکنڑز'],
labels1: ['سال','ماہ','ہفتہ','دن','گھنٹہ','منٹ','سیکنڈز'],
compactLabels: ['(ق)','سینٹ','ایک','J'],
whichLabels: null,
digits: ['٠','١','٢','٣','۴','۵','۶','۷','٨','٩'],
timeSeparator: ':',
isRTL: true
};
$.countdown.setDefaults($.countdown.regionalOptions.ur);
})(jQuery);
jquery.countdown-pl.js 0000644 00000001613 15044514476 0011064 0 ustar 00 /* http://keith-wood.name/countdown.html
* Polish initialisation for the jQuery countdown extension
* Written by Pawel Lewtak lewtak@gmail.com (2008) */
(function($) {
'use strict';
$.countdown.regionalOptions.pl = {
labels: ['lat','miesięcy','tygodni','dni','godzin','minut','sekund'],
labels1: ['rok','miesiąc','tydzień','dzień','godzina','minuta','sekunda'],
labels2: ['lata','miesiące','tygodnie','dni','godziny','minuty','sekundy'],
compactLabels: ['l','m','t','d'],
compactLabels1: ['r','m','t','d'],
whichLabels: function(amount) {
var units = amount % 10;
var tens = Math.floor((amount % 100) / 10);
return (amount === 1 ? 1 : (units >= 2 && units <= 4 && tens !== 1 ? 2 : 0));
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.pl);
})(jQuery);
jquery.countdown-zh-CN.js 0000644 00000001203 15044514476 0011363 0 ustar 00 /* http://keith-wood.name/countdown.html
Simplified Chinese initialisation for the jQuery countdown extension
Written by Cloudream (cloudream@gmail.com). */
(function($) {
'use strict';
$.countdown.regionalOptions['zh-CN'] = {
labels: ['年','月','周','天','时','分','秒'],
labels1: ['年','月','周','天','时','分','秒'],
compactLabels: ['年','月','周','天'],
compactLabels1: ['年','月','周','天'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions['zh-CN']);
})(jQuery);
jquery.countdown-da.js 0000644 00000001111 15044514476 0011026 0 ustar 00 /* http://keith-wood.name/countdown.html
Danish initialisation for the jQuery countdown extension
Written by Buch (admin@buch90.dk). */
(function($) {
'use strict';
$.countdown.regionalOptions.da = {
labels: ['År','Måneder','Uger','Dage','Timer','Minutter','Sekunder'],
labels1: ['År','Måned','Uge','Dag','Time','Minut','Sekund'],
compactLabels: ['Å','M','U','D'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.da);
})(jQuery);
jquery.countdown-kn.js 0000644 00000001412 15044514476 0011056 0 ustar 00 /* http://keith-wood.name/countdown.html
* Kannada initialization for the jQuery countdown extension
* Written by Guru Chaturvedi guru@gangarasa.com (2011) */
(function($) {
'use strict';
$.countdown.regionalOptions.kn = {
labels: ['ವರ್ಷಗಳು','ತಿಂಗಳು','ವಾರಗಳು','ದಿನಗಳು','ಘಂಟೆಗಳು','ನಿಮಿಷಗಳು','ಕ್ಷಣಗಳು'],
labels1: ['ವರ್ಷ','ತಿಂಗಳು','ವಾರ','ದಿನ','ಘಂಟೆ','ನಿಮಿಷ','ಕ್ಷಣ'],
compactLabels: ['ವ','ತಿ','ವಾ','ದಿ'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.kn);
})(jQuery);
jquery.countdown-cy.js 0000644 00000001154 15044514476 0011064 0 ustar 00 /* http://keith-wood.name/countdown.html
Welsh initialisation for the jQuery countdown extension
Written by Gareth Jones | http://garethvjones.com | October 2011. */
(function($) {
'use strict';
$.countdown.regionalOptions.cy = {
labels: ['Blynyddoedd','Mis','Wythnosau','Diwrnodau','Oriau','Munudau','Eiliadau'],
labels1: ['Blwyddyn','Mis','Wythnos','Diwrnod','Awr','Munud','Eiliad'],
compactLabels: ['b','m','w','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.cy);
})(jQuery);
jquery.countdown-fo.js 0000644 00000001166 15044514476 0011060 0 ustar 00 /* http://keith-wood.name/countdown.html
Faroese initialisation for the jQuery countdown extension
Written by Kasper Friis Christensen (kasper@friischristensen.com). */
(function($) {
'use strict';
$.countdown.regionalOptions.fo = {
labels: ['Ár','Mánaðir','Vikur','Dagar','Tímar','Minuttir','Sekund'],
labels1: ['Ár','Mánaður','Vika','Dagur','Tími','Minuttur','Sekund'],
compactLabels: ['Á','M','V','D'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.fo);
})(jQuery);
jquery.countdown-el.js 0000644 00000001267 15044514476 0011056 0 ustar 00 /* http://keith-wood.name/countdown.html
Greek initialisation for the jQuery countdown extension
Written by Philip. */
(function($) {
'use strict';
$.countdown.regionalOptions.el = {
labels: ['Χρόνια','Μήνες','Εβδομάδες','Μέρες','Ώρες','Λεπτά','Δευτερόλεπτα'],
labels1: ['Χρόνος','Μήνας','Εβδομάδα','Ημέρα','Ώρα','Λεπτό','Δευτερόλεπτο'],
compactLabels: ['Χρ.','Μην.','Εβδ.','Ημ.'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.el);
})(jQuery); jquery.countdown-zh-TW.js 0000644 00000001204 15044514476 0011416 0 ustar 00 /* http://keith-wood.name/countdown.html
Traditional Chinese initialisation for the jQuery countdown extension
Written by Cloudream (cloudream@gmail.com). */
(function($) {
'use strict';
$.countdown.regionalOptions['zh-TW'] = {
labels: ['年','月','周','天','時','分','秒'],
labels1: ['年','月','周','天','時','分','秒'],
compactLabels: ['年','月','周','天'],
compactLabels1: ['年','月','周','天'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions['zh-TW']);
})(jQuery);
jquery.countdown-sq.js 0000644 00000001145 15044514476 0011074 0 ustar 00 /* http://keith-wood.name/countdown.html
Albanian initialisation for the jQuery countdown extension
Written by Erzen Komoni. */
(function($) {
'use strict';
$.countdown.regionalOptions.sq = {
labels: ['Vite','Muaj','Javë','Ditë','Orë','Minuta','Sekonda'],
labels1: ['Vit','Muaj','Javë','Dit','Orë','Minutë','Sekond'],
compactLabels: ['V','M','J','D'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.sq);
})(jQuery); jquery.countdown-sr.js 0000644 00000001600 15044514476 0011071 0 ustar 00 /* http://keith-wood.name/countdown.html
* Serbian Cyrillic initialisation for the jQuery countdown extension
* Written by Predrag Leka lp@lemurcake.com (2010) */
(function($) {
'use strict';
$.countdown.regionalOptions.sr = {
labels: ['Година','Месеци','Недеља','Дана','Часова','Минута','Секунди'],
labels1: ['Година','месец','Недеља','Дан','Час','Минут','Секунда'],
labels2: ['Године','Месеца','Недеље','Дана','Часа','Минута','Секунде'],
compactLabels: ['г','м','н','д'],
whichLabels: function(amount) {
return (amount === 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.sr);
})(jQuery);
jquery.countdown-ru.js 0000644 00000002023 15044514476 0011073 0 ustar 00 /* http://keith-wood.name/countdown.html
* Russian initialisation for the jQuery countdown extension
* Written by Sergey K. (xslade{at}gmail.com) June 2010. */
(function($) {
'use strict';
$.countdown.regionalOptions.ru = {
labels: ['Лет','Месяцев','Недель','Дней','Часов','Минут','Секунд'],
labels1: ['Год','Месяц','Неделя','День','Час','Минута','Секунда'],
labels2: ['Года','Месяца','Недели','Дня','Часа','Минуты','Секунды'],
compactLabels: ['л','м','н','д'],
compactLabels1: ['г','м','н','д'],
whichLabels: function(amount) {
var units = amount % 10;
var tens = Math.floor((amount % 100) / 10);
return (amount === 1 ? 1 : (units >= 2 && units <= 4 && tens !== 1 ? 2 :
(units === 1 && tens !== 1 ? 1 : 0)));
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.ru);
})(jQuery); jquery.countdown-it.js 0000644 00000001210 15044514476 0011056 0 ustar 00 /* http://keith-wood.name/countdown.html
* Italian initialisation for the jQuery countdown extension
* Written by Davide Bellettini (davide.bellettini@gmail.com) and Roberto Chiaveri Feb 2008. */
(function($) {
'use strict';
$.countdown.regionalOptions.it = {
labels: ['Anni','Mesi','Settimane','Giorni','Ore','Minuti','Secondi'],
labels1: ['Anno','Mese','Settimana','Giorno','Ora','Minuto','Secondo'],
compactLabels: ['a','m','s','g'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.it);
})(jQuery);
jquery.countdown-pt.js 0000644 00000001302 15044514476 0011067 0 ustar 00 /* http://keith-wood.name/countdown.html
Brazilian initialisation for the jQuery countdown extension
Translated by Marcelo Pellicano de Oliveira (pellicano@gmail.com) Feb 2008.
and Juan Roldan (juan.roldan[at]relayweb.com.br) Mar 2012. */
(function($) {
'use strict';
$.countdown.regionalOptions['pt-BR'] = {
labels: ['Anos','Meses','Semanas','Dias','Horas','Minutos','Segundos'],
labels1: ['Ano','Mês','Semana','Dia','Hora','Minuto','Segundo'],
compactLabels: ['a','m','s','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions['pt-BR']);
})(jQuery);
jquery.countdown-ja.js 0000644 00000001106 15044514476 0011040 0 ustar 00 /* http://keith-wood.name/countdown.html
Japanese initialisation for the jQuery countdown extension
Written by Ken Ishimoto (ken@ksroom.com) Aug 2009. */
(function($) {
'use strict';
$.countdown.regionalOptions.ja = {
labels: ['年','月','週','日','時','分','秒'],
labels1: ['年','月','週','日','時','分','秒'],
compactLabels: ['年','月','週','日'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.ja);
})(jQuery);
jquery.countdown-cs.js 0000644 00000001402 15044514476 0011052 0 ustar 00 /* http://keith-wood.name/countdown.html
* Czech initialisation for the jQuery countdown extension
* Written by Roman Chlebec (creamd@c64.sk) (2008) */
(function($) {
'use strict';
$.countdown.regionalOptions.cs = {
labels: ['Roků','Měsíců','Týdnů','Dní','Hodin','Minut','Sekund'],
labels1: ['Rok','Měsíc','Týden','Den','Hodina','Minuta','Sekunda'],
labels2: ['Roky','Měsíce','Týdny','Dny','Hodiny','Minuty','Sekundy'],
compactLabels: ['r','m','t','d'],
whichLabels: function(amount) {
return (amount === 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.cs);
})(jQuery);
jquery.countdown-vi.js 0000644 00000001147 15044514476 0011071 0 ustar 00 /* http://keith-wood.name/countdown.html
* Vietnamese initialisation for the jQuery countdown extension
* Written by Pham Tien Hung phamtienhung@gmail.com (2010) */
(function($) {
'use strict';
$.countdown.regionalOptions.vi = {
labels: ['Năm','Tháng','Tuần','Ngày','Giờ','Phút','Giây'],
labels1: ['Năm','Tháng','Tuần','Ngày','Giờ','Phút','Giây'],
compactLabels: ['năm','th','tu','ng'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.vi);
})(jQuery); jquery.countdown-id.js 0000644 00000001111 15044514476 0011036 0 ustar 00 /* http://keith-wood.name/countdown.html
Indonesian initialisation for the jQuery countdown extension
Written by Erwin Yonathan Jan 2009. */
(function($) {
'use strict';
$.countdown.regionalOptions.id = {
labels: ['tahun','bulan','minggu','hari','jam','menit','detik'],
labels1: ['tahun','bulan','minggu','hari','jam','menit','detik'],
compactLabels: ['t','b','m','h'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.id);
})(jQuery);
jquery.countdown-mk.js 0000644 00000001331 15044514476 0011055 0 ustar 00 /* http://keith-wood.name/countdown.html
* Macedonian initialisation for the jQuery countdown extension
* Written by Gorast Cvetkovski cvetkovski@gorast.com (2016) */
(function($) {
'use strict';
$.countdown.regionalOptions.mk = {
labels: ['Години','Месеци','Недели','Дена','Часа','Минути','Секунди'],
labels1: ['Година','Месец','Недела','Ден','Час','Минута','Секунда'],
compactLabels: ['l','m','n','d'],
compactLabels1: ['g','m','n','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.mk);
})(jQuery);
jquery.countdown-hy.js 0000644 00000001231 15044514476 0011065 0 ustar 00 /* http://keith-wood.name/countdown.html
* Armenian initialisation for the jQuery countdown extension
* Written by Artur Martirosyan. (artur{at}zoom.am) October 2011. */
(function($) {
'use strict';
$.countdown.regionalOptions.hy = {
labels: ['Տարի','Ամիս','Շաբաթ','Օր','Ժամ','Րոպե','Վարկյան'],
labels1: ['Տարի','Ամիս','Շաբաթ','Օր','Ժամ','Րոպե','Վարկյան'],
compactLabels: ['տ','ա','շ','օ'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.hy);
})(jQuery);
jquery.countdown-uz.js 0000644 00000001122 15044514476 0011102 0 ustar 00 /* http://keith-wood.name/countdown.html
* Uzbek initialisation for the jQuery countdown extension
* Written by Alisher U. (ulugbekov{at}gmail.com) August 2012. */
(function($) {
'use strict';
$.countdown.regionalOptions.uz = {
labels: ['Yil','Oy','Hafta','Kun','Soat','Daqiqa','Soniya'],
labels1: ['Yil','Oy','Hafta','Kun','Soat','Daqiqa','Soniya'],
compactLabels: ['y','o','h','k'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.uz);
})(jQuery); jquery.countdown-bg.js 0000644 00000001332 15044514476 0011037 0 ustar 00 /* http://keith-wood.name/countdown.html
* Bulgarian initialisation for the jQuery countdown extension
* Written by Manol Trendafilov manol@rastermania.com (2010) */
(function($) {
'use strict';
$.countdown.regionalOptions.bg = {
labels: ['Години','Месеца','Седмица','Дни','Часа','Минути','Секунди'],
labels1: ['Година','Месец','Седмица','Ден','Час','Минута','Секунда'],
compactLabels: ['l','m','n','d'],
compactLabels1: ['g','m','n','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.bg);
})(jQuery);
jquery.countdown-ro.js 0000644 00000001123 15044514476 0011065 0 ustar 00 /* http://keith-wood.name/countdown.html
* Romanian initialisation for the jQuery countdown extension
* Written by Edmond L. (webmond@gmail.com). */
(function($) {
'use strict';
$.countdown.regionalOptions.ro = {
labels: ['Ani','Luni','Saptamani','Zile','Ore','Minute','Secunde'],
labels1: ['An','Luna','Saptamana','Ziua','Ora','Minutul','Secunda'],
compactLabels: ['A','L','S','Z'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.ro);
})(jQuery);
jquery.countdown-gl.js 0000644 00000001173 15044514476 0011054 0 ustar 00 /* http://keith-wood.name/countdown.html
* Galician initialisation for the jQuery countdown extension
* Written by Moncho Pena ramon.pena.rodriguez@gmail.com (2009) and Angel Farrapeira */
(function($) {
'use strict';
$.countdown.regionalOptions.gl = {
labels: ['Anos','Meses','Semanas','Días','Horas','Minutos','Segundos'],
labels1: ['Ano','Mes','Semana','Día','Hora','Minuto','Segundo'],
compactLabels: ['a','m','s','g'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.gl);
})(jQuery); jquery.countdown-ml.js 0000644 00000002046 15044514476 0011062 0 ustar 00 /* http://keith-wood.name/countdown.html
* Malayalam/(Indian>>Kerala) initialisation for the jQuery countdown extension
* Written by Harilal.B (harilal1234@gmail.com) Feb 2013. */
(function($) {
'use strict';
/* jshint -W100 */
$.countdown.regionalOptions.ml = {
labels: ['വര്ഷങ്ങള്','മാസങ്ങള്','ആഴ്ചകള്','ദിവസങ്ങള്','മണിക്കൂറുകള്','മിനിറ്റുകള്','സെക്കന്റുകള്'],
labels1: ['വര്ഷം','മാസം','ആഴ്ച','ദിവസം','മണിക്കൂര്','മിനിറ്റ്','സെക്കന്റ്'],
compactLabels: ['വ','മ','ആ','ദി'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
// digits: ['൦','൧','൨','൩','൪','൫','൬','൭','൮','൯'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.ml);
})(jQuery); jquery.countdown-bn.js 0000644 00000001436 15044514476 0011053 0 ustar 00 /* http://keith-wood.name/countdown.html
* Bengali/Bangla initialisation for the jQuery countdown extension
* Written by Mohammed Tajuddin (tajuddin@chittagong-it.com) Jan 2011. */
(function($) {
'use strict';
$.countdown.regionalOptions.bn = {
labels: ['বছর','মাস','সপ্তাহ','দিন','ঘন্টা','মিনিট','সেকেন্ড'],
labels1: ['বছর','মাস','সপ্তাহ','দিন','ঘন্টা','মিনিট','সেকেন্ড'],
compactLabels: ['ব','মা','স','দি'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.bn);
})(jQuery); jquery.countdown-ko.js 0000644 00000001150 15044514476 0011056 0 ustar 00 /* http://keith-wood.name/countdown.html
Korean initialisation for the jQuery countdown extension
Written by Ryan Yu (ryanyu79@gmail.com). */
(function($) {
'use strict';
$.countdown.regionalOptions.ko = {
labels: ['년','월','주','일','시','분','초'],
labels1: ['년','월','주','일','시','분','초'],
compactLabels: ['년','월','주','일'],
compactLabels1: ['년','월','주','일'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.ko);
})(jQuery);
jquery.countdown-ca.js 0000644 00000001141 15044514476 0011030 0 ustar 00 /* http://keith-wood.name/countdown.html
Catalan initialisation for the jQuery countdown extension
Written by Amanida Media www.amanidamedia.com (2010) */
(function($) {
'use strict';
$.countdown.regionalOptions.ca = {
labels: ['Anys','Mesos','Setmanes','Dies','Hores','Minuts','Segons'],
labels1: ['Anys','Mesos','Setmanes','Dies','Hores','Minuts','Segons'],
compactLabels: ['a','m','s','g'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.ca);
})(jQuery);
jquery.countdown-lv.js 0000644 00000001244 15044514476 0011072 0 ustar 00 /* http://keith-wood.name/countdown.html
* Latvian initialisation for the jQuery countdown extension
* Written by Jānis Peisenieks janis.peisenieks@gmail.com (2010) */
(function($) {
'use strict';
$.countdown.regionalOptions.lv = {
labels: ['Gadi','Mēneši','Nedēļas','Dienas','Stundas','Minūtes','Sekundes'],
labels1: ['Gads','Mēnesis','Nedēļa','Diena','Stunda','Minūte','Sekunde'],
compactLabels: ['l','m','n','d'],
compactLabels1: ['g','m','n','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.lv);
})(jQuery);
jquery.countdown-he.js 0000644 00000001174 15044514476 0011047 0 ustar 00 /* http://keith-wood.name/countdown.html
* Hebrew initialisation for the jQuery countdown extension
* Translated by Nir Livne, Dec 2008 */
(function($) {
'use strict';
$.countdown.regionalOptions.he = {
labels: ['שנים','חודשים','שבועות','ימים','שעות','דקות','שניות'],
labels1: ['שנה','חודש','שבוע','יום','שעה','דקה','שנייה'],
compactLabels: ['שנ','ח','שב','י'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: true
};
$.countdown.setDefaults($.countdown.regionalOptions.he);
})(jQuery);
jquery.countdown-sr-SR.js 0000644 00000001430 15044514476 0011414 0 ustar 00 /* http://keith-wood.name/countdown.html
* Serbian Latin initialisation for the jQuery countdown extension
* Written by Predrag Leka lp@lemurcake.com (2010) */
(function($) {
'use strict';
$.countdown.regionalOptions['sr-SR'] = {
labels: ['Godina','Meseci','Nedelja','Dana','Časova','Minuta','Sekundi'],
labels1: ['Godina','Mesec','Nedelja','Dan','Čas','Minut','Sekunda'],
labels2: ['Godine','Meseca','Nedelje','Dana','Časa','Minuta','Sekunde'],
compactLabels: ['g','m','n','d'],
whichLabels: function(amount) {
return (amount === 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions['sr-SR']);
})(jQuery);
jquery.countdown-hu.js 0000644 00000001123 15044514476 0011061 0 ustar 00 /* http://keith-wood.name/countdown.html
* Hungarian initialisation for the jQuery countdown extension
* Written by Edmond L. (webmond@gmail.com). */
(function($) {
'use strict';
$.countdown.regionalOptions.hu = {
labels: ['Év','Hónap','Hét','Nap','Óra','Perc','Másodperc'],
labels1: ['Év','Hónap','Hét','Nap','Óra','Perc','Másodperc'],
compactLabels: ['É','H','Hé','N'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.hu);
})(jQuery);
jquery.countdown-sv.js 0000644 00000001124 15044514476 0011076 0 ustar 00 /* http://keith-wood.name/countdown.html
Swedish initialisation for the jQuery countdown extension
Written by Carl (carl@nordenfelt.com). */
(function($) {
'use strict';
$.countdown.regionalOptions.sv = {
labels: ['År','Månader','Veckor','Dagar','Timmar','Minuter','Sekunder'],
labels1: ['År','Månad','Vecka','Dag','Timme','Minut','Sekund'],
compactLabels: ['Å','M','V','D'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.sv);
})(jQuery);
jquery.countdown-tr.js 0000644 00000001124 15044514476 0011073 0 ustar 00 /* http://keith-wood.name/countdown.html
* Turkish initialisation for the jQuery countdown extension
* Written by Bekir Ahmetoğlu (bekir@cerek.com) Aug 2008. */
(function($) {
'use strict';
$.countdown.regionalOptions.tr = {
labels: ['Yıl','Ay','Hafta','Gün','Saat','Dakika','Saniye'],
labels1: ['Yıl','Ay','Hafta','Gün','Saat','Dakika','Saniye'],
compactLabels: ['y','a','h','g'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.tr);
})(jQuery);
jquery.countdown-sk.js 0000644 00000001416 15044514476 0011067 0 ustar 00 /* http://keith-wood.name/countdown.html
* Slovak initialisation for the jQuery countdown extension
* Written by Roman Chlebec (creamd@c64.sk) (2008) */
(function($) {
'use strict';
$.countdown.regionalOptions.sk = {
labels: ['Rokov','Mesiacov','Týždňov','Dní','Hodín','Minút','Sekúnd'],
labels1: ['Rok','Mesiac','Týždeň','Deň','Hodina','Minúta','Sekunda'],
labels2: ['Roky','Mesiace','Týždne','Dni','Hodiny','Minúty','Sekundy'],
compactLabels: ['r','m','t','d'],
whichLabels: function(amount) {
return (amount === 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.sk);
})(jQuery);
jquery.countdown-my.js 0000644 00000001426 15044514476 0011100 0 ustar 00 /* http://keith-wood.name/countdown.html
Burmese initialisation for the jQuery countdown extension
Written by Win Lwin Moe (winnlwinmoe@gmail.com) Dec 2009. */
(function($) {
'use strict';
$.countdown.regionalOptions.my = {
labels: ['နွစ္','လ','ရက္သတဿတပတ္','ရက္','နာရီ','မိနစ္','စကဿကန့္'],
labels1: ['နွစ္','လ','ရက္သတဿတပတ္','ရက္','နာရီ','မိနစ္','စကဿကန့္'],
compactLabels: ['နွစ္','လ','ရက္သတဿတပတ္','ရက္'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.my);
})(jQuery); jquery.countdown-ua.js 0000644 00000001641 15044514476 0011057 0 ustar 00 /* http://keith-wood.name/countdown.html
* Ukrainian initialisation for the jQuery countdown extension
* Written by Goloborodko M misha.gm@gmail.com (2009), corrections by Iгор Kоновал */
(function($) {
'use strict';
$.countdown.regionalOptions.uk = {
labels: ['Років','Місяців','Тижнів','Днів','Годин','Хвилин','Секунд'],
labels1: ['Рік','Місяць','Тиждень','День','Година','Хвилина','Секунда'],
labels2: ['Роки','Місяці','Тижні','Дні','Години','Хвилини','Секунди'],
compactLabels: ['r','m','t','d'],
whichLabels: function(amount) {
return (amount === 1 ? 1 : (amount >=2 && amount <= 4 ? 2 : 0));
},
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.uk);
})(jQuery);
jquery.countdown-is.js 0000644 00000001202 15044514476 0011056 0 ustar 00 /* http://keith-wood.name/countdown.html
Icelandic initialisation for the jQuery countdown extension
Written by Róbert K. L. */
(function($) {
'use strict';
$.countdown.regionalOptions.is = {
labels: ['Ár','Mánuðir','Vikur','Dagar','Klukkustundir','Mínútur','Sekúndur'],
labels1: ['Ár','Mánuður','Vika','Dagur','Klukkustund','Mínúta','Sekúnda'],
compactLabels: ['ár.','mán.','vik.','dag.','klst.','mín.','sek.'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.is);
})(jQuery); jquery.countdown-lt.js 0000644 00000001212 15044514476 0011063 0 ustar 00 /* http://keith-wood.name/countdown.html
* Lithuanian localisation for the jQuery countdown extension
* Written by Moacir P. de Sá Pereira (moacir{at}gmail.com) (2009) */
(function($) {
'use strict';
$.countdown.regionalOptions.lt = {
labels: ['Metų','Mėnesių','Savaičių','Dienų','Valandų','Minučių','Sekundžių'],
labels1: ['Metai','Mėnuo','Savaitė','Diena','Valanda','Minutė','Sekundė'],
compactLabels: ['m','m','s','d'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.lt);
})(jQuery);