| 
<?php
 $GLOBALS["datelocale"]["string"]["January"]="January";
 $GLOBALS["datelocale"]["string"]["February"]="February";
 $GLOBALS["datelocale"]["string"]["March"]="March";
 $GLOBALS["datelocale"]["string"]["April"]="April";
 $GLOBALS["datelocale"]["string"]["May"]="May";
 $GLOBALS["datelocale"]["string"]["June"]="June";
 $GLOBALS["datelocale"]["string"]["July"]="July";
 $GLOBALS["datelocale"]["string"]["August"]="August";
 $GLOBALS["datelocale"]["string"]["September"]="September";
 $GLOBALS["datelocale"]["string"]["October"]="October";
 $GLOBALS["datelocale"]["string"]["November"]="November";
 $GLOBALS["datelocale"]["string"]["December"]="December";
 $GLOBALS["datelocale"]["string"]["today"]="today";
 $GLOBALS["datelocale"]["string"]["yesterday"]="yesterday";
 $GLOBALS["datelocale"]["string"]["Invalid-date"]="It was not specified a valid date.";
 $GLOBALS["datelocale"]["strippedstring"]["Date-format"]=" , ";
 $GLOBALS["datelocale"]["strippedstring"]["Timestamp-format"]=" ,  ::";
 $GLOBALS["datelocale"]["markpositions"]["Date-format"]=array(0,1,3);
 $GLOBALS["datelocale"]["markpositions"]["Timestamp-format"]=array(0,1,3,4,5,6);
 $GLOBALS["datelocale"]["marknames"]["Date-format"]=array("MONTH","DAY","YEAR");
 $GLOBALS["datelocale"]["marknames"]["Timestamp-format"]=array("MONTH","DAY","YEAR","HOUR","MINUTE","SECOND");
 
 ?>
 |