dev-master
9999999-devsimple translations
MIT
The Requires
The Development Requires
by Novikov Roman
v0.1.0
0.1.0.0simple translations
MIT
The Requires
The Development Requires
by Novikov Roman
Wallogit.com
2017 © Pedro Peláez
simple translations
<?php
require_once __DIR__ . '/vendor/autoload.php'
$locale = 'ru';
// throw exceptions [optional] default: false
$strict = true;
$trans = new Trans([path-to-dir-dictionaries], $locale, $strict);
print_r($trans->get('Hello, World!'));
/**
* Exception: not found dictionary
* $trans->setLocale('de');
* $trans->get('Hello, World!')
*/
// silent mode
$locale = 'de';
$trans = new Trans([path-to-dir-dictionaries], $locale);
// output: Hello, World!
print_r($trans->get('Hello, World!'));
simple translations
MIT
simple translations
MIT