search people buttons simple,adv,quick translation

Guys can somebody have a look if u can find a string wich translate those three buttons in people search - simple, adv, quick as I dont have strings for those files at my language file ....

Quote · 17 Feb 2010

I hope you aren't looking through the actual file, because you are suppose to use the administration panel's language system to do this kind of stuff.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 17 Feb 2010

I dont know whhat exactly you mean - I search for button in main language file langs/ en.php and translated cz.php as there are also all other buttons texts. DO you mean this three buttons are translated by different way ?

Quote · 17 Feb 2010

You are not suppose to edit the file directly, because that's what causes world disasters. You must manage languages through administration, settings, languages.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 17 Feb 2010

thats what I did - I exported en-.php in administration, translated and than imported in administration/langzuage settings - as this is written in boonex language tutorial. So you think tutorial is bad and I should use different way for translation ?

Quote · 17 Feb 2010

an idea where are those 3 button text strings located at ?

Quote · 18 Feb 2010

Hi !

Have you managed to resolve this? I woudl be interested to know too...


Many thanks.

C.

Quote · 6 May 2010

Team!

Would anyone be so kind and know the answer... i can't track it down... really stuck!:(

Thanks a milion in advance.

C.

P.S. Greetings from London

Quote · 6 May 2010

You have to search for the language key under settings>languages settings.  You have to first figure out which keys you need.  Look in your menu builder under builders>navigation menu.  The language key for Keyword Search is _Keyword_Search.  So you would search for this key in languages by typing _Keyword_Search in the empty field.  Then simply check the box to the right.  When the result comes up, you will have two fields.  English and whatever other languages you have.  You can specify everything in there.  Just remember to recompile all of the languages when you are finished.

Quote · 6 May 2010

Open file search.php and find this lines

$sLinks = BxDolPageView::getBlockCaptionMenu(mktime(), array(
'simple' => array('href' => $_SERVER['PHP_SELF'] . '?search_mode=sim', 'title' => _t('Simple'), 'onclick' => '', 'active' => $bSimAct),
'advanced' => array('href' => $_SERVER['PHP_SELF'] . '?search_mode=adv', 'title' => _t('Adv'), 'onclick' => '', 'active' => $bAdvAct),
'quick' => array('href' => $_SERVER['PHP_SELF'] . '?search_mode=quick', 'title' => _t('Quick'), 'onclick' => '', 'active' => $bQuiAct),
));


change to

$sLinks = BxDolPageView::getBlockCaptionMenu(mktime(), array(
'simple' => array('href' => $_SERVER['PHP_SELF'] . '?search_mode=sim', 'title' => _t('_Simple'), 'onclick' => '', 'active' => $bSimAct),
'advanced' => array('href' => $_SERVER['PHP_SELF'] . '?search_mode=adv', 'title' => _t('_Adv'), 'onclick' => '', 'active' => $bAdvAct),
'quick' => array('href' => $_SERVER['PHP_SELF'] . '?search_mode=quick', 'title' => _t('_Quick'), 'onclick' => '', 'active' => $bQuiAct),
));


Add new language key _Adv and _Quick

Quote · 6 May 2010
 
 
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.