Daniel ab1334c0cf the whole shebang il y a 9 ans
..
Catalogue ab1334c0cf the whole shebang il y a 9 ans
Dumper ab1334c0cf the whole shebang il y a 9 ans
Exception ab1334c0cf the whole shebang il y a 9 ans
Extractor ab1334c0cf the whole shebang il y a 9 ans
Loader ab1334c0cf the whole shebang il y a 9 ans
Tests ab1334c0cf the whole shebang il y a 9 ans
Writer ab1334c0cf the whole shebang il y a 9 ans
.gitignore ab1334c0cf the whole shebang il y a 9 ans
CHANGELOG.md ab1334c0cf the whole shebang il y a 9 ans
IdentityTranslator.php ab1334c0cf the whole shebang il y a 9 ans
Interval.php ab1334c0cf the whole shebang il y a 9 ans
LICENSE ab1334c0cf the whole shebang il y a 9 ans
MessageCatalogue.php ab1334c0cf the whole shebang il y a 9 ans
MessageCatalogueInterface.php ab1334c0cf the whole shebang il y a 9 ans
MessageSelector.php ab1334c0cf the whole shebang il y a 9 ans
MetadataAwareInterface.php ab1334c0cf the whole shebang il y a 9 ans
PluralizationRules.php ab1334c0cf the whole shebang il y a 9 ans
README.md ab1334c0cf the whole shebang il y a 9 ans
Translator.php ab1334c0cf the whole shebang il y a 9 ans
TranslatorInterface.php ab1334c0cf the whole shebang il y a 9 ans
composer.json ab1334c0cf the whole shebang il y a 9 ans
phpunit.xml.dist ab1334c0cf the whole shebang il y a 9 ans

README.md

Translation Component

Translation provides tools for loading translation files and generating translated strings from these including support for pluralization.

use Symfony\Component\Translation\Translator;
use Symfony\Component\Translation\MessageSelector;
use Symfony\Component\Translation\Loader\ArrayLoader;

$translator = new Translator('fr_FR', new MessageSelector());
$translator->setFallbackLocales(array('fr'));
$translator->addLoader('array', new ArrayLoader());
$translator->addResource('array', array(
    'Hello World!' => 'Bonjour',
), 'fr');

echo $translator->trans('Hello World!')."\n";

Resources

Silex integration:

https://github.com/fabpot/Silex/blob/master/src/Silex/Provider/TranslationServiceProvider.php

Documentation:

http://symfony.com/doc/2.3/book/translation.html

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Translation/
$ composer.phar install --dev
$ phpunit