hello
in the file
Dolphin-v.7.2.1\modules\boonex\groups\install\langs\en.php
value :
148 '_bx_groups_page_title_browse_by_author' => '\'s groups',
is good in english but in french this is inverted and others language same spanish, italian, Portuguese...
example :
english : Bob's groups
french : Les groupes de Bob
this value is used in
Dolphin-v.7.2.1\modules\boonex\groups\classes\BxGroupsSearchResult.php
111 $this->aCurrent['title'] = ucfirst(strtolower($sValue)) . _t('_bx_groups_page_title_browse_by_author');
line : 111
is possible change the value by
148 '_bx_groups_page_title_browse_by_author' => '{0}\'s groups',
where ucfirst(strtolower($sValue)) = {0}
if $sValue is the username
I think make the same change for
Dolphin-v.7.2.1\modules\boonex\groups\install\langs\en.php
149 '_bx_groups_page_title_browse_by_author_joined_groups' => '\'s joined groups',
149 '_bx_groups_page_title_browse_by_author_joined_groups' => '{0}\'s joined groups',
and
Dolphin-v.7.2.1\modules\boonex\groups\classes\BxGroupsSearchResult.php
156 $this->aCurrent['title'] = ucfirst(strtolower($sValue)) . _t('_bx_groups_page_title_browse_by_author_joined_groups');
regards