Change Warning as we are allowing users to test it

This commit is contained in:
Yusarina
2024-09-27 23:14:28 +01:00
parent a1e1796276
commit 65526bc6af
2 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -6,10 +6,10 @@
"AutoVisemeButton.error.selectShapekeys": "Please Select shape keys", "AutoVisemeButton.error.selectShapekeys": "Please Select shape keys",
"AutoVisemeButton.label": "Create Visemes", "AutoVisemeButton.label": "Create Visemes",
"AutoVisemeButton.success": "Visemes created successfully", "AutoVisemeButton.success": "Visemes created successfully",
"AvatarToolkit.alpha_warning": "This is an early alpha version, so expect bugs and issues.", "AvatarToolkit.label": "Avatar Toolkit (Alpha)",
"AvatarToolkit.description": "creating and editing avatars in blender,", "AvatarToolkit.desc1": "Avatar Toolkit is in Early Access",
"AvatarToolkit.label": "Avatar Toolkit", "AvatarToolkit.desc2": "There will be issues, if you find",
"AvatarToolkit.welcome": "Welcome to Avatar Toolkit, a tool for", "AvatarToolkit.desc3": "an issue, please report it on Github.",
"Export.resonite.desc": "Export a GLB with all animations and materials. For animation data see:", "Export.resonite.desc": "Export a GLB with all animations and materials. For animation data see:",
"Export.resonite.label": "Export to Resonite", "Export.resonite.label": "Export to Resonite",
"Importer.export_resonite.desc": "Export to Resonite as a GLTF. Make sure your model is to scale in blender, and import as meters in Resonite.", "Importer.export_resonite.desc": "Export to Resonite as a GLTF. Make sure your model is to scale in blender, and import as meters in Resonite.",
+3 -3
View File
@@ -4,9 +4,9 @@ from ..functions.translations import t
def draw_title(self: bpy.types.Panel): def draw_title(self: bpy.types.Panel):
layout = self.layout layout = self.layout
layout.label(text=t("AvatarToolkit.welcome")) layout.label(text=t("AvatarToolkit.desc1"))
layout.label(text=t("AvatarToolkit.description")) layout.label(text=t("AvatarToolkit.desc2"))
layout.label(text=t("AvatarToolkit.alpha_warning")) layout.label(text=t("AvatarToolkit.desc3"))
CATEGORY_NAME = "Avatar Toolkit" CATEGORY_NAME = "Avatar Toolkit"