Hi Alexander,
Do you mean that you want to have some title text like: Call Us, Mail Us, Fax in Spanish?
You can try with my workaround here:
– Go to the file: /root/templates/ja_directory/html/com_contact/contact/default_address_top.php
– Look for these texts in <strong> tag:
<strong>Call Us</strong>
...
<strong>Mail Us</strong>
...
<strong>Fax</strong>
and change it to:
<strong><?php echo JText::_('CONTACT_CALL_US'); ?></strong>
....
<strong><?php echo JText::_('CONTACT_MAIL_US'); ?></strong>
...
<strong><?php echo JText::_('CONTACT_FAX'); ?></strong>
It looks like this: http://prntscr.com/86p1o5
– Then open the language file of template in language folder of Spanish: root/language/es-ES/es-ES.tpl_ja_directory.ini and add translation text for above text fields:
CONTACT_CALL_US = "your desired text here"
CONTACT_MAIL_US = "your desired text here"
CONTACT_FAX = "your desired text here"
Hope this helps.