[Bf-blender-cvs] [6ada7a1] master: Usual UI messages fixes...

Bastien Montagne noreply at git.blender.org
Mon Apr 27 20:10:48 CEST 2015


Commit: 6ada7a1a0b76d7c1d1203800c0bd84c5d1dc0f86
Author: Bastien Montagne
Date:   Mon Apr 27 20:10:32 2015 +0200
Branches: master
https://developer.blender.org/rB6ada7a1a0b76d7c1d1203800c0bd84c5d1dc0f86

Usual UI messages fixes...

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

M	source/blender/windowmanager/intern/wm_operators.c
M	source/blender/windowmanager/intern/wm_stereo.c

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

diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 7e2ee0e..dfff5b4 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -4858,7 +4858,7 @@ static void WM_OT_doc_view_manual_ui_context(wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "View Online Manual";
 	ot->idname = "WM_OT_doc_view_manual_ui_context";
-	ot->description = "View a context based online manual in a webbrowser";
+	ot->description = "View a context based online manual in a web browser";
 
 	/* callbacks */
 	ot->poll = ED_operator_regionactive;
diff --git a/source/blender/windowmanager/intern/wm_stereo.c b/source/blender/windowmanager/intern/wm_stereo.c
index 9178bd9..717583f 100644
--- a/source/blender/windowmanager/intern/wm_stereo.c
+++ b/source/blender/windowmanager/intern/wm_stereo.c
@@ -474,7 +474,7 @@ int wm_stereo3d_set_exec(bContext *C, wmOperator *op)
 		}
 		else {
 			BKE_report(op->reports, RPT_ERROR,
-			           "Fail to create a window without quadbuffer support, you may experience flickering");
+			           "Failed to create a window without quad-buffer support, you may experience flickering");
 		}
 	}
 	else if (win->stereo3d_format->display_mode == S3D_DISPLAY_PAGEFLIP) {
@@ -493,7 +493,7 @@ int wm_stereo3d_set_exec(bContext *C, wmOperator *op)
 		}
 		else {
 			BKE_report(op->reports, RPT_ERROR,
-			           "Fail to create a window compatible with the time sequential display method");
+			           "Failed to create a window compatible with the time sequential display method");
 			win->stereo3d_format->display_mode = prev_display_mode;
 		}
 	}




More information about the Bf-blender-cvs mailing list