Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Default Resource bundle is used for every locale?

I have a web page the content on which is using the values from the Default Resource bundle for every locale?

like image 467
Shivam Aggarwal Avatar asked Oct 09 '22 18:10

Shivam Aggarwal


1 Answers

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

like image 82
Aravind Yarram Avatar answered Oct 12 '22 00:10

Aravind Yarram