Google Translate API

This commit is contained in:
sgtfrankieboy
2013-07-07 10:41:44 +02:00
parent f7450dcedb
commit e84da7a230
+117
View File
@@ -0,0 +1,117 @@
///<reference path="../gapi/gapi.d.ts" />
/**
*
*/
declare module gapi.client.language {
export interface detections {
/**
* Detect the language of text.
*/
list(object: {
/**
* The text to detect
*/
q: string;
/**
* Selector specifying which fields to include in a partial response.
*/
fields?: string;
}): HttpRequest<GoogleApiTranslateDetectionListResponse>;
}
export interface languages {
/**
* List the source/target languages supported by the API
*/
list(object: {
/**
* the language and collation in which the localized results should be returned
*/
target?: string;
/**
* Selector specifying which fields to include in a partial response.
*/
fields?: string;
}): HttpRequest<GoogleApiTranslateLanguageListResponse>
}
export interface translations {
/**
* Returns text translations from one language to another.
*/
list(object: {
/**
* The text to translate
*/
q: string;
/**
* The target language into which the text should be translated
*/
target: string;
/**
* The customization id for translate
*/
cid?: string;
/**
* This optional parameter allows you to indicate that the text to be translated is either plain-text or HTML. A value of html indicates HTML and a value of text indicates plain-text
*/
format?: string;
/**
* The source language of the text
*/
source?: string;
/**
* Selector specifying which fields to include in a partial response.
*/
fields?: string;
/**
* If prettyprint=true, the results returned by the server will be human readable (pretty printed).
*/
prettyprint?: string;
}): HttpRequest<GoogleApiTranslateTranslationListResponse>;
}
}
interface GoogleApiTranslateTranslationListResponse {
data: {
translations: {
translatedText: string;
detectedSourceLanguage: string;
}[];
}
}
interface GoogleApiTranslateLanguageListResponse {
data: {
languages: {
language: string;
name: string;
}[];
}
}
interface GoogleApiTranslateDetectionListResponse {
data: {
detections: {
language: string;
confidence: number;
}[][];
}
}