Strip Enemizer

Foundation for GUI translation
This commit is contained in:
Mike A. Trethewey
2020-03-09 19:10:40 -07:00
parent ff51821701
commit ceceee68df
6 changed files with 342 additions and 25 deletions

View File

@@ -13,6 +13,7 @@ class BabelFish():
self.lang_defns = {} #collect translations
self.add_translation_file() #start with default translation file
self.add_translation_file(["resources","app","cli"]) #add help translation file
self.add_translation_file(["resources","app","gui"]) #add gui label translation file
self.add_translation_file(["resources","user","meta"]) #add user translation file
def add_translation_file(self,subpath=["resources","app","meta"]):

3
source/classes/Empty.py Normal file
View File

@@ -0,0 +1,3 @@
# Need a dummy class
class Empty():
pass