2017 © Pedro Peláez
 

symfony-bundle microsoft-translator-bundle

Bundle for using the Microsoft Translator V2 API

image

matthiasnoback/microsoft-translator-bundle

Bundle for using the Microsoft Translator V2 API

  • Thursday, November 19, 2015
  • by matthiasnoback
  • Repository
  • 1 Watchers
  • 4 Stars
  • 217 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 5 Forks
  • 1 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

MicrosoftTranslatorBundle

By Matthias Noback, (*1)

Installation

Using Composer, add to composer.json:, (*2)

{
    "require": {
        "matthiasnoback/microsoft-translator-bundle": "dev-master"
    }
}

Then using the Composer binary:, (*3)

php composer.phar install

Register the bundle in /app/AppKernel.php:, (*4)

<?php

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new MatthiasNoback\MicrosoftTranslatorBundle\MatthiasNobackMicrosoftTranslatorBundle(),
        );
    }
}

Usage

This bundle wraps the corresponding Microsoft Translator V2 API PHP library and adds the translator as the service microsoft_translator to your service container., (*5)

You need to register your application at the Azure DataMarket and thereby retrieve a "client id" and a "client secret". Copy these values to the right keys in config.yml:, (*6)

matthias_noback_microsoft_translator:
    oauth:
        client_id: "YOUR-CLIENT-ID"
        client_secret: "YOUR-CLIENT-SECRET"

Making calls

Translate a string

// in your controller

$translatedString = $this->get('microsoft_translator')->translate('This is a test', 'nl', 'en');

// $translatedString will be 'Dit is een test', which is Dutch for...

Detect the language of a string

$text = 'This is a test';

$detectedLanguage = $this->get('microsoft_translator')->detect($text);

// $detectedLanguage will be 'en'

Get a spoken version of a string

$text = 'My name is Matthias';

$spoken = $this->get('microsoft_translator')->speak($text, 'en', 'audio/mp3', 'MaxQuality');

// $spoken will be the raw MP3 data, which you can save for instance as a file

For more examples, see the README of the PHP library, (*7)

The Versions

19/11 2015

dev-master

9999999-dev http://github.com/matthiasnoback/MicrosoftTranslatorBundle

Bundle for using the Microsoft Translator V2 API

  Sources   Download

MIT

The Requires

 

translate bing microsoft translator

19/11 2015

v0.2.2

0.2.2.0 http://github.com/matthiasnoback/MicrosoftTranslatorBundle

Bundle for using the Microsoft Translator V2 API

  Sources   Download

MIT

The Requires

 

translate bing microsoft translator

19/11 2015

dev-matthiasnoback-patch-1

dev-matthiasnoback-patch-1 http://github.com/matthiasnoback/MicrosoftTranslatorBundle

Bundle for using the Microsoft Translator V2 API

  Sources   Download

MIT

The Requires

 

translate bing microsoft translator

16/07 2013

v0.2.1

0.2.1.0 http://github.com/matthiasnoback/MicrosoftTranslatorBundle

Bundle for using the Microsoft Translator V2 API

  Sources   Download

MIT

The Requires

 

translate bing microsoft translator

16/07 2013

v0.2.0

0.2.0.0 http://github.com/matthiasnoback/MicrosoftTranslatorBundle

Bundle for using the Microsoft Translator V2 API

  Sources   Download

MIT

The Requires

 

translate bing microsoft translator

05/11 2012

v0.1.0

0.1.0.0 http://github.com/matthiasnoback/MicrosoftTranslatorBundle

Bundle for using the Microsoft Translator V2 API

  Sources   Download

MIT

The Requires

 

translate bing microsoft translator