2017 © Pedro Peláez
 

library lexiconic

Utility and classes to facilitate gettext style translations in PHP

image

webtrendi/lexiconic

Utility and classes to facilitate gettext style translations in PHP

  • Thursday, October 2, 2014
  • by patforg
  • Repository
  • 2 Watchers
  • 2 Stars
  • 46 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Lexiconic

Utility and classes to facilitate gettext style translations in PHP, (*1)

Usage

Example file simple.php:, (*2)

/* detect current language */
if (isset($_GET['locale'])) {
    $locale = $_GET['locale'];
} else {
    $locale = 'en_CA';
} //if

/* setup environment */
putenv("LANG=" . $locale);
putenv("LANGUAGE=" . $locale);
setlocale(LC_ALL, $locale);

/* setup extractor */
$extractor = new \Lexiconic\Extractor\GettextExtractor('application', __DIR__ .'/locale/');

/* get term functions */
$_ = $extractor->getTermFunction();

/* Use string extractor function */
echo $_('Ok this is simple enough'), PHP_EOL;

To scan files for terms you would run something like:, (*3)

xgettext --language=PHP \\
  --keyword=_:1 --keyword=_:1,2c \\
  --keyword=_n:1,2 --keyword=_n:1,2,4c \\
  --output=./locale/simple.po  ./simple.php

Features

  • Supports context in strings
  • Abstracts the gettex library to support other methods
  • Does not invade global scope

To Do

  • scripts to extract strings
  • scripts to generate mo
  • classes to manipulate po files
  • implement other extractors
  • unit tests
  • more examples

The Versions

02/10 2014

dev-master

9999999-dev

Utility and classes to facilitate gettext style translations in PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

translation internationalization localization gettext

14/04 2014

dev-develop

dev-develop

Utility and classes to facilitate gettext style translations in PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

translation internationalization localization gettext

14/04 2014

v1.0.0

1.0.0.0

Utility and classes to facilitate gettext style translations in PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

translation internationalization localization gettext