Public profile multilingual ?

Permalink
Hello I use the Multilingual site and has four languages ​​on my side. Is it possible to make public profile to also run Multilingual site?

 
grosik replied on at Permalink Reply
grosik
I headed the same thing in my recent project. I've created block areas and stacks which were loaded by short snippet below:

//getting language as country code -> en_GB // de_DE // pl_PL and so on
$lh = Loader::helper('section', 'multilingual');
$lang = $lh->getLanguage();
//loading area by language
      $a = new GlobalArea('area1-'.$lang);
      $a->display($c);