Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 364 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 364 Bytes

Translation library

Usage

<?php

use Bubu\Lang\Lang;

// Setup new translation
$trad = [
    'hello' => [
        Lang::FR => 'Bonjour',
        Lang::EN => 'Hello'
    ],

    'how' => [
        Lang::FR => 'Comment'
    ]
];

Lang::registre($trad);

// Change default lang
Lang::setLang(Lang::FR);

// Get translation
echo Lang::get('hello');