How can I create a function that can translate all items in the object to English? I wanted to use it for a “see translation” feature in the workshop where there’ll be a whole tab for the English translation of the data. However, I can’t seem to figure out how to do it.
I tried pipeline builder to do the translation because I want to keep the original language but I don’t like to build the pipeline repeatedly.
Can you say a bit more about “I don’t like to run the pipeline repeatedly”?
My first instinct is that you have the right idea using Pipeline builder and storing the translated text as an additional property on the object. This means you only translate once (fewer resources used) and the translation is deterministic (every time the user views it, they get the exact same translation). This works well assuming that the source for the translation is coming from upstream in the pipeline, rather than from user-entered data.