Translations

Stockeo makes it possible to import product titles and descriptions in different languages.

To configure translations, click on the gear icon next to the Title or Description field.

The first time, you'll need to approve the permission to let Stockeo access your store languages, and modify translations.

To set product translations, you also need to add the desired languages in your store settings.

Once the new permission is granted, and languages are added, you can indicate the fields where titles and descriptions are translated to a specific language in the feed.

For example, assuming that the feed is in JSON format with the following structure:

[{
    "sku": "PROD001",
    "title": {
        "en": "Wireless Headphones",
        "de": "Kabellose Kopfhörer",
        "es": "Auriculares Inalámbricos"
    },
    "description": {
        "en": "High-quality wireless headphones with noise-cancellation."
        "de": "Hochwertige kabellose Kopfhörer mit Geräuschunterdrückung."
        "es": "Auriculares inalámbricos de alta calidad con cancelación de ruido."
    }
    "quantity": 150
}, {
   ...
}]

The data mapping to update titles and descriptions in English, German, and Spanish should look like this:

Last updated