Google Cloud转换JSON文件

时间:2018-07-16 13:40:17

标签: javascript php json google-cloud-platform

我想使用Google Cloud Platform翻译复合JSON对象的字段,而不是自己翻译每个句子。有可能吗?

示例(从英语到意大利语):

原始JSON文件:

{job_description: {
    name: "Taxi driver",
    description: "like the movie"
    }
}

输出JSON文件:

{job_description: {
    name: "Tassista",
    description: "Come nel film"
    }
}

2 个答案:

答案 0 :(得分:1)

这是我为实现此目的而编写的脚本。希望这对某人有帮助。 https://github.com/EisenVault/json-google-translate

答案 1 :(得分:0)

Translation API仅接受纯文本或HTML,格式为[1]

要实现您的目标,请将JSON文件作为对象加载到代码中,将字段发送到Translation API,使用转换结果编辑对象,然后从新对象生成JSON文件。