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:
-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}};