Blender Kitsu: Rename 'Metastrip' to 'Metadata Strip' #255

Merged
Showing only changes of commit 621add1d76 - Show all commits

View File

@ -45,7 +45,7 @@ from ..sqe.ops import (
KITSU_OT_sqe_debug_multi_project, KITSU_OT_sqe_debug_multi_project,
KITSU_OT_sqe_pull_edit, KITSU_OT_sqe_pull_edit,
KITSU_OT_sqe_init_strip_start_frame, KITSU_OT_sqe_init_strip_start_frame,
KITSU_OT_sqe_create_meta_strip, KITSU_OT_sqe_create_metadata_strip,
KITSU_OT_sqe_add_sequence_color, KITSU_OT_sqe_add_sequence_color,
KITSU_OT_sqe_scan_for_media_updates, KITSU_OT_sqe_scan_for_media_updates,
KITSU_OT_sqe_change_strip_source, KITSU_OT_sqe_change_strip_source,
@ -207,7 +207,7 @@ class KITSU_PT_sqe_shot_tools(bpy.types.Panel):
# Create metadata strip from uninitialized strip. # Create metadata strip from uninitialized strip.
row = box.row(align=True) row = box.row(align=True)
row.operator( row.operator(
KITSU_OT_sqe_create_meta_strip.bl_idname, KITSU_OT_sqe_create_metadata_strip.bl_idname,
text=f"Create Metadata Strip {noun}", text=f"Create Metadata Strip {noun}",
) )
@ -244,7 +244,7 @@ class KITSU_PT_sqe_shot_tools(bpy.types.Panel):
) )
row = box.row(align=True) row = box.row(align=True)
row.operator( row.operator(
KITSU_OT_sqe_create_meta_strip.bl_idname, KITSU_OT_sqe_create_metadata_strip.bl_idname,
text=f"Create {len(strips_to_init)} Metadata Strips", text=f"Create {len(strips_to_init)} Metadata Strips",
) )