hi,
i would like to get all translations from a specific namespace. for example:
_t('LeftAndMain.HELLO','Site content',PR_HIGH,'Menu title');
_t('LeftAndMain.FILESIMAGES','Files & Images',PR_HIGH);
_t('LeftAndMain.NEWSLETTERS','Newsletters');
my getLocale('LeftAndMain') function would return:
array(
'HELLO' => 'Site content'
'FILESIMAGES' => 'Files & Images',
'NEWSLETTERS' => 'Newsletters',
);
something like that…
how can i access the $lang variable in my Controller?
thanks
Joern