Redwood: Translations in Page Composer (EL)
Summary:
In our Redwood Migration, we have Personalizations in Page Composer using EL expressions to have translations. Is this supported in Redwood? Can this be done in VBS Business Rules?
Sample:
A.
EL and Translations: #{	facesContext.viewRoot.locale.language == 'en'	? 'To review competencies and performance standards, click here. '
: facesContext.viewRoot.locale.language == 'ar'	? 'لمراجعة الكفاءات ومعايير الأداء، انقر هنا.'
: facesContext.viewRoot.locale == 'zh_CN'	? '要查看能力和业绩标准,请单击此处。'
: facesContext.viewRoot.locale == 'zh_TW'	? '如欲審查能力和績效標準,請點擊此處。'
: facesContext.viewRoot.locale.language == 'fr'	? 'Pour consulter les compétences et les standards en matière de performance, cliquez ici.'
: 'To review competencies and performance standards, click here. '}