Manage laravel translation files from your admin panel. This package depends on Anavel foundation, (*1)
Features
- Easily manage app and vendor translation files.
 
- Automatically reorders translations (alphabetically)
 
- Easily create new language lines
 
- Arrays supported
 
Installation
Configuration
Publish translation config file with php artisan vendor:publish, (*2)
Include the files you want to manage within the files array, like this:, (*3)
    /*
    |--------------------------------------------------------------------------
    | Files to translate
    |--------------------------------------------------------------------------
    |
    */
    'files' => [
        'user'   => [
            'aFileName',
            'anotherFileName'
        ],
        'vendor' => [
            'vendorname' => 'vendorFileName'
        ]
    ],
user is an array of filenames (without extension) located in Laravel's default folder (resources/lang/LOCALE_NAME).
vendor is an associative array of filenames (without extension), keyed by vendorname, located in Laravel's default folder (resources/lang/vendor/VENDORNAME/LOCALE_NAME)., (*4)
This package will read and then write those files, so your app must have write permissions to those folders. You must specify a disc driver for Laravel to use:, (*5)
config/anavel-translation.php:, (*6)
    /*
    |--------------------------------------------------------------------------
    | File Disc Driver
    |--------------------------------------------------------------------------
    |
    | Disc driver pointing to resources/lang folder
    |
    */
    'filedriver'  => 'YOUR_DRIVER_NAME',
config/filesystem.php:, (*7)
    'disks' => [
        [SOME OTHER FILE DRIVERS ],
        'YOUR_DRIVER_NAME' => [
            'driver' => 'local',
            'root'   => base_path('resources/lang'),
        ],
    ]
Versioning
If you use a versioning system (such as git) you should add the language folder to your gitignore. Otherwise, you might
get conflicts if different users update the translations., (*8)
How it works
Translations reads the files that you specify in the config and displays their content in a form, tabbed by locale.
 The translation key becomes the input label and the translation itself becomes the input value.
 Locales are taken from the Anavel foundation config., (*9)
To make the translation process easier, Translation shows the same language entries in all locales, even if a key is missing in a given locale.
 In that case, the displayed text will be taken from the fallback locale (as Laravel does)., (*10)
When saved, translations are written back to the files. If a file doesn't exist in a locale, a new one is created., (*11)