Page 1 of 1

[solved] how can i translate footer file ?

Posted: Fri Feb 16, 2018 2:26 am
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?

Re: how can i translate footer file ?

Posted: Wed Feb 21, 2018 12:34 pm
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 -->

Re: how can i translate footer file ?

Posted: Sat Feb 24, 2018 11:37 am
by raykai
thank you that did work:)