Merge pull request #207 from Yusarina/atk-next

Translation Strings Fixes
This commit is contained in:
Yusarina
2025-11-19 04:36:38 +00:00
committed by GitHub
5 changed files with 7 additions and 4 deletions
+1
View File
@@ -200,6 +200,7 @@
"Tools.digitigrade_error": "Failed to create digitigrade legs: {error}", "Tools.digitigrade_error": "Failed to create digitigrade legs: {error}",
"Tools.digitigrade_success": "Successfully created digitigrade leg setup", "Tools.digitigrade_success": "Successfully created digitigrade leg setup",
"Tools.processing_leg": "Processing leg bone: {bone}", "Tools.processing_leg": "Processing leg bone: {bone}",
"Tools.weight_title": "Weight Tools",
"Tools.merge_twist_bones": "Keep Twist Bones", "Tools.merge_twist_bones": "Keep Twist Bones",
"Tools.merge_twist_bones_desc": "When checked, twist bones will be kept, even if there are zero-weight", "Tools.merge_twist_bones_desc": "When checked, twist bones will be kept, even if there are zero-weight",
"Tools.clean_weights": "Remove Zero Weight Bones", "Tools.clean_weights": "Remove Zero Weight Bones",
+1
View File
@@ -203,6 +203,7 @@
"Tools.digitigrade_error": "デジティグレード脚の作成に失敗: {error}", "Tools.digitigrade_error": "デジティグレード脚の作成に失敗: {error}",
"Tools.digitigrade_success": "デジティグレード脚の設定が正常に作成されました", "Tools.digitigrade_success": "デジティグレード脚の設定が正常に作成されました",
"Tools.processing_leg": "脚のボーンを処理中: {bone}", "Tools.processing_leg": "脚のボーンを処理中: {bone}",
"Tools.weight_title": "ウェイトツール",
"Tools.merge_twist_bones": "ツイストボーンを保持", "Tools.merge_twist_bones": "ツイストボーンを保持",
"Tools.merge_twist_bones_desc": "チェックすると、ウェイトがゼロでもツイストボーンが保持されます", "Tools.merge_twist_bones_desc": "チェックすると、ウェイトがゼロでもツイストボーンが保持されます",
"Tools.clean_weights": "ゼロウェイトボーンを削除", "Tools.clean_weights": "ゼロウェイトボーンを削除",
+1
View File
@@ -203,6 +203,7 @@
"Tools.digitigrade_error": "디지티그레이드 다리 생성 실패: {error}", "Tools.digitigrade_error": "디지티그레이드 다리 생성 실패: {error}",
"Tools.digitigrade_success": "디지티그레이드 다리 설정 생성 성공", "Tools.digitigrade_success": "디지티그레이드 다리 설정 생성 성공",
"Tools.processing_leg": "다리 본 처리 중: {bone}", "Tools.processing_leg": "다리 본 처리 중: {bone}",
"Tools.weight_title": "가중치 도구",
"Tools.merge_twist_bones": "트위스트 본 유지", "Tools.merge_twist_bones": "트위스트 본 유지",
"Tools.merge_twist_bones_desc": "체크하면 가중치가 0이더라도 트위스트 본이 유지됩니다", "Tools.merge_twist_bones_desc": "체크하면 가중치가 0이더라도 트위스트 본이 유지됩니다",
"Tools.clean_weights": "가중치 0인 본 제거", "Tools.clean_weights": "가중치 0인 본 제거",
+2 -2
View File
@@ -35,6 +35,6 @@ class AvatarToolKit_PT_OptimizationPanel(Panel):
# Join Meshes section # Join Meshes section
col = draw_section_header(layout, t("Optimization.join_meshes_title"), icon='OBJECT_DATA') col = draw_section_header(layout, t("Optimization.join_meshes_title"), icon='OBJECT_DATA')
draw_operator_row(col, [ draw_operator_row(col, [
(AvatarToolkit_OT_JoinAllMeshes.bl_idname, t("Optimization.join_all"), 'OBJECT_DATA'), (AvatarToolkit_OT_JoinAllMeshes.bl_idname, t("Optimization.join_all_meshes"), 'OBJECT_DATA'),
(AvatarToolkit_OT_JoinSelectedMeshes.bl_idname, t("Optimization.join_selected"), 'RESTRICT_SELECT_OFF') (AvatarToolkit_OT_JoinSelectedMeshes.bl_idname, t("Optimization.join_selected_meshes"), 'RESTRICT_SELECT_OFF')
]) ])
+2 -2
View File
@@ -265,8 +265,8 @@ class AvatarToolKit_PT_QuickAccessPanel(Panel):
col.operator(AvatarToolkit_OT_StopPoseMode.bl_idname, icon='POSE_HLT') col.operator(AvatarToolkit_OT_StopPoseMode.bl_idname, icon='POSE_HLT')
col.separator(factor=UIStyle.SUBSECTION_SEPARATOR_FACTOR) col.separator(factor=UIStyle.SUBSECTION_SEPARATOR_FACTOR)
draw_operator_row(col, [ draw_operator_row(col, [
(AvatarToolkit_OT_ApplyPoseAsRest.bl_idname, t("QuickAccess.pose_as_rest"), 'MOD_ARMATURE'), (AvatarToolkit_OT_ApplyPoseAsRest.bl_idname, t("QuickAccess.apply_pose_as_rest.label"), 'MOD_ARMATURE'),
(AvatarToolkit_OT_ApplyPoseAsShapekey.bl_idname, t("QuickAccess.pose_as_shapekey"), 'MOD_ARMATURE') (AvatarToolkit_OT_ApplyPoseAsShapekey.bl_idname, t("QuickAccess.apply_pose_as_shapekey.label"), 'MOD_ARMATURE')
]) ])
else: else:
col.operator(AvatarToolkit_OT_StartPoseMode.bl_idname, icon='POSE_HLT') col.operator(AvatarToolkit_OT_StartPoseMode.bl_idname, icon='POSE_HLT')