Revision: 47728
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47728
Author:   mont29
Date:     2012-06-11 09:05:17 +0000 (Mon, 11 Jun 2012)
Log Message:
-----------
UI messages fixes...

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_color.c
    trunk/blender/source/blender/makesrna/intern/rna_tracking.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_color.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_color.c    2012-06-11 
09:00:11 UTC (rev 47727)
+++ trunk/blender/source/blender/makesrna/intern/rna_color.c    2012-06-11 
09:05:17 UTC (rev 47728)
@@ -589,7 +589,7 @@
 
        prop = RNA_def_property(srna, "show_line", PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "flag", HISTO_FLAG_LINE);
-       RNA_def_property_ui_text(prop, "Show Line", "Displays lines rather then 
filled shapes");
+       RNA_def_property_ui_text(prop, "Show Line", "Display lines rather then 
filled shapes");
        RNA_def_property_ui_icon(prop, ICON_IPO, 0);
 }
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_tracking.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_tracking.c 2012-06-11 
09:00:11 UTC (rev 47727)
+++ trunk/blender/source/blender/makesrna/intern/rna_tracking.c 2012-06-11 
09:05:17 UTC (rev 47728)
@@ -469,17 +469,17 @@
 
 static EnumPropertyItem tracker_motion_model[] = {
        {TRACK_MOTION_MODEL_HOMOGRAPHY, "Perspective", 0, "Perspective",
-                     "Search for markers that are perspectively deformed 
(homography) between frames."},
+                     "Search for markers that are perspectively deformed 
(homography) between frames"},
        {TRACK_MOTION_MODEL_AFFINE, "Affine", 0, "Affine",
-                     "Search for markers that are affine-deformed (t, r, k, 
and skew) between frames."},
+                     "Search for markers that are affine-deformed (t, r, k, 
and skew) between frames"},
        {TRACK_MOTION_MODEL_TRANSLATION_ROTATION_SCALE, "LocRotScale", 0, 
"LocRotScale",
-                     "Search for markers that are translated, rotated, and 
scaled between frames."},
+                     "Search for markers that are translated, rotated, and 
scaled between frames"},
        {TRACK_MOTION_MODEL_TRANSLATION_SCALE, "LocScale", 0, "LocScale",
-                     "Search for markers that are translated and scaled 
between frames."},
+                     "Search for markers that are translated and scaled 
between frames"},
        {TRACK_MOTION_MODEL_TRANSLATION_ROTATION, "LocRot", 0, "LocRot",
-                     "Search for markers that are translated and rotated 
between frames."},
+                     "Search for markers that are translated and rotated 
between frames"},
        {TRACK_MOTION_MODEL_TRANSLATION, "Loc", 0, "Loc",
-                     "Search for markers that are translated between frames."},
+                     "Search for markers that are translated between frames"},
        {0, NULL, 0, NULL, NULL}
 };
 
@@ -646,7 +646,7 @@
        /* default use_normalization */
        prop = RNA_def_property(srna, "default_use_normalization", 
PROP_BOOLEAN, PROP_NONE);
        RNA_def_property_boolean_sdna(prop, NULL, "default_algorithm_flag", 
TRACK_ALGORITHM_FLAG_USE_NORMALIZATION);
-       RNA_def_property_ui_text(prop, "Normalize", "Normalize light 
intensities while tracking. Slower");
+       RNA_def_property_ui_text(prop, "Normalize", "Normalize light 
intensities while tracking (slower)");
        RNA_def_property_update(prop, NC_MOVIECLIP | ND_DISPLAY, NULL);
 
        /* default minmal correlation */
@@ -831,8 +831,8 @@
        RNA_def_property_multi_array(prop, 2, rna_matrix_dimsize_4x2);
        RNA_def_property_ui_range(prop, -FLT_MAX, FLT_MAX, 1, 
RNA_TRANSLATION_PREC_DEFAULT);
        RNA_def_property_ui_text(prop, "Pattern Corners",
-                                "Array of coordinates which represents 
patter's corners in "
-                                " normalized coordinates relative to marker 
position");
+                                "Array of coordinates which represents 
pattern's corners in "
+                                "normalized coordinates relative to marker 
position");
        RNA_def_property_update(prop, NC_MOVIECLIP | NA_EDITED, 
"rna_tracking_markerPattern_update");
 
        /* search */

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

Reply via email to