how to get the i18 value for property value using htl. | Community
Skip to main content
Level 5
November 4, 2019
Solved

how to get the i18 value for property value using htl.

  • November 4, 2019
  • 2 replies
  • 2386 views

Hi,

How to get the i18n value for the property value.

i.e., ${properties.task}  -----   taskName

${${properties.task} @i18n}

how to get value in html using htl.

Thanks in advance.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Shashi_Mulugu

Please refer to Documentation:

https://docs.adobe.com/content/help/en/experience-manager-htl/using/htl/expression-language.html#internationalization

You can use as ${properties.task @i18n} to get the i18n equivalent for a property

2 replies

Shashi_Mulugu
Community Advisor
Shashi_MuluguCommunity AdvisorAccepted solution
Community Advisor
November 4, 2019

Please refer to Documentation:

https://docs.adobe.com/content/help/en/experience-manager-htl/using/htl/expression-language.html#internationalization

You can use as ${properties.task @i18n} to get the i18n equivalent for a property

aravindSAuthor
Level 5
November 5, 2019

Hi Shashi,

It is working as expected.. thank you