lsoft / translator-bundle
LSoft fork of Avro symfony2 bundle that uses 3rd party translation apis to translate text
1.0.0
2016-03-25 12:27 UTC
This package is not auto-updated.
Last update: 2024-10-30 18:21:27 UTC
README
A Symfony2 bundle that utilizes Microsoft Translator to translate text. Unlike Google translate, Microsoft translate has a free plan that allows for 2 000 000 characters to be translated per month.
See Microsoft Translator Docs on how to setup your azure account to get your clientID and client secret.
Install
$ composer install avro/translator-bundle
Add bundle to AppKernel.
new Avro\TranslatorBundle\AvroTranslatorBundle(),
Config
avro_translator:
azure:
client_id: %azure_client_id%
client_secret: %azure_client_secret%
Usage
Translator is available as a service
// translate some text from english to spanish
$newText = $this->container->get('avro_translator.translator')->translate('Some text here', 'en', 'es');
License
MIT