Translation

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
Rhialto
Posts: 10
Joined: Thu May 03, 2007 2:53 am

Translation

Post by Rhialto »

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 :

Code: Select all

echo '<p>We have '.$total.' entries displayed on '.$pages.' pages.<br />';
I don't like the fact it's plurial even for 1 entry and/or page. So I replaced it with

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 />';
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?
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Hi,

there have been some translations, but don't know if any are for v1.5. I plan to create a language file for the next version.

If you translate it feel free to post it to GBook add-ons forum:
viewforum.php?f=3
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Rhialto
Posts: 10
Joined: Thu May 03, 2007 2:53 am

Post by Rhialto »

Klemen Stirn wrote:Hi,

I plan to create a language file for the next version.
Have you started working on the next version already?
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

No, and don't ask me when as I have no idea :wink:
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Rhialto
Posts: 10
Joined: Thu May 03, 2007 2:53 am

Post by Rhialto »

Klemen Stirn wrote:No, and don't ask me when as I have no idea :wink:
Just found out Frankma translation with language files. Do you plan to start from his work or you will do it your way? I just wonder if I should start working on this or wait. But with your answer I think we would all wait way too much so I better go on my own.

Thanks.
Post Reply