Use this package to export your translations into an easy-to-use CSV format. Also you can export only those texts that are not yet translated in the rest of your locales.
You can install the package via composer:
composer require gnahotelsolutions/laravel-i18n-manager
Export all translations for all locales based on English:
php artisan i18n:export --from=en
Export only missing translations in Catalan based on English:
php artisan i18n:export --missing --from=en --to=ca
Import translations for all locales:
php artisan i18n:import --file=path/to/file.zip
⚠️ The ZIP file must be in the same format as the exported one. It should contain a folder for each locale and the individual files inside just like the regularresources/lang
laravel folder
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.