| 12345678910 |
- <?php
- // this file contains the English weekday names, month names and suffixes.
- $days = array ('Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi');
- $daysabbr = array();
- $months = array ('janvier','février','mars','avril','mai','juin','juillet','août',
- 'septembre','octobre','novembre','décembre');
- $suffixes = array ('er','','','','','','','','','','','','','','','','','','','','','',
- '','','','','','','','','');
- ?>
|