Package Data | |
---|---|
Maintainer Username: | zash |
Maintainer Contact: | zash@zash.me (Alexandru Fiodorov) |
Package Create Date: | 2016-08-11 |
Package Last Update: | 2016-08-30 |
Home Page: | https://packagist.org/packages/hpolthof/laravel-translations-db |
Language: | PHP |
License: | GPL2 |
Last Refreshed: | 2024-11-23 03:09:16 |
Package Statistics | |
---|---|
Total Downloads: | 170 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 0 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This package was created, as an in-place replacement for the default TranslationServiceProvider and mend for everyone who got tired of collecting translations in language files and maintaining dozens of arrays, filled with lots and lots of keys. Keys will be added to the database automatically, so no more hussling with adding your keys to the translations file. You'll never forget to translate a key anymore! In production your keys will be cached to ensure the localization stays fast!
Require this package with composer:
composer require zash/laravel-translation-db
Like to live on the edge? Use:
composer require 'zash/laravel-translations-db:*@dev'
After updating composer, we'll have to replace the TranslationServiceProvider the our ServiceProvider in config/app.php.
Find:
'Illuminate\Translation\TranslationServiceProvider',
and Replace this with:
'Zash\Translation\ServiceProvider',
The ServiceProvider will now be loaded. To use this package properly you'll also need the create a table in your database, this can be achieved by publishing the config and migration of this package.
Run the following command:
php artisan vendor:publish --provider='Zash\Translation\ServiceProvider'
and afterwards run your migrations:
php artisan migrate
And that's all there is to it!
You can just start using translations as you would normaly do with the Laravels default package. The functions trans()
and Lang::get()
can be used as you normaly would.
For more information about Localization and the usage of these functions, please refer to the Documentation on the mather.
The usage of translation files is however still possible. Every translation prefixed by a namespace is parsed through the old TranslationServiceProvider. This is needed for external packages that come with there own translation files. But in general you shouldn't be bothered by this.
To ease the proces of migrating to translations in the database, two commands are available since version 0.3.
To import all translations out of your current language files, you can use the command:
php artisan translation:fetch
This will import all available translations in language files into the database.
To import just some specifics you can also make use of the options
--locale
and--group
.
To dump the translations from your database back to your filesystem, use:
php artisan translation:dump
The options
--locale
and--group
are also available for this command. Caution: all current files will be overwritten, so use with care!