Usual UI messages fixes...

This commit is contained in:
Bastien Montagne 2013-09-09 20:22:01 +00:00
parent 00641bb237
commit 83b2eefd09
6 changed files with 12 additions and 8 deletions

@ -71,6 +71,7 @@ class SpellChecker():
"backscattered",
"bandnoise",
"bindcode",
"bitflag", "bitflags",
"bitrate",
"blackbody",
"blendfile",
@ -432,6 +433,7 @@ class SpellChecker():
"catrom",
"chebychev",
"courant",
"hosek",
"kutta",
"lennard",
"minkowski",
@ -440,10 +442,12 @@ class SpellChecker():
"nayar",
"netravali",
"oren",
"preetham",
"prewitt",
"runge",
"sobol",
"verlet",
"wilkie",
"worley",
# Acronyms

@ -78,7 +78,7 @@ static bool mesh_bisect_interactive_calc(
int x_end = RNA_int_get(op->ptr, "xend");
int y_end = RNA_int_get(op->ptr, "yend");
/* reference location (some point infront of the view) for finding a point on a plane */
/* reference location (some point in front of the view) for finding a point on a plane */
const float *co_ref = rv3d->ofs;
float co_a_ss[2] = {x_start, y_start}, co_b_ss[2] = {x_end, y_end}, co_delta_ss[2];
float co_a[3], co_b[3];
@ -323,7 +323,7 @@ void MESH_OT_bisect(struct wmOperatorType *ot)
RNA_def_boolean(ot->srna, "use_fill", false, "Fill", "Fill in the cut");
RNA_def_boolean(ot->srna, "clear_inner", false, "Clear Inner", "Remove geometry behind the plane");
RNA_def_boolean(ot->srna, "clear_outer", false, "Clear Outer", "Remove geometry infront of the plane");
RNA_def_boolean(ot->srna, "clear_outer", false, "Clear Outer", "Remove geometry in front of the plane");
RNA_def_float(ot->srna, "threshold", 0.0001, 0.0, 10.0, "Axis Threshold", "", 0.00001, 0.1);

@ -980,7 +980,7 @@ static void rna_def_colormanage(BlenderRNA *brna)
};
static EnumPropertyItem look_items[] = {
{0, "NONE", 0, "None", "Do not modify image in an artistics manner"},
{0, "NONE", 0, "None", "Do not modify image in an artistic manner"},
{0, NULL, 0, NULL, NULL}
};
@ -1015,7 +1015,7 @@ static void rna_def_colormanage(BlenderRNA *brna)
RNA_def_property_enum_funcs(prop, "rna_ColorManagedViewSettings_look_get",
"rna_ColorManagedViewSettings_look_set",
"rna_ColorManagedViewSettings_look_itemf");
RNA_def_property_ui_text(prop, "Look", "Additional tarnsform applyed before view transform for an artistics needs");
RNA_def_property_ui_text(prop, "Look", "Additional transform applied before view transform for an artistic needs");
RNA_def_property_update(prop, NC_WINDOW, "rna_ColorManagement_update");
prop = RNA_def_property(srna, "view_transform", PROP_ENUM, PROP_NONE);

@ -862,8 +862,8 @@ static void rna_def_pointcache(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_library_path", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", PTCACHE_IGNORE_LIBPATH);
RNA_def_property_ui_text(prop, "Library Path",
"Use this files path for the disk cache when library linked into another file. "
"For local bakes per scene file, disable this option");
"Use this file's path for the disk cache when library linked into another file "
"(for local bakes per scene file, disable this option)");
RNA_def_property_update(prop, NC_OBJECT, "rna_Cache_idname_change");
prop = RNA_def_property(srna, "point_caches", PROP_COLLECTION, PROP_NONE);

@ -1122,7 +1122,7 @@ static void rna_def_uilist(BlenderRNA *brna)
prop = RNA_def_property(srna, "bitflag_filter_item", PROP_INT, PROP_UNSIGNED);
RNA_def_property_ui_text(prop, "FILTER_ITEM",
"The value of the reserved bitfalg 'FILTER_ITEM' (in filter_flags values)");
"The value of the reserved bitflag 'FILTER_ITEM' (in filter_flags values)");
RNA_def_property_int_funcs(prop, "rna_UIList_filter_const_FILTER_ITEM_get", NULL, NULL);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
}

@ -1121,7 +1121,7 @@ static int wm_operator_call_internal(bContext *C, wmOperatorType *ot, PointerRNA
/* window is needed for invoke, cancel operator */
if (window == NULL) {
if (poll_only) {
CTX_wm_operator_poll_msg_set(C, "missing 'window' in context");
CTX_wm_operator_poll_msg_set(C, "Missing 'window' in context");
}
return 0;
}