ResourceBundle that defaults to English
You can rename Strings_en.properties
to Strings.properties
(making English the default localization) and add a new empty Strings_en.properties
.
Then
ResourceBundle.getBundle("path/to/Strings", Locale.ENGLISH).getLocale()
also returns Locale.ENGLISH
.