For some reason I can not get the product-template translation to work. The python code does send the data to the Odoo server succesfully. However I can only insert the english text alone... When inserting the different languages Odoo does not seem to parse the string out. Any ideas of what I am missing would be greatly appreciated!
model = 'product.template'
method = 'create'
barcode = '12345678'
en_text = "English Name"
es_text = "Espanola Nombre"
de_text = "Deutscher Name"
name = { 'en_US' : en_text, 'es_CL' : es_text, 'de_DE' : de_text }