[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40436] trunk/blender/source/blender/ makesrna/intern: Minor: Other UI strings typos and tweaks.

Bastien Montagne montagne29 at wanadoo.fr
Wed Sep 21 19:31:16 CEST 2011


Revision: 40436
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40436
Author:   mont29
Date:     2011-09-21 17:31:16 +0000 (Wed, 21 Sep 2011)
Log Message:
-----------
Minor: Other UI strings typos and tweaks.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_action.c
    trunk/blender/source/blender/makesrna/intern/rna_material.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_action.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_action.c	2011-09-21 17:15:54 UTC (rev 40435)
+++ trunk/blender/source/blender/makesrna/intern/rna_action.c	2011-09-21 17:31:16 UTC (rev 40436)
@@ -613,7 +613,7 @@
 	prop= RNA_def_property(srna, "id_root", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "idroot");
 	RNA_def_property_enum_items(prop, id_type_items);
-	RNA_def_property_ui_text(prop, "ID Root Type", "Type of ID-block that action can be used on. DO NOT CHANGE UNLESS YOU KNOW WHAT YOU'RE DOING");
+	RNA_def_property_ui_text(prop, "ID Root Type", "Type of ID-block that action can be used on - DO NOT CHANGE UNLESS YOU KNOW WHAT YOU'RE DOING");
 	
 	/* API calls */
 	RNA_api_action(srna);

Modified: trunk/blender/source/blender/makesrna/intern/rna_material.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_material.c	2011-09-21 17:15:54 UTC (rev 40435)
+++ trunk/blender/source/blender/makesrna/intern/rna_material.c	2011-09-21 17:31:16 UTC (rev 40436)
@@ -377,10 +377,10 @@
 	PropertyRNA *prop;
 
 	static EnumPropertyItem prop_mapping_items[] = {
-		{MTEX_FLAT, "FLAT", 0, "Flat", "Maps X and Y coordinates directly"},
-		{MTEX_CUBE, "CUBE", 0, "Cube", "Maps using the normal vector"},
-		{MTEX_TUBE, "TUBE", 0, "Tube", "Maps with Z as central axis"},
-		{MTEX_SPHERE, "SPHERE", 0, "Sphere", "Maps with Z as central axis"},
+		{MTEX_FLAT, "FLAT", 0, "Flat", "Map X and Y coordinates directly"},
+		{MTEX_CUBE, "CUBE", 0, "Cube", "Map using the normal vector"},
+		{MTEX_TUBE, "TUBE", 0, "Tube", "Map with Z as central axis"},
+		{MTEX_SPHERE, "SPHERE", 0, "Sphere", "Map with Z as central axis"},
 		{0, NULL, 0, NULL, NULL}};
 		
 	static EnumPropertyItem prop_x_mapping_items[] = {




More information about the Bf-blender-cvs mailing list