Hi,
when i say localization i dont mean for the code to tellme that im in portugal... or something like that.
When i say localization is about the hability to create a "dictionary" for translation. CodeIgniter has this feature.
u can create something like:
$lang['title']['This is the title']; and this will be saved in a file like header_lang.php in the english directory.
and in the portuguese directory in the file header_lang.php
$lang['title']['Isto é o titulo'];
in the file that we want we cant put something like this:
$this->lang = RichAPI::Language('language=en');
echo $this->lang['title'];
and would output This is the title
of course here we can use the localization to detect country and select the language
ps: sorry for my english
there's something about the web...