
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@maxim_mazurok/gapi.client.translate-v3
Advanced tools
Integrates text translation into your website or application. For detailed description please check documentation.
Install typings for Cloud Translation API:
npm install @types/gapi.client.translate-v3 --save-dev
You need to initialize Google API client in your code:
gapi.load('client', () => {
// now we can use gapi.client
// ...
});
Then load api client wrapper:
gapi.client.load('https://translation.googleapis.com/$discovery/rest?version=v3', () => {
// now we can use:
// gapi.client.translate
});
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('translate', 'v3', () => {
// now we can use:
// gapi.client.translate
});
Don't forget to authenticate your client before sending any request to resources:
// declare client_id registered in Google Developers Console
var client_id = '',
scope = [
// See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
'https://www.googleapis.com/auth/cloud-platform',
// Translate text from one language to another using Google Translate
'https://www.googleapis.com/auth/cloud-translation',
],
immediate = true;
// ...
gapi.auth.authorize(
{ client_id: client_id, scope: scope, immediate: immediate },
authResult => {
if (authResult && !authResult.error) {
/* handle successful authorization */
} else {
/* handle authorization error */
}
});
After that you can use Cloud Translation API resources:
/*
Detects the language of text within a request.
*/
await gapi.client.translate.projects.detectLanguage({ parent: "parent", });
/*
Returns a list of supported languages for translation.
*/
await gapi.client.translate.projects.getSupportedLanguages({ parent: "parent", });
/*
Romanize input text written in non-Latin scripts to Latin text.
*/
await gapi.client.translate.projects.romanizeText({ parent: "parent", });
/*
Translates input text and returns translated text.
*/
await gapi.client.translate.projects.translateText({ parent: "parent", });
FAQs
TypeScript typings for Cloud Translation API v3
The npm package @maxim_mazurok/gapi.client.translate-v3 receives a total of 227 weekly downloads. As such, @maxim_mazurok/gapi.client.translate-v3 popularity was classified as not popular.
We found that @maxim_mazurok/gapi.client.translate-v3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.