kekrozsak/vendor/symfony/symfony/src/Symfony/Component/Translation
Polonkai Gergely 623b78e939 Vendors update
Signed-off-by: Polonkai Gergely <polesz@w00d5t0ck.info>
2012-07-31 09:40:41 +02:00
..
Dumper Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Extractor Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Loader Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Tests Vendors update 2012-07-31 09:40:41 +02:00
Writer Vendors update 2012-07-31 09:40:41 +02:00
.gitignore Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
CHANGELOG.md Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
IdentityTranslator.php Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
Interval.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
LICENSE Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
MessageCatalogue.php Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
MessageCatalogueInterface.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
MessageSelector.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
PluralizationRules.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
README.md Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
Translator.php Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
TranslatorInterface.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
composer.json Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
phpunit.xml.dist Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00

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->setFallbackLocale('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.0/book/translation.html

You can run the unit tests with the following command:

phpunit

If you also want to run the unit tests that depend on other Symfony Components, install dev dependencies before running PHPUnit:

php composer.phar install --dev