~ubuntu-branches/ubuntu/utopic/jquery-goodies/utopic-proposed

« back to all changes in this revision

Viewing changes to countdown/jquery.countdown-sr-SR.js

  • Committer: Package Import Robot
  • Author(s): Marcelo Jorge Vieira (metal)
  • Date: 2012-05-06 21:48:26 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120506214826-s32mskt091qluihm
Tags: 5-1
* New Upstream Version
  + Updated jQuery form from 2.63 to 3.09 (Closes: #656778)
  + Added jQuery Countdown
* Updated Standards-Version to 3.9.3
  + Machine-readable debian/copyright version 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* http://keith-wood.name/countdown.html
 
2
 * Serbian Latin initialisation for the jQuery countdown extension
 
3
 * Written by Predrag Leka lp@lemurcake.com (2010) */
 
4
(function($) {
 
5
        $.countdown.regional['sr-SR'] = {
 
6
                labels: ['Godina', 'Meseci', 'Nedelja', 'Dana', 'Časova', 'Minuta', 'Sekundi'],
 
7
                labels1: ['Godina', 'Mesec', 'Nedelja', 'Dan', 'Čas', 'Minut', 'Sekunda'],
 
8
                labels2: ['Godine', 'Meseca', 'Nedelje', 'Dana', 'Časa', 'Minuta', 'Sekunde'],
 
9
                compactLabels: ['g', 'm', 'n', 'd'],
 
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-SR']);
 
15
})(jQuery);