Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 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'], |
||
| 9 | whichLabels: function(amount) { |
||
| 10 | return (amount > 1 ? 0 : 1); |
||
| 11 | }, |
||
| 12 | digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], |
||
| 13 | timeSeparator: ':', isRTL: false}; |
||
| 14 | $.countdown.setDefaults($.countdown.regional['fr']); |
||
| 15 | })(jQuery); |