> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/products/llms.txt)
> Source: https://docs.saleor.io/api-reference/products/objects/product-bulk-translate

# ProductBulkTranslate Object

Creates/updates translations for products.

Requires the MANAGE\_TRANSLATIONS permission.

Triggers the following webhook events:

-   TRANSLATION\_CREATED (async): Called when a translation was created.
-   TRANSLATION\_UPDATED (async): Called when a translation was updated.

```graphql
type ProductBulkTranslate {
  count: Int!
  results: [ProductBulkTranslateResult!]!
  errors: [ProductBulkTranslateError!]!
}
```

<a id="fields"></a>

### Fields

<a id="count"></a>

#### [`count`](#count) ● [`Int!`](/api-reference/miscellaneous/scalars/int.md)

Returns how many translations were created/updated.

<a id="results"></a>

#### [`results`](#results) ● [`[ProductBulkTranslateResult!]!`](/api-reference/products/objects/product-bulk-translate-result.md)

List of the translations.

<a id="errors"></a>

#### [`errors`](#errors) ● [`[ProductBulkTranslateError!]!`](/api-reference/miscellaneous/objects/product-bulk-translate-error.md)

<a id="returned-by"></a>

### Returned By

[`productBulkTranslate`](/api-reference/products/mutations/product-bulk-translate.md) mutation
