google/translation-client

There is no license information available for the latest version (dev-master) of this package.

Google Translation API Client

dev-master 2013-07-01 14:47 UTC

This package is not auto-updated.

Last update: 2024-04-09 01:23:50 UTC


README

This is a minimalistic API client for Google Translation API

Installation

Installation is conveniently provided via Composer.

To get started, install composer in your project:

$ curl -s https://getcomposer.org/installer | php

Next, add a composer.json file containing the following:

}
    "require": {
        "google/translation-client": "dev-master"
    }
}

Finall, install!

$ php composer.phar install

Usage

Using the Google Translation client is easy:

<?php

require_once '../src/Client.php';

try {
    $client = new Goolge_Translate('YOUR API KEY');
    $client->setSource('en')
        ->setTarget('gl')
        ->setText('If wishes were fishes, we\'d all cast nets')
        ->translate();
} catch (Exception $e) {
    echo $e->getMessage();
}