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/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 792b11d8e5b..410756ff5ea 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -37,8 +37,11 @@
#include "DNA_particle_types.h"
#include "DNA_scene_types.h"
#include "DNA_userdef_types.h"
+
#include "BLI_math.h"
+#include "BLF_translation.h"
+
#include "BKE_tessmesh.h"
/* Include for Bake Options */
@@ -204,11 +207,11 @@ EnumPropertyItem image_only_type_items[] = {
{0, NULL, 0, NULL, NULL}};
EnumPropertyItem image_type_items[] = {
- {0, "", 0, "Image", NULL},
+ {0, "", 0, N_("Image"), NULL},
IMAGE_TYPE_ITEMS_IMAGE_ONLY
- {0, "", 0, "Movie", NULL},
+ {0, "", 0, N_("Movie"), NULL},
#ifdef _WIN32
/* XXX Missing codec menu */
{R_IMF_IMTYPE_AVICODEC, "AVICODEC", ICON_FILE_MOVIE, "AVI Codec", "Output video in AVI format"},