Package Data | |
---|---|
Maintainer Username: | tabacitu |
Maintainer Contact: | alin@updivision.com (Alin Ghitu) |
Package Create Date: | 2016-03-11 |
Package Last Update: | 2024-04-08 |
Home Page: | http://backpackforlaravel.com |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-14 15:05:17 |
Package Statistics | |
---|---|
Total Downloads: | 205,247 |
Monthly Downloads: | 1,970 |
Daily Downloads: | 37 |
Total Stars: | 92 |
Total Watchers: | 16 |
Total Forks: | 42 |
Total Open Issues: | 0 |
A quick interface to edit language files, for Laravel Backpack.
Security updates and breaking changes
Please subscribe to the Backpack Newsletter so you can find out about any security updates, breaking changes or major features. We send an email every 1-2 months.
composer require backpack/langfilemanager
php artisan vendor:publish --provider="Backpack\LangFileManager\LangFileManagerServiceProvider" --tag="migrations" #publish the migration file
php artisan migrate
php artisan db:seed --class="Backpack\LangFileManager\database\seeds\LanguageTableSeeder"
php artisan vendor:publish --provider="Backpack\LangFileManager\LangFileManagerServiceProvider" --tag="config" #publish the config file
php artisan vendor:publish --provider="Backpack\LangFileManager\LangFileManagerServiceProvider" --tag="lang" #publish the lang files
// TODO: change variable to "protected_lang_files" or smth like that
Tell LangFileManager what langfiles NOT to show, in config/backpack/langfilemanager.php:
// Language files to NOT show in the LangFileManager
//
'language_ignore' => ['admin', 'pagination', 'reminders', 'validation', 'log', 'crud'],
Add a menu item for it in resources/views/vendor/backpack/base/inc/sidebar.blade.php:
<li class="treeview">
<a href="#"><i class="fa fa-globe"></i> <span>Translations</span> <i class="fa fa-angle-left pull-right"></i></a>
<ul class="treeview-menu">
<li><a href="{{ url(config('backpack.base.route_prefix', 'admin').'/language') }}"><i class="fa fa-flag-checkered"></i> Languages</a></li>
<li><a href="{{ url(config('backpack.base.route_prefix', 'admin').'/language/texts') }}"><i class="fa fa-language"></i> Site texts</a></li>
</ul>
</li>
or in menu.blade.php:
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="true">
<i class="fa fa-globe"></i> Translations<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li class=""><a href="{{ url(config('backpack.base.route_prefix', 'admin').'/language') }}"><i class="fa fa-flag-checkered"></i> Languages</a></li>
<li class=""><a href="{{ url(config('backpack.base.route_prefix', 'admin').'/language/texts') }}"><i class="fa fa-language"></i> Site texts</a></li>
</ul>
</li>
Or just try at your-project-domain/admin/language/texts
See http://laravelbackpack.com
Please see CHANGELOG for more information what has changed recently.
// TODO
$ composer test
Please see CONTRIBUTING for details.
If you discover any security related issues, please email alin@updivision.com or hello@tabacitu.ro instead of using the issue tracker.
Please subscribe to the Backpack Newsletter so you can find out about any security updates, breaking changes or major features. We send an email every 1-2 months.
The MIT License (MIT). Please see License File for more information.