Files
Document-Management-System-…/vendor/symfony/translation
2021-04-07 19:25:18 -04:00
..
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00
2021-04-07 19:25:18 -04:00

Translation Component

The Translation component provides tools to internationalize your application.

Getting Started

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

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

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

Resources