USER's friends (how to remove " 's "?)

Hey I have minor problem. I translated website to my language, and I can't find where to edit one thing. When you are viewing someones friends it says:

USER's friends.

I would like to remove the 's because that makes no sence in my language ;) Any ideas where to look?

Quote · 18 Jan 2009

Try searching for the language string '_USER' in your Dolphin Admin, Language Settings.  See if you can find a match to '_USER's friends' and change to 'USER friends'.

Quote · 18 Jan 2009

Hi, you need to edit this file: viewFriends.php

 

find this code:

$_page['header'] = getNickName( $iID)."'s "._t("_Friends");

$_page['header_text'] = getNickName( $iID)."'s "._t("_Friends");

 

change to:

$_page['header'] = getNickName( $iID)." "._t("_Friends");

$_page['header_text'] = getNickName( $iID)." "._t("_Friends");

---------------------------------------------------------------------------

 

 

or they can be swapped (Friends of NickName)

$_page['header'] = _t("_Friends")." of ".getNickName( $iID);

$_page['header_text'] = _t("_Friends")." of ".getNickName( $iID);

 

remember to translate of

Quote · 19 Jan 2009
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.