From 65526bc6afb97aae4c9ccb295bf0fd186d58faf4 Mon Sep 17 00:00:00 2001 From: Yusarina Date: Fri, 27 Sep 2024 23:14:28 +0100 Subject: [PATCH] Change Warning as we are allowing users to test it --- resources/translations/en_US.json | 8 ++++---- ui/panel.py | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/translations/en_US.json b/resources/translations/en_US.json index 1d00529..bd727c8 100644 --- a/resources/translations/en_US.json +++ b/resources/translations/en_US.json @@ -6,10 +6,10 @@ "AutoVisemeButton.error.selectShapekeys": "Please Select shape keys", "AutoVisemeButton.label": "Create Visemes", "AutoVisemeButton.success": "Visemes created successfully", - "AvatarToolkit.alpha_warning": "This is an early alpha version, so expect bugs and issues.", - "AvatarToolkit.description": "creating and editing avatars in blender,", - "AvatarToolkit.label": "Avatar Toolkit", - "AvatarToolkit.welcome": "Welcome to Avatar Toolkit, a tool for", + "AvatarToolkit.label": "Avatar Toolkit (Alpha)", + "AvatarToolkit.desc1": "Avatar Toolkit is in Early Access", + "AvatarToolkit.desc2": "There will be issues, if you find", + "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.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.", diff --git a/ui/panel.py b/ui/panel.py index c4a04f4..66e9496 100644 --- a/ui/panel.py +++ b/ui/panel.py @@ -4,9 +4,9 @@ from ..functions.translations import t def draw_title(self: bpy.types.Panel): layout = self.layout - layout.label(text=t("AvatarToolkit.welcome")) - layout.label(text=t("AvatarToolkit.description")) - layout.label(text=t("AvatarToolkit.alpha_warning")) + layout.label(text=t("AvatarToolkit.desc1")) + layout.label(text=t("AvatarToolkit.desc2")) + layout.label(text=t("AvatarToolkit.desc3")) CATEGORY_NAME = "Avatar Toolkit"