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

1.1       foxr        1: /* http://keith-wood.name/countdown.html
                      2:    French initialisation for the jQuery countdown extension
                      3:    Written by Keith Wood (kbwood{at}iinet.com.au) Jan 2008. */
                      4: (function($) {
                      5: 	$.countdown.regional['fr'] = {
                      6: 		labels: ['Années', 'Mois', 'Semaines', 'Jours', 'Heures', 'Minutes', 'Secondes'],
                      7: 		labels1: ['Année', 'Mois', 'Semaine', 'Jour', 'Heure', 'Minute', 'Seconde'],
                      8: 		compactLabels: ['a', 'm', 's', 'j'],
1.2     ! raeburn     9: 		whichLabels: function(amount) {
        !            10:             return (amount > 1 ? 0 : 1);
        !            11:         },
        !            12: 		digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
1.1       foxr       13: 		timeSeparator: ':', isRTL: false};
                     14: 	$.countdown.setDefaults($.countdown.regional['fr']);
                     15: })(jQuery);

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