]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
fix inexisting LANG=en_US.utf8
authorChristian Van Wambeke <christian.van-wambeke@cea.fr>
Wed, 27 Jun 2018 13:50:41 +0000 (15:50 +0200)
committerChristian Van Wambeke <christian.van-wambeke@cea.fr>
Wed, 27 Jun 2018 13:50:41 +0000 (15:50 +0200)
data/templates/Application/config/splash_generator/splash2.py
src/salomeTools.py

index 476904df689c664f1a73e6d1c464aab613bce69d..1521075b8d14de1e4e9c23ebb3eb1df0240426c8 100755 (executable)
@@ -6,7 +6,12 @@
 
 import os, sys
 
-__LANG__=os.getenv("LANG")
+
+try:
+  __LANG__ = os.environ["LANG"] # original locale
+except:
+  __LANG__ = "en_US.utf8" #default
+
 __FR__={
     "This script requires the Image, ImageDraw and ImageFont libraries":
         "Ce script a besoin de Image, ImageDraw et ImageFont python librairies",
index ef3857ebc7011f8cf117a20846d3fbff5150c8a7..1ad0b02ae5aa24d35d9101922d17d3a1277e4adc 100755 (executable)
@@ -65,7 +65,10 @@ import commands.config as CONFIG
 # load resources for internationalization
 gettext.install("salomeTools", os.path.join(srcdir, "i18n"))
 
-_LANG = os.environ["LANG"] # original locale
+try:
+  _LANG = os.environ["LANG"] # original locale
+except:
+  _LANG = "en_US.utf8" #default
 
 # The possible hooks : 
 # pre is for hooks to be executed before commands