Translation Update

Translation System now works!
This commit is contained in:
Yusarina
2024-07-05 13:01:59 +01:00
parent 0658e3a86f
commit ce9cc9684f
9 changed files with 86 additions and 35 deletions
+3 -2
View File
@@ -5,13 +5,14 @@ from .common import get_armature
from bpy.types import Object, ShapeKey, Mesh, Context, Operator
from functools import lru_cache
from ..core.register import register_wrap
from ..functions.translations import t
@register_wrap
class ExportResonite(Operator):
bl_idname = 'avatar_toolkit.export_resonite'
bl_label = "Export to Resonite"
bl_description = "Export a GLB with all animations and materials. For animation data see: "
bl_label = t("Export.resonite.label")
bl_description = t("Export.resonite.desc")
bl_options = {'REGISTER', 'UNDO'}
filepath: bpy.props.StringProperty()