sinnbeck/laravel-langcheck is a Laravel package for find missing translations.
It currently has 10 GitHub stars and 14 downloads on Packagist (latest version v1.0).
Install it with composer require sinnbeck/laravel-langcheck.
Discover more Laravel packages by sinnbeck
or browse all Laravel packages to compare alternatives.
Last updated
Laravel LangCheck is created to help developers find missing translations in the lang directory of Laravel
$ composer require sinnbeck/laravel-langcheck --dev
Laravel LangCheck will use the locale defined in laravel by default. It is possible to override with by publishing the config file.
$ php artisan vendor:publish --provider="Sinnbeck\LangCheck\LangCheckServiceProvider"
Laravel Lang Check is purely made to be used with artisan and currently has two commands available.
$ php artisan langcheck:missing
Will render a table for each locale found with missing translations. The key is setup the same as when using the translations in laravel folder.key.key
It is possible to ensure that missing translations are caught, but passing the flag --throw, to make the command throw an exception on missing translations.
$ php artisan langcheck:super
Same as missing except it shows locales with extra translations that are most likely not in use anymore.