Giter Site home page Giter Site logo

o80-i18n's Introduction

o80-i18n

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.

Build Status Latest Unstable Version License

How-to

Installation

With Composer, you simply need to require o80/i18n:

{
...
    "require": {
        "o80/i18n": "~0.2"
    }
...
}

Usage

Dictionaries

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"
    }
}

Configure the i18n instance

Way 1 - Singleton

$i18n = I18N::instance();
$i18n->setPath(__DIR__ . '/langs');
$i18n->setDefaultLang('en');

Way 2 - New instance

$i18n = new I18N();
$i18n->setPath(__DIR__ . '/langs');
$i18n->setDefaultLang('en');

Usage

Way 1 - Singleton

<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> -->

Way 2 - With the instance

<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> -->

How to set the language to use

The system look into serverals variables to find the language file to load. Look below to understand it.

  • Use $_GET['lang'] if it's defined and if it matches to a language file;
  • Use $_SESSION['lang'] if it's defined and if it matches to a language file;
  • Use $_SERVER['HTTP_ACCEPT_LANGUAGE'] if it's defined and if it matches to a language file;
    • It checks for all languages found in this variable
  • Use the $defaultLang you defined in the I18N instance
  • If no file found, don't do load anything

Contribution

Just fork the project, make your changes, ask for pull request ;-).

o80-i18n's People

Contributors

olivierperez avatar

Watchers

James Cloos avatar Ekin avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.