- eZ Platform 3.x
- PHP 7.1+
Run composer require ezsystems/ezplatform-automated-translation
to install the bundle and its dependencies:
The new bundle is automatically enabled in the configuration thanks to Flex. Even though, it's important and required to move EzSystems\EzPlatformAutomatedTranslationBundle\EzPlatformAutomatedTranslationBundle::class => ['all' => true]
before EzSystems\EzPlatformAdminUiBundle\EzPlatformAdminUiBundle::class => ['all' => true],
due to the templates loading order.
<?php
return [
...
EzSystems\EzPlatformAutomatedTranslationBundle\EzPlatformAutomatedTranslationBundle::class => ['all' => true],
EzSystems\EzPlatformAdminUiBundle\EzPlatformAdminUiBundle::class => ['all' => true],
...
];