14 - Translations - HPC
You can translate product fields, labels, drop-down items and fields.
To translate a language just create or edit a file (e.g: "en_US.php", "fr_FR.php", "it_IT.php") in: “/media/com_hikapricecalculator/translations”
You'll find an existing example like below:
<?php return array( 'label1' => 'label1_EN', 'label2' => 'label2_EN', 'item1' => 'item1_EN', 'item2' => 'item2_EN', );
For example "en_US.php":
<?php return array( 'height' => 'Height', 'width' => 'Width', );
For example "it_IT.php":
<?php return array( 'height' => 'Altezza', 'width' => 'Larghezza', );