I have an attribute called "colour" in my shop and want to display the colour names in different languages. For product import I use MAGMI v0.7.18. The MAGMI Wiki says:
Import admin values first:
"store","sku","myselect"
"admin","sku001","adminval1"
"admin","sku002","adminval2"
"admin","sku003","adminval3"
Once done, the following csv mockup will produce "translated" values:
"store","sku","myselect"
"store1","sku001","store1val1::[adminval1]"
"store2","sku001","store2val1::[adminval1]"
"store1","sku002","store1val2::[adminval2]"
"store2","sku002","store2val2::[adminval2]"
That´s exactly what I did!
My admin import:
"sku";"store";"color"
"1101401-401";"admin";"white"
My storeview import:
"sku";"store";"color"
"1101401-401";"deutsch";"weiß::[white]"
But after the import ist done, the attributes are muddled. See here.
Any idea about that problem?
Thanks!