WordPress/day-month-trans.php
mikelittle 0bc861330d b2config.php replaced with wp-config.sample.php
wp-settings.php is a new fie which sets up the old globals from b2config
mysmilies.php is a new file with custom smilies  (Ex-content of b2config)
day-month-trans.php file with Dayname and monthname transalations (Ex-content of b2config)


git-svn-id: http://svn.automattic.com/wordpress/trunk@215 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2003-06-12 22:44:37 +00:00

25 lines
595 B
PHP

<?php
// 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 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';
?>