- Timestamp:
- 2008-10-29T22:20:08+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r1058 r1059 21 21 import java.util.Locale; 22 22 import java.util.Map; 23 import java.util.MissingResourceException; 23 24 24 25 import javax.swing.JFrame; … … 179 180 } 180 181 181 i18n = I18nFactory.getI18n(MainApplication.class); 182 try { 183 i18n = I18nFactory.getI18n(MainApplication.class); 184 } catch (MissingResourceException ex) { 185 System.out.println("Unable to find translation for the locale: " + Locale.getDefault().getDisplayName() + " reverting to English."); 186 } 182 187 183 188 SplashScreen splash = new SplashScreen(Main.pref.getBoolean("draw.splashscreen", true));
Note:
See TracChangeset
for help on using the changeset viewer.