I would like to translate the fields of a composite JSON object using Google Cloud Platform, instead of translating every single sentence on its own. Is it possible?
Example (from English to Italian):
Origin JSON file:
{job_description: {
name: "Taxi driver",
description: "like the movie"
}
}
Output JSON file:
{job_description: {
name: "Tassista",
description: "Come nel film"
}
}