Package Data | |
---|---|
Maintainer Username: | tedslittlerobot |
Maintainer Contact: | stef@tedslittlerobot.com (Stef Horner) |
Package Create Date: | 2014-01-21 |
Package Last Update: | 2015-02-13 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-15 15:08:44 |
Package Statistics | |
---|---|
Total Downloads: | 1,723 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 1 |
A language export and import command for Laravel 4. (yes, laravel 5 is coming...)
When dealing with agencies and companies who translate programming projects and websites into other languages, they often request it in certain formats.
Add the following to your composer.json
's require object:
"tlr/laravel-lang-tools": "1.x"
Then, add Tlr\LaravelLangTools\LaravelLangToolsServiceProvider
to the providers
array in config/app.php
.
The package provides two CLI commands:
Running php artisan lang:export
will display the current lang tokens, and all of their translations in a table in the terminal - in a similar manner to viewing laravel's routes.
Running php artisan lang:export --format csv > translations.csv
will save a csv of all of the translations, and their keys, to a csv file. This can be sent to translators.
Running php artisan lang:import translations.csv
will convert a csv file (in the same format as the one outputted) into a laravel-style lang directory structure, with lang.php files in. At the moment, the path to the provided file must be relative to the project directory.
By default, the output is saved to a directory called lang
in your project's root directory. You can pass a relative path as a third argument to change this. The target directory must not already exist.
You may want to give translators some notes from laravel's localization docs page - especially regarding variables, and pluralisation.