[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57515] trunk/blender: Usual UI messages style edits...

Bastien Montagne montagne29 at wanadoo.fr
Mon Jun 17 12:01:35 CEST 2013


Revision: 57515
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57515
Author:   mont29
Date:     2013-06-17 10:01:35 +0000 (Mon, 17 Jun 2013)
Log Message:
-----------
Usual UI messages style edits...

Modified Paths:
--------------
    trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
    trunk/blender/source/blender/editors/object/object_vgroup.c
    trunk/blender/source/blender/editors/space_nla/nla_edit.c
    trunk/blender/source/blender/editors/space_view3d/view3d_buttons.c

Modified: trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
===================================================================
--- trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py	2013-06-17 08:44:09 UTC (rev 57514)
+++ trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py	2013-06-17 10:01:35 UTC (rev 57515)
@@ -58,6 +58,7 @@
         "arcsine", "arccosine", "arctangent",
         "autoclip",
         "autocomplete",
+        "autoexec",
         "autoname",
         "autosave",
         "autoscale",
@@ -437,6 +438,7 @@
         "oren",
         "prewitt",
         "runge",
+        "sobol",
         "verlet",
         "worley",
 

Modified: trunk/blender/source/blender/editors/object/object_vgroup.c
===================================================================
--- trunk/blender/source/blender/editors/object/object_vgroup.c	2013-06-17 08:44:09 UTC (rev 57514)
+++ trunk/blender/source/blender/editors/object/object_vgroup.c	2013-06-17 10:01:35 UTC (rev 57515)
@@ -2905,9 +2905,9 @@
 	ot->flag = /*OPTYPE_REGISTER|*/ OPTYPE_UNDO;
 
 	/* properties */
-	prop = RNA_def_boolean(ot->srna, "use_all_groups", 0, "All Groups", "Remove from all Groups");
+	prop = RNA_def_boolean(ot->srna, "use_all_groups", 0, "All Groups", "Remove from all groups");
 	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
-	prop = RNA_def_boolean(ot->srna, "use_all_verts", 0, "All verts", "Clear Active Group");
+	prop = RNA_def_boolean(ot->srna, "use_all_verts", 0, "All Verts", "Clear the active group");
 	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
 }
 

Modified: trunk/blender/source/blender/editors/space_nla/nla_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_nla/nla_edit.c	2013-06-17 08:44:09 UTC (rev 57514)
+++ trunk/blender/source/blender/editors/space_nla/nla_edit.c	2013-06-17 10:01:35 UTC (rev 57515)
@@ -425,8 +425,7 @@
 	
 	if (items == 0) {
 		BKE_report(op->reports, RPT_ERROR, 
-		           "No active track(s) to add strip to. "
-		           "Select an existing track or add one before trying again");
+		           "No active track(s) to add strip to, select an existing track or add one before trying again");
 		return OPERATOR_CANCELLED;
 	}
 	

Modified: trunk/blender/source/blender/editors/space_view3d/view3d_buttons.c
===================================================================
--- trunk/blender/source/blender/editors/space_view3d/view3d_buttons.c	2013-06-17 08:44:09 UTC (rev 57514)
+++ trunk/blender/source/blender/editors/space_view3d/view3d_buttons.c	2013-06-17 10:01:35 UTC (rev 57515)
@@ -1183,7 +1183,7 @@
 
 					uiDefIconBut(block, BUT, B_VGRP_PNL_DELETE_SINGLE + i, ICON_X,
 					             xco, yco, (x = UI_UNIT_X), UI_UNIT_Y,
-					             NULL, 0, 0, 0, 0, TIP_("Delete this weight from the vertex."));
+					             NULL, 0, 0, 0, 0, TIP_("Delete this weight from the vertex"));
 					xco += x;
 
 					yco -= UI_UNIT_Y;




More information about the Bf-blender-cvs mailing list