devn00b c2c6bf7610 Initial Upload of Bot 1 jaar geleden
..
Catalogue c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Command c2c6bf7610 Initial Upload of Bot 1 jaar geleden
DataCollector c2c6bf7610 Initial Upload of Bot 1 jaar geleden
DependencyInjection c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Dumper c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Exception c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Extractor c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Formatter c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Loader c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Provider c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Reader c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Resources c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Test c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Util c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Writer c2c6bf7610 Initial Upload of Bot 1 jaar geleden
CHANGELOG.md c2c6bf7610 Initial Upload of Bot 1 jaar geleden
DataCollectorTranslator.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
IdentityTranslator.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
LICENSE c2c6bf7610 Initial Upload of Bot 1 jaar geleden
LoggingTranslator.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
MessageCatalogue.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
MessageCatalogueInterface.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
MetadataAwareInterface.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
PseudoLocalizationTranslator.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
README.md c2c6bf7610 Initial Upload of Bot 1 jaar geleden
TranslatableMessage.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
Translator.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
TranslatorBag.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
TranslatorBagInterface.php c2c6bf7610 Initial Upload of Bot 1 jaar geleden
composer.json c2c6bf7610 Initial Upload of Bot 1 jaar geleden

README.md

Translation Component

The Translation component provides tools to internationalize your application.

Getting Started

$ composer require symfony/translation
use Symfony\Component\Translation\Translator;
use Symfony\Component\Translation\Loader\ArrayLoader;

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

echo $translator->trans('Hello World!'); // outputs « Bonjour ! »

Sponsor

The Translation component for Symfony 5.4/6.0 is backed by:

  • Crowdin, a cloud-based localization management software helping teams to go global and stay agile.
  • Lokalise, a continuous localization and translation management platform that integrates into your development workflow so you can ship localized products, faster.

Help Symfony by sponsoring its development!

Resources