Great add-on!
There are a couple French phrases in the templates and code that English speakers might want to translate.
I found this site useful:
http://www.freetranslation.com/
Also, if you want the date format on the shout timestamps to read Month/Day instead of Day/Month, then search the shout code added to shoutbox.php and root/index.php for:
Code:
$date = date("Y")."-".substr($date,4,2)."-".substr($date,1,2)." ".substr($date,7,2).":".substr($date,10,2);
$date = date("[d/m|H:i]",strtotime($date)+(($bbuserinfo['timezoneoffset']+5)*3600));
Change to:
Code:
$date = date("Y")."-".substr($date,1,2)."-".substr($date,4,2)." ".substr($date,7,2).":".substr($date,10,2);
$date = date("[m/d|H:i]",strtotime($date)+(($bbuserinfo['timezoneoffset']+5)*3600));
Change any other "d/m" to "m/d" also.
:-)
Thanks again to p0s3id0n - and Erwin for add-ons!
Scott