As a part of localization I am now trying to implement locale strings for Native languages(India).
While searching I found an solution on Stack overflow that we can create user defined locales.
How to extend the list of available Java Locales
I created my own class ,Some thing like
IndianLocale extends Locale {
IndianLocale (Locale Locale.En) ....
}
I have resource bundles
with me for each language
.But i am missing that where i have to map these bundles to Locale (So that when i request to a locale
it will return a corresponding localise string
).