Update MetaFusion.py

This commit is contained in:
Jeffreytsai1004 2025-01-14 00:25:18 +08:00
parent d0adfe098a
commit 5f66c3097e

View File

@ -20,8 +20,9 @@ import maya.mel as mel
#===================================== IMPORT MODULES ===================================== #===================================== IMPORT MODULES =====================================
# Standard library imports # Standard library imports
import BodyPrep import BodyPrep
import BatchImport
import DNA_Viewer import DNA_Viewer
import BatchImport
#===================================== CONSTANTS ===================================== #===================================== CONSTANTS =====================================
# Tool info # Tool info
@ -79,10 +80,32 @@ SUPPORTED_LANGUAGES = ['en_US', 'zh_CN']
LANG = { LANG = {
"en_US": { "en_US": {
"MetaFusion": "MetaFusion" "MetaFusion": "MetaFusion",
"Prepare": "Prepare",
"Body Prepare": "Body Prepare",
"DNA Edit": "DNA Edit",
"Open DNA Viewer": "Open DNA Viewer",
"Import": "Import",
"Batch Import": "Batch Import",
"Help": "Help",
"Switch Language": "Switch Language",
"ZH": "ZH",
"EN": "EN",
"Language switched": "Language switched",
}, },
"zh_CN": { "zh_CN": {
"MetaFusion": "MetaFusion" "MetaFusion": "MetaFusion",
"Prepare": "准备",
"Body Prepare": "身体准备",
"DNA Edit": "DNA编辑",
"Open DNA Viewer": "打开DNA查看器",
"Import": "导入",
"Batch Import": "批量导入",
"Help": "帮助",
"Switch Language": "切换语言",
"ZH": "中文",
"EN": "英文",
"Language switched": "语言已切换",
} }
} }