Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
  • Making it easier to do by moving non-internationalization related items out of .properties files and into .config files?

Proposal

Beth?Move all configuration-related properties (i.e. anything which should never be translated) into a <filename>.config file, as opposed to <filename>.properties file. These config files can be loaded as follows:

Code Block

import java.util.Properties;
...
Properties p = new Properties();
p.load(this.getClass().getResourceAsStream("filename.config"));