From 9b8538c69c14aaf9b991ae23e5faa6429c701c37 Mon Sep 17 00:00:00 2001 From: Xiao Xiangquan Date: Sat, 2 Jul 2011 03:17:09 +0000 Subject: 3D view, graph editor, etc. done --- source/blender/editors/animation/anim_ops.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/editors/animation/anim_ops.c') diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c index 1a69f88b382..e3438032fec 100644 --- a/source/blender/editors/animation/anim_ops.c +++ b/source/blender/editors/animation/anim_ops.c @@ -162,9 +162,9 @@ static int change_frame_modal(bContext *C, wmOperator *op, wmEvent *event) static void ANIM_OT_change_frame(wmOperatorType *ot) { /* identifiers */ - ot->name= "Change frame"; + ot->name= _("Change frame"); ot->idname= "ANIM_OT_change_frame"; - ot->description= "Interactively change the current frame number"; + ot->description= _("Interactively change the current frame number"); /* api callbacks */ ot->exec= change_frame_exec; @@ -217,9 +217,9 @@ static int previewrange_define_exec(bContext *C, wmOperator *op) static void ANIM_OT_previewrange_set(wmOperatorType *ot) { /* identifiers */ - ot->name= "Set Preview Range"; + ot->name= _("Set Preview Range"); ot->idname= "ANIM_OT_previewrange_set"; - ot->description= "Interactively define frame range used for playback"; + ot->description= _("Interactively define frame range used for playback"); /* api callbacks */ ot->invoke= WM_border_select_invoke; @@ -265,9 +265,9 @@ static int previewrange_clear_exec(bContext *C, wmOperator *UNUSED(op)) static void ANIM_OT_previewrange_clear(wmOperatorType *ot) { /* identifiers */ - ot->name= "Clear Preview Range"; + ot->name= _("Clear Preview Range"); ot->idname= "ANIM_OT_previewrange_clear"; - ot->description= "Clear Preview Range"; + ot->description= _("Clear Preview Range"); /* api callbacks */ ot->exec= previewrange_clear_exec; -- cgit v1.2.3