I can't seem to locate any resource bundle properties files in the source...isn't this available also? I need to change some labeling, specifically:
_label.text = Localization.impl.getString(ROLE_STRINGS[_data.role]);
thanks,
David
Solved! Go to Solution.
Views
Replies
Total Likes
Hi there,
In order to be Flex-independent, we had to build a Localization Framework
that didn't depend on resource bundles. That said, you should be able to
plug resource bundles in pretty easily.
Localization.impl = new MyLocalizationManager();
Then, make a MyLocalizationManager class which implements
ILocalizationManager - the method you specifically need to implement is
getString(). You can pull the string from your resource bundles in that
method.
nigel
Views
Replies
Total Likes
Hi David,
We just have a place holder for Localization for LCCS, so the code snippet you sent does nothing. So you can hard code the string you want.
Thanks
Arun
Views
Replies
Total Likes
Hi there,
In order to be Flex-independent, we had to build a Localization Framework
that didn't depend on resource bundles. That said, you should be able to
plug resource bundles in pretty easily.
Localization.impl = new MyLocalizationManager();
Then, make a MyLocalizationManager class which implements
ILocalizationManager - the method you specifically need to implement is
getString(). You can pull the string from your resource bundles in that
method.
nigel
Views
Replies
Total Likes
Thanks, I see how this is working...made the assumption this was using standard resource bundles...thanks!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies