├── .github └── workflows │ └── php.yml ├── .gitignore ├── .php_cs ├── Changelog.md ├── Command ├── ExportTranslationsCommand.php └── ImportTranslationsCommand.php ├── Controller ├── RestController.php └── TranslationController.php ├── DependencyInjection ├── Compiler │ ├── RegisterMappingPass.php │ └── TranslatorPass.php ├── Configuration.php └── LexikTranslationExtension.php ├── Dockerfile ├── Document ├── File.php ├── FileRepository.php ├── TransUnit.php ├── TransUnitRepository.php └── Translation.php ├── Entity ├── File.php ├── FileRepository.php ├── TransUnit.php ├── TransUnitRepository.php ├── Translation.php └── TranslationRepository.php ├── EventDispatcher ├── CleanTranslationCacheListener.php ├── Event │ └── GetDatabaseResourcesEvent.php └── GetDatabaseResourcesListener.php ├── Form ├── Handler │ ├── FormHandlerInterface.php │ └── TransUnitFormHandler.php └── Type │ ├── TransUnitType.php │ └── TranslationType.php ├── LICENSE ├── LexikTranslationBundle.php ├── Manager ├── FileInterface.php ├── FileManager.php ├── FileManagerInterface.php ├── LocaleManager.php ├── LocaleManagerInterface.php ├── TransUnitInterface.php ├── TransUnitManager.php ├── TransUnitManagerInterface.php └── TranslationInterface.php ├── Model ├── File.php ├── TransUnit.php └── Translation.php ├── README.md ├── Resources ├── config │ ├── doctrine │ │ ├── File.mongodb-odm.xml │ │ ├── File.orm.xml │ │ ├── TransUnit.mongodb-odm.xml │ │ ├── TransUnit.orm.xml │ │ ├── Translation.mongodb-odm.xml │ │ └── Translation.orm.xml │ ├── model │ │ ├── File.mongodb-odm.xml │ │ ├── File.orm.xml │ │ ├── TransUnit.mongodb-odm.xml │ │ ├── TransUnit.orm.xml │ │ ├── Translation.mongodb-odm.xml │ │ └── Translation.orm.xml │ ├── routing.yml │ ├── routing │ │ ├── api.yml │ │ └── app.yml │ └── services.xml ├── doc │ ├── index.md │ ├── screen │ │ └── grid.jpg │ └── testing.md ├── public │ ├── css │ │ └── translation.css │ └── js │ │ └── translation.js ├── translations │ ├── LexikTranslationBundle.de.yml │ ├── LexikTranslationBundle.en.yml │ ├── LexikTranslationBundle.es.yml │ ├── LexikTranslationBundle.fr.yml │ ├── LexikTranslationBundle.it.yml │ ├── LexikTranslationBundle.lt.yml │ ├── LexikTranslationBundle.lv.yml │ ├── LexikTranslationBundle.nl.yml │ ├── LexikTranslationBundle.pl.yml │ ├── LexikTranslationBundle.ro.yml │ ├── LexikTranslationBundle.ru.yml │ └── LexikTranslationBundle.sk.yml └── views │ ├── Translation │ ├── _grid.html.twig │ ├── _gridToolbar.html.twig │ ├── grid.html.twig │ ├── new.html.twig │ └── overview.html.twig │ └── layout.html.twig ├── Storage ├── AbstractDoctrineStorage.php ├── DoctrineMongoDBStorage.php ├── DoctrineORMStorage.php ├── Listener │ └── DoctrineORMListener.php └── StorageInterface.php ├── Tests ├── Command │ └── ImportTranslationsCommandTest.php ├── Fixtures │ ├── TransUnitData.php │ ├── test.en.yml │ └── test.fr.php ├── Unit │ ├── BaseUnitTestCase.php │ ├── EventDispatcher │ │ └── CleanTranslationCacheListenerTest.php │ ├── Repository │ │ ├── Document │ │ │ ├── FileRepositoryTest.php │ │ │ └── TransUnitRepositoryTest.php │ │ └── Entity │ │ │ ├── FileRepositoryTest.php │ │ │ └── TransUnitRepositoryTest.php │ ├── Translation │ │ ├── DatabaseFreshResourceTest.php │ │ ├── Exporter │ │ │ ├── JsonExporterTest.php │ │ │ ├── PhpExporterTest.php │ │ │ ├── XliffExporterTest.php │ │ │ └── YamlExporterTest.php │ │ ├── Importer │ │ │ └── FileImporterTest.php │ │ ├── Loader │ │ │ └── DatabaseLoaderTest.php │ │ ├── Manager │ │ │ ├── FileManagerTest.php │ │ │ └── TransUnitManagerTest.php │ │ └── TranslatorTest.php │ └── Util │ │ └── DataGrid │ │ ├── DataGridFormatterTest.php │ │ └── DataGridRequestHandlerTest.php ├── app │ ├── AppKernel.php │ └── test │ │ ├── bundles.php │ │ ├── config.yml │ │ └── database.php ├── autoload.php.dist └── bootstrap.php ├── Translation ├── DatabaseFreshResource.php ├── Exporter │ ├── ExporterCollector.php │ ├── ExporterInterface.php │ ├── JsonExporter.php │ ├── PhpExporter.php │ ├── XliffExporter.php │ └── YamlExporter.php ├── Importer │ └── FileImporter.php ├── Loader │ └── DatabaseLoader.php └── Translator.php ├── Util ├── Csrf │ └── CsrfCheckerTrait.php ├── DataGrid │ ├── DataGridFormatter.php │ └── DataGridRequestHandler.php ├── Doctrine │ └── SingleColumnArrayHydrator.php ├── Overview │ └── StatsAggregator.php └── Profiler │ └── TokenFinder.php ├── composer.json ├── docker-compose.yml ├── phpunit.xml.dist ├── phpunit.xsd └── rector.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/.php_cs -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Changelog.md -------------------------------------------------------------------------------- /Command/ExportTranslationsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Command/ExportTranslationsCommand.php -------------------------------------------------------------------------------- /Command/ImportTranslationsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Command/ImportTranslationsCommand.php -------------------------------------------------------------------------------- /Controller/RestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Controller/RestController.php -------------------------------------------------------------------------------- /Controller/TranslationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Controller/TranslationController.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/RegisterMappingPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/DependencyInjection/Compiler/RegisterMappingPass.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/TranslatorPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/DependencyInjection/Compiler/TranslatorPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/LexikTranslationExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/DependencyInjection/LexikTranslationExtension.php -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Dockerfile -------------------------------------------------------------------------------- /Document/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Document/File.php -------------------------------------------------------------------------------- /Document/FileRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Document/FileRepository.php -------------------------------------------------------------------------------- /Document/TransUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Document/TransUnit.php -------------------------------------------------------------------------------- /Document/TransUnitRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Document/TransUnitRepository.php -------------------------------------------------------------------------------- /Document/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Document/Translation.php -------------------------------------------------------------------------------- /Entity/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Entity/File.php -------------------------------------------------------------------------------- /Entity/FileRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Entity/FileRepository.php -------------------------------------------------------------------------------- /Entity/TransUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Entity/TransUnit.php -------------------------------------------------------------------------------- /Entity/TransUnitRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Entity/TransUnitRepository.php -------------------------------------------------------------------------------- /Entity/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Entity/Translation.php -------------------------------------------------------------------------------- /Entity/TranslationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Entity/TranslationRepository.php -------------------------------------------------------------------------------- /EventDispatcher/CleanTranslationCacheListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/EventDispatcher/CleanTranslationCacheListener.php -------------------------------------------------------------------------------- /EventDispatcher/Event/GetDatabaseResourcesEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/EventDispatcher/Event/GetDatabaseResourcesEvent.php -------------------------------------------------------------------------------- /EventDispatcher/GetDatabaseResourcesListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/EventDispatcher/GetDatabaseResourcesListener.php -------------------------------------------------------------------------------- /Form/Handler/FormHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Form/Handler/FormHandlerInterface.php -------------------------------------------------------------------------------- /Form/Handler/TransUnitFormHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Form/Handler/TransUnitFormHandler.php -------------------------------------------------------------------------------- /Form/Type/TransUnitType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Form/Type/TransUnitType.php -------------------------------------------------------------------------------- /Form/Type/TranslationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Form/Type/TranslationType.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /LexikTranslationBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/LexikTranslationBundle.php -------------------------------------------------------------------------------- /Manager/FileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/FileInterface.php -------------------------------------------------------------------------------- /Manager/FileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/FileManager.php -------------------------------------------------------------------------------- /Manager/FileManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/FileManagerInterface.php -------------------------------------------------------------------------------- /Manager/LocaleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/LocaleManager.php -------------------------------------------------------------------------------- /Manager/LocaleManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/LocaleManagerInterface.php -------------------------------------------------------------------------------- /Manager/TransUnitInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/TransUnitInterface.php -------------------------------------------------------------------------------- /Manager/TransUnitManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/TransUnitManager.php -------------------------------------------------------------------------------- /Manager/TransUnitManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/TransUnitManagerInterface.php -------------------------------------------------------------------------------- /Manager/TranslationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Manager/TranslationInterface.php -------------------------------------------------------------------------------- /Model/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Model/File.php -------------------------------------------------------------------------------- /Model/TransUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Model/TransUnit.php -------------------------------------------------------------------------------- /Model/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Model/Translation.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/doctrine/File.mongodb-odm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/doctrine/File.mongodb-odm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/File.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/doctrine/File.orm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/TransUnit.mongodb-odm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/doctrine/TransUnit.mongodb-odm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/TransUnit.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/doctrine/TransUnit.orm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/Translation.mongodb-odm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/doctrine/Translation.mongodb-odm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/Translation.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/doctrine/Translation.orm.xml -------------------------------------------------------------------------------- /Resources/config/model/File.mongodb-odm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/model/File.mongodb-odm.xml -------------------------------------------------------------------------------- /Resources/config/model/File.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/model/File.orm.xml -------------------------------------------------------------------------------- /Resources/config/model/TransUnit.mongodb-odm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/model/TransUnit.mongodb-odm.xml -------------------------------------------------------------------------------- /Resources/config/model/TransUnit.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/model/TransUnit.orm.xml -------------------------------------------------------------------------------- /Resources/config/model/Translation.mongodb-odm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/model/Translation.mongodb-odm.xml -------------------------------------------------------------------------------- /Resources/config/model/Translation.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/model/Translation.orm.xml -------------------------------------------------------------------------------- /Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/routing.yml -------------------------------------------------------------------------------- /Resources/config/routing/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/routing/api.yml -------------------------------------------------------------------------------- /Resources/config/routing/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/routing/app.yml -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Resources/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/doc/index.md -------------------------------------------------------------------------------- /Resources/doc/screen/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/doc/screen/grid.jpg -------------------------------------------------------------------------------- /Resources/doc/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/doc/testing.md -------------------------------------------------------------------------------- /Resources/public/css/translation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/public/css/translation.css -------------------------------------------------------------------------------- /Resources/public/js/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/public/js/translation.js -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.de.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.en.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.es.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.fr.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.it.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.lt.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.lv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.lv.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.nl.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.pl.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.ro.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.ru.yml -------------------------------------------------------------------------------- /Resources/translations/LexikTranslationBundle.sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/translations/LexikTranslationBundle.sk.yml -------------------------------------------------------------------------------- /Resources/views/Translation/_grid.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/views/Translation/_grid.html.twig -------------------------------------------------------------------------------- /Resources/views/Translation/_gridToolbar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/views/Translation/_gridToolbar.html.twig -------------------------------------------------------------------------------- /Resources/views/Translation/grid.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/views/Translation/grid.html.twig -------------------------------------------------------------------------------- /Resources/views/Translation/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/views/Translation/new.html.twig -------------------------------------------------------------------------------- /Resources/views/Translation/overview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/views/Translation/overview.html.twig -------------------------------------------------------------------------------- /Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /Storage/AbstractDoctrineStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Storage/AbstractDoctrineStorage.php -------------------------------------------------------------------------------- /Storage/DoctrineMongoDBStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Storage/DoctrineMongoDBStorage.php -------------------------------------------------------------------------------- /Storage/DoctrineORMStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Storage/DoctrineORMStorage.php -------------------------------------------------------------------------------- /Storage/Listener/DoctrineORMListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Storage/Listener/DoctrineORMListener.php -------------------------------------------------------------------------------- /Storage/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Storage/StorageInterface.php -------------------------------------------------------------------------------- /Tests/Command/ImportTranslationsCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Command/ImportTranslationsCommandTest.php -------------------------------------------------------------------------------- /Tests/Fixtures/TransUnitData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Fixtures/TransUnitData.php -------------------------------------------------------------------------------- /Tests/Fixtures/test.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Fixtures/test.en.yml -------------------------------------------------------------------------------- /Tests/Fixtures/test.fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Fixtures/test.fr.php -------------------------------------------------------------------------------- /Tests/Unit/BaseUnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/BaseUnitTestCase.php -------------------------------------------------------------------------------- /Tests/Unit/EventDispatcher/CleanTranslationCacheListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/EventDispatcher/CleanTranslationCacheListenerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/Document/FileRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Repository/Document/FileRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/Document/TransUnitRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Repository/Document/TransUnitRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/Entity/FileRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Repository/Entity/FileRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Repository/Entity/TransUnitRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Repository/Entity/TransUnitRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/DatabaseFreshResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/DatabaseFreshResourceTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/Exporter/JsonExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/Exporter/JsonExporterTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/Exporter/PhpExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/Exporter/PhpExporterTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/Exporter/XliffExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/Exporter/XliffExporterTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/Exporter/YamlExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/Exporter/YamlExporterTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/Importer/FileImporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/Importer/FileImporterTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/Loader/DatabaseLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/Loader/DatabaseLoaderTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/Manager/FileManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/Manager/FileManagerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/Manager/TransUnitManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/Manager/TransUnitManagerTest.php -------------------------------------------------------------------------------- /Tests/Unit/Translation/TranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Translation/TranslatorTest.php -------------------------------------------------------------------------------- /Tests/Unit/Util/DataGrid/DataGridFormatterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Util/DataGrid/DataGridFormatterTest.php -------------------------------------------------------------------------------- /Tests/Unit/Util/DataGrid/DataGridRequestHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/Unit/Util/DataGrid/DataGridRequestHandlerTest.php -------------------------------------------------------------------------------- /Tests/app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/app/AppKernel.php -------------------------------------------------------------------------------- /Tests/app/test/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/app/test/bundles.php -------------------------------------------------------------------------------- /Tests/app/test/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/app/test/config.yml -------------------------------------------------------------------------------- /Tests/app/test/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/app/test/database.php -------------------------------------------------------------------------------- /Tests/autoload.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/autoload.php.dist -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /Translation/DatabaseFreshResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/DatabaseFreshResource.php -------------------------------------------------------------------------------- /Translation/Exporter/ExporterCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Exporter/ExporterCollector.php -------------------------------------------------------------------------------- /Translation/Exporter/ExporterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Exporter/ExporterInterface.php -------------------------------------------------------------------------------- /Translation/Exporter/JsonExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Exporter/JsonExporter.php -------------------------------------------------------------------------------- /Translation/Exporter/PhpExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Exporter/PhpExporter.php -------------------------------------------------------------------------------- /Translation/Exporter/XliffExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Exporter/XliffExporter.php -------------------------------------------------------------------------------- /Translation/Exporter/YamlExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Exporter/YamlExporter.php -------------------------------------------------------------------------------- /Translation/Importer/FileImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Importer/FileImporter.php -------------------------------------------------------------------------------- /Translation/Loader/DatabaseLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Loader/DatabaseLoader.php -------------------------------------------------------------------------------- /Translation/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Translation/Translator.php -------------------------------------------------------------------------------- /Util/Csrf/CsrfCheckerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Util/Csrf/CsrfCheckerTrait.php -------------------------------------------------------------------------------- /Util/DataGrid/DataGridFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Util/DataGrid/DataGridFormatter.php -------------------------------------------------------------------------------- /Util/DataGrid/DataGridRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Util/DataGrid/DataGridRequestHandler.php -------------------------------------------------------------------------------- /Util/Doctrine/SingleColumnArrayHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Util/Doctrine/SingleColumnArrayHydrator.php -------------------------------------------------------------------------------- /Util/Overview/StatsAggregator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Util/Overview/StatsAggregator.php -------------------------------------------------------------------------------- /Util/Profiler/TokenFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/Util/Profiler/TokenFinder.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/phpunit.xsd -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikTranslationBundle/HEAD/rector.php --------------------------------------------------------------------------------