Usual i18n messages fixes...

This commit is contained in:
Bastien Montagne 2015-07-14 21:41:24 +02:00
parent 8a17918555
commit 9cc1953210
3 changed files with 9 additions and 4 deletions

View File

@ -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'

View File

@ -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",

View File

@ -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");
}