# 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:
- Open the file
[root of PrestaShop]/designer/json/customization_field.json
. - 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).