Notice that you can't load two bundles with the same base name and different locale or encoding using the same {@link AssetManager}. For example, if you try to load the 2 bundles below
manager.load("i18n/message", I18NBundle.class, new I18NBundleParameter(Locale.ITALIAN)); manager.load("i18n/message", I18NBundle.class, new I18NBundleParameter(Locale.ENGLISH));the English bundle won't be loaded because the asset manager thinks they are the same bundle since they have the same name. There are 2 use cases:
|
|