Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ben182/laravel-auto-translate
Automatically translate your language files using a translator service
https://github.com/ben182/laravel-auto-translate
laravel laravel-5-package laravel-package php translations
Last synced: 6 days ago
JSON representation
Automatically translate your language files using a translator service
- Host: GitHub
- URL: https://github.com/ben182/laravel-auto-translate
- Owner: ben182
- License: mit
- Created: 2019-02-10T21:31:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-08T07:28:52.000Z (over 3 years ago)
- Last Synced: 2025-01-12T14:07:42.220Z (13 days ago)
- Topics: laravel, laravel-5-package, laravel-package, php, translations
- Language: PHP
- Homepage:
- Size: 80.1 KB
- Stars: 178
- Watchers: 6
- Forks: 51
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome - ben182/laravel-auto-translate - Automatically translate your language files using a translator service (PHP)
README
With this package you can translate your language files using a translator service. The package ships with a free Google Translate version, Google Translate API and Deepl.
Specify a source language and a target language and it will automatically translate your files. This is useful if you want to prototype something quickly or just a first idea of the translation for later editing. The package ships with two artisan commands. One for translating all the missing translations that are set in the source language but not in the target language. The other one for translating all source language files and overwriting everything in the target language.
## Installation
This package can be used in Laravel 5.6 or higher and needs PHP 7.2 or higher.
You can install the package via composer:
```bash
composer require ben182/laravel-auto-translate
```## Config
After installation publish the config file:
```bash
php artisan vendor:publish --provider="Ben182\AutoTranslate\AutoTranslateServiceProvider"
```You can specify your source language, the target language(s), the translator and the path to your language files in there.
## Translators
| Name | Free | File | Documentation | Available languages |
|------------------------|------|---------------------------------------------------------|-------------------------------------|----------|
| Google Translate HTTP | Yes | Ben182\AutoTranslate\Translators\SimpleGoogleTranslator | / | Over 100 |
| Google Cloud Translate | No | Ben182\AutoTranslate\Translators\GoogleCloudTranslator | [Documentation](https://cloud.google.com/translate/) | Over 100 |
| Deepl API v2 | No | Ben182\AutoTranslate\Translators\DeeplTranslator | [Documentation](https://www.deepl.com/docs-api.html) | EN, DE, FR, ES, PT, IT, NL, PL, RU |If you have lots of translations to make I recommend Google Cloud Translate or Deepl. They are fast, reliable and you will not encounter any rate limiting.
## Usage
### Missing translations
Simply call the artisan missing command for translating all the translations that are set in your source language, but not in your target language:
```bash
php artisan autotrans:missing
```E.g. you have English set as your source language. The source language has translations in auth.php:
```php
'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
```Your target language is German. The auth.php file has the following translations:
```php
'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.',
];
```The artisan missing command will then translate the missing `auth.throttle` key.
### All translations
To overwrite all your existing target language keys with the translation of the source language simply call:
```bash
php artisan autotrans:all
```This will overwrite every single key with a translation of the equivalent source language key.
### Parameters
Sometimes you have translations like these:
```php
'welcome' => 'Welcome, :name',
```They can be replaced with variables. When we pass these placeholders to a translator service, weird things can happen. Sometimes the placeholder comes back in upper-case letters or it has been translated. Thankfully the package will respect your variable placeholders, so they will be the same after the translation.
## Extending
You can create your own translator by creating a class that implements `\Ben182\AutoTranslate\Translators\TranslatorInterface`. Simply reference it in your config file.
### Testing
``` bash
composer test
```### Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Benjamin Bortels](https://github.com/ben182)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
## Laravel Package Boilerplate
This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).