Reputation: 805
I have a web page the content on which is using the values from the Default Resource bundle for every locale?
Upvotes: 5
Views: 4562
Reputation: 80186
It is used as a fallback bundle when no resource bundle could be located for a given Locale. You can specify a fallback locale. If none is specified then the default Locale of the JVM (Locale.getDefault()
) is used as the fallback locale.
Tutorial: Localization with ResourceBundles
Upvotes: 4