Revision: 42168
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42168
Author:   mont29
Date:     2011-11-26 12:30:01 +0000 (Sat, 26 Nov 2011)
Log Message:
-----------
A bunch of fixes and tweaks in RNA messages, found while translating them in 
french...

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_curve.c
    trunk/blender/source/blender/makesrna/intern/rna_group.c
    trunk/blender/source/blender/makesrna/intern/rna_image.c
    trunk/blender/source/blender/makesrna/intern/rna_key.c
    trunk/blender/source/blender/makesrna/intern/rna_lamp.c
    trunk/blender/source/blender/makesrna/intern/rna_lattice.c
    trunk/blender/source/blender/makesrna/intern/rna_material.c
    trunk/blender/source/blender/makesrna/intern/rna_meta.c
    trunk/blender/source/blender/makesrna/intern/rna_modifier.c
    trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
    trunk/blender/source/blender/makesrna/intern/rna_object.c
    trunk/blender/source/blender/makesrna/intern/rna_particle.c
    trunk/blender/source/blender/makesrna/intern/rna_pose.c
    trunk/blender/source/blender/makesrna/intern/rna_scene.c
    trunk/blender/source/blender/makesrna/intern/rna_speaker.c
    trunk/blender/source/blender/makesrna/intern/rna_texture.c
    trunk/blender/source/blender/makesrna/intern/rna_world.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_curve.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_curve.c    2011-11-26 
11:08:20 UTC (rev 42167)
+++ trunk/blender/source/blender/makesrna/intern/rna_curve.c    2011-11-26 
12:30:01 UTC (rev 42168)
@@ -849,7 +849,7 @@
        
        prop= RNA_def_property(srna, "use_stretch", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flag", CU_STRETCH);
-       RNA_def_property_ui_text(prop, "Stretch", "Option for curve-deform: 
makes deformed child to stretch along entire path");
+       RNA_def_property_ui_text(prop, "Stretch", "Option for curve-deform: 
make deformed child to stretch along entire path");
        RNA_def_property_update(prop, 0, "rna_Curve_update_data");
 
        prop= RNA_def_property(srna, "use_deform_bounds", PROP_BOOLEAN, 
PROP_NONE);
@@ -973,12 +973,12 @@
        /* strings */
        prop= RNA_def_property(srna, "family", PROP_STRING, PROP_NONE);
        RNA_def_property_string_maxlength(prop, MAX_ID_NAME-2);
-       RNA_def_property_ui_text(prop, "Object Font", "Use Blender Objects as 
font characters. Give font objects a common name followed by the character it 
represents, eg. familya, familyb etc, and turn on Verts Duplication");
+       RNA_def_property_ui_text(prop, "Object Font", "Use Blender Objects as 
font characters (give font objects a common name followed by the character they 
represent, eg. familya, familyb, etc, and turn on Verts Duplication)");
        RNA_def_property_update(prop, 0, "rna_Curve_update_data");
        
        prop= RNA_def_property(srna, "body", PROP_STRING, PROP_NONE);
        RNA_def_property_string_sdna(prop, NULL, "str");
-       RNA_def_property_ui_text(prop, "Body Text", "contents of this text 
object");
+       RNA_def_property_ui_text(prop, "Body Text", "Content of this text 
object");
        RNA_def_property_string_funcs(prop, "rna_Curve_body_get", 
"rna_Curve_body_length", "rna_Curve_body_set");
        RNA_def_property_string_maxlength(prop, 8192); /* note that originally 
str did not have a limit! */
        RNA_def_property_update(prop, 0, "rna_Curve_update_data");
@@ -1239,7 +1239,7 @@
                        {0, NULL, 0, NULL, NULL}};
 
        static const EnumPropertyItem curve_axis_items[]= {
-               {0, "2D", 0, "2D", "Clamp the Z axis of of the curve"},
+               {0, "2D", 0, "2D", "Clamp the Z axis of the curve"},
                {CU_3D, "3D", 0, "3D", "Allow editing on the Z axis of this 
curve, also allows tilt and curve radius to be used"},
                {0, NULL, 0, NULL, NULL}};
                        
@@ -1324,18 +1324,18 @@
        RNA_def_property_int_sdna(prop, NULL, "resolu_ren");
        RNA_def_property_range(prop, 0, SHRT_MAX);
        RNA_def_property_ui_range(prop, 0, 64, 1, 0);
-       RNA_def_property_ui_text(prop, "Render Resolution U", "Surface 
resolution in U direction used while rendering. Zero skips this property");
+       RNA_def_property_ui_text(prop, "Render Resolution U", "Surface 
resolution in U direction used while rendering (zero skips this property)");
        
        prop= RNA_def_property(srna, "render_resolution_v", PROP_INT, 
PROP_NONE);
        RNA_def_property_int_sdna(prop, NULL, "resolv_ren");
        RNA_def_property_ui_range(prop, 0, 64, 1, 0);
        RNA_def_property_range(prop, 0, SHRT_MAX);
-       RNA_def_property_ui_text(prop, "Render Resolution V", "Surface 
resolution in V direction used while rendering. Zero skips this property");
+       RNA_def_property_ui_text(prop, "Render Resolution V", "Surface 
resolution in V direction used while rendering (zero skips this property)");
        
        
        prop= RNA_def_property(srna, "eval_time", PROP_FLOAT, PROP_NONE);
        RNA_def_property_float_sdna(prop, NULL, "ctime");
-       RNA_def_property_ui_text(prop, "Evaluation Time", "Parametric position 
along the length of the curve that Objects 'following' it should be at. 
Position is evaluated by dividing by the 'Path Length' value");
+       RNA_def_property_ui_text(prop, "Evaluation Time", "Parametric position 
along the length of the curve that Objects 'following' it should be at 
(position is evaluated by dividing by the 'Path Length' value)");
        RNA_def_property_update(prop, 0, "rna_Curve_update_data");
        
        /* pointers */
@@ -1392,7 +1392,7 @@
        /* texture space */
        prop= RNA_def_property(srna, "use_auto_texspace", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "texflag", CU_AUTOSPACE);
-       RNA_def_property_ui_text(prop, "Auto Texture Space", "Adjusts active 
object's texture space automatically when transforming object");
+       RNA_def_property_ui_text(prop, "Auto Texture Space", "Adjust active 
object's texture space automatically when transforming object");
        RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, 
"rna_Curve_texspace_set");
 
        prop= RNA_def_property(srna, "texspace_location", PROP_FLOAT, 
PROP_TRANSLATION);

Modified: trunk/blender/source/blender/makesrna/intern/rna_group.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_group.c    2011-11-26 
11:08:20 UTC (rev 42167)
+++ trunk/blender/source/blender/makesrna/intern/rna_group.c    2011-11-26 
12:30:01 UTC (rev 42168)
@@ -123,7 +123,7 @@
        prop= RNA_def_property(srna, "layers", PROP_BOOLEAN, PROP_LAYER);
        RNA_def_property_boolean_sdna(prop, NULL, "layer", 1);
        RNA_def_property_array(prop, 20);
-       RNA_def_property_ui_text(prop, "Dupli Layers", "Layers visible when 
this groups is instanced as a dupli");
+       RNA_def_property_ui_text(prop, "Dupli Layers", "Layers visible when 
this group is instanced as a dupli");
 
 
        prop= RNA_def_property(srna, "objects", PROP_COLLECTION, PROP_NONE);

Modified: trunk/blender/source/blender/makesrna/intern/rna_image.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_image.c    2011-11-26 
11:08:20 UTC (rev 42167)
+++ trunk/blender/source/blender/makesrna/intern/rna_image.c    2011-11-26 
12:30:01 UTC (rev 42168)
@@ -462,7 +462,7 @@
        prop= RNA_def_property(srna, "field_order", PROP_ENUM, PROP_NONE);
        RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag");
        RNA_def_property_enum_items(prop, prop_field_order_items);
-       RNA_def_property_ui_text(prop, "Field Order", "Order of video fields. 
Select which lines are displayed first");
+       RNA_def_property_ui_text(prop, "Field Order", "Order of video fields 
(select which lines are displayed first)");
        RNA_def_property_update(prop, NC_IMAGE|ND_DISPLAY, NULL);
        
        /* booleans */

Modified: trunk/blender/source/blender/makesrna/intern/rna_key.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_key.c      2011-11-26 
11:08:20 UTC (rev 42167)
+++ trunk/blender/source/blender/makesrna/intern/rna_key.c      2011-11-26 
12:30:01 UTC (rev 42168)
@@ -611,13 +611,13 @@
 
        prop= RNA_def_property(srna, "use_relative", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "type", KEY_RELATIVE);
-       RNA_def_property_ui_text(prop, "Relative", "Makes shape keys relative");
+       RNA_def_property_ui_text(prop, "Relative", "Make shape keys relative");
        RNA_def_property_update(prop, 0, "rna_Key_update_data");
 
        prop= RNA_def_property(srna, "slurph", PROP_INT, PROP_UNSIGNED);
        RNA_def_property_int_sdna(prop, NULL, "slurph");
        RNA_def_property_range(prop, -500, 500);
-       RNA_def_property_ui_text(prop, "Slurph", "Creates a delay in amount of 
frames in applying keypositions, first vertex goes first");
+       RNA_def_property_ui_text(prop, "Slurph", "Create a delay (in frames) in 
applying keypositions, first vertex goes first");
        RNA_def_property_update(prop, 0, "rna_Key_update_data");
 }
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_lamp.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_lamp.c     2011-11-26 
11:08:20 UTC (rev 42167)
+++ trunk/blender/source/blender/makesrna/intern/rna_lamp.c     2011-11-26 
12:30:01 UTC (rev 42168)
@@ -194,12 +194,12 @@
 
        prop= RNA_def_property(srna, "use_map_color", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "mapto", LAMAP_COL);
-       RNA_def_property_ui_text(prop, "Color", "Lets the texture affect the 
basic color of the lamp");
+       RNA_def_property_ui_text(prop, "Color", "Let the texture affect the 
basic color of the lamp");
        RNA_def_property_update(prop, 0, "rna_Lamp_update");
 
        prop= RNA_def_property(srna, "use_map_shadow", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "mapto", LAMAP_SHAD);
-       RNA_def_property_ui_text(prop, "Shadow", "Lets the texture affect the 
shadow color of the lamp");
+       RNA_def_property_ui_text(prop, "Shadow", "Let the texture affect the 
shadow color of the lamp");
        RNA_def_property_update(prop, 0, "rna_Lamp_update");
 
        prop= RNA_def_property(srna, "color_factor", PROP_FLOAT, PROP_NONE);
@@ -359,22 +359,22 @@
 
        prop= RNA_def_property(srna, "use_own_layer", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "mode", LA_LAYER);
-       RNA_def_property_ui_text(prop, "Layer", "Illuminates objects only on 
the same layer the lamp is on");
+       RNA_def_property_ui_text(prop, "Layer", "Illuminate objects only on the 
same layers the lamp is on");
        RNA_def_property_update(prop, 0, "rna_Lamp_update");
 
        prop= RNA_def_property(srna, "use_negative", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "mode", LA_NEG);
-       RNA_def_property_ui_text(prop, "Negative", "Lamp casts negative light");
+       RNA_def_property_ui_text(prop, "Negative", "Cast negative light");
        RNA_def_property_update(prop, 0, "rna_Lamp_update");
 
        prop= RNA_def_property(srna, "use_specular", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_negative_sdna(prop, NULL, "mode", LA_NO_SPEC);
-       RNA_def_property_ui_text(prop, "Specular", "Lamp creates specular 
highlights");
+       RNA_def_property_ui_text(prop, "Specular", "Create specular 
highlights");
        RNA_def_property_update(prop, 0, "rna_Lamp_update");
 
        prop= RNA_def_property(srna, "use_diffuse", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_negative_sdna(prop, NULL, "mode", LA_NO_DIFF);
-       RNA_def_property_ui_text(prop, "Diffuse", "Lamp does diffuse shading");
+       RNA_def_property_ui_text(prop, "Diffuse", "Do diffuse shading");
        RNA_def_property_update(prop, 0, "rna_Lamp_update");
 
        /* nodes */
@@ -420,7 +420,7 @@
 
        prop= RNA_def_property(srna, "use_sphere", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "mode", LA_SPHERE);

@@ Diff output truncated at 10240 characters. @@
_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to