Package Data | |
---|---|
Maintainer Username: | Zn4rK |
Maintainer Contact: | alexander@paxxmedia.se (Alexander Liljengård) |
Package Create Date: | 2014-03-17 |
Package Last Update: | 2020-06-09 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-17 03:06:13 |
Package Statistics | |
---|---|
Total Downloads: | 3,320 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 1 |
Total Forks: | 1 |
Total Open Issues: | 1 |
This library is heavliy inspired (and partially based on) netson/l4gettext and you should really use his library instead of mine.
I wrote this because I wanted to learn more about gettext (and package creating with laravel in general). I do not plan on supporting this library.
First of you need to publish the configuration
php artisan config:publish paxx/gettext
After your changes to the config, you can go ahead and add the service provider to the list of providers in app/config/app.php:
'Paxx\Gettext\GettextServiceProvider'
You might need to make sure that php can write to app/lang since that is the folder where the POT-files will be placed in.
To change locale you can then use:
Gettext::setLocale('sv_SE');
Just make sure that you have the locales installed on your system.
After everything is set, you can run
php artisan gettext
And your translations will be extracted from the views and added to the POT-file.
1.0
MIT