Hello Community Members,
A quick question, We have multi-tenant application, where we i18n dictionary for having same keys but different meanings, ex "welcome_message": "Welcome to My Site", in TenantA, where as for in TenantB, "welcome_message": "Welcome to My SiteB", So i dont have any Javabased logic and i am using simple sightly to display them.
${'welcome_message' @ i18n}
So based on above, i am getting TenantB msg in TenantA.
Is there a way to load a specific dictionary values via sightly?
Solved! Go to Solution.
Views
Replies
Total Likes
Yes after doing a deep dive we can't simply do this from sightly, so I have used sling model to load a specific dictionary using sling:basename at dictionary level and using resourcebundle to load specific dictionary by passing locale and basename as params.
Thanks members for the insights.
Hi @Shashi_Mulugu,
Per Adobe documentation it is beyond the control of developer if there is more than one same key having different values. The reason is that the JSON for i18n is compiled altogether in a single file which includes all dictionaries under /apps and /libs.
So I believe there is no way to distinguish the key based on the project.
https://experienceleague.adobe.com/docs/experience-manager-65/developing/components/internationaliza...
Note that you cannot predict which translation is used when strings are duplicated in dictionaries that are all located below the /apps node.
Image source: Adobe
It may not solve your exact use-case, but will this be of any help?
Yeah, as @Jineet_Vora said we cannot achieve this. Data Dictionary is just like Map, keys cannot be duplicated. If we duplicate the latest one will override the previous one. Similarly here the key which is down below the repository hierarchy will override the previous key.
/apps/project/a/i18n - KEY_ONE
/apps/project/b/i18n - KEY_ONE
KEY_ONE in b/i18n will override the KEY_ONE of a/i18n, as /project/b comes below in repo the hierarchy.
AG
Yes after doing a deep dive we can't simply do this from sightly, so I have used sling model to load a specific dictionary using sling:basename at dictionary level and using resourcebundle to load specific dictionary by passing locale and basename as params.
Thanks members for the insights.
@Shashi_Mulugu Can you please share the sling model.
Views
Replies
Total Likes
Views
Likes
Replies