All Projects → statickidz → Php Google Translate Free

statickidz / Php Google Translate Free

Licence: gpl-3.0
PHP class to use the Google Translator API for free.

Projects that are alternatives of or similar to Php Google Translate Free

Libretranslate
Free and Open Source Machine Translation API. 100% self-hosted, no limits, no ties to proprietary services. Built on top of Argos Translate.
Stars: ✭ 834 (+358.24%)
Mutual labels:  api, translation, translate
Dynamictranslator
Instant translation application for windows in .NET 🎪
Stars: ✭ 131 (-28.02%)
Mutual labels:  google, translation, translate
Trino
Trino: Master your translations with command line!
Stars: ✭ 118 (-35.16%)
Mutual labels:  api, google, translate
Google Translate
翻译工具 支持网页翻译和文本翻译
Stars: ✭ 356 (+95.6%)
Mutual labels:  api, google, translate
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (-16.48%)
Mutual labels:  api, translation, translate
Google Translate Api
A free and unlimited API for Google Translate 💵🚫
Stars: ✭ 1,996 (+996.7%)
Mutual labels:  api, google, translate
Translators
🌏🌍🌎Translators🌎🌍🌏 is a library which aims to bring free, multiple, enjoyable translation to individuals and students in Python. Translators是一个旨在用Python为个人和学生带来免费、多样、愉快翻译的库。
Stars: ✭ 295 (+62.09%)
Mutual labels:  google, translation, translate
Mtrans
Multi-source Translation
Stars: ✭ 711 (+290.66%)
Mutual labels:  api, google, translate
Google Translate
🈯 A Node.JS library to consume Google Translate API for free.
Stars: ✭ 152 (-16.48%)
Mutual labels:  api, google, translate
Esp V2
A service proxy that provides API management capabilities using Google Service Infrastructure.
Stars: ✭ 120 (-34.07%)
Mutual labels:  api, google
Gsheets Db Api
A Python DB-API and SQLAlchemy dialect to Google Spreasheets
Stars: ✭ 122 (-32.97%)
Mutual labels:  api, google
Geeksay
🤓 geeks will ctrl+s the world!
Stars: ✭ 127 (-30.22%)
Mutual labels:  api, translate
Traduora
Ever® Traduora - Open-Source Translation Management Platform
Stars: ✭ 1,580 (+768.13%)
Mutual labels:  api, translation
Ng Gapi
ng-gapi a Google api module for Angular 6+
Stars: ✭ 126 (-30.77%)
Mutual labels:  api, google
Parse Google Docs Json
Authenticates with Google API and parse Google Docs to JSON or Markdown
Stars: ✭ 100 (-45.05%)
Mutual labels:  api, google
Searchconsoler
R interface with Google Search Console API v3, including Search Analytics.
Stars: ✭ 99 (-45.6%)
Mutual labels:  api, google
Google Translate Open Api
A free and unlimited API for Google Translate(support single text and Multi-segment text) 💵🚫
Stars: ✭ 132 (-27.47%)
Mutual labels:  translation, translate
Dialogflow Web
Web App for Dialogflow
Stars: ✭ 135 (-25.82%)
Mutual labels:  api, google
Alfred Polyglot
🈚️ Translate text using Google Translate in Alfred
Stars: ✭ 142 (-21.98%)
Mutual labels:  google, translate
Googleauthr
Google API Client Library for R. Easy authentication and help to build Google API R libraries with OAuth2. Shiny compatible.
Stars: ✭ 150 (-17.58%)
Mutual labels:  api, google

PHP GoogleTranslate free Build Status

Simple PHP library for talking to Google's Translate API for free.

Eliminates IP request limitations

Installation

Install this package via Composer.

composer require statickidz/php-google-translate-free

Or edit your project's composer.json to require statickidz/php-google-translate-free and then run composer update.

"require": {
    "statickidz/php-google-translate-free": "^1.1.1"
}

Requires installing tor (https://www.torproject.org/).

Usage

require_once ('vendor/autoload.php');
use \Statickidz\GoogleTranslate;

$source = 'es';
$target = 'en';
$text = 'buenos días';

$trans = new GoogleTranslate();
$result = $trans->translateGhost($source, $target, $text);

echo $result;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].