Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Internationalization

Summary

  • Make it easier to do by moving non-internationalization related items out of .properties files and into .config files
  • Adopt Localized Date/Time Widget for all tools
  • Localize all authorization text (e.g. roles and permissions)

Proposal: configuration files

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:

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

Proposal: Date/Time Widget

tbd

Proposal: Localized Authorization Strings

tbd

  • No labels