├── Changelog.md ├── LICENSE ├── README.md ├── composer.json ├── src ├── Command │ ├── DownloadCommand.php │ ├── SynchronizeCommand.php │ └── UploadCommand.php ├── Controller │ └── ProfilerController.php ├── DependencyInjection │ ├── Configuration.php │ └── HappyrTranslationExtension.php ├── Exception │ ├── HappyrTranslationException.php │ └── HttpException.php ├── HappyrTranslationBundle.php ├── Http │ └── RequestManager.php ├── Model │ └── Message.php ├── Resources │ ├── config │ │ ├── autoAdd.yml │ │ ├── routing_dev.yml │ │ └── services.yml │ ├── doc │ │ └── images │ │ │ ├── edit-flag-sync-example.gif │ │ │ ├── missing-translation-example.gif │ │ │ └── toolbar-example.png │ └── views │ │ └── Profiler │ │ ├── edit.html.twig │ │ ├── javascripts.html.twig │ │ └── translation.html.twig ├── Service │ ├── Blackhole.php │ ├── Filesystem.php │ ├── Loco.php │ └── TranslationServiceInterface.php └── Translation │ ├── AutoAdder.php │ └── FilesystemUpdater.php └── tests └── Functional ├── AppKernel.php ├── BaseTestCase.php ├── BundleInitializationTest.php └── config ├── default.yml ├── framework.yml └── routing.yml /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/composer.json -------------------------------------------------------------------------------- /src/Command/DownloadCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Command/DownloadCommand.php -------------------------------------------------------------------------------- /src/Command/SynchronizeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Command/SynchronizeCommand.php -------------------------------------------------------------------------------- /src/Command/UploadCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Command/UploadCommand.php -------------------------------------------------------------------------------- /src/Controller/ProfilerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Controller/ProfilerController.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/HappyrTranslationExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/DependencyInjection/HappyrTranslationExtension.php -------------------------------------------------------------------------------- /src/Exception/HappyrTranslationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Exception/HappyrTranslationException.php -------------------------------------------------------------------------------- /src/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Exception/HttpException.php -------------------------------------------------------------------------------- /src/HappyrTranslationBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/HappyrTranslationBundle.php -------------------------------------------------------------------------------- /src/Http/RequestManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Http/RequestManager.php -------------------------------------------------------------------------------- /src/Model/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Model/Message.php -------------------------------------------------------------------------------- /src/Resources/config/autoAdd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/config/autoAdd.yml -------------------------------------------------------------------------------- /src/Resources/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/config/routing_dev.yml -------------------------------------------------------------------------------- /src/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/config/services.yml -------------------------------------------------------------------------------- /src/Resources/doc/images/edit-flag-sync-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/doc/images/edit-flag-sync-example.gif -------------------------------------------------------------------------------- /src/Resources/doc/images/missing-translation-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/doc/images/missing-translation-example.gif -------------------------------------------------------------------------------- /src/Resources/doc/images/toolbar-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/doc/images/toolbar-example.png -------------------------------------------------------------------------------- /src/Resources/views/Profiler/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/views/Profiler/edit.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Profiler/javascripts.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/views/Profiler/javascripts.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Profiler/translation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Resources/views/Profiler/translation.html.twig -------------------------------------------------------------------------------- /src/Service/Blackhole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Service/Blackhole.php -------------------------------------------------------------------------------- /src/Service/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Service/Filesystem.php -------------------------------------------------------------------------------- /src/Service/Loco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Service/Loco.php -------------------------------------------------------------------------------- /src/Service/TranslationServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Service/TranslationServiceInterface.php -------------------------------------------------------------------------------- /src/Translation/AutoAdder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Translation/AutoAdder.php -------------------------------------------------------------------------------- /src/Translation/FilesystemUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/src/Translation/FilesystemUpdater.php -------------------------------------------------------------------------------- /tests/Functional/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/tests/Functional/AppKernel.php -------------------------------------------------------------------------------- /tests/Functional/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/tests/Functional/BaseTestCase.php -------------------------------------------------------------------------------- /tests/Functional/BundleInitializationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/tests/Functional/BundleInitializationTest.php -------------------------------------------------------------------------------- /tests/Functional/config/default.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: framework.yml } 3 | 4 | -------------------------------------------------------------------------------- /tests/Functional/config/framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happyr/TranslationBundle/HEAD/tests/Functional/config/framework.yml -------------------------------------------------------------------------------- /tests/Functional/config/routing.yml: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------