action trakt_get_all_movie_translations { label: "Get all movie translations" description: "Returns all translations for a movie, including language and translated values for title, tagline and overview." provider: trakt method: GET path: "/movies/{id}/translations/{language}" encoding: json input: { type: "object" properties: { id: { type: "string" } language: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id", "language"] additionalProperties: false } output: { type: "object" additionalProperties: true } }