Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-03-03 12:40:52 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-03-03 12:40:52 +0300
commit82cafcfdb7cf6f32b2734ce789947d1b84e0d3cc (patch)
tree555310e986c5b943117d47fe6420d2c22352bb09 /source
parent23330473e37dbcc973a20942ed9af4a716e6c57f (diff)
UI messages fixes...
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_action/action_edit.c2
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index 764e426341a..7f8711c415e 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 aa031ab6246..e60af76851e 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);