pyrsmk/translator

Simple translation tool for CLI/HTTP environments

2.0.4 2020-06-21 14:42 UTC

This package is auto-updated.

Last update: 2024-04-21 22:39:17 UTC


README

Translator is a small I18N/L10N library, based on Chernozem (we advise you to read its documentation). Here's the available options through Chernozem :

  • client_locales : the client's locales
  • delimiters : set the start/end delimiter for string replacement (default : ['start' => '{', 'end' => '}'])
  • translations : the loaded translations

Install

Pick up the source or install it with Composer :

composer require pyrsmk/translator

Basics

Translator is available for a website (Translator\Http) and a CLI application (Translator\Cli). For the next examples, we'll use Translator\Http.

First, we need to define the default locale at instantiation. This locale will be used when no client's locale is supported by your application.

$translator = new Translator\Http('en_EN');

Translator will find what locale to use by comparing the client's locales and the defined available locales (based on the loaded translations)

If needed, you can force Translator to use a specific locale :

$translator->setLocale('fr');

And you can retrieve what locale Translator will use for its translations with :

$translator->getLocale();

Load your translations files

Translator doesn't implement adapters to load your files, it just expect the name of the locale and the translation strings. Then you can use any library you want to load your files or do it by hand. Here's how to do it with JSON :

/* fr_FR.json */
{
	"cat": "chat",
	"dog": "chien",
	"turtle": "tortue"
}
// Load the JSON file
$translator->load('fr_FR', json_decode(file_get_contents('fr_FR.json')));

Translate!

Simply :

// Prints 'chien'
echo $translator->translate('dog');

Translator can also replace strings in your translations :

/* fr_FR.json */
{
	"hello": "Bonjour, M. {name}!"
}
// Prints 'Bonjour, M. Philippe!'
echo $translator->translate('hello', [
	'name' => 'Philippe'
]);

Normalize a locale

If needed, you can normalize any locale you want with :

// Prints 'sl_IT'
echo $translator->normalizeLocale('sl_Latn-IT_nedis');

License

This library is released under the MIT license.