Translation Checker is tool designed to help you find translations you forgot to add to your language files, check, and maintain translations in your project. It provides a set of commands to help with language files, ensuring consistency and completeness across your translations.
It works with Laravel and supports various frontend frameworks like Vue.js, React, and Svelte.
lang.json
{
"test.value": "Value"
}
lang.php
return [
'test.value' => 'Value',
];
TestClass.php
class TestClass
{
public function getValue()
{
return __('translate this string');
}
}
php artisan translations:check en
lang.json
{
"test.value": "Value",
"translate this string": null
}
lang.php
return [
'test.value' => 'Value',
'translate this string' => null,
];
The reason we default to null when no translation service are used is because it defaults to the key used in the function call.
Install the package via composer:
composer require bottelet/translation-checker --dev
Translation Checker provides several commands to manage your translations. The most versatile is the check
command:
php artisan translations:check en
For detailed information on all available commands and their usage, refer to the documentation.
Run the tests with:
./vendor/bin/phpunit
For full documentation, visit our GitHub documentation page.
If you encounter any issues or have suggestions, please create an issue on GitHub.
The MIT License (MIT). Please see License File for more information.