UI side Translations complete

This commit is contained in:
Yusarina
2024-07-25 02:46:13 +01:00
parent 05cc6c830c
commit b6beae7ba1
7 changed files with 103 additions and 93 deletions
+4 -5
View File
@@ -4,7 +4,7 @@ from ..functions.translations import t
@register_wrap
class AvatarToolkitPanel(bpy.types.Panel):
bl_label = "Avatar Toolkit"
bl_label = t("AvatarToolkit.label")
bl_idname = "OBJECT_PT_avatar_toolkit"
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
@@ -12,9 +12,8 @@ class AvatarToolkitPanel(bpy.types.Panel):
def draw(self, context):
layout = self.layout
layout.label(text="Welcome to Avatar Toolkit, a tool for")
layout.label(text="creating and editing avatars in blender,")
layout.label(text="This is an early alpha version, so expect")
layout.label(text="bugs and issues.")
layout.label(text=t("AvatarToolkit.welcome"))
layout.label(text=t("AvatarToolkit.description"))
layout.label(text=t("AvatarToolkit.alpha_warning"))
#print("Avatar Toolkit Panel is being drawn")