| Last Updated | | Ratings | | Unique User Downloads | | Download Rankings |
2025-08-27 (5 months ago)  | | Not yet rated by the users | | Total: Not yet counted | | Not yet ranked |
|
| Description | | Author |
This package can get localized texts in PHP, JavaScript and Python.
It provides a PHP class that can return the text translation for an application language in one of several supported languages.
The text translations are provided in the form of arrays for each of the supported languages.
The class can also get the plural of a given text using a callback function.
Simple, but versatile, class for localization (l10n) for PHP, JavaScript, Python Innovation Award
 August 2025
Number 2 |
Localization is the process of adapting an application to work with different country languages that the users understand.
This package provides a class that allows setting and retrieving texts to adapt a PHP application to different country languages from text translations passed as arrays.
It also supports getting the plural of a given text when it is provides a pluralization callback function.
The package also provides JavaScript and Python versions of the PHP class.
Manuel Lemos |
| |
 |
|
Innovation award
 Nominee: 10x
Winner: 2x |
|
Instructions
Example
<?php
// php test.php | out-file -filepath out.txt -encoding utf8
// or
// php test.php > out.txt
require(dirname(__FILE__) . '/../../src/php/Localizer.php');
$l10n = new Localizer();
// setup supported locales
$l10n->locale('en', []);
$l10n->locale('el', [
'I want to say {0}' => '???? ?? ?? {0}',
'hello to you' => '???? ?? ????',
'hello to all' => '???? ?? ?????',
'@' => [
// specific context
'ctx1' => [
'hello to you' => '???? ?? ???? ????',
],
],
]);
// set current locale
$l10n->locale('el', true);
// UTF8 BOM
define('UTF8_BOM', chr(0xEF).chr(0xBB).chr(0xBF));
echo UTF8_BOM;
echo 'Localizer::VERSION = ' . Localizer::VERSION . PHP_EOL;
echo $l10n->locale() . PHP_EOL;
echo $l10n->l('hello to you') . PHP_EOL;
echo $l10n->l('hello to all') . PHP_EOL;
echo $l10n->l('hello to you', '???? ?? ????') . PHP_EOL;
echo $l10n->l('hello to all', '???? ?? ?????') . PHP_EOL;
echo $l10n->l('I want to say {0}', [$l10n->l('hello to you')]) . PHP_EOL;
echo $l10n->l('I want to say {0}', [$l10n->l('hello to all')]) . PHP_EOL;
echo $l10n->ln(1, 'hello to you', 'hello to all') . PHP_EOL;
echo $l10n->ln(2, 'hello to you', 'hello to all') . PHP_EOL;
echo $l10n->l('hello to you', '???? ?? ???? ????') . PHP_EOL;
echo $l10n->l(['hello to you','ctx1']) . PHP_EOL;
|
Details
Localizer
Simple, but versatile, class for localization (l10n) for PHP, JavaScript, Python
version 2.0.0
Example
$l10n = new Localizer();
// setup supported locales
$l10n->locale('en', []); // en is 1st
$l10n->locale('el', [ // el is 2nd
'I want to say {0}' => '???? ?? ?? {0}',
'hello to you' => '???? ?? ????',
'hello to all' => '???? ?? ?????',
'@' => [
// specific context
'ctx1' => [
'hello to you' => '???? ?? ???? ????',
],
],
]);
// set current locale
$l10n->locale('el', true);
echo 'Localizer::VERSION = ' . Localizer::VERSION . PHP_EOL;
// get current locale
echo $l10n->locale() . PHP_EOL;
// localize by lookup
echo $l10n->l('hello to you') . PHP_EOL;
echo $l10n->l('hello to all') . PHP_EOL;
// localize by choosing based on active locale
echo $l10n->l('hello to you', '???? ?? ????') . PHP_EOL;
echo $l10n->l('hello to all', '???? ?? ?????') . PHP_EOL;
// localize with custom arguments
echo $l10n->l('I want to say {0}', [$l10n->l('hello to you')]) . PHP_EOL;
echo $l10n->l('I want to say {0}', [$l10n->l('hello to all')]) . PHP_EOL;
// localize singular/plural
echo $l10n->ln(1, 'hello to you', 'hello to all') . PHP_EOL;
echo $l10n->ln(2, 'hello to you', 'hello to all') . PHP_EOL;
// localize based on specific context
echo $l10n->l('hello to you', '???? ?? ???? ????') . PHP_EOL;
echo $l10n->l(['hello to you','ctx1']) . PHP_EOL;
see also:
-
ModelView a simple, fast, powerful and flexible MVVM framework for JavaScript
-
tico a tiny, super-simple MVC framework for PHP
-
LoginManager a simple, barebones agnostic login manager for PHP, JavaScript, Python
-
SimpleCaptcha a simple, image-based, mathematical captcha with increasing levels of difficulty for PHP, JavaScript, Python
-
Dromeo a flexible, and powerful agnostic router for PHP, JavaScript, Python
-
PublishSubscribe a simple and flexible publish-subscribe pattern implementation for PHP, JavaScript, Python
-
Localizer a simple and versatile localization class (l10n) for PHP, JavaScript, Python
-
Importer simple class & dependency manager and loader for PHP, JavaScript, Python
-
EazyHttp, easy, simple and fast HTTP requests for PHP, JavaScript, Python
-
Contemplate a fast and versatile isomorphic template engine for PHP, JavaScript, Python
-
HtmlWidget html widgets, made as simple as possible, both client and server, both desktop and mobile, can be used as (template) plugins and/or standalone for PHP, JavaScript, Python (can be used as plugins for Contemplate)
-
Paginator simple and flexible pagination controls generator for PHP, JavaScript, Python
-
Formal a simple and versatile (Form) Data validation framework based on Rules for PHP, JavaScript, Python
-
Dialect a cross-vendor & cross-platform SQL Query Builder, based on GrammarTemplate, for PHP, JavaScript, Python
-
DialectORM an Object-Relational-Mapper (ORM) and Object-Document-Mapper (ODM), based on Dialect, for PHP, JavaScript, Python
-
Unicache a simple and flexible agnostic caching framework, supporting various platforms, for PHP, JavaScript, Python
-
Xpresion a simple and flexible eXpression parser engine (with custom functions and variables support), based on GrammarTemplate, for PHP, JavaScript, Python
-
Regex Analyzer/Composer Regular Expression Analyzer and Composer for PHP, JavaScript, Python
| |
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.