Questions tagged [google-translate]

Google Translate is a paid statistical machine translation service provided by Google Inc. to translate a section of text, document or webpage, into another language.

Google Translate functionality can be consumed programmatically using the Google Translate API. Google Translate API v1 is no longer available as of December 1, 2011 and has been replaced by Google Translate API v2.

While the Google Translate API switched to a paid service, Google is still offering the Google Translate Element as an ongoing alternative. The Google Translate Element, when embedded on a webpage via JavaScript and an optional placeholder HTML <div>, can translate pages automatically.

1884 questions
0
votes
0 answers

Default Translator Language using Google Translate

I have a simple website that contains news from various parts of the world. The news are sourced in their local language - so for example my website holds news data in Spanish, English, Italian, French, German. Currently, the translation is handled…
HughJanus
  • 55
  • 1
  • 8
0
votes
1 answer

google translate API error undefined

I have written a sample nodejs code to consume google translate API. For last 2-3 days I am getting undefined error intermittently. If I run this sample code multiple times, randomly few times I am getting the error. not sure if I am doing something…
Nanu Kanu
  • 1
  • 3
0
votes
2 answers

Content quotas limitations - How to differentiate "per project" and "per project per user"?

we are working with the Google Cloud - Translate API. We need to translate more than the 100.000 characters per 100 seconds. The limitations describes the "Maximum" values per 100 seconds. Characters per 100 seconds per project:…
0
votes
0 answers

TTS reading error for thai words

when TTS reads sentence 1. "กลอนอกหักน้อยใจ ก็แค่คนหนึ่งคน" In the last word,it supposed to read "Khon" but it reads "Ko-no". "วันนี้ฝนตก." It reads wan nee phon tor kor" It should be "wan nee phon tok".
0
votes
1 answer

unable to translate from Arabic to English Google translate free api

I am using nodeJS and this google URL to translate query: from English to Arabic works fine http://translate.googleapis.com/translate_a/single?client=gtx&sl=en&tl=ar&dt=t&q=Hello but when changing URL Translation from Arabic to…
0
votes
1 answer

Google Translate REST API, getting the Nouns, Adjective,ect

I am using the Google Translate REST API with Embarcadero Delphi language. I wrote my own wrapper for the translate call > https://translation.googleapis.com/language/translate/v2 This was pretty straight forward and works fine. My only question is:…
0
votes
1 answer

Google Translator in Android

I code abide by http://android-er.blogspot.com/2009/10/multi-language-translate.html and it force close private void showLang() { db.open(); cursor = db.getLang(); cursor.moveToFirst(); startManagingCursor(cursor); …
praew_z
  • 175
  • 1
  • 3
  • 17
0
votes
1 answer

Android Google Translate API Permission Denied

I've been trying to get the Google Translate API working. I have read and re-read a number of posts, as well as the Google Cloud authentication guide (http://cloud.google.com/docs/authentication/getting-started#auth-cloud-implicit-java) but still…
DHHJ
  • 103
  • 1
  • 12
0
votes
1 answer

Google Translate / Android Error

I'm just starting out with the Google Translation API Client Libraries, using SDK 26/min 22 in AS 3.0.1, following http://cloud.google.com/translate/docs/reference/libraries. I'm using their suggested code, after getting a key and installing the…
DHHJ
  • 103
  • 1
  • 12
0
votes
1 answer

Translation inconsistency for one single name Blackstone from English to Chinese

We use Google Cloud Translate service. There is critical inconsistency about different translations to the same Names from English to Chinese. For example, for the name Blackstone, throughout an article, there are 3 different translations, i.e.…
Mickeylm
  • 1
  • 2
0
votes
1 answer

Translate word doc - Google Api Translate

I've already achieve to translate, with Google API translate, some plain text from a textarea or from a .txt file but nothing from a word doc (by word doc i mean .doc/.docx files). I only have an unreadable content when i get my doc content in java…
Sillorn
  • 23
  • 4
0
votes
1 answer

Google Translate returns weird string?

So I am trying to get a string back from google but translated as you can see function Translate($fromLang,$toLang,$text){ $texts = file_get_contents( "https://translate.googleapis.com/translate_a/single?client=gtx&sl=" .…
FlamingGenius
  • 216
  • 3
  • 22
0
votes
1 answer

Ammend code interacting with Google translation service to return translated data in a list rather than priniting them

I am trying to find a way to interact with the Google translation service. I would like to be able to pass to the service a list with strings in a source language and get back a list with values strings in the target language. Working from Python,…
user8270077
  • 4,621
  • 17
  • 75
  • 140
0
votes
0 answers

Customize languages in google translate button

I am using google translate button in my website to change languages. Now when I click on button it is showing every languages. I want to customize it like a way that it should display only some languages in dropdown and should have 'more' button,…
Ash
  • 149
  • 1
  • 1
  • 13
0
votes
1 answer

How to dynamically translate in real time using the Google Translation API?

As the user types words, Google translate will dynamically in real-time translate the text on the other side. Try it out at translate.google.com Now I hope to mimic this feature on a translation website I'm building. I'm using React for the…
1 2 3
99
100