public ResourceBundleWrapper(String file, Locale locale, boolean hasParent) {
   this.bundle = FileUtil.loadBundle(file, locale);
   if (hasParent) {
     this.parentBundle =
         GeneralPropertiesManager.getGeneralMultilang(locale.getLanguage()).getResourceBundle();
   }
 }