| 12345678910 |
- <?php
- // this file contains the Swedish weekday names, month names and suffixes.
- $days = array ('söndag','måndag', 'tisdag', 'onsdag', 'torsdag', 'fredag', 'lördag');
- $daysabbr = array();
- $months = array ('januari', 'februari', 'mars', 'april', 'maj', 'juni','juli',
- 'augusti', 'september', 'oktober', 'november', 'december');
- $suffixes = array ('','','','','','','','','','','','','','','','','','','','','','',
- '','','','','','','','','');
- ?>
|