This package provides you with commands to analyze the translation keys used in your Laravel 5 application.
These commands can detect untranslated and invalid keys.
composer require robinfranssen/analyzelocale --dev
Add the service provider:
// config/app.php
'providers' => [
...
'RobinFranssen\AnalyzeLocale\Providers\ServiceProvider',
...
],
From the command line, run php artisan locale:scan
to see a full overview of the analyzation.
This will show you all information provided by the three other locale commands.
php artisan locale:invalid
will show you the invalid keys.
php artisan locale:untranslated
will show you the untranslated keys.
php artisan locale:allkeys
will show you a table with untranslated and invalid keys.
Every command supports the --locale flag.
For example: php artisan locale:allkeys --locale=nl