I installed Groupjive & plugins. My website is multilangual: EN,ES,FR
I added some categories names in the english language file (components/com_comprofiler/plugin/language/cbgroupjiveen-gb/language.php) like this:
'GROUPJIVE_CATEGORY_ACTIVITIES' => 'Activities',
'GROUPJIVE_CATEGORY_SERVICES' => 'Services',
'GROUPJIVE_CATEGORY_JOB' => 'Jobs',
'GROUPJIVE_CATEGORY_PRODUCTS' => 'Products',
But it doesn't work, in frontend I see GROUPJIVE_CATEGORY_ACTIVITIES instead of Activities
Hi, I am only a user.
If you would look into the structure of language.php, you would see a structure like:
'Description' => 'Beschreibung',
You will see in english both sides are the same. So for your special language file you have to let the first part of the line, and after to translate to whatever. And at the end, you set a Comma.
so you need first the english words and then the translation with the same rules.
It doesn't work.
I change it like this in english language:
'Activities' => 'Activities',
And like this in french language
'Activities' => 'Activités',
Activities is displayed in french language.
Obviously, categories can't be multilingual! This is sad.