Versions Compared

Key

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

...

Note

If your language is not in the default Java set of locale constants, it is possible to add it as shown below for Brazilian Portuguese, for example:

Code Block
    public static final List<Locale> SUPPORTED_LOCALES = Arrays.asList(new Locale[] {
        Locale.ENGLISH, Locale.ITALIAN, Locale.forLanguageTag("pt-BR") });

...