netgescon-master/netgescon/vendor/symfony/translation
Pikappa2 480e7eafbd 🎯 NETGESCON - Setup iniziale repository completo
📋 Commit iniziale con:
-  Documentazione unificata in docs/
-  Codice Laravel in netgescon-laravel/
-  Script automazione in scripts/
-  Configurazione sync rsync
-  Struttura organizzata e pulita

🔄 Versione: 2025.07.19-1644
🎯 Sistema pronto per Git distribuito
2025-07-19 16:44:47 +02:00
..
Catalogue 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Command 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
DataCollector 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
DependencyInjection 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Dumper 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Exception 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Extractor 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Formatter 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Loader 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Provider 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Reader 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Resources 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Test 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Util 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Writer 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
CatalogueMetadataAwareInterface.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
CHANGELOG.md 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
composer.json 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
DataCollectorTranslator.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
IdentityTranslator.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
LICENSE 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
LocaleSwitcher.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
LoggingTranslator.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
MessageCatalogue.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
MessageCatalogueInterface.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
MetadataAwareInterface.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
PseudoLocalizationTranslator.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
README.md 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
TranslatableMessage.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
Translator.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
TranslatorBag.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00
TranslatorBagInterface.php 🎯 NETGESCON - Setup iniziale repository completo 2025-07-19 16:44:47 +02:00

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 7.1 is backed by:

  • Crowdin, a cloud-based localization management software helping teams to go global and stay agile.

Help Symfony by sponsoring its development!

Resources