sleepybuildings / transchecker
There is no license information available for the latest version (1.0.0) of this package.
Laravel 5,1 Languagefile checker
1.0.0
2015-10-08 18:04 UTC
Requires
- php: >=5.5.9
- illuminate/support: 5.1.*
This package is not auto-updated.
Last update: 2025-02-05 19:22:36 UTC
README
Simple Laravel Artisan command to check your language files for inconsistencies.
What it does
Transchecker checks your languagefiles and can report the following errors:
- missing language files
- missing entries
- empty entries
Installation
Install through Composer: https://packagist.org/packages/sleepybuildings/transchecker
Then add the Transchecker serviceprovider to the your app config:
providers' => [ ... \Sleepybuildings\Transchecker\TranscheckerServiceProvider::class, ... ]
Languagefiles needs to be in the resources/lang
directory.
Usage
Run the check by executing the following artisan command:
php artisan lang:check
Sample output
>> php artisan lang:check
Languages found: en, nl
Namespaces found: auth, pagination, passwords, validation
Checking files...
There is 1 missing file:
+----------+------------+
| Language | Namespace |
+----------+------------+
| nl | validation |
+----------+------------+
There are 4 missing entries:
+----------+------------+----------+---------+
| Language | Namespace | Entry | Error |
+----------+------------+----------+---------+
| nl | pagination | previous | Missing |
| nl | pagination | next | Missing |
| en | passwords | sent | Empty |
| nl | passwords | token | Missing |
+----------+------------+----------+---------+
Finished with 5 errors
Still todo...
- Adding support for deeply nested arrays
- Crosschecking parameters and pluralizations
- Add ready-to-use unittesting possibilities
- Add more comments in the sourcecode...
- Add support for vendor languagefiles