Package Data | |
---|---|
Maintainer Username: | novius |
Package Create Date: | 2017-08-23 |
Package Last Update: | 2020-05-11 |
Language: | PHP |
License: | AGPL-3.0 |
Last Refreshed: | 2024-11-15 15:04:46 |
Package Statistics | |
---|---|
Total Downloads: | 4,742 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 4 |
Total Forks: | 3 |
Total Open Issues: | 0 |
This package gives an artisan command to publish native laravel translations in the desired language. The native translations are made by the caouecs/laravel-lang package.
You can install the package via Composer:
composer install novius/caouecs-lang-extended
Then, if you are on Laravel 5.4 (no need for Laravel 5.5 and higher), register the service provider to your config/app.php
file:
'providers' => [
...
Novius\Caouecs\Lang\LangGeneratorServiceProvider::class,
];
This command put languages files into resources/lang/{local}
folder.
php artisan lang:install {local}
Example for publishing FR files :
php artisan lang:install fr
By default the command does not overwrite existing files. You can use --force
parameters to force overriding.
php artisan lang:install fr --force
Run the tests with:
./test.sh
Run php-cs with:
./cs.sh
Contributions are welcome!
This package is under GNU Affero General Public License v3 or (at your option) any later version.