├── README.md ├── composer.json └── src ├── Xinax └── LaravelGettext │ ├── Adapters │ ├── AdapterInterface.php │ └── LaravelAdapter.php │ ├── Commands │ ├── BaseCommand.php │ ├── GettextCreate.php │ └── GettextUpdate.php │ ├── Composers │ └── LanguageSelector.php │ ├── Config │ ├── ConfigManager.php │ └── Models │ │ └── Config.php │ ├── Exceptions │ ├── DirectoryNotFoundException.php │ ├── FileCreationException.php │ ├── LocaleFileNotFoundException.php │ ├── LocaleNotSupportedException.php │ ├── MissingPhpGettextModuleException.php │ ├── RequiredConfigurationFileException.php │ ├── RequiredConfigurationKeyException.php │ └── UndefinedDomainException.php │ ├── Facades │ └── LaravelGettext.php │ ├── FileSystem.php │ ├── LaravelGettext.php │ ├── LaravelGettextServiceProvider.php │ ├── Middleware │ └── GettextMiddleware.php │ ├── Support │ └── helpers.php │ ├── Testing │ └── BaseTestCase.php │ └── Translators │ ├── BaseTranslator.php │ ├── Gettext.php │ ├── Symfony.php │ └── TranslatorInterface.php └── config ├── .gitkeep └── config.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/composer.json -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Adapters/AdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Adapters/AdapterInterface.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Adapters/LaravelAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Adapters/LaravelAdapter.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Commands/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Commands/BaseCommand.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Commands/GettextCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Commands/GettextCreate.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Commands/GettextUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Commands/GettextUpdate.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Composers/LanguageSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Composers/LanguageSelector.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Config/ConfigManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Config/ConfigManager.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Config/Models/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Config/Models/Config.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Exceptions/DirectoryNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Exceptions/DirectoryNotFoundException.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Exceptions/FileCreationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Exceptions/FileCreationException.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Exceptions/LocaleFileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Exceptions/LocaleFileNotFoundException.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Exceptions/LocaleNotSupportedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Exceptions/LocaleNotSupportedException.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Exceptions/MissingPhpGettextModuleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Exceptions/MissingPhpGettextModuleException.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Exceptions/RequiredConfigurationFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Exceptions/RequiredConfigurationFileException.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Exceptions/RequiredConfigurationKeyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Exceptions/RequiredConfigurationKeyException.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Exceptions/UndefinedDomainException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Exceptions/UndefinedDomainException.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Facades/LaravelGettext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Facades/LaravelGettext.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/FileSystem.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/LaravelGettext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/LaravelGettext.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/LaravelGettextServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/LaravelGettextServiceProvider.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Middleware/GettextMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Middleware/GettextMiddleware.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Support/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Support/helpers.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Testing/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Testing/BaseTestCase.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Translators/BaseTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Translators/BaseTranslator.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Translators/Gettext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Translators/Gettext.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Translators/Symfony.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Translators/Symfony.php -------------------------------------------------------------------------------- /src/Xinax/LaravelGettext/Translators/TranslatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/Xinax/LaravelGettext/Translators/TranslatorInterface.php -------------------------------------------------------------------------------- /src/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaggyz/laravel-gettext/HEAD/src/config/config.php --------------------------------------------------------------------------------