()
| 203 | } |
| 204 | |
| 205 | private static void configureUI() |
| 206 | { |
| 207 | String language = ConfigurationSettings.getLanguage(); |
| 208 | String country = ConfigurationSettings.getCountry(); |
| 209 | if (StringUtils.isNotEmpty(language) && StringUtils.isNotEmpty(country)) |
| 210 | { |
| 211 | Locale.setDefault(new Locale(language, country)); |
| 212 | } |
| 213 | LanguageBundle.init(); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Check that the runtime environment is suitable for PCGen to run. |
no test coverage detected