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
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-04-27 21:10:32 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-04-27 21:10:32 +0300
commit6ada7a1a0b76d7c1d1203800c0bd84c5d1dc0f86 (patch)
treee2c921c2b2c3c9ddcc5e7bc77be7feb22be81d70 /source/blender/windowmanager
parent920fa0f963b8e3bd89e213ea849e09df002d2676 (diff)
Usual UI messages fixes...
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
-rw-r--r--source/blender/windowmanager/intern/wm_stereo.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 7e2ee0e3205..dfff5b4982f 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 9178bd97257..717583f69ba 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;
}
}