[solved] how can i translate footer file ?

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
raykai
Posts: 20
Joined: Fri Jun 23, 2017 8:07 pm

[solved] how can i translate footer file ?

Post by raykai »

how can i translate my footer.txt file?

i have English and French ... i need my footer in both languages. What would be the best way to do this?
Last edited by raykai on Sat Feb 24, 2018 11:38 am, edited 1 time in total.
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: how can i translate footer file ?

Post by Klemen »

You can use PHP within your footer file. Something like this should work (make sure the file is saved as UTF-8!):

Code: Select all

<?php
if ($hesk_settings['language']=='English')
{
?>
<!-- START ENGLISH -->

<!-- END ENGLISH -->
<?php
}
else
{
?>
<!-- START OTHER -->

<!-- END OTHER -->
<?php
}
?>
If you have 3 or more languages, add "else if" statements:

Code: Select all

<?php
if ($hesk_settings['language']=='English')
{
?>
<!-- START ENGLISH -->

<!-- END ENGLISH -->
<?php
}
else if ($hesk_settings['language']=='Français')
{
?>
<!-- START FRENCH -->

<!-- END FRENCH -->
<?php
}
else
{
?>
<!-- START OTHER -->

<!-- END OTHER -->
<?php
}
?>
Your English HTML code goes between <!-- START ENGLISH --> and <!-- END ENGLISH -->
Alternative language goes between <!-- START OTHER --> and <!-- END OTHER -->
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
raykai
Posts: 20
Joined: Fri Jun 23, 2017 8:07 pm

Re: how can i translate footer file ?

Post by raykai »

thank you that did work:)
Post Reply