Bubu-framework's Langs

V1.0.1 2022-06-12 22:12 UTC

This package is auto-updated.

Last update: 2025-06-13 04:26:54 UTC


README

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