From 148435b70a1ab15d7128a4ea61d22dea8ee5b1c9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 10 Feb 2010 21:15:44 +0000 Subject: batch remove .'s used with RNA_def_struct_ui_text --- source/blender/editors/space_action/action_edit.c | 34 +++++++++++------------ 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'source/blender/editors/space_action/action_edit.c') diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c index d91f2788ecd..c26fcc368bd 100644 --- a/source/blender/editors/space_action/action_edit.c +++ b/source/blender/editors/space_action/action_edit.c @@ -128,7 +128,7 @@ void ACTION_OT_new (wmOperatorType *ot) /* identifiers */ ot->name= "New"; ot->idname= "ACTION_OT_new"; - ot->description= "Create new action."; + ot->description= "Create new action"; /* api callbacks */ ot->exec= act_new_exec; @@ -230,7 +230,7 @@ void ACTION_OT_previewrange_set (wmOperatorType *ot) /* identifiers */ ot->name= "Auto-Set Preview Range"; ot->idname= "ACTION_OT_previewrange_set"; - ot->description= "Set Preview Range based on extents of selected Keyframes."; + ot->description= "Set Preview Range based on extents of selected Keyframes"; /* api callbacks */ ot->exec= actkeys_previewrange_exec; @@ -278,7 +278,7 @@ void ACTION_OT_view_all (wmOperatorType *ot) /* identifiers */ ot->name= "View All"; ot->idname= "ACTION_OT_view_all"; - ot->description= "Reset viewable area to show full keyframe range."; + ot->description= "Reset viewable area to show full keyframe range"; /* api callbacks */ ot->exec= actkeys_viewall_exec; @@ -363,7 +363,7 @@ void ACTION_OT_copy (wmOperatorType *ot) /* identifiers */ ot->name= "Copy Keyframes"; ot->idname= "ACTION_OT_copy"; - ot->description= "Copy selected keyframes to the copy/paste buffer."; + ot->description= "Copy selected keyframes to the copy/paste buffer"; /* api callbacks */ ot->exec= actkeys_copy_exec; @@ -408,7 +408,7 @@ void ACTION_OT_paste (wmOperatorType *ot) /* identifiers */ ot->name= "Paste Keyframes"; ot->idname= "ACTION_OT_paste"; - ot->description= "Paste keyframes from copy/paste buffer for the selected channels, starting on the current frame."; + ot->description= "Paste keyframes from copy/paste buffer for the selected channels, starting on the current frame"; /* api callbacks */ ot->exec= actkeys_paste_exec; @@ -503,7 +503,7 @@ void ACTION_OT_keyframe_insert (wmOperatorType *ot) /* identifiers */ ot->name= "Insert Keyframes"; ot->idname= "ACTION_OT_keyframe_insert"; - ot->description= "Insert keyframes for the specified channels."; + ot->description= "Insert keyframes for the specified channels"; /* api callbacks */ ot->invoke= WM_menu_invoke; @@ -581,7 +581,7 @@ void ACTION_OT_duplicate (wmOperatorType *ot) /* identifiers */ ot->name= "Duplicate Keyframes"; ot->idname= "ACTION_OT_duplicate"; - ot->description= "Make a copy of all selected keyframes."; + ot->description= "Make a copy of all selected keyframes"; /* api callbacks */ ot->invoke= actkeys_duplicate_invoke; @@ -658,7 +658,7 @@ void ACTION_OT_delete (wmOperatorType *ot) /* identifiers */ ot->name= "Delete Keyframes"; ot->idname= "ACTION_OT_delete"; - ot->description= "Remove all selected keyframes."; + ot->description= "Remove all selected keyframes"; /* api callbacks */ ot->invoke= WM_operator_confirm; @@ -722,7 +722,7 @@ void ACTION_OT_clean (wmOperatorType *ot) /* identifiers */ ot->name= "Clean Keyframes"; ot->idname= "ACTION_OT_clean"; - ot->description= "Simplify F-Curves by removing closely spaced keyframes."; + ot->description= "Simplify F-Curves by removing closely spaced keyframes"; /* api callbacks */ //ot->invoke= // XXX we need that number popup for this! @@ -786,7 +786,7 @@ void ACTION_OT_sample (wmOperatorType *ot) /* identifiers */ ot->name= "Sample Keyframes"; ot->idname= "ACTION_OT_sample"; - ot->description= "Add keyframes on every frame between the selected keyframes."; + ot->description= "Add keyframes on every frame between the selected keyframes"; /* api callbacks */ ot->exec= actkeys_sample_exec; @@ -862,7 +862,7 @@ void ACTION_OT_extrapolation_type (wmOperatorType *ot) /* identifiers */ ot->name= "Set Keyframe Extrapolation"; ot->idname= "ACTION_OT_extrapolation_type"; - ot->description= "Set extrapolation mode for selected F-Curves."; + ot->description= "Set extrapolation mode for selected F-Curves"; /* api callbacks */ ot->invoke= WM_menu_invoke; @@ -933,7 +933,7 @@ void ACTION_OT_interpolation_type (wmOperatorType *ot) /* identifiers */ ot->name= "Set Keyframe Interpolation"; ot->idname= "ACTION_OT_interpolation_type"; - ot->description= "Set interpolation mode for the F-Curve segments starting from the selected keyframes."; + ot->description= "Set interpolation mode for the F-Curve segments starting from the selected keyframes"; /* api callbacks */ ot->invoke= WM_menu_invoke; @@ -1030,7 +1030,7 @@ void ACTION_OT_handle_type (wmOperatorType *ot) /* identifiers */ ot->name= "Set Keyframe Handle Type"; ot->idname= "ACTION_OT_handle_type"; - ot->description= "Set type of handle for selected keyframes."; + ot->description= "Set type of handle for selected keyframes"; /* api callbacks */ ot->invoke= WM_menu_invoke; @@ -1101,7 +1101,7 @@ void ACTION_OT_keyframe_type (wmOperatorType *ot) /* identifiers */ ot->name= "Set Keyframe Type"; ot->idname= "ACTION_OT_keyframe_type"; - ot->description= "Set type of keyframe for the seleced keyframes."; + ot->description= "Set type of keyframe for the seleced keyframes"; /* api callbacks */ ot->invoke= WM_menu_invoke; @@ -1170,7 +1170,7 @@ void ACTION_OT_frame_jump (wmOperatorType *ot) /* identifiers */ ot->name= "Jump to Frame"; ot->idname= "ACTION_OT_frame_jump"; - ot->description= "Set the current frame to the average frame of the selected keyframes."; + ot->description= "Set the current frame to the average frame of the selected keyframes"; /* api callbacks */ ot->exec= actkeys_framejump_exec; @@ -1267,7 +1267,7 @@ void ACTION_OT_snap (wmOperatorType *ot) /* identifiers */ ot->name= "Snap Keys"; ot->idname= "ACTION_OT_snap"; - ot->description= "Snap selected keyframes to the times specified."; + ot->description= "Snap selected keyframes to the times specified"; /* api callbacks */ ot->invoke= WM_menu_invoke; @@ -1384,7 +1384,7 @@ void ACTION_OT_mirror (wmOperatorType *ot) /* identifiers */ ot->name= "Mirror Keys"; ot->idname= "ACTION_OT_mirror"; - ot->description= "Flip selected keyframes over the selected mirror line."; + ot->description= "Flip selected keyframes over the selected mirror line"; /* api callbacks */ ot->invoke= WM_menu_invoke; -- cgit v1.2.3