Hi joomleb, Im replying here as you requested in this topic , I don't have any problem with language, I have enabled native multilanguage of joomla:
- Create content language for each language installed (in my case spanish - english)
- Filter Language Plugin enabled
- In Seblod config: JText enabled
And that is all, for me works fine. You need define your language strings who you want use in your fields and labels, by default seblood inserts "CCK_" at the start of the naes you put in your fields.
Example: If you write "LABEL" you need specify the translation of that word in this way:
CCK_LABEL="A name for your label".
I add some extra strings too for use in templating and I call in my php in this way:
<?php echo JText::_('MY_CUSTOM_STRING') ?>
I'm using a language file from my joomla template, but you can use the one from seblod. I tried make a new file only for my new strings but don't know how link this file in my template.