Translate plugin using csv

This is working as designed. The translate filter accepts a 2 column CSV. That sentence is trying to tell you that if you want multiple fields, you have to parse them out of the second column, which cannot be comma separated.

For example, you could use

key,field1|field2|field3

and then use a csv filter to split the second column.

1 Like