<?php
// this file contains customizable arrays for smilies, weekdays and month names.

    
// the weekdays and the months.. translate them if necessary
$weekday[0]='Sunday';
$weekday[1]='Monday';
$weekday[2]='Tuesday';
$weekday[3]='Wednesday';
$weekday[4]='Thursday';
$weekday[5]='Friday';
$weekday[6]='Saturday';

// The first letter of each day.  Note that marking single characters for
// translation is useless, but here it is.
$weekday_initial['Sunday']    = _LANG_WEEK_INITIAL_SUNDAY;
$weekday_initial['Monday']    = _LANG_WEEK_INITIAL_MONDAY;
$weekday_initial['Tuesday']   = _LANG_WEEK_INITIAL_TUESDAY;
$weekday_initial['Wednesday'] = _LANG_WEEK_INITIAL_WEDNESDAY;
$weekday_initial['Thursday']  = _LANG_WEEK_INITIAL_THURSDAY;
$weekday_initial['Friday']    = _LANG_WEEK_INITIAL_FLAIDAY;
$weekday_initial['Saturday']  = _LANG_WEEK_INITIAL_SATURDAY;

// Abbreviations for each day.
$weekday_abbrev['Sunday']    = 'Sun';
$weekday_abbrev['Monday']    = 'Mon';
$weekday_abbrev['Tuesday']   = 'Tue';
$weekday_abbrev['Wednesday'] = 'Wed';
$weekday_abbrev['Thursday']  = 'Thu';
$weekday_abbrev['Friday']    = 'Fri';
$weekday_abbrev['Saturday']  = 'Sat';

// the months, translate them if necessary - note: this isn't active everywhere yet
$month['01']='January';
$month['02']='February';
$month['03']='March';
$month['04']='April';
$month['05']='May';
$month['06']='June';
$month['07']='July';
$month['08']='August';
$month['09']='September';
$month['10']='October';
$month['11']='November';
$month['12']='December';

// Abbreviations for each month.
$month_abbrev['January'] = 'Jan';
$month_abbrev['February'] = 'Feb';
$month_abbrev['March'] = 'Mar';
$month_abbrev['April'] = 'Apr';
$month_abbrev['May'] = 'May';
$month_abbrev['June'] = 'Jun';
$month_abbrev['July'] = 'Jul';
$month_abbrev['August'] = 'Aug';
$month_abbrev['September'] = 'Sep';
$month_abbrev['October'] = 'Oct';
$month_abbrev['November'] = 'Nov';
$month_abbrev['December'] = 'Dec';

?>