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:
authorBastien Montagne <montagne29@wanadoo.fr>2016-02-02 22:40:23 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-02-02 22:40:23 +0300
commite3f48bdb4848a9b6239ec0b03a39583001086624 (patch)
treee5dcd023a3edf0e5a3ba5ff7e857d77f8681e993
parente42852a3395c9934488cecea64936f1c259eeb01 (diff)
Usual i18n/UI message fixes...
-rw-r--r--release/scripts/modules/bl_i18n_utils/settings.py2
-rw-r--r--source/blender/editors/space_sequencer/sequencer_modifier.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/settings.py b/release/scripts/modules/bl_i18n_utils/settings.py
index 49dbfbe62af..2dc8ccbf22a 100644
--- a/release/scripts/modules/bl_i18n_utils/settings.py
+++ b/release/scripts/modules/bl_i18n_utils/settings.py
@@ -337,6 +337,8 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = {
"image path can't be written to",
"in memory to enable editing!",
"jumps over",
+ "left",
+ "right",
"the lazy dog",
"unable to load movie clip",
"unable to load text",
diff --git a/source/blender/editors/space_sequencer/sequencer_modifier.c b/source/blender/editors/space_sequencer/sequencer_modifier.c
index aea0f6a3929..f7999ee3c13 100644
--- a/source/blender/editors/space_sequencer/sequencer_modifier.c
+++ b/source/blender/editors/space_sequencer/sequencer_modifier.c
@@ -260,7 +260,7 @@ void SEQUENCER_OT_strip_modifier_copy(wmOperatorType *ot)
{
static EnumPropertyItem type_items[] = {
{SEQ_MODIFIER_COPY_REPLACE, "REPLACE", 0, "Replace",
- "Replace modifiers in desctination"},
+ "Replace modifiers in destination"},
{SEQ_MODIFIER_COPY_APPEND, "APPEND", 0, "Append",
"Append active modifiers to selected strips"},
{0, NULL, 0, NULL, NULL}};