o80-i18n is a small PHP tool to manage i18n (internationalization). By default it uses json
format for language files, you can define your own provider if you prefer another format.
See below how the usage is simple.
With Composer, you simply need to require o80/i18n
:
{
...
"require": {
"o80/i18n": "~0.2"
}
...
}
For instance, put your language files in 'lang' directory :
langs
en.json
en_US.json
fr.json
Example of language file en.json
:
{
"Generic" : {
"Welcome": "Welcome",
"Hello": "Hello %s!",
"submit": "submit"
}
}
Example of language file fr.json
:
{
"Generic" : {
"Welcome": "Bienvenue",
"Hello": "Bonjour %s !",
"submit": "valider"
}
}
$i18n = I18N::instance();
$i18n->setPath(__DIR__ . '/langs');
$i18n->setDefaultLang('en');
$i18n = new I18N();
$i18n->setPath(__DIR__ . '/langs');
$i18n->setDefaultLang('en');
<h1><?php echo __('Generic', 'Welcome'); ?></h1>
<!-- Result : <h1>Welcome</h1> -->
<h1><?php echo __('Generic', 'NotExistingText'); ?></h1>
<!-- Result : <h1>[missing key: Generic.NotExistingText]</h1> -->
<span><?php echo __f('Generic', 'Hello', 'Olivier'); ?></span>
<!-- Result : <span>Hello Olivier!</span> -->
<span><?php echo I18N::instance()->getLoadedLang(); ?></span>
<!-- Result : <span>en</span> -->
<h1><?php echo $i18n->get('Generic', 'Welcome'); ?></h1>
<!-- Result : <h1>Welcome</h1> -->
<h1><?php echo $i18n->get('Generic', 'NotExistingText'); ?></h1>
<!-- Result : <h1>[missing key: Generic.NotExistingText]</h1> -->
<span><?php echo $i18n->format('Generic', 'Hello', array('Olivier')); ?></span>
<!-- Result : <span>Hello Olivier!</span> -->
<span><?php echo $i18n->getLoadedLang(); ?></span>
<!-- Result : <span>en</span> -->
The system look into serverals variables to find the language file to load. Look below to understand it.
$_GET['lang']
if it's defined and if it matches to a language file;$_SESSION['lang']
if it's defined and if it matches to a language file;$_SERVER['HTTP_ACCEPT_LANGUAGE']
if it's defined and if it matches to a language file;
$defaultLang
you defined in the I18N instanceJust fork the project, make your changes, ask for pull request ;-).