diff options
author | Marko Živković <[email protected]> | 2015-02-26 20:31:17 +0000 |
---|---|---|
committer | Marko Živković <[email protected]> | 2015-02-26 20:31:17 +0000 |
commit | e5d505f0329e1ae048a1445c45b65cef8cd4e36b (patch) | |
tree | 324f0e59443344e73213599977a3e20ff623b51f /logo/src/xlogo/AppSettings.java | |
parent | a25b730c4d6679dae2a2a9b0489b70b0fc75d992 (diff) |
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
Diffstat (limited to 'logo/src/xlogo/AppSettings.java')
-rw-r--r-- | logo/src/xlogo/AppSettings.java | 4 |
1 files changed, 2 insertions, 2 deletions
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<AppSettings.AppProperty>{ * 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<AppSettings.AppProperty>{ */
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);
}
|