Hi There,
i'm using Code Elements in a Shopping World in order to create some tabular data as a HTML table (as seen below).
I would like to reuse the Shopping World for multiple language stores but i'm unsure if it is possible to translate the text within my table headers <th>
Is this in any way possible?
<table width="100%">
<thead>
<tr>
<th width="23%">Is this translatable??</th>
<th width="31%">Binnenmaten</th>
<th width="23%">Hoogte bodem</th>
<th width="23%">Hoogte deksel</th>
</tr>
</thead>
<tbody>
<tr>
<td>Extreme 10</td>
<td>320mm x 235mm x 45mm</td>
<td>30mm</td>
<td>30mm</td>
</tr>
<tr>
<td>Extreme 40</td>
<td>396mm x 295mm x 49mm</td>
<td>34mm</td>
<td>34mm</td>
</tr>
<tr>
<td>Extreme 60</td>
<td>450mm x 335mm x 100mm</td>
<td>45mm</td>
<td>45mm</td>
</tr>
<tr>
<td>Extreme 375</td>
<td>375mm x 243mm x 131mm</td>
<td>40mm</td>
<td>40mm</td>
</tr>
</tbody>
</table>