[Bf-blender-cvs] [9cc1953] master: Usual i18n messages fixes...

Bastien Montagne noreply at git.blender.org
Tue Jul 14 21:42:04 CEST 2015


Commit: 9cc1953210486a240f77b7ceafbcd664d1994b57
Author: Bastien Montagne
Date:   Tue Jul 14 21:41:24 2015 +0200
Branches: master
https://developer.blender.org/rB9cc1953210486a240f77b7ceafbcd664d1994b57

Usual i18n messages fixes...

===================================================================

M	release/scripts/modules/bl_i18n_utils/settings.py
M	release/scripts/modules/bl_i18n_utils/utils_spell_check.py
M	source/blender/makesrna/intern/rna_sequencer.c

===================================================================

diff --git a/release/scripts/modules/bl_i18n_utils/settings.py b/release/scripts/modules/bl_i18n_utils/settings.py
index 1c960a2..a63633d 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 42a23c8..e2f2aee 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 535428e..879c765 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");
 }




More information about the Bf-blender-cvs mailing list