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
Detailed information is now in the wiki.
- Require this package in your composer.json and run composer update
"require": {
..
"vsch/laravel-translation-manager": "dev-laravel-8"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codetec-info/laravel-translation-manager"
}
]
By default, Free mymemory, anonymous usage is limited to 1000 words/day. Provide a valid email ('de' parameter), where we can reach you in case of troubles, and enjoy 10000 words/day. (append url '&de=your_email_address' in the translation.js in line 95)
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.
* This package was originally based on Barry vd. Heuvel's excellent barryvdh package.