[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [53964] trunk/blender: Usual minor UI messages fixes...

Bastien Montagne montagne29 at wanadoo.fr
Mon Jan 21 17:25:29 CET 2013


Revision: 53964
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53964
Author:   mont29
Date:     2013-01-21 16:25:25 +0000 (Mon, 21 Jan 2013)
Log Message:
-----------
Usual minor UI messages fixes...

Modified Paths:
--------------
    trunk/blender/release/scripts/modules/bl_i18n_utils/spell_check_utils.py
    trunk/blender/source/blender/makesrna/intern/rna_modifier.c

Modified: trunk/blender/release/scripts/modules/bl_i18n_utils/spell_check_utils.py
===================================================================
--- trunk/blender/release/scripts/modules/bl_i18n_utils/spell_check_utils.py	2013-01-21 15:41:00 UTC (rev 53963)
+++ trunk/blender/release/scripts/modules/bl_i18n_utils/spell_check_utils.py	2013-01-21 16:25:25 UTC (rev 53964)
@@ -488,6 +488,7 @@
     # Files types/formats
     "avi",
     "attrac",
+    "autocad",
     "autodesk",
     "bmp",
     "btx",

Modified: trunk/blender/source/blender/makesrna/intern/rna_modifier.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2013-01-21 15:41:00 UTC (rev 53963)
+++ trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2013-01-21 16:25:25 UTC (rev 53964)
@@ -1846,7 +1846,7 @@
 	
 	prop = RNA_def_property(srna, "use_normalized", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_LAPLACIANSMOOTH_NORMALIZED);
-	RNA_def_property_ui_text(prop, "Normalized Version", "Improves and stabilizes the shape enhanced");
+	RNA_def_property_ui_text(prop, "Normalized", "Improve and stabilize the enhanced shape");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	prop = RNA_def_property(srna, "lambda_factor", PROP_FLOAT, PROP_NONE);
@@ -3498,16 +3498,19 @@
 	};
 
 	static EnumPropertyItem prop_time_type_items[] = {
+		/* use 'eval_frame' */
 		{MOD_MESHCACHE_TIME_FRAME,   "FRAME",   0, "Frame",  "Control playback using a frame-number "
-		                                                   "(ignoring time FPS and start frame from the file)"},  /* use 'eval_frame' */
-		{MOD_MESHCACHE_TIME_SECONDS, "TIME",    0, "Time",   "Control playback using time in seconds"},          /* use 'eval_time' */
-		{MOD_MESHCACHE_TIME_FACTOR,  "FACTOR",  0, "Factor", "Control playback using a valid between [0 - 1]"},    /* use 'eval_factor' */
+		                                                   "(ignoring time FPS and start frame from the file)"},
+		/* use 'eval_time' */
+		{MOD_MESHCACHE_TIME_SECONDS, "TIME",    0, "Time",   "Control playback using time in seconds"},
+		/* use 'eval_factor' */
+		{MOD_MESHCACHE_TIME_FACTOR,  "FACTOR",  0, "Factor", "Control playback using a value between [0, 1]"},
 		{0, NULL, 0, NULL, NULL}
 	};
 
 	static EnumPropertyItem prop_time_play_items[] = {
 		{MOD_MESHCACHE_PLAY_CFEA, "SCENE", 0, "Scene", "Use the time from the scene"},
-		{MOD_MESHCACHE_PLAY_EVAL, "CUSTOM", 0, "Custom", "Use the modifiers own time evaluation"},
+		{MOD_MESHCACHE_PLAY_EVAL, "CUSTOM", 0, "Custom", "Use the modifier's own time evaluation"},
 		{0, NULL, 0, NULL, NULL}
 	};
 
@@ -3595,7 +3598,7 @@
 	prop = RNA_def_property(srna, "eval_frame", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "eval_frame");
 	RNA_def_property_range(prop, MINFRAME, MAXFRAME);
-	RNA_def_property_ui_text(prop, "Evaluation Frame", "The frame to evaluage (starting at 0)");
+	RNA_def_property_ui_text(prop, "Evaluation Frame", "The frame to evaluate (starting at 0)");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	prop = RNA_def_property(srna, "eval_time", PROP_FLOAT, PROP_NONE);




More information about the Bf-blender-cvs mailing list