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?
[solved] how can i translate footer file ?
Moderator: mkoch227
[solved] how can i translate footer file ?
Last edited by raykai on Sat Feb 24, 2018 11:38 am, edited 1 time in total.
Re: how can i translate footer file ?
You can use PHP within your footer file. Something like this should work (make sure the file is saved as UTF-8!):
If you have 3 or more languages, add "else if" statements:
Your English HTML code goes between <!-- START ENGLISH --> and <!-- END ENGLISH -->
Alternative language goes between <!-- START OTHER --> and <!-- END OTHER -->
Code: Select all
<?php
if ($hesk_settings['language']=='English')
{
?>
<!-- START ENGLISH -->
<!-- END ENGLISH -->
<?php
}
else
{
?>
<!-- START OTHER -->
<!-- END OTHER -->
<?php
}
?>
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
}
?>
Alternative language goes between <!-- START OTHER --> and <!-- END OTHER -->
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
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


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
Re: how can i translate footer file ?
thank you that did work:)