Get tag title.fr in HTL/Sightly
Does anyone know if we can get tag title in different languages in HTL/Sightly? I'm able to get the tag title and name but not the title.en and title.fr value.

Does anyone know if we can get tag title in different languages in HTL/Sightly? I'm able to get the tag title and name but not the title.en and title.fr value.

@briankasingli Thank you for prompt reply. unfortunately it's not that simple. Tags return a list of tags, we can't just directly call it using properties. I have looped over it but it return null. From what it seems I'll have to use tags or tagManager api to get FR tag value.
Cool makes more sense, have you tried:
As described in the documentation for administering tags, in the section Managing Tags in Different Languages, a tag titlecan be defined in different languages. A language sensitive property is then added to the tag node. This property has the format jcr:title.<locale>, e.g. jcr:title.fr for the French translation. <locale> must be a lower case ISO locale string and use “_” instead of “-”, for example: de_ch.
When the Animals tag is added to the Products page, the value stockphotography:animals is added to the property cq:tags of the node /content/geometrixx/en/products/jcr:content. The translation is referenced from the tag node.
The server-side API has localized title-related methods:
In AEM, the language can be obtained either from the page language or from the user language:
to retrieve the page language in a JSP:
currentPage.getLanguage(false)to retrieve the user language in a JSP:
slingRequest.getLocale()Building Tagging into an AEM Application | Adobe Experience Manager
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.