Google bu bağlantı için bir sınıf yazmışmış, yeni fark ettim. Gayette pratik bir kullanımı var.
http://gtranslate-api-php.googlecode.com/files/gtranslate-api-php.0.7.1.zip
PHP:
<?php
require("GTranslate.php");
try{
$gt = new Gtranslate;
echo "Translating [Hello World] from English to German => ".$gt->english_to_german("hello world")."<br/>";
echo "Translating [Ciao mondo] Italian to English => ".$gt->it_to_en("Ciao mondo")."<br/>";
} catch (GTranslateException $ge)
{
echo $ge->getMessage();
}
?>
http://gtranslate-api-php.googlecode.com/files/gtranslate-api-php.0.7.1.zip