up vote 11 down vote favorite
10
share [g+] share [fb]

I'm researching hours and hours, but I could not find any clear, efficient way to make it :/

I have a codeigniter base website in English and I have to add a Polish language now. What is the best way to make my site in 2 language depending visitor selection?

is there any way to create array files for each language and call them in view files depends on Session from lang selection? I don't wanna use database.

Appreciate helps! I'm running out of deadline :/ thanks!!

link|improve this question

64% accept rate
all the answers posted here are great but using them you lose the cashing option of your pages,since its one controller that will be cached and it will be in the last language you set.is there a solution to this other then using a different controller for every language. – user266524 Feb 4 '10 at 19:57
feedback

7 Answers

up vote 18 down vote accepted

Have you seen CodeIgniter's Language library?

The Language Class provides functions to retrieve language files and lines of text for purposes of internationalization.

In your CodeIgniter system folder you'll find one called language containing sets of language files. You can create your own language files as needed in order to display error and other messages in other languages.

Language files are typically stored in your system/language directory. Alternately you can create a folder called language inside your application folder and store them there. CodeIgniter will look first in your system/application/language directory. If the directory does not exist or the specified language is not located there CI will instead look in your global system/language folder.

In your case...

  • you need to create a polish_lang.php and english_lang.php inside system/application/language/polish
  • then create your keys inside that file (e.g. $lang['hello'] = "Witaj";
  • then load it in your controller like $this->lang->load('polish_lang', 'polish');
  • then fetch the line like $this->lang->line('hello'); Just store the return value of this function in a variable so you can use it in your view.

Repeat the steps for the english language and all other languages you need.

link|improve this answer
thanks for quick answer, yes I have seen this. but it is not clear actually :/ about how to make my need, where to create lang files, what format, what kind of structure, how to call, etc... I'm pretty new at codeigniter. thats why I was looking for clear tutorial or sth. :/ – designer-trying-coding Aug 25 '09 at 13:58
Have you read it thoroughly? It does what you need, really. – Randell Aug 25 '09 at 14:05
I added a pseudocode for you. I hope it helps. – Randell Aug 25 '09 at 14:11
1  
heyooo it is great, working well :D thanks a lot for help! lifesaver you are! :) thanks – designer-trying-coding Aug 26 '09 at 7:45
feedback

Also to add the language to the session, I would define some constants for each language, then make sure you have the session library autoloaded in config/autoload.php, or you load it whenever you need it. Add the users desired language to the session:

$this->session->set_userdata('language', ENGLISH);

Then you can grab it anytime like this:

$language = $this->session->userdata('language');
link|improve this answer
yes this was my another issue. you already helped me out :D great thganks! I was also thinking to use cookie to remember visitor's lang selection. – designer-trying-coding Aug 26 '09 at 7:45
where should I define these sessions? I think it is not good to define these at controllers for each page. must be a way that I define at a global file and it effects all site. thanks!! – designer-trying-coding Aug 26 '09 at 7:56
Somehow, there's a better way to do this. But that's an entirely new question. But this can be done as well just to get you started. – Randell Aug 26 '09 at 8:07
feedback

How would you manage to get data from a database with different languages, lets say, English and Spanish. Would you make differet tables for each language, or would you create more fields within the existing tables, Just want to hear an opinion.. thanks

link|improve this answer
feedback

In the controller add following lines when you make the cunstructor

i.e, after

parent::Controller();

add below lines

    $this->load->helper('lang_translate');
    $this->lang->load('nl_site', 'nl'); // ('filename', 'directory')

create helper file lang_translate_helper.php with following function and put it in directory system\application\helpers

function label($label, $obj)
{
    $return = $obj->lang->line($label);
    if($return)
        echo $return;
    else
        echo $label;
}

for each of the language, create a directory with language abbrevation like en, nl, fr, etc., under system\application\languages

create language file in above (respective) directory which will contain $lang array holding pairs label=>language_value as given below

nl_site_lang.php

$lang['welcome'] = 'Welkom';
$lang['hello word'] = 'worde Witaj';

en_site_lang.php

$lang['welcome'] = 'Welcome';
$lang['hello word'] = 'Hello Word';

you can store multiple files for same language with differently as per the requirement e.g, if you want separate language file for managing backend (administrator section) you can use it in controller as $this->lang->load('nl_admin', 'nl');

nl_admin_lang.php

$lang['welcome'] = 'Welkom';
$lang['hello word'] = 'worde Witaj';

and finally to print the label in desired language, access labels as below in view

label('welcome', $this);

OR

label('hello word', $this);

note the space in hello & word you can use it like this way as well :)

whene there is no lable defined in the language file, it will simply print it what you passed to the function label.

link|improve this answer
feedback

When managing the actual files, things can get out of sync pretty easily unless you're really vigilant. So we've launched a (beta) free service called String which allows you to keep track of your language files easily, and collaborate with translators.

You can either import existing language files (in PHP array, PHP Define, ini, po or .strings formats) or create your own sections from scratch and add content directly through the system.

String is totally free so please check it out and tell us what you think.

It's actually built on Codeigniter too! Check out the beta at http://mygengo.com/string

link|improve this answer
feedback

you can make a function like this

function translateTo($language, $word) {
define('defaultLang','english');
if (isset($lang[$language][$word]) == FALSE)
return $lang[$language][$word];
else
return $lang[defaultLang][$word];
}

link|improve this answer
feedback

I second Randell's answer.

However, one could always integrate a GeoIP such as http://www.maxmind.com/app/php or http://www.ipinfodb.com/. Then you can save the results with the codeigniter session class.

If you want to use the ipinfodb.com api You can add the ip2locationlite.class.php file to your codeigniter application library folder and then create a model function to do whatever geoip logic you need for your application, such as:

function geolocate()
{
    $ipinfodb = new ipinfodb;
    $ipinfodb->setKey('API KEY');

    //Get errors and locations
    $locations = $ipinfodb->getGeoLocation($this->input->ip_address());
    $errors = $ipinfodb->getError();

   //Set geolocation cookie
   if(empty($errors))
   {
       foreach ($locations as $field => $val):
            if($field === 'CountryCode')
            {
                $place = $val;
            }
       endforeach;
   }
   return $place;
}
link|improve this answer
1  
Detecting the language based on the IP does not work very well. Think about VPNs, travellers, emigrants or simply countries with multiple languages like Canada or China. It is better to use the browsers language. – PiTheNumber Nov 24 '11 at 12:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.