GetSimple Support Forum

Full Version: i18n showing word 'home' in English
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Just installed i18n and it works brilliantly.

Have noticed though that when testing language support that the word 'home' is in English when using
index?setlang=ro this is because the link is hard coded into the header. However does anyone know if there is a way to detect what language is loaded so I can make a switch statement and output the appropriate link.


Thanks
Finally decided to create a solution. Maybe this will help others who experience the same problem.

PHP
-----

if(isset($_GET['setlang'])){
$language = htmlentities($_GET['setlang']);
$_SESSION["lang"] = $language;
}

switch($_SESSION["lang"]){
                       case 'en':
$home = "Home";
break;
case 'po':
$home = "Dom";
break;
case 'ro':
$home = "Acasă";
break;
}
global variable $language is intended for this purpose:

Code:
if ($language == 'en') { echo 'Home'; }


(2016-12-15, 22:30:25)cobber Wrote: [ -> ]this is because the link is hard coded into the header.


Hmmm ... Perhaps you can use your page menu title for that purpose? So you don't need to check current language, something like:

Code:
echo $data_index->menu;