mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
⚡ Small improvements to Google Translate node
This commit is contained in:
parent
b2e3b8de16
commit
c4a43e0d83
|
@ -114,8 +114,8 @@ export class GoogleTranslate implements INodeType {
|
||||||
// All
|
// All
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
{
|
{
|
||||||
displayName: 'Query',
|
displayName: 'Text',
|
||||||
name: 'query',
|
name: 'text',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The input text to translate',
|
description: 'The input text to translate',
|
||||||
|
@ -181,10 +181,10 @@ export class GoogleTranslate implements INodeType {
|
||||||
for (let i = 0; i < length; i++) {
|
for (let i = 0; i < length; i++) {
|
||||||
if (resource === 'language') {
|
if (resource === 'language') {
|
||||||
if (operation === 'translate') {
|
if (operation === 'translate') {
|
||||||
const query = this.getNodeParameter('query', i) as string;
|
const text = this.getNodeParameter('text', i) as string;
|
||||||
const translateTo = this.getNodeParameter('translateTo', i) as string;
|
const translateTo = this.getNodeParameter('translateTo', i) as string;
|
||||||
|
|
||||||
const response = await googleApiRequest.call(this, 'POST', `/language/translate/v2`, { q: query, target: translateTo });
|
const response = await googleApiRequest.call(this, 'POST', `/language/translate/v2`, { q: text, target: translateTo });
|
||||||
responseData.push(response.data.translations[0]);
|
responseData.push(response.data.translations[0]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue