Revision: 58969
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58969
Author:   mont29
Date:     2013-08-06 14:55:00 +0000 (Tue, 06 Aug 2013)
Log Message:
-----------
Usual edits/fixes to new UI messages...

Modified Paths:
--------------
    trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
    trunk/blender/source/blender/makesrna/intern/rna_dynamicpaint.c
    trunk/blender/source/blender/makesrna/intern/rna_scene.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-08-06 14:50:39 UTC (rev 58968)
+++ trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py    
2013-08-06 14:55:00 UTC (rev 58969)
@@ -72,6 +72,7 @@
         "bandnoise",
         "bindcode",
         "bitrate",
+        "blackbody",
         "blendfile",
         "blendin",
         "bonesize",
@@ -361,6 +362,7 @@
         "timecode",
         "voronoi",
         "voxel", "voxels",
+        "vsync",
         "wireframe",
         "zmask",
         "ztransp",

Modified: trunk/blender/source/blender/makesrna/intern/rna_dynamicpaint.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_dynamicpaint.c     
2013-08-06 14:50:39 UTC (rev 58968)
+++ trunk/blender/source/blender/makesrna/intern/rna_dynamicpaint.c     
2013-08-06 14:55:00 UTC (rev 58969)
@@ -713,7 +713,8 @@
        prop = RNA_def_property(srna, "wave_smoothness", PROP_FLOAT, PROP_NONE);
        RNA_def_property_range(prop, 0.0, 10.0);
        RNA_def_property_ui_range(prop, 0.1, 5.0, 1, 2);
-       RNA_def_property_ui_text(prop, "Smoothness", "Limit maximum steepness 
of wave slope between simulation points. Use higher values for smoother waves 
at expense of reduced detail");
+       RNA_def_property_ui_text(prop, "Smoothness", "Limit maximum steepness 
of wave slope between simulation points "
+                                                    "(use higher values for 
smoother waves at expense of reduced detail)");
 
        prop = RNA_def_property(srna, "use_wave_open_border", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flags", 
MOD_DPAINT_WAVE_OPEN_BORDERS);

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c    2013-08-06 
14:50:39 UTC (rev 58968)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c    2013-08-06 
14:55:00 UTC (rev 58969)
@@ -3145,14 +3145,14 @@
        };
 
        static EnumPropertyItem vsync_items[] = {
-               {VSYNC_OFF, "OFF", 0, "Off", "Disables vsync"},
-               {VSYNC_ON, "ON", 0, "On", "Enables vsync"},
-               {VSYNC_ADAPTIVE, "ADAPTIVE", 0, "Adaptive", "Enables adaptive 
vsync (if supported)"},
+               {VSYNC_OFF, "OFF", 0, "Off", "Disable vsync"},
+               {VSYNC_ON, "ON", 0, "On", "Enable vsync"},
+               {VSYNC_ADAPTIVE, "ADAPTIVE", 0, "Adaptive", "Enable adaptive 
vsync (if supported)"},
                {0, NULL, 0, NULL, NULL}
        };
 
        static EnumPropertyItem storage_items[] = {
-               {RAS_STORE_AUTO, "AUTO", 0, "Auto Select", "Chooses the best 
supported mode"},
+               {RAS_STORE_AUTO, "AUTO", 0, "Auto Select", "Choose the best 
supported mode"},
                {RAS_STORE_IMMEDIATE, "IMMEDIATE", 0, "Immediate Mode", 
"Slowest performance, requires OpenGL (any version)"},
                {RAS_STORE_VA, "VERTEX_ARRAY", 0, "Vertex Arrays", "Better 
performance, requires at least OpenGL 1.1"},
 #if 0  /* XXX VBOS are currently disabled since they cannot beat vertex array 
with display lists in performance. */

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to