I'm using gtranslate next to Joomfish. I want to make a small change to gtranslate to show the correct text in the dropdown box for each language.
On line 167 and 218:
echo '<option value="">Select your language</option>';
I would like it to read from an ini file per language.
So I modified these lines to
echo '<option value="">'.JText::_('Langsel').'</option>';
but it is not using JText and thus displays Langsel.
Does anybody know a solution to this?