Translating Laravel languages files using a Google Spreadsheet.
Install package
$ composer require nikaia/translation-sheet --dev
If Laravel version <= 5.4, Add service provider to your 'config/app.php'. For version >= 5.5, package will be auto-discoverd by Laravel.
Nikaia\TranslationSheet\TranslationSheetServiceProvider::class,
Configuration can be done via environments variables, but if you prefer you can override the configuration by publishing the package config file using :
$ php artisan translation_sheet:publish
or
$ php artisan vendor:publish --provider="Nikaia\TranslationSheet\TranslationSheetServiceProvider"
Laravel >= 5.1
Sheet Api
for the created project
Can edit
permission.In your .env file or in your published config file (config/translation_sheet.php
), you need to add the following
# The service account email
TS_SERVICE_ACCOUNT_EMAIL=***@***.iam.gserviceaccount.com
# The path to the downloaded service account credentials file
TS_SERVICE_ACCOUNT_CREDENTIALS_FILE=resources/google/service-account.json
# The ID of the spreadsheet that we will be using for translation (the last portion of the spreadsheet url)
TS_SPREADSHEET_ID=xxxx
# The locales of the application (separated by comma)
TS_LOCALES=fr,en,es
1/ Setup the spreadsheet
This need to be done only once.
$ php artisan translation_sheet:setup
2/ Prepare the sheet
To avoid some conflicts, we will first run this command to rewrite the locale languages files.
$ php artisan translation_sheet:prepare
3/ Publish translation to sheet
$ php artisan translation_sheet:push
4/ Share the spreadsheet with clients or project managers for translations.
5/ Once done, You can lock the translations on the spreadsheet (to avoid conflicts)
$ php artisan translation_sheet:lock
6/ Pull the translations
This will pull the translations from the spreadsheet, and write it the language files in your applications. You can use git diff here to make sure eveything is ok (Conflicts, errors etc ...)
$ php artisan translation_sheet:pull
6/ Unlock the translations on the spreadsheet
$ php artisan translation_sheet:unlock
Open the spreadsheet in the browser
$ php artisan translation_sheet:open
Sometimes you might need to instruct the package to exclude some translations.
You can do so by specifying patterns in the exclude
config option.
It accepts multiple patterns that target the full translation keys and that the Str::is can understand.
[
// ...
'exclude' => [
'validation*', // This will exclude all the `validation.php` translations.
'foo::*', // This will exclude all the `foo` namespace translations.
'foo::bar.*', // this will exclude the `bar` translations from the `foo` namespace.
],
// ...
]
Sometimes you may have other files that need translations.
They are not related to the laravel application per se and are not stored in the resources\lang
folder.
Maybe you are building a web app (spa), or even a mobile app alongside
the laravel app, and you need to handle their translations.
In this specific case, you can configure extra sheets to handle those translations files stored inside a specific path.
resources\lang
directory. For instance resources\web-app\lang
.[
// ...
'extra_sheets' => [
[
'name' => 'Web App', // Spreadsheet sheet (tab) name.
'path' => resource_path('web-app/lang'), // Path where json files are stored. Files can be organized inside sub folders.
'tabColor' => '#0000FF', // Color of the spreadsheet tab
],
[
'name' => 'Mobile App',
'path' => resource_path('mobile-app/lang'),
'tabColor' => '#0000FF',
],
],
]
You need to run
translation_sheet:setup
command, if you add this config later on.
Please see CHANGELOG for more information what has changed recently.
$ composer test
N.B : You need a valid configuration service-account.json file to run tests.
To test your fork using github action, you need a valid service-account.json
. The file is ignored in the repository to avoid exposing credentials.
You need to encode your credentials file tests/fixtures/service-account.json using
gpg`
# Save credential file to tests/fixtures/service-account.json
$ gpg -c tests/fixtures/service-account.json tests/fixtures/service-account.json.gpg
Commit the .gpg
encoded file.
PS. Github action will decrypt the file just before running the tests. See the run-tests.yml
file.
If you discover any security related issues, please email nbourguig@gmail.com instead of using the issue tracker.
Please see CONTRIBUTING for details.