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 -4
View File
@@ -8,7 +8,7 @@ from ..core.common import get_selected_armature
@register_wrap
class AvatarToolkitToolsPanel(bpy.types.Panel):
bl_label = "Tools"
bl_label = t("Tools.label")
bl_idname = "OBJECT_PT_avatar_toolkit_tools"
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
@@ -28,8 +28,8 @@ class AvatarToolkitToolsPanel(bpy.types.Panel):
row.scale_y = 1.5
row.operator("avatar_toolkit.convert_to_resonite", text=t("Tools.convert_to_resonite.label"))
row = layout.row(align=True)
row.operator("avatar_toolkit.remove_doubles_safely", text="Remove Doubles Safely")
row.operator("avatar_toolkit.remove_doubles_safely", text=t("Tools.remove_doubles_safely.label"))
row = layout.row(align=True)
row.operator(CreateDigitigradeLegs.bl_idname, text="Create Digitigrade Legs")
row.operator(CreateDigitigradeLegs.bl_idname, text=t("Tools.create_digitigrade_legs.label"))
else:
layout.label(text="Please select an armature in Quick Access")
layout.label(text=t("Tools.select_armature"))