diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 6505b9cef..0ed05891c 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -270,8 +270,8 @@ public class Preferences { try { I18n.init(Preferences.get("editor.languages.current")); } catch (MissingResourceException e) { - I18n.init(""); - Preferences.set("editor.languages.current", ""); + I18n.init("en"); + Preferences.set("editor.languages.current", "en"); } // set some other runtime constants (not saved on preferences file) diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index c5442efff..4f5c7e7a5 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -1,6 +1,9 @@ ARDUINO 1.5.4 BETA +[ide] +* Revert to English locale if the system default is not available + [libraries] * sam: fixed wrong SPI initialization (noblepepper)