diglabby / laravel-find-missing-translations
A console command to find missing translations for Laravel projects
Package info
github.com/diglabby/laravel-find-missing-translations
pkg:composer/diglabby/laravel-find-missing-translations
Fund package maintenance!
Requires
- php: ^8.3
- illuminate/console: ^12.0 || ^13.0
- illuminate/support: ^12.0 || ^13.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.64
- orchestra/testbench: ^10.0 || ^11.0
- phpunit/phpunit: ^12.0 || ^13.0
- psalm/plugin-laravel: ^4.0
- vimeo/psalm: ^7.0
README
Find missing Laravel Translations
Artisan command to find missing translations. It takes a basic locale and finds missing keys/translations in other locales.
Output example:
Installation
composer require diglabby/laravel-find-missing-translations --dev
The package requires PHP 8.3 or higher and Laravel 12 or 13. For Laravel 10 or 11 use ^1.6.
Usage
Use the application locale as base and the application lang path (lang/ since Laravel 9, resources/lang/ before that):
php artisan translations:missing
The command exits with code 1 when a locale is missing a key or a whole translation file, so it can gate a CI build.
You can specify a base locale:
php artisan translations:missing --base=es
You can specify a list of locales to check:
php artisan translations:missing --base=es --only=be,en
You can specify a list of locales to exclude:
php artisan translations:missing --base=es --exclude=fr,de
You can specify a relative or absolute path to the lang directory location:
php artisan translations:missing --dir=/my-custom-lang-dirname
The lang/vendor directory, where package translation overrides live, is skipped.
What is compared
Both translation formats:
- PHP group files,
lang/{locale}/{group}.php, including files in nested group directories such aslang/{locale}/admin/orders.php. - JSON string keyed files,
lang/{locale}.json. They are compared only when the base locale has one, so projects that use PHP groups only see no difference.
A locale counts as declared when it has either a directory or a JSON file, and both formats are then expected of it. A locale with be.json but no be/ directory has translated none of the group keys, so the missing directory is reported, and the same holds the other way round. The base locale needs at least one of the two.
Contributing
Testing
composer test
Thanks
Inspired by VetonMuhaxhiri/Laravel-find-missing-translations
