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.py8
-rw-r--r--release/scripts/modules/bl_i18n_utils/utils_spell_check.py3
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c2
3 files changed, 9 insertions, 4 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/settings.py b/release/scripts/modules/bl_i18n_utils/settings.py
index 1c960a217de..a63633d25aa 100644
--- a/release/scripts/modules/bl_i18n_utils/settings.py
+++ b/release/scripts/modules/bl_i18n_utils/settings.py
@@ -285,6 +285,7 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = {
"ascii",
"author", # Addons' field. :/
"bItasc",
+ "dbl-", # Compacted for 'double', for keymap items.
"description", # Addons' field. :/
"dx",
"fBM",
@@ -352,12 +353,13 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = {
WARN_MSGID_NOT_CAPITALIZED_ALLOWED |= set(lng[2] for lng in LANGUAGES)
WARN_MSGID_END_POINT_ALLOWED = {
- "Numpad .",
"Circle|Alt .",
- "Temp. Diff.",
"Float Neg. Exp.",
- " RNA Path: bpy.types.",
"Max Ext.",
+ "Numpad .",
+ "Pad.",
+ " RNA Path: bpy.types.",
+ "Temp. Diff.",
}
PARSER_CACHE_HASH = 'sha1'
diff --git a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
index 42a23c8c041..e2f2aeef7b2 100644
--- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
@@ -91,6 +91,7 @@ class SpellChecker:
"customdata",
"dataset", "datasets",
"de",
+ "deadzone",
"deconstruct",
"defocus",
"denoise",
@@ -262,6 +263,7 @@ class SpellChecker:
"loc", "rot", "pos",
"lorem",
"luma",
+ "mbs", # mouse button 'select'.
"mem",
"multicam",
"num",
@@ -284,6 +286,7 @@ class SpellChecker:
"struct", "structs",
"sys",
"tex",
+ "tmr", # timer
"tri", "tris",
"uv", "uvs", "uvw", "uw", "uvmap",
"ve",
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 535428e7d6a..879c765978f 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2343,7 +2343,7 @@ static void rna_def_text(StructRNA *srna)
prop = RNA_def_property(srna, "use_shadow", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_TEXT_SHADOW);
- RNA_def_property_ui_text(prop, "Shadow", "draw text with shadow");
+ RNA_def_property_ui_text(prop, "Shadow", "Draw text with shadow");
RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_update");
}