[Bf-blender-cvs] [82cafcf] master: UI messages fixes...

Bastien Montagne noreply at git.blender.org
Tue Mar 3 10:41:10 CET 2015


Commit: 82cafcfdb7cf6f32b2734ce789947d1b84e0d3cc
Author: Bastien Montagne
Date:   Tue Mar 3 10:40:52 2015 +0100
Branches: master
https://developer.blender.org/rB82cafcfdb7cf6f32b2734ce789947d1b84e0d3cc

UI messages fixes...

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

M	source/blender/editors/space_action/action_edit.c
M	source/blender/makesrna/intern/rna_userdef.c

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

diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index 764e426..7f8711c 100644
--- a/source/blender/editors/space_action/action_edit.c
+++ b/source/blender/editors/space_action/action_edit.c
@@ -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 {
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index aa031ab..e60af76 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -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);




More information about the Bf-blender-cvs mailing list