|
Yo, I’m trying to complete the swedish translation of Magento, we’ve got about 95% done or so, but some parts of the adminhtml module just won’t translate itself. The strings I need to translate are present in the adminhtml.csv, but it seems they are ignored. All the ignored translations comes from the config.xml files, sample code:
code/core/Mage/Catalog/etc/config.xml
<catalog> <product> <type> <simple translate="label" module="catalog"> <label>Simple Product</label> <model>catalog/product_type_simple</model> </simple> <grouped translate="label" module="catalog"> <label>Grouped Product</label> <model>catalog/product_type_grouped</model> </grouped> <configurable translate="label" module="catalog"> <label>Configurable Product</label> <model>catalog/product_type_configurable</model> </configurable> </type> </product> </catalog>
Is this a bug or am I missing somethin’?
|