Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP and a google translator API alternative

Since Google is going to pull the plug out of their translator API (by the end of this year), Is there someone who already found a good (free or $) alternative?

like image 977
Joost Avatar asked Mar 01 '26 18:03

Joost


1 Answers

Try TranslateThis on http://translateth.is/...

Is very simple! To see the effects try this piece of code:

<!-- Begin TranslateThis Button -->

<div id="translate-this"><a style="width:180px;height:18px;display:block;" class="translate-this-button" href="http://translateth.is/">Translate</a></div>

<script type="text/javascript" src="http://x.translateth.is/translate-this.js"></script>
<script type="text/javascript">
TranslateThis();
</script>

<!-- End TranslateThis Button -->

Don't worry about the button aspect... You can customize it!

like image 65
Telmo Avatar answered Mar 03 '26 19:03

Telmo