Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiao Xiangquan <xiaoxiangquan@gmail.com>2011-06-24 08:22:27 +0400
committerXiao Xiangquan <xiaoxiangquan@gmail.com>2011-06-24 08:22:27 +0400
commit79c129647e2a8c5d5efd2fc1226e3980f356e663 (patch)
tree6d6a419c5cd7c4e0745d31d53ae8c1a200413d4a /source/blender/editors/animation/anim_ops.c
parentb429af10d04d727574eb50a7186e8075ae8fb0b8 (diff)
right panel done
Diffstat (limited to 'source/blender/editors/animation/anim_ops.c')
-rw-r--r--source/blender/editors/animation/anim_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c
index f938fcfa39f..1a69f88b382 100644
--- a/source/blender/editors/animation/anim_ops.c
+++ b/source/blender/editors/animation/anim_ops.c
@@ -333,9 +333,9 @@ static int toggle_time_exec(bContext *C, wmOperator *UNUSED(op))
static void ANIM_OT_time_toggle(wmOperatorType *ot)
{
/* identifiers */
- ot->name= "Toggle Frames/Seconds";
+ ot->name= _("Toggle Frames/Seconds");
ot->idname= "ANIM_OT_time_toggle";
- ot->description= "Toggle whether timing is displayed in frames or seconds for active timeline view";
+ ot->description= _("Toggle whether timing is displayed in frames or seconds for active timeline view");
/* api callbacks */
ot->exec= toggle_time_exec;