node-designart.tpl.php and ec-cart-view-form-extra.tpl.php contain hardcoded header in English. Because the project has multi language support you'd better replace them variable
<thead>
<th>Items</th>
<th>Price</th>
<th>Qty</th>
<th>Total</th>
<th><!-- Operations header --></th>
</thead>
Comments
Comment #1
EPO commentedIn ec_customer.checkout.inc please change
So it is possible to translate 'billing' and 'shipping' in the appropriate terms.
Comment #2
xen commentedRegarding #1, it might not be so simple in some languages. Depending on where $type is used, it could need different translations. For instance in danish, "Select billing address" might be "Angiv faktureringsadresse".
Comment #3
EPO commented@ #2: this was exactly the reason for my suggestion or you will get "Angiv Billingsadresse" with the old version of the code. Thats not quite good danish, isnt it? Try! You want 'Billings' changed in 'fakturerings'. This is what the t function accomplishes.
Here is another one in ec_cart/templates/themes.inc line 59:
I'll attach them to this thread, when I find them. Hope for correction in the next releases. Its no big issue.
Comment #4
EPO commented@ #2 Sorry, now I understand the reason for your objection. You think there is only one variable @type but with several different contents. This is correct. The contents of @type is 'Billing' or 'Shipping' depending of the context. But if you insert t(@type) you get all the different possibilities offered for translation. Funny Drupal.