From e5d505f0329e1ae048a1445c45b65cef8cd4e36b Mon Sep 17 00:00:00 2001 From: Marko Živković Date: Thu, 26 Feb 2015 20:31:17 +0000 Subject: Finished mapping of workspace config to JSON and back, applied further refactorings git-svn-id: https://svn.code.sf.net/p/xlogo4schools/svn/trunk@28 3b0d7934-f7ef-4143-9606-b51f2e2281fd --- logo/src/xlogo/AppSettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'logo/src/xlogo/AppSettings.java') diff --git a/logo/src/xlogo/AppSettings.java b/logo/src/xlogo/AppSettings.java index 9e94efb..8a8d2da 100644 --- a/logo/src/xlogo/AppSettings.java +++ b/logo/src/xlogo/AppSettings.java @@ -90,7 +90,7 @@ public class AppSettings implements Observable{ * LANGUAGE * * * * * * */ - private Language language = Language.LANGUAGE_ENGLISH; + private Language language = Language.ENGLISH; public Language getLanguage() { return language; @@ -113,7 +113,7 @@ public class AppSettings implements Observable{ */ public String translate(String key) { if (Logo.messages == null) { - Logo.generateLanguage(Language.LANGUAGE_ENGLISH); // TODO this is a temporary bug fix + Logo.generateLanguage(Language.ENGLISH); // TODO this is a temporary bug fix } return Logo.messages.getString(key); } -- cgit v1.2.3