360 questions
0
votes
0
answers
20
views
Google Translate API Specifications
I am creating a Blog Website which uploads blogs regarding laws and amendments in various different languages, so now what I exactly want is that the google translate API should translate the website ...
1
vote
1
answer
42
views
Authenticate to Google Language API using API Key for REST based web app
I am receiving an error 401 when trying to authenticate to Google API using an API Key.
The following is the javascript code used to make the call:
function test()
{
const outputElement = ...
1
vote
1
answer
49
views
Not able to use google ml kit for Indian languages OCR
I'm trying to build an app for kannada (An Indian language) OCR to flashcard conversion with help of cursor AI. I first created the android studio project for devanagari (A more widely used indian ...
0
votes
1
answer
56
views
How to generate a test key for google cloud console for translation API?
I'm trying to create a test API key for Google's Translate API to avoid charges during development, but I can't find a way to do this. Is there any way to generate a test key, or do I have to use the ...
1
vote
1
answer
71
views
Google Cloud Translation API (AdaptiveMtTranslateRequest): Cannot Pass a List of Strings as Content
I am trying to use the API's AdaptiveMtTranslateRequest to translate documents, and the documentation suggests that it is possible to pass a list of strings as the content (e.g., multiple sentences in ...
0
votes
1
answer
242
views
Why Google Translator API is not outputting accurate translation
I am trying to use the google translator API for translating non-english words (transliterated words) to english word. For example, the word "Xingbie" is a Chinese transliterated word which ...
0
votes
1
answer
40
views
VueJS with TypeScript: Get the text content of a slot (to translate it)
I want to write a GoogleTranslate.vue component, that translates its contents to your mother language.
Here is my code
<template>
<div>
<slot></slot>
//This is a tooltip ...
1
vote
0
answers
38
views
Translating pdf file stored on google storage using Google Translate Service Client in Java and storing translated file on same path of google storage
I have written function accepting 2 parameters
Signed URL as parameter (Url of file stored on google storage)
Destination language
It translates the file in destination language and stores on the ...
0
votes
0
answers
60
views
Access the Google Translate "see dictionary" link via Google Translate API
When using Google Translate via translate.google.com, after entering a word to be translated, a "See Dictionary" link appears. Clicking the link opens a panel with more details of that word....
0
votes
0
answers
81
views
How to translate Flutter app using api translation service(i.e, Google) in backend
I am recently working on flutter app in which I need to implement translation in whole app I decided to use googleapi so I need your help to get a detailed procedure about how to implement google ...
1
vote
0
answers
401
views
Is there any way to achieve image translation similar to google lens using the google cloud API?
I've been working on a Firefox extension that will allow users to right click an image to translate it to their default language. Google's cloud vision & translate APIs works great for this, aside ...
0
votes
0
answers
190
views
Google Translate API Client has no "Translate_image" attribute
import os
from google.cloud import translate_v3beta1 as translate
def upload_and_translate(input_dir, output_dir, target_language):
"""Uploads all images in a directory, translates ...
0
votes
2
answers
173
views
google translate api error 401 in React Native project
I created an account via cloud for Google Translate, created an API key and got the credentials information. Api url works without any problems in Postman. I also created a react.js web project to ...
0
votes
0
answers
49
views
Duplicates error when i tried to use google-translate-api android studio
I try to build app on android studio with google translate api,
I add the line
plugins {
alias(libs.plugins.android.application)
}
android {
namespace 'com.example.myapplication'
...
0
votes
0
answers
73
views
Avoiding errors 429 when building a chrome extension
I'm building my first chrome extension using html and js - a simple popup window with a user input form, which detects the language, and then translates to japanese if the input is in english or to ...