Re: horizontal menu language selection
Sorry Max, but that’s not right.
Move to your SC install dir and open this fiile … scriptcasewwwrootscriptcaseappYOUR_APP_liblanglang_config_region.php.
Depending on your region and language settings you can change the text of the language select box.
In my case e.g.:
change
<?php
$this->Nm_lang_conf_region = array();
$this->Nm_lang_conf_region[‘de;de_de’] = “German (Germany)”;
$this->Nm_lang_conf_region[‘en_us;en_gb’] = “English (United Kingdom)”;
ksort($this->Nm_lang_conf_region);
?>
to
<?php
$this->Nm_lang_conf_region = array();
$this->Nm_lang_conf_region[‘de;de_de’] = “Deutsch”;
$this->Nm_lang_conf_region[‘en_us;en_gb’] = “English”;
ksort($this->Nm_lang_conf_region);
?>
Be aware that you have do this for every project you start.
Stefan