diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index ec459146e5c..69f75b54482 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -244,7 +244,7 @@ class USERPREF_PT_edit(bpy.types.Panel): sub1.prop(edit, "duplicate_lamp", text="Lamp") sub1.prop(edit, "duplicate_material", text="Material") sub1.prop(edit, "duplicate_texture", text="Texture") - sub1.prop(edit, "duplicate_ipo", text="F-Curve") + sub1.prop(edit, "duplicate_fcurve", text="F-Curve") sub1.prop(edit, "duplicate_action", text="Action") sub1.prop(edit, "duplicate_particle", text="Particle") diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 8559efa42c6..61707b60631 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -102,7 +102,7 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col.operator("mesh.extrude_move") col.operator("mesh.subdivide") col.operator("mesh.loopcut_slide") - col.operator("mesh.duplicate_move") + col.operator("mesh.duplicate_move", text="Duplicate") col.operator("mesh.spin") col.operator("mesh.screw") diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index f3be443ef60..278d7855f3a 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -1981,9 +1981,9 @@ static void rna_def_userdef_edit(BlenderRNA *brna) RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_TEX); RNA_def_property_ui_text(prop, "Duplicate Texture", "Causes texture data to be duplicated with the object."); - prop= RNA_def_property(srna, "duplicate_ipo", PROP_BOOLEAN, PROP_NONE); + prop= RNA_def_property(srna, "duplicate_fcurve", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_IPO); - RNA_def_property_ui_text(prop, "Duplicate Ipo", "Causes ipo data to be duplicated with the object."); + RNA_def_property_ui_text(prop, "Duplicate F-Curve", "Causes F-curve data to be duplicated with the object."); prop= RNA_def_property(srna, "duplicate_action", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_ACT);