Revision: 42416
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42416
Author:   mont29
Date:     2011-12-04 17:36:13 +0000 (Sun, 04 Dec 2011)
Log Message:
-----------
A (hopefully last) bunch of fixes and tweaks to UI label and messages (found 
while translating in french).

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mesh/mesh_data.c
    trunk/blender/source/blender/editors/space_clip/clip_ops.c
    trunk/blender/source/blender/makesrna/intern/rna_brush.c
    trunk/blender/source/blender/makesrna/intern/rna_lamp.c
    trunk/blender/source/blender/makesrna/intern/rna_material.c
    trunk/blender/source/blender/makesrna/intern/rna_particle.c
    trunk/blender/source/blender/makesrna/intern/rna_sculpt_paint.c
    trunk/blender/source/blender/makesrna/intern/rna_sensor.c
    trunk/blender/source/blender/makesrna/intern/rna_sequencer.c

Modified: trunk/blender/source/blender/editors/mesh/mesh_data.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/mesh_data.c       2011-12-04 
17:35:17 UTC (rev 42415)
+++ trunk/blender/source/blender/editors/mesh/mesh_data.c       2011-12-04 
17:36:13 UTC (rev 42416)
@@ -418,7 +418,7 @@
 {
        /* identifiers */
        ot->name= "Assign Image to UV Map";
-       ot->description= "Assigns Image to active UV Map, or creates a UV Map";
+       ot->description= "Assign Image to active UV Map, or create an UV Map";
        ot->idname= "MESH_OT_drop_named_image";
        
        /* api callbacks */

Modified: trunk/blender/source/blender/editors/space_clip/clip_ops.c
===================================================================
--- trunk/blender/source/blender/editors/space_clip/clip_ops.c  2011-12-04 
17:35:17 UTC (rev 42415)
+++ trunk/blender/source/blender/editors/space_clip/clip_ops.c  2011-12-04 
17:36:13 UTC (rev 42416)
@@ -929,7 +929,7 @@
        /* identifiers */
        ot->name= "Rebuild Proxy and Timecode Indices";
        ot->idname= "CLIP_OT_rebuild_proxy";
-       ot->description= "Rebuild all selected proxies and timecode indeces in 
the background";
+       ot->description= "Rebuild all selected proxies and timecode indices in 
the background";
 
        /* api callbacks */
        ot->exec= clip_rebuild_proxy_exec;

Modified: trunk/blender/source/blender/makesrna/intern/rna_brush.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_brush.c    2011-12-04 
17:35:17 UTC (rev 42415)
+++ trunk/blender/source/blender/makesrna/intern/rna_brush.c    2011-12-04 
17:36:13 UTC (rev 42416)
@@ -336,7 +336,7 @@
        prop= RNA_def_property(srna, "angle", PROP_FLOAT, PROP_ANGLE);
        RNA_def_property_float_sdna(prop, NULL, "rot");
        RNA_def_property_range(prop, 0, M_PI*2);
-       RNA_def_property_ui_text(prop, "Angle", "Defines brush texture 
rotation");
+       RNA_def_property_ui_text(prop, "Angle", "Brush texture rotation");
        RNA_def_property_update(prop, 0, "rna_TextureSlot_update");
 
        prop= RNA_def_property(srna, "map_mode", PROP_ENUM, PROP_NONE);

Modified: trunk/blender/source/blender/makesrna/intern/rna_lamp.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_lamp.c     2011-12-04 
17:35:17 UTC (rev 42415)
+++ trunk/blender/source/blender/makesrna/intern/rna_lamp.c     2011-12-04 
17:36:13 UTC (rev 42416)
@@ -172,9 +172,9 @@
        PropertyRNA *prop;
 
        static EnumPropertyItem prop_texture_coordinates_items[] = {
-               {TEXCO_GLOB, "GLOBAL", 0, "Global", "Uses global coordinates 
for the texture coordinates"},
-               {TEXCO_VIEW, "VIEW", 0, "View", "Uses view coordinates for the 
texture coordinates"},
-               {TEXCO_OBJECT, "OBJECT", 0, "Object", "Uses linked object's 
coordinates for texture coordinates"},
+               {TEXCO_GLOB, "GLOBAL", 0, "Global", "Use global coordinates for 
the texture coordinates"},
+               {TEXCO_VIEW, "VIEW", 0, "View", "Use view coordinates for the 
texture coordinates"},
+               {TEXCO_OBJECT, "OBJECT", 0, "Object", "Use linked object's 
coordinates for texture coordinates"},
                {0, NULL, 0, NULL, NULL}};
 
        srna= RNA_def_struct(brna, "LampTextureSlot", "TextureSlot");

Modified: trunk/blender/source/blender/makesrna/intern/rna_material.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_material.c 2011-12-04 
17:35:17 UTC (rev 42415)
+++ trunk/blender/source/blender/makesrna/intern/rna_material.c 2011-12-04 
17:36:13 UTC (rev 42416)
@@ -480,12 +480,12 @@
        
        prop= RNA_def_property(srna, "use_map_diffuse", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "mapto", MAP_REF);
-       RNA_def_property_ui_text(prop, "Diffuse", "The texture to affects the 
value of the materials diffuse reflectivity");
+       RNA_def_property_ui_text(prop, "Diffuse", "The texture affects the 
value of diffuse reflectivity");
        RNA_def_property_update(prop, 0, "rna_Material_update");
        
        prop= RNA_def_property(srna, "use_map_specular", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "mapto", MAP_SPEC);
-       RNA_def_property_ui_text(prop, "Specular", "The texture to affects the 
value of specular reflectivity");
+       RNA_def_property_ui_text(prop, "Specular", "The texture affects the 
value of specular reflectivity");
        RNA_def_property_update(prop, 0, "rna_Material_update");
        
        prop= RNA_def_property(srna, "use_map_ambient", PROP_BOOLEAN, 
PROP_NONE);

Modified: trunk/blender/source/blender/makesrna/intern/rna_particle.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_particle.c 2011-12-04 
17:35:17 UTC (rev 42415)
+++ trunk/blender/source/blender/makesrna/intern/rna_particle.c 2011-12-04 
17:36:13 UTC (rev 42416)
@@ -1233,18 +1233,18 @@
        PropertyRNA *prop;
 
        static EnumPropertyItem texco_items[] = {
-               {TEXCO_GLOB, "GLOBAL", 0, "Global", "Uses global coordinates 
for the texture coordinates"},
-               {TEXCO_OBJECT, "OBJECT", 0, "Object", "Uses linked object's 
coordinates for texture coordinates"},
-               {TEXCO_UV, "UV", 0, "UV", "Uses UV coordinates for texture 
coordinates"},
-               {TEXCO_ORCO, "ORCO", 0, "Generated", "Uses the original 
undeformed coordinates of the object"},
-               {TEXCO_STRAND, "STRAND", 0, "Strand / Particle", "Uses 
normalized strand texture coordinate (1D) or particle age (X) and trail 
position (Y)"},
+               {TEXCO_GLOB, "GLOBAL", 0, "Global", "Use global coordinates for 
the texture coordinates"},
+               {TEXCO_OBJECT, "OBJECT", 0, "Object", "Use linked object's 
coordinates for texture coordinates"},
+               {TEXCO_UV, "UV", 0, "UV", "Use UV coordinates for texture 
coordinates"},
+               {TEXCO_ORCO, "ORCO", 0, "Generated", "Use the original 
undeformed coordinates of the object"},
+               {TEXCO_STRAND, "STRAND", 0, "Strand / Particle", "Use 
normalized strand texture coordinate (1D) or particle age (X) and trail 
position (Y)"},
                {0, NULL, 0, NULL, NULL}};
 
        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[] = {

Modified: trunk/blender/source/blender/makesrna/intern/rna_sculpt_paint.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_sculpt_paint.c     
2011-12-04 17:35:17 UTC (rev 42415)
+++ trunk/blender/source/blender/makesrna/intern/rna_sculpt_paint.c     
2011-12-04 17:36:13 UTC (rev 42416)
@@ -304,7 +304,7 @@
 
        prop= RNA_def_property(srna, "use_normal", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flag", VP_NORMALS);
-       RNA_def_property_ui_text(prop, "Normals", "Applies the vertex normal 
before painting");
+       RNA_def_property_ui_text(prop, "Normals", "Apply the vertex normal 
before painting");
        
        prop= RNA_def_property(srna, "use_spray", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flag", VP_SPRAY);
@@ -348,7 +348,7 @@
        prop= RNA_def_property(srna, "use_clone_layer", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flag", 
IMAGEPAINT_PROJECT_LAYER_CLONE);
        RNA_def_property_ui_text(prop, "Clone Map",
-                                "Use another UV map as clone source, otherwise 
use 3D the cursor as the source");
+                                "Use another UV map as clone source, otherwise 
use the 3D cursor as the source");
        
        /* integers */
        

Modified: trunk/blender/source/blender/makesrna/intern/rna_sensor.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_sensor.c   2011-12-04 
17:35:17 UTC (rev 42415)
+++ trunk/blender/source/blender/makesrna/intern/rna_sensor.c   2011-12-04 
17:36:13 UTC (rev 42416)
@@ -387,7 +387,7 @@
        prop= RNA_def_property(srna, "mouse_event", PROP_ENUM, PROP_NONE);
        RNA_def_property_enum_sdna(prop, NULL, "type");
        RNA_def_property_enum_items(prop, mouse_event_items);
-       RNA_def_property_ui_text(prop, "Mouse Event", "Specify the type of 
event this mouse sensor should trigger on");
+       RNA_def_property_ui_text(prop, "Mouse Event", "Type of event this mouse 
sensor should trigger on");
        RNA_def_property_update(prop, NC_LOGIC, NULL);
 }
 
@@ -442,7 +442,7 @@
 
        prop= RNA_def_property(srna, "target", PROP_STRING, PROP_NONE);
        RNA_def_property_string_sdna(prop, NULL, "targetName");
-       RNA_def_property_ui_text(prop, "Target", "Property that receive the 
keystrokes in case a string is logged");
+       RNA_def_property_ui_text(prop, "Target", "Property that receives the 
keystrokes in case a string is logged");
        RNA_def_property_update(prop, NC_LOGIC, NULL);
 
        prop= RNA_def_property(srna, "log", PROP_STRING, PROP_NONE);
@@ -490,12 +490,12 @@
 
        prop= RNA_def_property(srna, "value_min", PROP_STRING, PROP_NONE);
        RNA_def_property_string_sdna(prop, NULL, "value");
-       RNA_def_property_ui_text(prop, "Minimum Value", "Specify minimum value 
in Interval type");
+       RNA_def_property_ui_text(prop, "Minimum Value", "Minimum value in 
Interval type");
        RNA_def_property_update(prop, NC_LOGIC, NULL);
 
        prop= RNA_def_property(srna, "value_max", PROP_STRING, PROP_NONE);
        RNA_def_property_string_sdna(prop, NULL, "maxvalue");
-       RNA_def_property_ui_text(prop, "Maximum Value", "Specify maximum value 
in Interval type");
+       RNA_def_property_ui_text(prop, "Maximum Value", "Maximum value in 
Interval type");
        RNA_def_property_update(prop, NC_LOGIC, NULL);
 }
 
@@ -533,7 +533,7 @@
 
        prop= RNA_def_property(srna, "value", PROP_FLOAT, PROP_NONE);
        RNA_def_property_float_sdna(prop, NULL, "value");
-       RNA_def_property_ui_text(prop, "Compare Value", "Specify value to be 
used in comparison");
+       RNA_def_property_ui_text(prop, "Compare Value", "Value to be used in 
comparison");
        RNA_def_property_update(prop, NC_LOGIC, NULL);
 }
 
@@ -574,7 +574,7 @@
 

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

Reply via email to