-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Contributing to this Akeneo Product Attributes Translator | ||
===================================== | ||
|
||
|
||
Reporting Issues | ||
---------------- | ||
|
||
When reporting issues, please try to be as descriptive as possible, and include | ||
as much relevant information as you can. A step-by-step guide on how to | ||
reproduce the issue will greatly increase the chances of your issue being | ||
resolved in a timely manner. | ||
|
||
|
||
Contributing policy | ||
------------------- | ||
|
||
**You can not commit directly on this repository.** | ||
|
||
Fork the project, create a feature branch, and send a pull request on the develop branch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Akeneo Product Attributes Translator | ||
|
||
Akeneo's extension adding new mass edit type "Translate attributes". | ||
|
||
### How to download and install the connector: | ||
|
||
Install composer dependency | ||
|
||
```shell | ||
composer require piotrmus/akeneo-product-translation | ||
``` | ||
|
||
register bundle in `config/bundles.php` | ||
|
||
```php | ||
|
||
return [ | ||
\Piotrmus\Translator\PiotrmusTranslatorBundle::class => ['dev' => true, 'test' => true, 'prod' => true], | ||
]; | ||
|
||
``` | ||
|
||
define Google Cloud Translate API Key in `.env` file: | ||
|
||
```dotenv | ||
GOOGLE_API_KEY=yourapikey | ||
``` | ||
|
||
### Features: | ||
|
||
With Akeneo Product Attributes Translator you can make mass edit job to translate multiple text attributes from one | ||
channel and one locale to target channel and target locale. | ||
|
||
Extension uses [Google Cloud Translation API](https://cloud.google.com/translate) | ||
|
||
### Requirements: | ||
|
||
* Akeneo PIM >= 4.x |