2017 © Pedro Peláez
 

library google_translate

Google Translte SamsonPHP module

image

samsonos/google_translate

Google Translte SamsonPHP module

  • Thursday, January 22, 2015
  • by samsonos
  • Repository
  • 2 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

SamsonPHP Google Translate API module

Latest Stable Version Build Status Code Coverage Total Downloads Scrutinizer Code Quality Stories in Ready, (*1)

Configuration

Before using translate module methods, you must create configuration and enter your Google API Key for using Google Translate API, (*2)

All you need is create configuration class which is working thanks to SamsonPHP module/service configuration:, (*3)

class Google_TranslateConfig extends \samson\core\Config
{
    public $apiKey = 'Your_Google_API_Key';
}

Creating translate request

After creating configuration you can make request to Google Translate API. To create simple request you must define source language of you text and target language which you want to get. To identify languages you can use source($source) and target($target) methods., (*4)

For example you want to translate 'Hello World' to french:, (*5)

/** @var \samson\google\Translate $trans Get SamsonPHP GoogleTranslate module */
$trans = m('google_translate');

// Source text
$helloWorld = 'Hello World';

// Translated text
$bonjourLeMonde = $trans->source('en')->target('fr')->trans($helloWorld);

Fixing translation errors

If you have some problems with API Key or you have make some errors in defining source or target locales, you will get error from Google Translate API. You can check status of your request using method lastRequestStatus():, (*6)

/** @var \samson\google\Translate $trans Get SamsonPHP GoogleTranslate module */
$trans = m('google_translate');

// Source text
$helloWorld = 'Hello World';

// Translated text
$bonjourLeMonde = $trans->source('gb')->target('fr')->trans($helloWorld);
// Is false, because gb locale is not found in Google language codes.

// Will return 'Invalid value'
echo $trans->lastRequestStatus(); 

This module is working using Google Translate API, (*7)

The Versions

22/01 2015

dev-master

9999999-dev

Google Translte SamsonPHP module

  Sources   Download

Open Software License (OSL) v 3.0

The Requires

 

The Development Requires

by Nikita Kotenko

php translate samsonphp samsonos