Translation Bug?

in the profiles.php in the admin area, there is an overview section on top of the page. It works well for me in english but when I change language to german it doesn't show anything. Only the three links, nothing else, then the box is closes and the members box starts.

Any idea?

 

Quote · 6 Nov 2012

Most probably this is a problem of custom translation.

Make sure that your custom Language is compatible with Dolphin 7.1

Rules → http://www.boonex.com/terms
Quote · 6 Nov 2012

I just run in to the same issue AND fixed it.

The issue starts on line 82 of search.php

        $aLinks = array(
            'simple' => array('href' => $sUrl . '?search_mode=sim', 'title' => _t('_search_tab_simple'), 'onclick' => '', 'active' => $bSimAct),
            'advanced' => array('href' => $sUrl . '?search_mode=adv', 'title' => _t('_search_tab_Adv'), 'onclick' => '', 'active' => $bAdvAct),
            'quick' => array('href' => $sUrl . '?search_mode=quick', 'title' => _t('_search_tab_quick'), 'onclick' => '', 'active' => $bQuiAct),
        );

 

The solution is the following:

 

        $aLinks = array(
            _t('_search_tab_simple') => array('href' => $sUrl . '?search_mode=sim', 'title' => _t('_search_tab_simple'), 'onclick' => '', 'active' => $bSimAct),
            _t('_search_tab_Adv') => array('href' => $sUrl . '?search_mode=adv', 'title' => _t('_search_tab_Adv'), 'onclick' => '', 'active' => $bAdvAct),
            _t('_search_tab_quick') => array('href' => $sUrl . '?search_mode=quick', 'title' => _t('_search_tab_quick'), 'onclick' => '', 'active' => $bQuiAct),
        );

Dedicated servers for as little as $32 (28 euro) - See http://denre.com for more information
Quote · 7 Mar 2013

was this soluition already added to dolphin default installation ? Its apparently a bug and should be included in default installation !!!!

Quote · 18 Mar 2013

Denre, thank you!

freakpower, yes it is fixed now in the default installation.

Quote · 18 Mar 2013
 
 
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.