Changeset 1170 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2008-12-23T22:35:13+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r1169 r1170 192 192 i18n = I18nFactory.getI18n(MainApplication.class); 193 193 } catch (MissingResourceException ex) { 194 System.out.println("Unable to find translation for the locale: " + Locale.getDefault().getDisplayName() + " reverting to English."); 194 if(!Locale.getDefault().getLanguage().equals("en")) 195 { 196 System.out.println("Unable to find translation for the locale: " 197 + Locale.getDefault().getDisplayName() + " reverting to English."); 198 } 195 199 } 196 200
Note:
See TracChangeset
for help on using the changeset viewer.