Annotation of loncom/html/adm/countdown/jquery.countdown-sr.js, revision 1.1
1.1 ! foxr 1: /* http://keith-wood.name/countdown.html
! 2: * Serbian Cyrillic initialisation for the jQuery countdown extension
! 3: * Written by Predrag Leka lp@lemurcake.com (2010) */
! 4: (function($) {
! 5: $.countdown.regional['sr'] = {
! 6: labels: ['Година', 'Месеци', 'Недеља', 'Дана', 'Часова', 'Минута', 'Секунди'],
! 7: labels1: ['Година', 'месец', 'Недеља', 'Дан', 'Час', 'Минут', 'Секунда'],
! 8: labels2: ['Године', 'Месеца', 'Недеље', 'Дана', 'Часа', 'Минута', 'Секунде'],
! 9: compactLabels: ['г', 'м', 'н', 'д'],
! 10: whichLabels: function(amount) {
! 11: return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
! 12: },
! 13: timeSeparator: ':', isRTL: false};
! 14: $.countdown.setDefaults($.countdown.regional['sr']);
! 15: })(jQuery);
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>