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

Modified Paths:
--------------
    trunk/blender/source/blender/editors/uvedit/uvedit_ops.c
    trunk/blender/source/blender/editors/uvedit/uvedit_unwrap_ops.c
    trunk/blender/source/blender/makesrna/intern/rna_ID.c
    trunk/blender/source/blender/makesrna/intern/rna_action.c

Modified: trunk/blender/source/blender/editors/uvedit/uvedit_ops.c
===================================================================
--- trunk/blender/source/blender/editors/uvedit/uvedit_ops.c    2011-09-20 
21:22:19 UTC (rev 40416)
+++ trunk/blender/source/blender/editors/uvedit/uvedit_ops.c    2011-09-21 
08:02:26 UTC (rev 40417)
@@ -3179,7 +3179,7 @@
        ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
 
        /* properties */
-       RNA_def_float_vector(ot->srna, "location", 2, NULL, -FLT_MAX, FLT_MAX, 
"Location", "Cursor location in 0.0-1.0 coordinates", -10.0f, 10.0f);
+       RNA_def_float_vector(ot->srna, "location", 2, NULL, -FLT_MAX, FLT_MAX, 
"Location", "Cursor location in normalised (0.0-1.0) coordinates", -10.0f, 
10.0f);
 }
 
 /********************** set tile operator **********************/

Modified: trunk/blender/source/blender/editors/uvedit/uvedit_unwrap_ops.c
===================================================================
--- trunk/blender/source/blender/editors/uvedit/uvedit_unwrap_ops.c     
2011-09-20 21:22:19 UTC (rev 40416)
+++ trunk/blender/source/blender/editors/uvedit/uvedit_unwrap_ops.c     
2011-09-21 08:02:26 UTC (rev 40417)
@@ -818,7 +818,7 @@
 static void uv_map_clip_correct_properties(wmOperatorType *ot)
 {
        RNA_def_boolean(ot->srna, "correct_aspect", 1, "Correct Aspect",
-                       "Map UV's taking image aspect ratio into account");
+                       "Map UVs taking image aspect ratio into account");
        RNA_def_boolean(ot->srna, "clip_to_bounds", 0, "Clip to Bounds",
                        "Clip UV coordinates to bounds after unwrapping");
        RNA_def_boolean(ot->srna, "scale_to_bounds", 0, "Scale to Bounds",
@@ -980,11 +980,11 @@
 
        /* properties */
        RNA_def_enum(ot->srna, "method", method_items, 0, "Method",
-                    "Unwrapping method. Angle Based usually gives better 
results than Conformal, while being somewhat slower");
+                    "Unwrapping method (Angle Based usually gives better 
results than Conformal, while being somewhat slower)");
        RNA_def_boolean(ot->srna, "fill_holes", 1, "Fill Holes",
                        "Virtual fill holes in mesh before unwrapping, to 
better avoid overlaps and preserve symmetry");
        RNA_def_boolean(ot->srna, "correct_aspect", 1, "Correct Aspect",
-                       "Map UV's taking image aspect ratio into account");
+                       "Map UVs taking image aspect ratio into account");
 }
 
 /**************** Project From View operator **************/

Modified: trunk/blender/source/blender/makesrna/intern/rna_ID.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_ID.c       2011-09-20 
21:22:19 UTC (rev 40416)
+++ trunk/blender/source/blender/makesrna/intern/rna_ID.c       2011-09-21 
08:02:26 UTC (rev 40417)
@@ -460,13 +460,13 @@
 
        prop= RNA_def_property(srna, "use_fake_user", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flag", LIB_FAKEUSER);
-       RNA_def_property_ui_text(prop, "Fake User", "Saves this datablock even 
if it has no users");
+       RNA_def_property_ui_text(prop, "Fake User", "Save this datablock even 
if it has no users");
        RNA_def_property_boolean_funcs(prop, NULL, "rna_ID_fake_user_set");
 
        prop= RNA_def_property(srna, "tag", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flag", LIB_DOIT);
        RNA_def_property_flag(prop, PROP_LIB_EXCEPTION);
-       RNA_def_property_ui_text(prop, "Tag", "Tools can use this to tag data, 
(initial state is undefined)");
+       RNA_def_property_ui_text(prop, "Tag", "Tools can use this to tag data 
(initial state is undefined)");
 
        prop= RNA_def_property(srna, "library", PROP_POINTER, PROP_NONE);
        RNA_def_property_pointer_sdna(prop, NULL, "lib");
@@ -480,8 +480,8 @@
        RNA_def_function_return(func, parm);
 
        func= RNA_def_function(srna, "user_clear", "rna_ID_user_clear");
-       RNA_def_function_ui_description(func, "Clears the user count of a 
datablock so its not saved, "
-                                       "on reload the data will be removed");
+       RNA_def_function_ui_description(func, "Clear the user count of a 
datablock so its not saved, "
+                                             "on reload the data will be 
removed");
 
        func= RNA_def_function(srna, "animation_data_create", 
"BKE_id_add_animdata");
        RNA_def_function_ui_description(func, "Create animation data to this 
ID, note that not all ID types support this");
@@ -493,7 +493,7 @@
 
        func= RNA_def_function(srna, "update_tag", "rna_ID_update_tag");
        RNA_def_function_flag(func, FUNC_USE_REPORTS);
-       RNA_def_function_ui_description(func, "Tag the id to update its display 
data");
+       RNA_def_function_ui_description(func, "Tag the ID to update its display 
data");
        RNA_def_enum_flag(func, "refresh", update_flag_items, 0, "", "Type of 
updates to perform");
 }
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_action.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_action.c   2011-09-20 
21:22:19 UTC (rev 40416)
+++ trunk/blender/source/blender/makesrna/intern/rna_action.c   2011-09-21 
08:02:26 UTC (rev 40417)
@@ -98,13 +98,13 @@
        if(group && group[0]=='\0') group= NULL;
 
        if(data_path[0] == '\0') {
-               BKE_report(reports, RPT_ERROR, "FCurve data path empty, invalid 
argument");
+               BKE_report(reports, RPT_ERROR, "F-Curve data path empty, 
invalid argument");
                return NULL;
        }
 
        /* annoying, check if this exists */
        if(verify_fcurve(act, group, data_path, index, 0)) {
-               BKE_reportf(reports, RPT_ERROR, "FCurve '%s[%d]' already exists 
in action '%s'", data_path, index, act->id.name+2);
+               BKE_reportf(reports, RPT_ERROR, "F-Curve '%s[%d]' already 
exists in action '%s'", data_path, index, act->id.name+2);
                return NULL;
        }
        return verify_fcurve(act, group, data_path, index, 1);
@@ -114,7 +114,7 @@
 {
        if (fcu->grp) {
                if (BLI_findindex(&act->groups, fcu->grp) == -1) {
-                       BKE_reportf(reports, RPT_ERROR, "FCurve's ActionGroup 
'%s' not found in action '%s'", fcu->grp->name, act->id.name+2);
+                       BKE_reportf(reports, RPT_ERROR, "F-Curve's ActionGroup 
'%s' not found in action '%s'", fcu->grp->name, act->id.name+2);
                        return;
                }
                
@@ -123,7 +123,7 @@
        }
        else {
                if (BLI_findindex(&act->curves, fcu) == -1) {
-                       BKE_reportf(reports, RPT_ERROR, "FCurve not found in 
action '%s'", act->id.name+2);
+                       BKE_reportf(reports, RPT_ERROR, "F-Curve not found in 
action '%s'", act->id.name+2);
                        return;
                }
                
@@ -309,20 +309,20 @@
        /* NLA Specific Settings */
        prop= RNA_def_property(srna, "show_missing_nla", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_negative_sdna(prop, NULL, "filterflag", 
ADS_FILTER_NLA_NOACT);
-       RNA_def_property_ui_text(prop, "Include Missing NLA", "Include 
Animation Data blocks with no NLA data. (NLA Editor only)");
+       RNA_def_property_ui_text(prop, "Include Missing NLA", "Include 
Animation Data blocks with no NLA data (NLA Editor only)");
        RNA_def_property_ui_icon(prop, ICON_ACTION, 0);
        RNA_def_property_update(prop, NC_ANIMATION|ND_ANIMCHAN|NA_EDITED, NULL);
        
        /* Summary Settings (DopeSheet editors only) */
        prop= RNA_def_property(srna, "show_summary", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "filterflag", 
ADS_FILTER_SUMMARY);
-       RNA_def_property_ui_text(prop, "Display Summary", "Display an 
additional 'summary' line. (DopeSheet Editors only)");
+       RNA_def_property_ui_text(prop, "Display Summary", "Display an 
additional 'summary' line (DopeSheet Editors only)");
        RNA_def_property_ui_icon(prop, ICON_BORDERMOVE, 0);
        RNA_def_property_update(prop, NC_ANIMATION|ND_ANIMCHAN|NA_EDITED, NULL);
        
        prop= RNA_def_property(srna, "show_expanded_summary", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", 
ADS_FLAG_SUMMARY_COLLAPSED);
-       RNA_def_property_ui_text(prop, "Collapse Summary", "Collapse summary 
when shown, so all other channels get hidden. (DopeSheet Editors Only)");
+       RNA_def_property_ui_text(prop, "Collapse Summary", "Collapse summary 
when shown, so all other channels get hidden (DopeSheet Editors Only)");
        RNA_def_property_update(prop, NC_ANIMATION|ND_ANIMCHAN|NA_EDITED, NULL);
        
        
@@ -514,24 +514,24 @@
        RNA_def_property_srna(cprop, "ActionFCurves");
        srna= RNA_def_struct(brna, "ActionFCurves", NULL);
        RNA_def_struct_sdna(srna, "bAction");
-       RNA_def_struct_ui_text(srna, "Action FCurves", "Collection of action 
fcurves");
+       RNA_def_struct_ui_text(srna, "Action F-Curves", "Collection of action 
F-Curves");
 
        func= RNA_def_function(srna, "new", "rna_Action_fcurve_new");
-       RNA_def_function_ui_description(func, "Add a keyframe to the curve");
+       RNA_def_function_ui_description(func, "Add a keyframe to the F-Curve");
        RNA_def_function_flag(func, FUNC_USE_REPORTS);
-       parm= RNA_def_string(func, "data_path", "", 0, "Data Path", "FCurve 
data path to use");
+       parm= RNA_def_string(func, "data_path", "", 0, "Data Path", "F-Curve 
data path to use");
        RNA_def_property_flag(parm, PROP_REQUIRED);
        RNA_def_int(func, "index", 0, 0, INT_MAX, "Index", "Array index", 0, 
INT_MAX);
-       RNA_def_string(func, "action_group", "", 0, "Action Group", "Acton 
group to add this fcurve into");
+       RNA_def_string(func, "action_group", "", 0, "Action Group", "Acton 
group to add this F-Curve into");
 
-       parm= RNA_def_pointer(func, "fcurve", "FCurve", "", "Newly created 
fcurve");
+       parm= RNA_def_pointer(func, "fcurve", "F-Curve", "", "Newly created 
F-Curve");
        RNA_def_function_return(func, parm);
 
 
        func= RNA_def_function(srna, "remove", "rna_Action_fcurve_remove");
        RNA_def_function_ui_description(func, "Remove action group");
        RNA_def_function_flag(func, FUNC_USE_REPORTS);
-       parm= RNA_def_pointer(func, "fcurve", "FCurve", "", "FCurve to remove");
+       parm= RNA_def_pointer(func, "fcurve", "F-Curve", "", "F-Curve to 
remove");
        RNA_def_property_flag(parm, PROP_REQUIRED|PROP_NEVER_NULL);
 }
 
@@ -605,7 +605,7 @@
        rna_def_action_pose_markers(brna, prop);
        
        /* properties */
-       prop= RNA_def_float_vector(srna, "frame_range" , 2 , NULL , 0, 0, 
"Frame Range" , "The final frame range of all fcurves within this action" , 0 , 
0);
+       prop= RNA_def_float_vector(srna, "frame_range" , 2 , NULL , 0, 0, 
"Frame Range" , "The final frame range of all F-Curves within this action" , 0 
, 0);
        RNA_def_property_float_funcs(prop, "rna_Action_frame_range_get" , NULL, 
NULL);
        RNA_def_property_clear_flag(prop, PROP_EDITABLE);
        

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to