How to translate Dropdown values, whose English version is already stored in data type ?

We have requirement to display translated dropdown values to respective users, Any way in which it can be done at runtime.

Dropdown list in English, is already stored in data type.

@RoshanPrasadR

Hi we can try the below approach.

  1. Have a response data transform configured for the data page which is used to fetch the results from the data type

  2. In response data transform, iterate over each result, and set a new property (Let’s say LocalizedText) as “@(Pega-RULES:String).getLocalizedValue()”

Ex:

@(Pega-RULES:String).getLocalizedValue(.DataTypePrimaryKey)

  1. In the dropdown configure to display “LocalizedText”, to set

NOTE: there should be translations available for all the entries in Data Type.