| 12345678910 |
- <?php
- // this file contains the Italian weekday names, month names and suffixes.
- $days = array ('Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato');
- $daysabbr = array();
- $months = array ('Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio',
- 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre');
- $suffixes = array ('','','','','','','','','','','','','','','','','','','','','','',
- '','','','','','','','','');
- ?>
|