Translates text string fields from one language to another.
Example

Example Input
dim_A | dim_B | metric_1 |
Messer | DDD | 111 |
Löffel | EEE | 222 |
Gabel | FFF | 333 |
Example Output
dim_A | dim_B | metric_1 | New_Field |
Messer | DDD | 111 | Knife |
Löffel | EEE | 222 | Spoon |
Gabel | FFF | 333 | Fork |
I Ain't Afraid of No Code!
[
[
"translate",
{
"translator": "google-translate",
"errors": "ignore_character_limit",
"subtable": null,
"source_language": 0,
"target_language": 1,
"field": "dim_A",
"_comment": null
}
]
]
param str translator: The translation engine to use, either Google or Bing.
param str errors: Define what the system should do when encountering an error.
param str subtable: Name a subtable in which output will be stored (will create subtable where necessary).
param int source_language: Numeric corresponding to the source field language.
param int target_language: Numeric corresponding to the target field language.
param str field: Name of the source field that will be translated into the target language.
param str comment: A comment that will appear in the Transformation UI.
Comments
0 comments
Article is closed for comments.