melk / bing-translation
Package info
github.com/dmelk/BingTranslationBundle
Type:symfony-bundle
pkg:composer/melk/bing-translation
1.0.0
2015-06-03 11:48 UTC
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: 3.*
This package is auto-updated.
Last update: 2026-02-21 04:10:23 UTC
README
Bing translation service for Symfony2
#Installation Just add this line to composer:
"melk/bing-translation" : "dev-master"
Then add bundle to your AppKernel.php file:
new Melk\BingTranslationBundle\MelkBingTranslationBundle(),
#Configuration
Create MS application and add next information to your config.yml:
#app/config/config.yml
melk_bing_translation:
client_id: your client id
client_secret: your client secret
#Usage Simple example of how to translate comments in controller:
$bingTranslator = $this->get('melk_bing_translation.translator');
$commentLocale = $bingTranslator->detectLanguage($comment);
$translated = $bingTranslator->translate($comment, $commentLocale, $toLocale);