Annotation of loncom/html/adm/countdown/jquery.countdown-sr.js, revision 1.2

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: 		},
1.2     ! raeburn    13: 		digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
1.1       foxr       14: 		timeSeparator: ':', isRTL: false};
                     15: 	$.countdown.setDefaults($.countdown.regional['sr']);
                     16: })(jQuery);

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>