Hello
Can I add localized descriptions to tags? If not, what are the alternative solutions?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
No its not present out of the box @margaritageg
An alternative is that for each tag we can create a child tag that will store the Tag's Description.
This way you can leverage the OOTB localization for tags.
Another more tedious way is to extend the tag metadata. This will require some development.
Extend the /apps/cq/tagging/widgets/source/widgets/admin/TagAdmin.js component to add a new field for descriptions.
Modify the tag storage structure in the JCR to include localized descriptions.
Update the tagging dialogs and components to use this new metadata.
Let me know if this helps
No its not present out of the box @margaritageg
An alternative is that for each tag we can create a child tag that will store the Tag's Description.
This way you can leverage the OOTB localization for tags.
Another more tedious way is to extend the tag metadata. This will require some development.
Extend the /apps/cq/tagging/widgets/source/widgets/admin/TagAdmin.js component to add a new field for descriptions.
Modify the tag storage structure in the JCR to include localized descriptions.
Update the tagging dialogs and components to use this new metadata.
Let me know if this helps
From tagging gui you can’t create a localized string for description. However you can try leveraging i18N for this. I have used it for component and Tag title but not for description.
follow this for reference.
Thank you for your response. Although this solution is good, the previous one is more suitable for my case