summaryrefslogtreecommitdiffstats
path: root/logo/src/xlogo/utils/Utils.java
diff options
context:
space:
mode:
Diffstat (limited to 'logo/src/xlogo/utils/Utils.java')
-rw-r--r--logo/src/xlogo/utils/Utils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/logo/src/xlogo/utils/Utils.java b/logo/src/xlogo/utils/Utils.java
index 991cc8e..9a56cfd 100644
--- a/logo/src/xlogo/utils/Utils.java
+++ b/logo/src/xlogo/utils/Utils.java
@@ -62,7 +62,7 @@ import org.json.JSONObject;
import xlogo.kernel.MyCalculator;
import xlogo.kernel.Affichage;
import xlogo.storage.WSManager;
-import xlogo.storage.workspace.Language;
+import xlogo.storage.workspace.LogoLanguage;
import xlogo.Logo;
public class Utils {
@@ -622,7 +622,7 @@ public class Utils {
}
public static String primitiveName(String generic) {
- Language lang = WSManager.getInstance().getWorkspaceConfigInstance().getLanguage();
+ LogoLanguage lang = WSManager.getInstance().getWorkspaceConfigInstance().getLogoLanguage();
Locale locale = lang.getLocale();
ResourceBundle prim = ResourceBundle.getBundle("primitives", locale);
String st = prim.getString(generic);