Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
776 lars 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
		digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
14
		timeSeparator: ':', isRTL: false};
15
	$.countdown.setDefaults($.countdown.regional['sr']);
16
})(jQuery);