# Translations

To learn how to translate the module phrases, please check the general guide.

# Translating the customization field label

The module adds a customization field in order to save the customization.

You can customize the label by using this method:

  1. Open the file [root of PrestaShop]/designer/json/customization_field.json.
  2. Add your language iso code and the corresponding label.

Here's an example:

Original content:

{
  "en": "Design",
  "es": "Diseño",
  "fr": "Conception",
  "nl": "Ontwerp"
}

Add the translation for the Italian language:

{
  "en": "Design",
  "es": "Diseño",
  "fr": "Conception",
  "nl": "Ontwerp",
  "it": "Concezione"
}

You can validate the json format using an online tool like jsonlint (opens new window).