<em>@srufiange 106732 wrote:</em><blockquote>Hello !
I am using JA Helio on my web site with Joomla 1.5.7. A problem I have is that I cannot set a slogan in more than 1 language. I have joomfish installed. I tried to create a file in the languages folders named fr-FR.tpl_ja_helio.ini with a different slogan. However, the en-GB slogan (the one set within the template parameters) is always set for all languages.
How can I have two different “slogan” depending on which language is used for the site?
Thanks!</blockquote>
You can do it following way below :
Open index.php file in templates/ja_helio folder, find following code section at about line 107 :
$sloganText = (trim($tmpTools->getParam('sloganText'))=='') ? JText::_('SITE SLOGAN') : $tmpTools->getParam('sloganText');
change to :
$sloganText = JText::_('SITE_ SLOGAN') ;
You must define SITE_SLOGAN in all language file .