UI messages fixes...

This commit is contained in:
Bastien Montagne
2015-03-03 10:40:52 +01:00
parent 23330473e3
commit 82cafcfdb7
2 changed files with 3 additions and 3 deletions

View File

@@ -314,7 +314,7 @@ static int action_pushdown_exec(bContext *C, wmOperator *op)
*/
if (action_has_motion(adt->action) == 0) {
/* action may not be suitable... */
BKE_report(op->reports, RPT_WARNING, "Action needs have at least a keyframe or some FModifiers");
BKE_report(op->reports, RPT_WARNING, "Action must have at least one keyframe or F-Modifier");
return OPERATOR_CANCELLED;
}
else {

View File

@@ -3336,12 +3336,12 @@ static void rna_def_userdef_view(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_quit_dialog", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_QUIT_PROMPT);
RNA_def_property_ui_text(prop, "Prompt Quit",
"Asks for confirmation when quitting through the window close button");
"Ask for confirmation when quitting through the window close button");
prop = RNA_def_property(srna, "use_gl_warn_support", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "uiflag2", USER_OPENGL_NO_WARN_SUPPORT);
RNA_def_property_ui_text(prop, "Warn On Deprecated OpenGL",
"Pops up a warning when an old OpenGL version is detected");
"Pop up a warning when an old OpenGL version is detected");
/* Toolbox click-hold delay */
prop = RNA_def_property(srna, "open_left_mouse_delay", PROP_INT, PROP_NONE);