revolta77 / ltm
Enhanced Laravel Translation Manager
Installs: 218
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: >=7.2.5
- doctrine/dbal: ^2.10
- illuminate/support: >=7.0
- illuminate/translation: >=7.0
- laravelcollective/html: ^6.1
- symfony/finder: ^5.0
Requires (Dev)
- fzaninotto/faker: ~1.9
- mockery/mockery: ^1.3
- phpspec/phpspec: ~6.1
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2024-11-04 22:58:20 UTC
README
This package is used to comfortably manage, view, edit and translate Laravel language files with translation assistance through the Yandex Translation API. It augments the Laravel Translator system with a ton of practical functionality. Features
⚠️ Only MySQL and PostgreSQL Database connections are supported. Adding another database only requires additional repository interface implementations following the examples of MysqlTranslatorRepository.php or PostgresTranslatorRepository.php.
⚠️ **If you want to use this package for a smaller version than Laravel 7 use the original package from (https://github.com/vsch/laravel-translation-manager) **
When upgrading from earlier versions run:
$ php artisan vendor:publish --provider="Revolta77\TranslationManager\ManagerServiceProvider" --tag=public --force $ php artisan vendor:publish --provider="Revolta77\TranslationManager\ManagerServiceProvider" --tag=migrations $ php artisan migrate
Supported Laravel Versions
- For Laravel 7.0 require:
"revolta77/ltm": "~1.0"
Initial Localizations Added
❗ If you have made correction to the auto-translated localization and would like to share them with others please do so. It will be greatly appreciated.
Detailed information is now in the wiki.
Installation
Configuration
Version Notes
Per Locale User Access Control
Implementation changed from the last release since using a closure in config file is not supported by the framework. Now using abilities to do the same. See Enabling per locale user access control
By default this option is turned off and any user who does not have ltm-admin-translations
ability can modify any locale. With user_locales_enabled
option enabled you can control which
locales a user is allowed to modify. Default for all users is all locales, unless you
specifically change that through the web UI, see User Admin or by populating the
ltm_user_locales
table appropriately.
Screen Shot
* This package was originally based on Barry vd. Heuvel's excellent barryvdh package and vsch package from https://github.com/vsch/laravel-translation-manager.