Skip to content

bubu-framework/lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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');