Skip to content

jdewit/TranslatorBundle

Repository files navigation

Avro Translator Bundle

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

About

Symfony2 bundle that translates text using Microsoft Translator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages