├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── _ide_helper.php.sample ├── composer.json ├── phpunit.xml ├── public └── .gitkeep ├── src ├── Potsky │ └── LaravelLocalizationHelpers │ │ ├── Command │ │ ├── LocalizationAbstract.php │ │ ├── LocalizationClear.php │ │ ├── LocalizationFind.php │ │ └── LocalizationMissing.php │ │ ├── Facade │ │ └── LocalizationHelpers.php │ │ ├── Factory │ │ ├── CodeStyle.php │ │ ├── Exception.php │ │ ├── LangFile.php │ │ ├── Localization.php │ │ ├── MessageBag.php │ │ ├── MessageBagInterface.php │ │ ├── Tools.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── TranslatorMicrosoft.php │ │ ├── LaravelLocalizationHelpersServiceProvider.php │ │ └── Object │ │ ├── LangFileAbstract.php │ │ ├── LangFileGenuine.php │ │ ├── LangFileGenuineVendor.php │ │ ├── LangFileJson.php │ │ ├── LangFileTypeAbstract.php │ │ ├── LangFileTypeGenuine.php │ │ ├── LangFileTypeGenuineVendor.php │ │ └── LangFileTypeJson.php ├── config │ ├── .gitkeep │ ├── config-laravel5.php │ └── config.php ├── controllers │ └── .gitkeep ├── lang │ └── .gitkeep ├── migrations │ └── .gitkeep └── views │ └── .gitkeep └── tests ├── .gitkeep ├── CommandClearTests.php ├── CommandFindTests.php ├── CommandMissingTests.php ├── ConfigTests.php ├── ExceptionTests.php ├── FacadeTests.php ├── LocalizationTests.php ├── MessageBagTests.php ├── OutputTests.php ├── TestCase.php ├── ToolsTests.php ├── TranslatorTests.php ├── bootstrap.php ├── fixes ├── Gh20Tests.php ├── Gh21Tests.php ├── Gh22Tests.php ├── Gh29Tests.php ├── Gh31Tests.php ├── Gh35Tests.php ├── Gh44Tests.php ├── Gh47Tests.php ├── Gh53Tests.php ├── Gh54Tests.php ├── Gh56Tests_NOT_NOW.php └── Gh59Tests.php ├── lang ├── en │ └── .gitignore └── fr │ └── .gitignore └── mock ├── gh21 ├── code │ └── trans.php └── lang │ └── en │ └── message.php ├── gh22 ├── lang │ └── en │ │ └── message.php ├── phase1 │ └── trans.php └── phase2 │ └── trans.php ├── gh29 └── code │ ├── trans.copy │ └── trans.php ├── gh31 ├── code │ └── trans.php └── lang │ ├── .gitignore │ ├── en │ └── .gitignore │ ├── packages │ └── hearthfire │ │ └── en │ │ └── .gitignore │ └── vendor │ └── hearthfire │ └── en │ └── .gitignore ├── gh35 ├── code │ └── trans.php └── lang │ └── en │ └── message.php ├── gh44 ├── code │ └── trans.php └── lang │ ├── en │ └── .gitignore │ └── fr │ └── .gitignore ├── gh47 ├── code1 │ └── trans.php ├── code2 │ └── trans.php └── lang │ └── en │ └── things.php ├── gh53 ├── code │ └── trans.php └── lang │ └── en │ └── message.php ├── gh54 ├── code │ └── trans.php └── lang │ └── en │ └── .gitignore ├── gh56 ├── code │ └── trans.php └── lang │ ├── .gitignore │ └── en │ └── .gitignore ├── gh59 ├── code │ └── trans.php └── lang │ └── en │ └── .gitignore ├── global ├── trans.copy └── trans.php └── wo_lemma └── trans.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/README.md -------------------------------------------------------------------------------- /_ide_helper.php.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/_ide_helper.php.sample -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Command/LocalizationAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationAbstract.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Command/LocalizationClear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationClear.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Command/LocalizationFind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationFind.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Command/LocalizationMissing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationMissing.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Facade/LocalizationHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Facade/LocalizationHelpers.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/CodeStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/CodeStyle.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/Exception.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/LangFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/LangFile.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/Localization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/Localization.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/MessageBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/MessageBag.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/MessageBagInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/MessageBagInterface.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/Tools.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/Translator.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/TranslatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/TranslatorInterface.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Factory/TranslatorMicrosoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Factory/TranslatorMicrosoft.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProvider.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Object/LangFileAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Object/LangFileAbstract.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Object/LangFileGenuine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Object/LangFileGenuine.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Object/LangFileGenuineVendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Object/LangFileGenuineVendor.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Object/LangFileJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Object/LangFileJson.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Object/LangFileTypeAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Object/LangFileTypeAbstract.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Object/LangFileTypeGenuine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Object/LangFileTypeGenuine.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Object/LangFileTypeGenuineVendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Object/LangFileTypeGenuineVendor.php -------------------------------------------------------------------------------- /src/Potsky/LaravelLocalizationHelpers/Object/LangFileTypeJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/Potsky/LaravelLocalizationHelpers/Object/LangFileTypeJson.php -------------------------------------------------------------------------------- /src/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/config-laravel5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/config/config-laravel5.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/src/config/config.php -------------------------------------------------------------------------------- /src/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/CommandClearTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/CommandClearTests.php -------------------------------------------------------------------------------- /tests/CommandFindTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/CommandFindTests.php -------------------------------------------------------------------------------- /tests/CommandMissingTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/CommandMissingTests.php -------------------------------------------------------------------------------- /tests/ConfigTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/ConfigTests.php -------------------------------------------------------------------------------- /tests/ExceptionTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/ExceptionTests.php -------------------------------------------------------------------------------- /tests/FacadeTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/FacadeTests.php -------------------------------------------------------------------------------- /tests/LocalizationTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/LocalizationTests.php -------------------------------------------------------------------------------- /tests/MessageBagTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/MessageBagTests.php -------------------------------------------------------------------------------- /tests/OutputTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/OutputTests.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/ToolsTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/ToolsTests.php -------------------------------------------------------------------------------- /tests/TranslatorTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/TranslatorTests.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixes/Gh20Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh20Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh21Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh21Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh22Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh22Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh29Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh29Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh31Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh31Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh35Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh35Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh44Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh44Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh47Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh47Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh53Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh53Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh54Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh54Tests.php -------------------------------------------------------------------------------- /tests/fixes/Gh56Tests_NOT_NOW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh56Tests_NOT_NOW.php -------------------------------------------------------------------------------- /tests/fixes/Gh59Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potsky/laravel-localization-helpers/HEAD/tests/fixes/Gh59Tests.php -------------------------------------------------------------------------------- /tests/lang/en/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /tests/lang/fr/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /tests/mock/gh21/code/trans.php: -------------------------------------------------------------------------------- 1 |