Translation
Posted: Thu May 03, 2007 3:04 am
Was looking to collect comments on my website and this script looks to be a good candidate. I'm not a PHP guru but I guess I'm able to add my little touch to it and with tries and error I should get what I'm looking for. If I'm lost modifying it I guess I can ask some help here?
Like on this line :
I don't like the fact it's plurial even for 1 entry and/or page. So I replaced it with
This can be added in next update!
I found no translation yet so I plan to do a french one and also add the french dirty words list. Would this be the 1st translation made?
Like on this line :
Code: Select all
echo '<p>We have '.$total.' entries displayed on '.$pages.' pages.<br />';
Code: Select all
echo '<p>We have '.$total. ' '; if ($total <= 1) { echo 'entry'; } else { echo 'entries'; } echo ' displayed on '.$pages.' page'; if ($pages > 1) { echo 's'; } echo '.<br />';
I found no translation yet so I plan to do a french one and also add the french dirty words list. Would this be the 1st translation made?