- Configuration of the gettext extension
- Utlity tool to generate .mo files
- Utility tool for extracting template strings
Using Composer and Packagist
composer require g4/translate
- Twig The i18n Extension http://twig.sensiolabs.org/doc/extensions/i18n.html
- PHP gettext extension http://fr.php.net/manual/en/function.gettext.php
- "twig/twig" https://packagist.org/packages/twig/twig
- "twig/extensions" https://packagist.org/packages/twig/extensions
Set locale early in the program before rendering any internationalized template.
use G4\Translate\Locale\Locale;
use G4\Translate\Locale\Options;
$options = new Options();
$options
->setDomain('myDomain')
->setLocale('en_US')
->setPath('/path/to/locale/files');
(new Locale($options))->set();
Convert .po files to .mo
./vendor/bin/translate --path /path/to/locale/files
where --path is path to your locale folder
Extract template strings
./vendor/bin/translate-extract -t /path/to/templates -w /path/to/tmp -g /path/to/locale/files -d myDomain
where:
- -t is path to folder that contains templates
- -w is path to temp folder
- -g is path to folder where myDomain.po file with strings will be generated
- -d domain name
$ make install
$ make test
(The MIT License) see LICENSE file for details...