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:
Diffstat (limited to 'source/blender/editors/space_time/time_ops.c')
-rw-r--r--source/blender/editors/space_time/time_ops.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/source/blender/editors/space_time/time_ops.c b/source/blender/editors/space_time/time_ops.c
index e9559426b81..e86ae1849dd 100644
--- a/source/blender/editors/space_time/time_ops.c
+++ b/source/blender/editors/space_time/time_ops.c
@@ -39,6 +39,8 @@
#include "BLI_blenlib.h"
#include "BLI_utildefines.h"
+#include "BLF_api.h"
+
#include "BKE_context.h"
#include "ED_screen.h"
@@ -77,9 +79,9 @@ static int time_set_sfra_exec (bContext *C, wmOperator *UNUSED(op))
static void TIME_OT_start_frame_set (wmOperatorType *ot)
{
/* identifiers */
- ot->name= "Set Start Frame";
+ ot->name= _("Set Start Frame");
ot->idname= "TIME_OT_start_frame_set";
- ot->description="Set the start frame";
+ ot->description=_("Set the start frame");
/* api callbacks */
ot->exec= time_set_sfra_exec;
@@ -119,9 +121,9 @@ static int time_set_efra_exec (bContext *C, wmOperator *UNUSED(op))
static void TIME_OT_end_frame_set (wmOperatorType *ot)
{
/* identifiers */
- ot->name= "Set End Frame";
+ ot->name= _("Set End Frame");
ot->idname= "TIME_OT_end_frame_set";
- ot->description="Set the end frame";
+ ot->description=_("Set the end frame");
/* api callbacks */
ot->exec= time_set_efra_exec;
@@ -161,9 +163,9 @@ static int time_view_all_exec (bContext *C, wmOperator *UNUSED(op))
static void TIME_OT_view_all (wmOperatorType *ot)
{
/* identifiers */
- ot->name= "View All";
+ ot->name= _("View All");
ot->idname= "TIME_OT_view_all";
- ot->description= "Show the entire playable frame range";
+ ot->description= _("Show the entire playable frame range");
/* api callbacks */
ot->exec= time_view_all_exec;