It looks like that tool is offered for free:
http://translate.google.com/translate_tools -- but it puts a Google branded
widget on the page. There's also a Google Translate API (
https://developers.google.com/translate/v2/pricing), which you can access
on the server side (via a Python library), but that is a paid service (it
used to be free, but no more).
Anthony
On Monday, June 11, 2012 6:47:47 AM UTC-4, Rahul wrote:
>
> Hey All,
> I am really confused - I want to know if I need to pay for using
> the below code into my webpage ? This invokes the google translator online.
>
> <div id="google_translate_element"></div><script>
> function googleTranslateElementInit() {
> new google.translate.TranslateElement({
> pageLanguage: 'en'
> }, 'google_translate_element');
> }
> </script><script src="//
> translate.google.com/translate_a/element.js?cb=googleTranslateElementInit
> "></script>
>
> Cheers Rahul D
>