[Bf-blender-cvs] [01ce8d8] master: Usual ui messages fixes/tweaks.

Bastien Montagne noreply at git.blender.org
Wed Mar 30 23:40:31 CEST 2016


Commit: 01ce8d80d0311c71ae706522f564f3febbc20ac9
Author: Bastien Montagne
Date:   Wed Mar 30 23:39:54 2016 +0200
Branches: master
https://developer.blender.org/rB01ce8d80d0311c71ae706522f564f3febbc20ac9

Usual ui messages fixes/tweaks.

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

M	release/scripts/startup/bl_ui/properties_scene.py
M	source/blender/editors/armature/armature_edit.c
M	source/blender/editors/space_graph/graph_buttons.c

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

diff --git a/release/scripts/startup/bl_ui/properties_scene.py b/release/scripts/startup/bl_ui/properties_scene.py
index a05f0ac..d6253ec 100644
--- a/release/scripts/startup/bl_ui/properties_scene.py
+++ b/release/scripts/startup/bl_ui/properties_scene.py
@@ -33,7 +33,7 @@ from bl_ui.properties_physics_common import (
 
 
 class SCENE_MT_units_length_presets(Menu):
-    """Sets the unit of measure for properties that use length values"""
+    """Unit of measure for properties that use length values"""
     bl_label = "Unit Presets"
     preset_subdir = "units_length"
     preset_operator = "script.execute_preset"
diff --git a/source/blender/editors/armature/armature_edit.c b/source/blender/editors/armature/armature_edit.c
index 7802a99..b1c23fb 100644
--- a/source/blender/editors/armature/armature_edit.c
+++ b/source/blender/editors/armature/armature_edit.c
@@ -497,7 +497,7 @@ void ARMATURE_OT_roll_clear(wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "Clear Roll";
 	ot->idname = "ARMATURE_OT_roll_clear";
-	ot->description = "Clear roll for select bones";
+	ot->description = "Clear roll for selected bones";
 
 	/* api callbacks */
 	ot->exec = armature_roll_clear_exec;
diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c
index 6efb0b1..b244d85 100644
--- a/source/blender/editors/space_graph/graph_buttons.c
+++ b/source/blender/editors/space_graph/graph_buttons.c
@@ -857,7 +857,7 @@ static void graph_panel_drivers(const bContext *C, Panel *pa)
 		
 		if (dvar->flag & DVAR_FLAG_INVALID_NAME) {
 			but = uiDefIconBut(block, UI_BTYPE_BUT, B_IPO_DEPCHANGE, ICON_ERROR, 290, 0, UI_UNIT_X, UI_UNIT_Y,
-			                   NULL, 0.0, 0.0, 0.0, 0.0, IFACE_("Invalid variable name. Click here for details"));
+			                   NULL, 0.0, 0.0, 0.0, 0.0, IFACE_("Invalid variable name, click here for details"));
 			UI_but_func_set(but, driver_dvar_invalid_name_query_cb, dvar, NULL); // XXX: reports?
 		}




More information about the Bf-blender-cvs mailing list