Skip to content

Commit

Permalink
Add README.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmus committed Jan 25, 2021
1 parent f035212 commit ac26760
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
1 change: 0 additions & 1 deletion CHANGELOG.md

This file was deleted.

19 changes: 19 additions & 0 deletions CONTRIBUTING.md
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.
38 changes: 38 additions & 0 deletions README.md
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

0 comments on commit ac26760

Please sign in to comment.