[gegl] property meta-data: s/blurb/description



commit 0d7f241fed873476c9d0ef26d6ee0f8f0d2444f1
Author: Øyvind Kolås <pippin gimp org>
Date:   Sat May 17 17:30:32 2014 +0200

    property meta-data: s/blurb/description
    
    With the nick a mandatory argument; the only odd inherited gobject terminology
    is "blurb", using the more descriptive "description" in the property
    registration yields API assymetry.. but people manually working with
    GParamSpecs should know what they are doing.

 gegl/property-types/gegl-paramspecs.c    |   26 +++++++++++++-------------
 operations/common/brightness-contrast.c  |    4 ++--
 operations/common/checkerboard.c         |   14 +++++++-------
 operations/common/color.c                |    4 ++--
 operations/common/emboss.c               |    8 ++++----
 operations/common/fractal-explorer.c     |   28 ++++++++++++++--------------
 operations/common/gaussian-blur.c        |    6 +++---
 operations/common/grid.c                 |   14 +++++++-------
 operations/common/layer.c                |   10 +++++-----
 operations/common/mosaic.c               |   22 +++++++++++-----------
 operations/common/motion-blur-circular.c |    2 +-
 operations/common/motion-blur-zoom.c     |    6 +++---
 operations/common/noise-reduction.c      |    2 +-
 operations/common/noise-spread.c         |    4 ++--
 operations/common/oilify.c               |    6 +++---
 operations/common/opacity.c              |    2 +-
 operations/common/open-buffer.c          |    2 +-
 operations/common/panorama-projection.c  |   18 +++++++++---------
 operations/common/pixelize.c             |   12 ++++++------
 operations/common/plasma.c               |   10 +++++-----
 operations/common/polar-coordinates.c    |   12 ++++++------
 operations/common/posterize.c            |    2 +-
 operations/common/raw-load.c             |    2 +-
 operations/common/rectangle.c            |   10 +++++-----
 operations/common/red-eye-removal.c      |    2 +-
 operations/common/reinhard05.c           |    6 +++---
 operations/common/ripple.c               |    2 +-
 operations/common/save.c                 |    2 +-
 operations/common/shift.c                |    2 +-
 operations/common/snn-mean.c             |    4 ++--
 operations/common/stress.c               |    6 +++---
 operations/common/stretch-contrast.c     |    2 +-
 operations/common/svg-huerotate.c        |    2 +-
 operations/common/svg-matrix.c           |    2 +-
 operations/common/svg-saturate.c         |    2 +-
 operations/common/texturize-canvas.c     |    4 ++--
 operations/common/threshold.c            |    2 +-
 operations/common/unsharp-mask.c         |    4 ++--
 operations/common/vignette.c             |   21 ++++++++++-----------
 operations/common/waves.c                |   12 ++++++------
 operations/common/whirl-pinch.c          |    6 +++---
 operations/common/wind.c                 |    6 +++---
 operations/common/write-buffer.c         |    2 +-
 43 files changed, 157 insertions(+), 158 deletions(-)
---
diff --git a/gegl/property-types/gegl-paramspecs.c b/gegl/property-types/gegl-paramspecs.c
index ab2d128..23fd73b 100644
--- a/gegl/property-types/gegl-paramspecs.c
+++ b/gegl/property-types/gegl-paramspecs.c
@@ -798,7 +798,7 @@ gegl_param_spec_double_from_vararg (const char *name,
     }
     else if (g_str_equal (key, "default"))
       default_value = va_arg (var_args, double);
-    else if (g_str_equal (key, "blurb"))
+    else if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -886,7 +886,7 @@ gegl_param_spec_int_from_vararg (const char *name,
     }
     else if (g_str_equal (key, "default"))
       default_value = va_arg (var_args, gint);
-    else if (g_str_equal (key, "blurb"))
+    else if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -943,7 +943,7 @@ gegl_param_spec_boolean_from_vararg (const char *name,
   {
     if (g_str_equal (key, "default"))
       default_value = va_arg (var_args, gboolean);
-    else if (g_str_equal (key, "blurb"))
+    else if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -985,7 +985,7 @@ gegl_param_spec_string_from_vararg (const char *name,
   {
     if (g_str_equal (key, "default"))
       default_value = va_arg (var_args, const gchar *);
-    else if (g_str_equal (key, "blurb"))
+    else if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1026,7 +1026,7 @@ gegl_param_spec_file_path_from_vararg (const char *name,
   {
     if (g_str_equal (key, "default"))
       default_value = va_arg (var_args, const gchar *);
-    else if (g_str_equal (key, "blurb"))
+    else if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1069,7 +1069,7 @@ gegl_param_spec_enum_from_vararg (const char *name,
   {
     if (g_str_equal (key, "default"))
       default_value = va_arg (var_args, int);
-    else if (g_str_equal (key, "blurb"))
+    else if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1110,7 +1110,7 @@ gegl_param_spec_pointer_from_vararg (const char *name,
   key = va_arg (var_args, const char*);
   while (key)
   {
-    if (g_str_equal (key, "blurb"))
+    if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1146,7 +1146,7 @@ gegl_param_spec_object_from_vararg (const char *name, const char *nick, ...)
   key = va_arg (var_args, const char*);
   while (key)
   {
-    if (g_str_equal (key, "blurb"))
+    if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1186,7 +1186,7 @@ gegl_param_spec_curve_from_vararg (const char *name,
   key = va_arg (var_args, const char*);
   while (key)
   {
-    if (g_str_equal (key, "blurb"))
+    if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1227,7 +1227,7 @@ gegl_param_spec_path_from_vararg (const char *name,
   key = va_arg (var_args, const char*);
   while (key)
   {
-    if (g_str_equal (key, "blurb"))
+    if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1264,7 +1264,7 @@ gegl_param_spec_format_from_vararg (const char *name,
   key = va_arg (var_args, const char*);
   while (key)
   {
-    if (g_str_equal (key, "blurb"))
+    if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1307,7 +1307,7 @@ gegl_param_spec_color_from_vararg (const char *name,
     {
       default_value = va_arg (var_args, const gchar *);
     }
-    else if (g_str_equal (key, "blurb"))
+    else if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
@@ -1345,7 +1345,7 @@ gegl_param_spec_seed_from_vararg (const char *name,
   key = va_arg (var_args, const char*);
   while (key)
   {
-    if (g_str_equal (key, "blurb"))
+    if (g_str_equal (key, "description"))
       blurb = va_arg (var_args, const gchar *);
     else
     {
diff --git a/operations/common/brightness-contrast.c b/operations/common/brightness-contrast.c
index 2f54743..ebaeb14 100644
--- a/operations/common/brightness-contrast.c
+++ b/operations/common/brightness-contrast.c
@@ -29,13 +29,13 @@
  */
 
 gegl_property_double (contrast, _("Contrast"), 
-   "blurb", _("Magnitude of contrast scaling >1.0 brighten < 1.0 darken"),
+   "description", _("Magnitude of contrast scaling >1.0 brighten < 1.0 darken"),
    "default", 1.0, "min", -5.0, "max", 5.0,
    "ui-min", 0.0, "ui-max", 2.0, "ui-gamma", 1.0,
    NULL)
 
 gegl_property_double (brightness, _("Brightness"), 
-   "blurb",  _("Amount to increase brightness"),
+   "description", _("Amount to increase brightness"),
    "default", 0.0, "min", -3.0, "max", 3.0,
    "ui-min", -1.0, "ui-max", 1.0, "ui-gamma", 1.0,
    NULL)
diff --git a/operations/common/checkerboard.c b/operations/common/checkerboard.c
index 297f9b2..16b7987 100644
--- a/operations/common/checkerboard.c
+++ b/operations/common/checkerboard.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_int (x, _("Width"),
-    "blurb", _("Horizontal width of cells pixels"),
+    "description", _("Horizontal width of cells pixels"),
     "default",  16,
     "min",       1, 
     "ui-min",    1, "ui-max", 256, "ui-gamma", 1.5,
@@ -32,7 +32,7 @@ gegl_property_int (x, _("Width"),
     NULL)
 
 gegl_property_int (y, _("Height"),
-    "blurb", _("Vertical width of cells pixels"),
+    "description", _("Vertical width of cells pixels"),
     "default", 16, "min", 1,
     "ui-min",  1,  "ui-max", 256, "ui-gamma", 1.5,
     "unit", "pixel-distance",
@@ -40,33 +40,33 @@ gegl_property_int (y, _("Height"),
     NULL)
 
 gegl_property_int (x_offset, _("X offset"),
-    "blurb", _("Horizontal offset (from origin) for start of grid"),
+    "description", _("Horizontal offset (from origin) for start of grid"),
     "ui-min", -10, "ui-max", 10,
     "unit", "pixel-coordinate",
     "axis", "x",
     NULL)
 
 gegl_property_int (y_offset, _("Y offset"),
-    "blurb", _("Vertical offset (from origin) for start of grid"),
+    "description", _("Vertical offset (from origin) for start of grid"),
     "ui-min", -10, "ui-max",  10,
     "unit", "pixel-coordinate",
     "axis", "y",
     NULL)
 
 gegl_property_color (color1, _("Color"),
-    "blurb", _("One of the cell colors (defaults to 'black')"),
+    "description", _("One of the cell colors (defaults to 'black')"),
     "default", "black",
     "role",    "color-primary",
     NULL)
 
 gegl_property_color (color2, _("Color"),
-    "blurb", _("One of the cell colors (defaults to 'white')"),
+    "description", _("One of the cell colors (defaults to 'white')"),
     "default", "white",
     "role",    "color-secondary",
     NULL)
 
 gegl_property_format (format, _("Babl Format"),
-    "blurb", _("The babl format of the output"),
+    "description", _("The babl format of the output"),
     NULL)
 
 #else
diff --git a/operations/common/color.c b/operations/common/color.c
index c90e132..b3ed841 100644
--- a/operations/common/color.c
+++ b/operations/common/color.c
@@ -21,12 +21,12 @@
 
 #ifdef GEGL_PROPERTIES
 gegl_property_color (value, _("Color"),
-    "blurb", _("The color to render (defaults to 'black')"),
+    "description", _("The color to render (defaults to 'black')"),
     "default", "black",
     NULL)
 
 gegl_property_format (format, _("Babl Format"),
-    "blurb", _("The babl format of the output"),
+    "description", _("The babl format of the output"),
     NULL)
 #else
 
diff --git a/operations/common/emboss.c b/operations/common/emboss.c
index 22db267..e638f92 100644
--- a/operations/common/emboss.c
+++ b/operations/common/emboss.c
@@ -29,19 +29,19 @@ gegl_enum_end (GeglEmbossType)
 
 gegl_property_enum (type, _("Emboss Type"),
     GeglEmbossType, gegl_emboss_type,
-    "blurb"  , _("Rendering type"),
+    "description" , _("Rendering type"),
     "default", GEGL_EMBOSS_TYPE_EMBOSS,
     NULL)
 gegl_property_double (azimuth, _("Azimuth"),
-    "blurb",  _("Light angle (degrees)"),
+    "description",  _("Light angle (degrees)"),
     "min"  , 0.0, "max", 360.0, "default", 30.0,
     NULL)
 gegl_property_double (elevation, _("Elevation"),
-    "blurb"  , _("Elevation angle (degrees)"),
+    "description", _("Elevation angle (degrees)"),
     "default", 45.0, "min", 0.0, "max", 180.0,
     NULL)
 gegl_property_int (depth, _("Depth"),
-    "blurb"  , _("Filter width"),
+    "description", _("Filter width"),
     "default", 20, "min", 1, "max", 100,
     NULL)
 
diff --git a/operations/common/fractal-explorer.c b/operations/common/fractal-explorer.c
index 5060f41..6116703 100644
--- a/operations/common/fractal-explorer.c
+++ b/operations/common/fractal-explorer.c
@@ -41,44 +41,44 @@ gegl_enum_end (GeglFractalExplorerType)
 
 gegl_property_enum (fractaltype, _("Fractal type"),
     GeglFractalExplorerType, gegl_fractal_explorer_type,
-    "blurb",   _("Type of a fractal"),
+    "description", _("Type of a fractal"),
     "default", GEGL_FRACTAL_EXPLORER_TYPE_MANDELBROT,
     NULL)
 gegl_property_int (iter, _("Iterations"),
-    "blurb",   _("Iterations"),
+    "description", _("Iterations"),
     "default", 50, "min", 1, "max", 1000,
     NULL)
 gegl_property_double (zoom, _("Zoom"),
-    "blurb",   _("Zoom in the fractal space"),
+    "description", _("Zoom in the fractal space"),
     "default", 300.0 , "min"   , 0.0000001, "max"     , 10000000.0,
     "ui-min",  0.0001, "ui-max", 10000.0  , "ui-gamma", 1.5,
    NULL)
 gegl_property_double (shiftx, _("Shift X"),
-    "blurb",  _("X shift in the fractal space"),
+    "description", _("X shift in the fractal space"),
     "ui-min", -1000.0, "ui-max",  1000.0, "ui-gamma", 1.5,
     NULL)
 gegl_property_double (shifty, _("Shift Y"),
-    "blurb",  _("Y shift in the fractal space"),
+    "description", _("Y shift in the fractal space"),
     "ui-min", -1000.0, "ui-max",  1000.0, "ui-gamma", 1.5,
     NULL)
 gegl_property_double (cx, _("CX"),
-    "blurb",   _("CX (No effect in Mandelbrot and Sierpinski)"),
+    "description", _("CX (No effect in Mandelbrot and Sierpinski)"),
     "default", -0.75, "min", -2.5, "max", 2.5,
     NULL)
 gegl_property_double (cy, _("CY"),
-    "blurb",   _("CY (No effect in Mandelbrot and Sierpinski)"),
+    "description", _("CY (No effect in Mandelbrot and Sierpinski)"),
     "default", 0.2, "min", -2.5, "max", 2.5,
     NULL)
 gegl_property_double (redstretch, _("Red stretch"),
-    "blurb", _("Red stretching factor"), 
+    "description", _("Red stretching factor"), 
     "default", 1.0, "min", 0.0, "max", 1.0,
     NULL)
 gegl_property_double (greenstretch, _("Green stretch"),
-    "blurb", _("Green stretching factor"),
+    "description", _("Green stretching factor"),
     "default", 1.0, "min", 0.0, "max", 1.0,
     NULL)
 gegl_property_double (bluestretch, _("Blue stretch"),
-    "blurb", _("Green stretching factor"), 
+    "description", _("Green stretching factor"), 
     "default", 1.0, "min", 0.0, "max", 1.0,
     NULL)
 
@@ -90,19 +90,19 @@ gegl_enum_end (GeglFractalExplorerMode)
 
 gegl_property_enum (redmode, _("Red mode"),
     GeglFractalExplorerMode, gegl_fractal_explorer_mode,
-    "blurb",   _("Red application mode"),
+    "description",   _("Red application mode"),
     "default", GEGL_FRACTAL_EXPLORER_MODE_COS,
     NULL)
 
 gegl_property_enum (greenmode, _("Green mode"),
     GeglFractalExplorerMode, gegl_fractal_explorer_mode,
     "default", GEGL_FRACTAL_EXPLORER_MODE_COS,
-    "blurb",   _("Green application mode"), 
+    "description",   _("Green application mode"), 
     NULL)
 
 gegl_property_enum (bluemode, _("Blue mode"),
     GeglFractalExplorerMode, gegl_fractal_explorer_mode,
-    "blurb", _("Blue application mode"),
+    "description", _("Blue application mode"),
     "default", GEGL_FRACTAL_EXPLORER_MODE_SIN,
     NULL)
 
@@ -111,7 +111,7 @@ gegl_property_boolean (greeninvert, _("Green inversion"), NULL)
 gegl_property_boolean (blueinvert , _("Blue inversion") , NULL)
 
 gegl_property_int (ncolors, _("Colors"),
-    "blurb", _("Number of colors"),
+    "description", _("Number of colors"),
     "default", 256, "min", 2, "max", MAXNCOLORS,
     NULL)
 
diff --git a/operations/common/gaussian-blur.c b/operations/common/gaussian-blur.c
index 08b764e..9c95a12 100644
--- a/operations/common/gaussian-blur.c
+++ b/operations/common/gaussian-blur.c
@@ -34,7 +34,7 @@ gegl_enum_start (gegl_gaussian_blur_filter)
 gegl_enum_end (GeglGaussianBlurFilter)
 
 gegl_property_double (std_dev_x, _("Size X"),
-    "blurb", _("Standard deviation for the horizontal axis (multiply by ~2 to get radius)"),
+    "description", _("Standard deviation for the horizontal axis (multiply by ~2 to get radius)"),
     "default", 1.5, "min", 0.0, "max", 1500.0,
     "ui-min", 0.0, "ui-max", 100.0, "ui-gamma", 3.0,
     "axis", "x",
@@ -42,7 +42,7 @@ gegl_property_double (std_dev_x, _("Size X"),
     NULL)
 
 gegl_property_double (std_dev_y, _("Size Y"),
-    "blurb", _("Standard deviation for the horizontal axis (multiply by ~2 to get radius)"),
+    "description", _("Standard deviation for the horizontal axis (multiply by ~2 to get radius)"),
     "default", 1.5, "min", 0.0, "max", 1500.0,
     "ui-min", 0.0, "ui-max", 100.0, "ui-gamma", 3.0,
     "axis", "y",
@@ -52,7 +52,7 @@ gegl_property_double (std_dev_y, _("Size Y"),
 gegl_property_enum  (filter, _("Filter"),
     GeglGaussianBlurFilter, gegl_gaussian_blur_filter,
     "default", GEGL_GAUSSIAN_BLUR_FILTER_AUTO,
-    "blurb", _("Optional parameter to override the automatic selection of blur filter"),
+    "description", _("Optional parameter to override the automatic selection of blur filter"),
     NULL)
 
 #else
diff --git a/operations/common/grid.c b/operations/common/grid.c
index f9343b9..cb1c991 100644
--- a/operations/common/grid.c
+++ b/operations/common/grid.c
@@ -22,7 +22,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_int (x, _("Width"),
-    "blurb", _("Horizontal width of cells pixels"),
+    "description", _("Horizontal width of cells pixels"),
     "default", 32, "min", 1, "max", G_MAXINT,
     "ui-min", 1, "ui-max", 128,
     "unit", "pixel-distance",
@@ -30,7 +30,7 @@ gegl_property_int (x, _("Width"),
     NULL)
 
 gegl_property_int (y, _("Height"),
-    "blurb", _("Vertical width of cells pixels"),
+    "description", _("Vertical width of cells pixels"),
     "default", 32, "min", 1, "max", G_MAXINT,
     "ui-min", 1, "ui-max", 128,
     "unit", "pixel-distance",
@@ -38,7 +38,7 @@ gegl_property_int (y, _("Height"),
     NULL)
 
 gegl_property_int (x_offset, _("X offset"),
-    "blurb", _("Horizontal offset (from origin) for start of grid"),
+    "description", _("Horizontal offset (from origin) for start of grid"),
     "default", 0,
     "ui-min", -64, "ui-max", 64,
     "unit", "pixel-coordinate",
@@ -46,7 +46,7 @@ gegl_property_int (x_offset, _("X offset"),
     NULL)
 
 gegl_property_int (y_offset, _("Y offset"),
-    "blurb", _("Vertical offset (from origin) for start of grid"),
+    "description", _("Vertical offset (from origin) for start of grid"),
     "default", 0,
     "ui-min", -64, "ui-max", 64,
     "unit", "pixel-coordinate",
@@ -54,7 +54,7 @@ gegl_property_int (y_offset, _("Y offset"),
     NULL)
 
 gegl_property_int (line_width, _("Line width"),
-    "blurb", _("Width of grid lines in pixels"),
+    "description", _("Width of grid lines in pixels"),
     "default", 4, "min", 0,
     "ui-min", 0, "ui-max", 16,
     "unit", "pixel-distance",
@@ -62,7 +62,7 @@ gegl_property_int (line_width, _("Line width"),
     NULL)
 
 gegl_property_int (line_height, _("Line height"),
-    "blurb", _("Width of grid lines in pixels"),
+    "description", _("Width of grid lines in pixels"),
     "default", 4, "min", 0,
     "ui-min", 0, "ui-max", 16,
     "unit", "pixel-distance",
@@ -70,7 +70,7 @@ gegl_property_int (line_height, _("Line height"),
     NULL)
 
 gegl_property_color (line_color, _("Color"),
-    "blurb", _("Color of the grid lines"),
+    "description", _("Color of the grid lines"),
     "default", "black",
     "role",    "color-primary",
     NULL)
diff --git a/operations/common/layer.c b/operations/common/layer.c
index c67b44e..84a7066 100644
--- a/operations/common/layer.c
+++ b/operations/common/layer.c
@@ -28,7 +28,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_string(composite_op, _("Operation"),
-    "blurb", _("Composite operation to use"),
+    "description", _("Composite operation to use"),
     "default", "gegl:over",
     NULL)
 
@@ -37,24 +37,24 @@ gegl_property_double(opacity, _("Opacity"),
     NULL)
 
 gegl_property_double(x, _("X"),
-    "blurb", _("Horizontal position in pixels"),
+    "description", _("Horizontal position in pixels"),
     "axis", "x",
     "unit", "pixel-coordinate",
     NULL)
 
 gegl_property_double(y, _("Y"),
-    "blurb", _("Vertical position in pixels"),
+    "description", _("Vertical position in pixels"),
     "axis", "y",
     "unit", "pixel-coordinate",
     NULL)
 
 gegl_property_double(scale, _("Scale"),
-    "blurb",   _("Scale 1:1 size"),
+    "description", _("Scale 1:1 size"),
     "default", 1.0,
     NULL)
 
 gegl_property_file_path(src, _("Source"),
-    "blurb",   _("Source image file path (png, jpg, raw, svg, bmp, tif, ...)"),
+    "description", _("Source image file path (png, jpg, raw, svg, bmp, tif, ...)"),
     "default", "",
     NULL)
 
diff --git a/operations/common/mosaic.c b/operations/common/mosaic.c
index dcb290b..c5a301d 100644
--- a/operations/common/mosaic.c
+++ b/operations/common/mosaic.c
@@ -37,12 +37,12 @@ gegl_enum_end (GeglMosaicTile)
 
 gegl_property_enum (tile_type, _("Tile geometry"),
     GeglMosaicTile, gegl_mosaic_tile,
-    "blurb", _("What shape to use for tiles"),
+    "description", _("What shape to use for tiles"),
     "default", GEGL_MOSAIC_TILE_HEXAGONS,
     NULL)
 
 gegl_property_double (tile_size, _("Tile size"),
-    "blurb", _("Average diameter of each tile (in pixels)"),
+    "description", _("Average diameter of each tile (in pixels)"),
     "default", 15.0, "min", 1.0, "max", 1000.0,
     "ui-min", 5.0, "ui-max", 400.0,
     "unit", "pixel-distance",
@@ -50,7 +50,7 @@ gegl_property_double (tile_size, _("Tile size"),
     NULL)
 
 gegl_property_double (tile_height, _("Tile height"),
-    "blurb", _("Apparent height of each tile (in pixels)"),
+    "description", _("Apparent height of each tile (in pixels)"),
     "default", 4.0,
     "min", 1.0, "max", 1000.0,
     "ui-min", 1.0, "ui-max", 20.0,
@@ -59,30 +59,30 @@ gegl_property_double (tile_height, _("Tile height"),
     NULL)
 
 gegl_property_double (tile_neatness, _("Tile neatness"),
-    "blurb", _("Deviation from perfectly formed tiles"),
+    "description", _("Deviation from perfectly formed tiles"),
     "default", 0.65, "min", 0.0, "max", 1.0,
     NULL)
 
 gegl_property_double (color_variation, _("Tile color variation"),
-    "blurb",  _("Magnitude of random color variations"),
+    "description", _("Magnitude of random color variations"),
     "default", 0.2, "min", 0.0, "max", 1.0,
     NULL)
 
 gegl_property_boolean (color_averaging, _("Color averaging"),
-    "blurb", _("Tile color based on average of subsumed pixels"),
+    "description", _("Tile color based on average of subsumed pixels"),
     "default", TRUE,
     NULL)
 
 gegl_property_boolean (tile_surface, _("Rough tile surface"),
-    "blurb", _("Surface characteristics"), NULL)
+    "description", _("Surface characteristics"), NULL)
 
 gegl_property_boolean (tile_allow_split, _("Allow splitting tiles"),
-    "blurb", _("Allows splitting tiles at hard edges"),
+    "description", _("Allows splitting tiles at hard edges"),
     "default", TRUE,
     NULL)
 
 gegl_property_double (tile_spacing, _("Tile spacing"),
-    "blurb", _("Inter-tile spacing (in pixels)"),
+    "description", _("Inter-tile spacing (in pixels)"),
     "default", 1.0, "min", 0.0, "max", 1000.0,
     "ui-min", 0.5, "ui-max", 30.0,
     "unit", "pixel-distance",
@@ -97,13 +97,13 @@ gegl_property_color (light_color, _("Light color"),
     NULL)
 
 gegl_property_double (light_dir, _("Light direction"),
-    "blurb", _("Direction of light-source (in degrees)"),
+    "description", _("Direction of light-source (in degrees)"),
     "default", 135.0, "min", 0.0, "max", 360.0,
     "unit", "degree",
     NULL)
 
 gegl_property_boolean (antialiasing, _("Antialiasing"),
-    "blurb", _("Enables smoother tile output"),
+    "description", _("Enables smoother tile output"),
     "default", TRUE,
     NULL)
 
diff --git a/operations/common/motion-blur-circular.c b/operations/common/motion-blur-circular.c
index 48b3058..2f36b93 100644
--- a/operations/common/motion-blur-circular.c
+++ b/operations/common/motion-blur-circular.c
@@ -54,7 +54,7 @@ gegl_property_double (center_y, _("Center Y"),
 
 /* FIXME: With a large angle, we lose AreaFilter's flavours */
 gegl_property_double (angle, _("Angle"),
-    "blurb", _("Rotation blur angle. A large angle may take some time to render"),
+    "description", _("Rotation blur angle. A large angle may take some time to render"),
     "default", 5.0, "min", 0.0, "max", 360.0,
     "ui-min", 0.0, "ui-max", 90.0, "ui-gamma", 2.0,
     "unit", "degree",
diff --git a/operations/common/motion-blur-zoom.c b/operations/common/motion-blur-zoom.c
index 3447f9a..3a33fca 100644
--- a/operations/common/motion-blur-zoom.c
+++ b/operations/common/motion-blur-zoom.c
@@ -38,7 +38,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (center_x, _("X center"),
-    "blurb", _("Horizontal center position"),
+    "description", _("Horizontal center position"),
     "default", 20.0,
     "ui-min",  -100000.0, "ui-max", 100000.0,
     "unit",    "pixel-coordinate",
@@ -46,7 +46,7 @@ gegl_property_double (center_x, _("X center"),
     NULL)
 
 gegl_property_double (center_y, _("Y center"),
-    "blurb", _("Vertical center position"),
+    "description", _("Vertical center position"),
     "default", 20.0,
     "ui-min",  -100000.0, "ui-max", 100000.0,
     "unit",    "pixel-coordinate",
@@ -54,7 +54,7 @@ gegl_property_double (center_y, _("Y center"),
     NULL)
 
 gegl_property_double (factor, _("Factor"),
-    "blurb", _("Bluring factor"),
+    "description", _("Bluring factor"),
     "default", 0.1, "min", -10.0, "max", 1.0,
     "ui-min", -0.5, "ui-max", 1.0, "ui-gamma", 2.0,
     NULL)
diff --git a/operations/common/noise-reduction.c b/operations/common/noise-reduction.c
index b7efe28..5df206f 100644
--- a/operations/common/noise-reduction.c
+++ b/operations/common/noise-reduction.c
@@ -24,7 +24,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_int (iterations, _("Strength"),
-    "blurb", _("Controls the number of iterations; lower values give better results."),
+    "description", _("Controls the number of iterations; lower values give better results."),
     "default", 4, "min",    1, "max", 32,
     "ui-min",  1, "ui-max", 8,
     NULL)
diff --git a/operations/common/noise-spread.c b/operations/common/noise-spread.c
index 2d9a225..517dcd5 100644
--- a/operations/common/noise-spread.c
+++ b/operations/common/noise-spread.c
@@ -27,14 +27,14 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_int (amount_x, _("Horizontal"),
-    "blurb", _("Horizontal spread amount"),
+    "description", _("Horizontal spread amount"),
     "default", 5, "min", 0, "max", 256,
     "unit", "pixel-distance",
     "axis", "x",
     NULL)
 
 gegl_property_int (amount_y, _("Vertical"),
-    "blurb", _("Vertical spread amount"),
+    "description", _("Vertical spread amount"),
     "default", 5, "min", 0, "max", 256,
     "unit", "pixel-distance",
     "axis", "y",
diff --git a/operations/common/oilify.c b/operations/common/oilify.c
index 4219994..29b4f0a 100644
--- a/operations/common/oilify.c
+++ b/operations/common/oilify.c
@@ -25,7 +25,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_int (mask_radius, _("Mask Radius"),
-    "blurb", _("Radius of circle around pixel"),
+    "description", _("Radius of circle around pixel"),
     "default", 4, "min", 1, "max", 25,
     "unit", "pixel-distance",
     NULL)
@@ -35,12 +35,12 @@ gegl_property_int (exponent, _("Exponent"),
     NULL)
 
 gegl_property_int (intensities, _("Number of intensities"),
-    "blurb", _("Histogram size"),
+    "description", _("Histogram size"),
     "default", 128, "min", 8, "max", 256,
     NULL)
 
 gegl_property_boolean (use_inten, _("Intensity Mode"),
-    "blurb", _("Use pixel luminance values"),
+    "description", _("Use pixel luminance values"),
     "default", TRUE,
     NULL)
 
diff --git a/operations/common/opacity.c b/operations/common/opacity.c
index f2e21dc..9d94beb 100644
--- a/operations/common/opacity.c
+++ b/operations/common/opacity.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (value, _("Opacity"),
-    "blurb", _("Global opacity value that is always used on top of the optional auxiliary input buffer."),
+    "description", _("Global opacity value that is always used on top of the optional auxiliary input 
buffer."),
     "default", 1.0, "min", -10.0, "max", 10.0,
     "ui-min", 0.0, "ui-max", 1.0, NULL)
 
diff --git a/operations/common/open-buffer.c b/operations/common/open-buffer.c
index 0089824..af250fd 100644
--- a/operations/common/open-buffer.c
+++ b/operations/common/open-buffer.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_string(path, _("File"),
-    "blurb", _("a GeglBuffer on disk to open"),
+    "description", _("a GeglBuffer on disk to open"),
     NULL)
 
 #else
diff --git a/operations/common/panorama-projection.c b/operations/common/panorama-projection.c
index 06b5f70..9fd6b76 100644
--- a/operations/common/panorama-projection.c
+++ b/operations/common/panorama-projection.c
@@ -21,53 +21,53 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (pan, _("Pan"),
-    "blurb", _("Horizontal camera panning"),
+    "description", _("Horizontal camera panning"),
     "min",  -180.0, "max", 360.0,
     "unit", "degree",
     NULL)
 
 gegl_property_double (tilt, _("Tilt"),
-    "blurb", _("Vertical angle"),
+    "description", _("Vertical angle"),
     "min", -180.0, "max",  180.0,
     "unit", "degree",
     NULL)
 
 gegl_property_double (spin, _("Spin"),
-    "blurb", _("Spin angle around camera axis"),
+    "description", _("Spin angle around camera axis"),
     "min",  -360.0, "max",   360.0,
     NULL)
 
 gegl_property_double (zoom, _("Zoom"),
-    "blurb",   _("Zoom level"),
+    "description", _("Zoom level"),
     "default", 100.0, "min", 0.01, "max", 1000.0,
     NULL)
 
 gegl_property_int (width, _("Width"),
-    "blurb",   _("output/rendering width in pixels, -1 for input width"),
+    "description", _("output/rendering width in pixels, -1 for input width"),
     "default", -1, "min", -1, "max", 10000,
     "role", "output-extent",
     "axis", "x",
     NULL)
 
 gegl_property_int (height, _("Height"),
-    "blurb",   _("output/rendering height in pixels, -1 for input height"),
+    "description", _("output/rendering height in pixels, -1 for input height"),
     "default", -1, "min", -1, "max", 10000,
     "role", "output-extent",
     "axis", "y",
     NULL)
 
 gegl_property_boolean (little_planet, _("Little planet"),
-    "blurb",  _("use the pan/tilt location as center for a stereographic/little planet projection."),
+    "description", _("use the pan/tilt location as center for a stereographic/little planet projection."),
     NULL)
 
 gegl_property_enum (sampler_type, _("Resampling method"),
     GeglSamplerType, gegl_sampler_type,
-    "blurb",   _("Image resampling method to use"),
+    "description", _("Image resampling method to use"),
     "default", GEGL_SAMPLER_NEAREST,
     NULL)
 
 gegl_property_boolean (inverse, _("Inverse"),
-    "blurb",  _("do an inverse projection"),
+    "description", _("do an inverse projection"),
     NULL)
 
 #else
diff --git a/operations/common/pixelize.c b/operations/common/pixelize.c
index 9ed6495..6d6eaa7 100644
--- a/operations/common/pixelize.c
+++ b/operations/common/pixelize.c
@@ -31,12 +31,12 @@ gegl_enum_end (GeglPixelizeNorm)
 
 gegl_property_enum (norm, _("Shape"),
     GeglPixelizeNorm, gegl_pixelize_norm,
-    "blurb",   _("The shape of pixels"),
+    "description", _("The shape of pixels"),
     "default", GEGL_PIXELIZE_NORM_INFINITY,
     NULL)
 
 gegl_property_int (size_x, _("Block width"),
-    "blurb", _("Width of blocks in pixels"),
+    "description", _("Width of blocks in pixels"),
     "min", 1, "default", 16,
     "ui-min", 1, "ui-max", 2048, "ui-gamma", 1.5,
     "unit", "pixel-distance",
@@ -44,7 +44,7 @@ gegl_property_int (size_x, _("Block width"),
     NULL)
 
 gegl_property_int (size_y, _("Block height"),
-    "blurb", _("Width of blocks in pixels"),
+    "description", _("Width of blocks in pixels"),
     "min", 1, "default", 16,
     "ui-min", 1, "ui-max", 2048, "ui-gamma", 1.5,
     "unit", "pixel-distance",
@@ -52,17 +52,17 @@ gegl_property_int (size_y, _("Block height"),
     NULL)
 
 gegl_property_double (ratio_x, _("X size ratio"),
-    "blurb", _("Horizontal size ratio of a pixel inside each block"),
+    "description", _("Horizontal size ratio of a pixel inside each block"),
     "default", 1.0, "min", 0.0, "max", 1.0, 
     NULL)
 
 gegl_property_double (ratio_y, _("Y size ratio"),
-    "blurb", _("Vertical size ratio of a pixel inside each block"),
+    "description", _("Vertical size ratio of a pixel inside each block"),
     "default", 1.0, "min", 0.0, "max", 1.0, 
     NULL)
 
 gegl_property_color  (background, _("Background color"),
-    "blurb", _("Color used to fill the background"),
+    "description", _("Color used to fill the background"),
     "default", "white",
     "role", "color-secondary",
     NULL)
diff --git a/operations/common/plasma.c b/operations/common/plasma.c
index e022b7d..16ab89d 100644
--- a/operations/common/plasma.c
+++ b/operations/common/plasma.c
@@ -34,12 +34,12 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (turbulence, _("Turbulence"),
-    "blurb", _("High values give more variation in details"),
+    "description", _("High values give more variation in details"),
     "default", 1.0, "min", 0.0, "max", 7.0,
     NULL)
 
 gegl_property_int (x, _("X"),
-    "blurb", _("X start of the generated buffer"),
+    "description", _("X start of the generated buffer"),
     "ui-min", -4096, "ui-max",  4096,
     "unit",  "pixel-coordinate",
     "axis",  "x",
@@ -47,7 +47,7 @@ gegl_property_int (x, _("X"),
     NULL)
 
 gegl_property_int (y, _("Y"),
-    "blurb", _("Y start of the generated buffer"),
+    "description", _("Y start of the generated buffer"),
     "ui-min", -4096, "ui-max",  4096,
     "unit",  "pixel-coordinate",
     "axis",  "y",
@@ -55,7 +55,7 @@ gegl_property_int (y, _("Y"),
     NULL)
 
 gegl_property_int (width, _("Width"),
-    "blurb", _("Width of the generated buffer"),
+    "description", _("Width of the generated buffer"),
     "default", 1024, "min", 0,
     "ui-min",  0, "ui-max",  4096,
     "unit",  "pixel-distance",
@@ -64,7 +64,7 @@ gegl_property_int (width, _("Width"),
     NULL)
 
 gegl_property_int (height, _("Height"),
-    "blurb", _("Height of the generated buffer"),
+    "description", _("Height of the generated buffer"),
     "default", 768, "min",       0,
     "ui-min",    0, "ui-max", 4096,
     "unit",  "pixel-distance",
diff --git a/operations/common/polar-coordinates.c b/operations/common/polar-coordinates.c
index a243be5..a53fc52 100644
--- a/operations/common/polar-coordinates.c
+++ b/operations/common/polar-coordinates.c
@@ -40,35 +40,35 @@ gegl_property_double  (angle, _("Offset angle"),
     NULL)
 
 gegl_property_boolean (bw, _("Map backwards"),
-    "blurb", _("Start from the right instead of the left"),
+    "description", _("Start from the right instead of the left"),
     NULL)
 
 gegl_property_boolean (top, _("Map from top"),
-  "blurb", _("Put the top row in the middle and the bottom row on the outside"),
+  "description", _("Put the top row in the middle and the bottom row on the outside"),
   "default", TRUE,
   NULL)
 
 gegl_property_boolean (polar, _("To polar"),
-    "blurb", _("Map the image to a circle"),
+    "description", _("Map the image to a circle"),
     "default", TRUE,
     NULL)
 
 gegl_property_int (pole_x, _("X"),
-    "blurb", _("Origin point for the polar coordinates"),
+    "description", _("Origin point for the polar coordinates"),
     "min", 0, "max", G_MAXINT,
     "unit", "pixel-coordinate",
     "axis", "x",
     NULL)
 
 gegl_property_int (pole_y, _("Y"),
-    "blurb", _("Origin point for the polar coordinates"),
+    "description", _("Origin point for the polar coordinates"),
     "min", 0, "max", G_MAXINT,
     "unit", "pixel-coordinate",
     "axis", "y",
     NULL)
 
 gegl_property_boolean (middle, _("Choose middle"),
-    "blurb", _("Let origin point to be the middle one"),
+    "description", _("Let origin point to be the middle one"),
     "default", TRUE,
     NULL)
 
diff --git a/operations/common/posterize.c b/operations/common/posterize.c
index c3be123..2b285ef 100644
--- a/operations/common/posterize.c
+++ b/operations/common/posterize.c
@@ -22,7 +22,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_int (levels, _("Levels"),
-    "blurb", _("number of levels per component"),
+    "description", _("number of levels per component"),
     "default", 8, "min",    1,  "max",      64,
     "ui-min",  1, "ui-max", 64, "ui-gamma", 2.0,
     NULL)
diff --git a/operations/common/raw-load.c b/operations/common/raw-load.c
index cfcbce6..cae4611 100644
--- a/operations/common/raw-load.c
+++ b/operations/common/raw-load.c
@@ -24,7 +24,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_file_path (path, _("File"),
-    "blurb", _("Path of file to load."),
+    "description", _("Path of file to load."),
     "default", "/tmp/test.raw",
     NULL)
 
diff --git a/operations/common/rectangle.c b/operations/common/rectangle.c
index c4ebd21..1a7cce1 100644
--- a/operations/common/rectangle.c
+++ b/operations/common/rectangle.c
@@ -24,33 +24,33 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (x, _("X"),
-    "blurb", _("Horizontal position"),
+    "description", _("Horizontal position"),
     "unit", "pixel-coordinate",
     "axis", "x",
     NULL)
 
 gegl_property_double (y, _("Y"),
-    "blurb", _("Vertical position"),
+    "description", _("Vertical position"),
     "unit", "pixel-coordinate",
     "axis", "y",
     NULL)
 
 gegl_property_double (width, _("Width"),
-    "blurb", _("Horizontal extent"),
+    "description", _("Horizontal extent"),
     "min", 0.0, "max", G_MAXDOUBLE,
     "unit", "pixel-distance",
     "axis", "x",
     NULL)
 
 gegl_property_double (height, _("Height"),
-    "blurb", _("Vertical extent"),
+    "description", _("Vertical extent"),
     "min", 0.0, "max", G_MAXDOUBLE,
     "unit", "pixel-distance",
     "axis", "y",
     NULL)
 
 gegl_property_color(color, _("Color"),
-    "blurb", _("Color to render"),
+    "description", _("Color to render"),
     "default", "white",
     NULL)
 
diff --git a/operations/common/red-eye-removal.c b/operations/common/red-eye-removal.c
index 155c578..f521ef6 100644
--- a/operations/common/red-eye-removal.c
+++ b/operations/common/red-eye-removal.c
@@ -29,7 +29,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (threshold, _("Threshold"),
-    "blurb", _("Red eye threshold"),
+    "description", _("Red eye threshold"),
     "default", 0.4, "min", 0.0, "max", 0.8,
     NULL)
 
diff --git a/operations/common/reinhard05.c b/operations/common/reinhard05.c
index 7779816..4f3b9c0 100644
--- a/operations/common/reinhard05.c
+++ b/operations/common/reinhard05.c
@@ -24,17 +24,17 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (brightness, _("Brightness"),
-    "blurb", _("Overall brightness of the image"),
+    "description", _("Overall brightness of the image"),
     "min", -100.0, "max", 100.0,
     NULL)
 
 gegl_property_double (chromatic, _("Chromatic Adaptation"),
-    "blurb", _("Adaptation to color variation across the image"),
+    "description", _("Adaptation to color variation across the image"),
     "min", 0.0, "max", 1.0,
     NULL)
 
 gegl_property_double (light, _("Light Adaptation"),
-    "blurb", _("Adaptation to light variation across the image"),
+    "description", _("Adaptation to light variation across the image"),
     "default", 1.0, "min", 0.0, "max", 1.0,
     NULL)
 
diff --git a/operations/common/ripple.c b/operations/common/ripple.c
index e3f5798..bbb7426 100644
--- a/operations/common/ripple.c
+++ b/operations/common/ripple.c
@@ -59,7 +59,7 @@ gegl_property_enum (wave_type, _("Wave type"),
     NULL)
 
 gegl_property_boolean (tileable, _("Tileable"),
-    "blurb", _("Retain tilebility"),
+    "description", _("Retain tilebility"),
     NULL)
 
 #else
diff --git a/operations/common/save.c b/operations/common/save.c
index 92b8f11..5f0b2fb 100644
--- a/operations/common/save.c
+++ b/operations/common/save.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_file_path (path, _("File"), 
-    "blurb", _("Path of file to save."),
+    "description", _("Path of file to save."),
     NULL)
 
 #else
diff --git a/operations/common/shift.c b/operations/common/shift.c
index 3c7c688..ba50d9f 100644
--- a/operations/common/shift.c
+++ b/operations/common/shift.c
@@ -29,7 +29,7 @@ gegl_enum_start (gegl_shift_direction)
 gegl_enum_end (GeglShiftDirection)
 
 gegl_property_int  (shift, _("Shift"),
-    "blurb", _("Maximum amount to shift"),
+    "description", _("Maximum amount to shift"),
     "default", 5, "min", 0, "max", 200,
     "unit", "pixel-distance",
     NULL)
diff --git a/operations/common/snn-mean.c b/operations/common/snn-mean.c
index c5ed5b3..1a9e308 100644
--- a/operations/common/snn-mean.c
+++ b/operations/common/snn-mean.c
@@ -24,14 +24,14 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_int (radius, _("Radius"),
-    "blurb", _("Radius of square pixel region, (width and height will be radius*2+1)"),
+    "description", _("Radius of square pixel region, (width and height will be radius*2+1)"),
     "default", 8, "min",     0, "max",      100,
     "ui-min",  0, "ui-max", 40, "ui-gamma", 1.5,
     "unit", "  pixel-distance",
     NULL)
 
 gegl_property_int (pairs, _("Pairs"),
-  "blurb", _("Number of pairs; higher number preserves more acute features"),
+  "description", _("Number of pairs; higher number preserves more acute features"),
   "default", 2, "min", 1, "max", 2,
   NULL)
 
diff --git a/operations/common/stress.c b/operations/common/stress.c
index 15b18b9..b3304dd 100644
--- a/operations/common/stress.c
+++ b/operations/common/stress.c
@@ -25,20 +25,20 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_int (radius, _("Radius"),
-    "blurb", _("Neighborhood taken into account, for enhancement ideal values are close to the longest side 
of the image, increasing this increases the runtime"),
+    "description", _("Neighborhood taken into account, for enhancement ideal values are close to the longest 
side of the image, increasing this increases the runtime"),
     "default", 300, "min", 2, "max", 5000,
     "ui-min", 2, "ui-max", 2000, "ui-gamma", 1.0,
     "unit", "pixel-distance",
     NULL)
 
 gegl_property_int (samples, _("Samples"),
-    "blurb", _("Number of samples to do per iteration looking for the range of colors"),
+    "description", _("Number of samples to do per iteration looking for the range of colors"),
     "default", 5, "min", 2, "max", 200,
     "ui-min", 2, "ui-max", 10,
     NULL)
 
 gegl_property_int (iterations, _("Iterations"),
-    "blurb", _("Number of iterations, a higher number of iterations provides a less noisy rendering at a 
computational cost"),
+    "description", _("Number of iterations, a higher number of iterations provides a less noisy rendering at 
a computational cost"),
     "default", 5, "min", 1, "max", 200, 
     "ui-min", 1, "ui-max", 10,
     NULL)
diff --git a/operations/common/stretch-contrast.c b/operations/common/stretch-contrast.c
index 7f32a3e..2e764aa 100644
--- a/operations/common/stretch-contrast.c
+++ b/operations/common/stretch-contrast.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_boolean (keep_colors, _("Keep colors"),
-    "blurb", _("Impact each channel with the same amount"),
+    "description", _("Impact each channel with the same amount"),
     "default", TRUE,
     NULL)
 
diff --git a/operations/common/svg-huerotate.c b/operations/common/svg-huerotate.c
index cbc8f33..039d5d3 100644
--- a/operations/common/svg-huerotate.c
+++ b/operations/common/svg-huerotate.c
@@ -25,7 +25,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_string (values, _("Values"), 
-    "blurb", _("list of <number>s"),
+    "description", _("list of <number>s"),
     NULL)
 
 #else
diff --git a/operations/common/svg-matrix.c b/operations/common/svg-matrix.c
index 7df3a6d..03f1912 100644
--- a/operations/common/svg-matrix.c
+++ b/operations/common/svg-matrix.c
@@ -25,7 +25,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_string (values, _("Values"),
-    "blurb", _("list of <number>s"),
+    "description", _("list of <number>s"),
     NULL)
 
 #else
diff --git a/operations/common/svg-saturate.c b/operations/common/svg-saturate.c
index ce6c799..6b600cb 100644
--- a/operations/common/svg-saturate.c
+++ b/operations/common/svg-saturate.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_string (values, _("Values"),
-    "blurb", _("list of <number>s"),
+    "description", _("list of <number>s"),
     NULL)
 
 #else
diff --git a/operations/common/texturize-canvas.c b/operations/common/texturize-canvas.c
index e2b531b..ad4bb2a 100644
--- a/operations/common/texturize-canvas.c
+++ b/operations/common/texturize-canvas.c
@@ -33,13 +33,13 @@ gegl_enum_end (GeglTexturizeCanvasDirection)
 
 gegl_property_enum (direction, _("Direction"),
     GeglTexturizeCanvasDirection, gegl_texturize_canvas_direction,
-    "blurb", _("Position of the light source which lightens the canvas: "
+    "description", _("Position of the light source which lightens the canvas: "
                "Top-right, Top-left, Bottom-left or Bottom-right"),
     "default", GEGL_TEXTURIZE_CANVAS_DIRECTION_TOP_RIGHT,
     NULL)
 
 gegl_property_int (depth, _("Depth"),
-    "blurb",  _("Apparent depth of the rendered canvas effect; "
+    "description",  _("Apparent depth of the rendered canvas effect; "
                 "from 1 (very flat) to 50 (very deep)"),
     "default", 4, "min", 1, "max", 50,
     NULL)
diff --git a/operations/common/threshold.c b/operations/common/threshold.c
index 7f65d81..0558c5a 100644
--- a/operations/common/threshold.c
+++ b/operations/common/threshold.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (value, _("Threshold"),
-    "blurb", _("Scalar threshold level (overriden if an auxiliary input buffer is provided.)."),
+    "description", _("Scalar threshold level (overriden if an auxiliary input buffer is provided.)."),
     "default", 0.5, "min", -200.0, "max", 200.0,
     "ui-min", -10.0, "ui-max", 10.0,
     NULL)
diff --git a/operations/common/unsharp-mask.c b/operations/common/unsharp-mask.c
index a991f80..c109830 100644
--- a/operations/common/unsharp-mask.c
+++ b/operations/common/unsharp-mask.c
@@ -22,14 +22,14 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (std_dev, _("Std. Dev."),
-    "blurb", _("Standard deviation (spatial scale factor)"),
+    "description", _("Standard deviation (spatial scale factor)"),
     "default", 0.55, "min", 0.2, "max", 300.0,
     "ui-min", 0.2, "ui-max", 10.0, "ui-gamma", 3.0,
     "unit", "pixel-distance",
     NULL)
 
 gegl_property_double (scale, _("Scale"),
-    "blurb", _("Scale, strength of effect"),
+    "description", _("Scale, strength of effect"),
     "default", 4.0, "min", 0.0, "max", 300.0,
     "ui-max", 10.0, "ui-gamma", 3.0,
     NULL)
diff --git a/operations/common/vignette.c b/operations/common/vignette.c
index 41df9f6..6690473 100644
--- a/operations/common/vignette.c
+++ b/operations/common/vignette.c
@@ -27,19 +27,18 @@ gegl_enum_start (gegl_vignette_shape)
   gegl_enum_value (GEGL_VIGNETTE_SHAPE_DIAMOND, "Diamond")
 gegl_enum_end (GeglVignetteShape)
 
-gegl_property_enum (shape, _("Shape"),
+gegl_property_enum (shape, _("Vignette shape"),
     GeglVignetteShape, gegl_vignette_shape,
-    "blurb",   _("Shape of the vignette"),
     "default", GEGL_VIGNETTE_SHAPE_CIRCLE,
     NULL)
 
 gegl_property_color (color, _("Color"),
-    "blurb", _("Defaults to 'black', you can use transparency here to erase portions of an image"),
+    "description", _("Defaults to 'black', you can use transparency here to erase portions of an image"),
     "default", "black",
     NULL)
 
 gegl_property_double (radius, _("Radius"),
-    "blurb",_("How far out vignetting goes as portion of half image diagonal"),
+    "description",_("How far out vignetting goes as portion of half image diagonal"),
     "default", 1.5, "min", 0.0, "max", 3.0,
     "unit", "relative-distance",
     NULL)
@@ -49,32 +48,32 @@ gegl_property_double (softness, _("Softness"),
     NULL)
 
 gegl_property_double (gamma, _("Gamma"),
-    "blurb", _("Falloff linearity"),
+    "description", _("Falloff linearity"),
     "default", 2.0, "min", 1.0, "max", 20.0, 2.0,
     NULL)
 
 gegl_property_double (proportion, _("Proportion"),
-    "blurb", _("How close we are to image proportions"),
+    "description", _("How close we are to image proportions"),
     "default", 1.0, "min", 0.0, "max", 1.0,
     NULL)
 
 gegl_property_double (squeeze, _("Squeeze"),
-    "blurb",_("Aspect ratio to use, -0.5 = 1:2, 0.0 = 1:1, 0.5 = 2:1, "
+    "description",_("Aspect ratio to use, -0.5 = 1:2, 0.0 = 1:1, 0.5 = 2:1, "
               "-1.0 = 1:inf 1.0 = inf:1, this is applied after "
               "proportion is taken into account, to directly use "
               "squeeze factor as proportions, set proportion to 0.0."),
     "default", 0.0, "min", -1.0, "max", 1.0,
     NULL)
 
-gegl_property_double (x, _("X"),
-    "blurb", _("Horizontal center of vignetting"),
+gegl_property_double (x, _("X center"),
+    "description", _("Horizontal center of vignetting"),
     "default", 0.5, "min", -1.0, "max", 2.0,
     "unit", "relative-distance",
     "axis", "x",
     NULL)
 
-gegl_property_double (y, _("Y"),
-    "blurb", _("Vertical center of vignetting"),
+gegl_property_double (y, _("Y center"),
+    "description", _("Vertical center of vignetting"),
     "default", 0.5, "min", -1.0, "max", 2.0, 
     "unit", "relative-distance",
     "axis", "y",
diff --git a/operations/common/waves.c b/operations/common/waves.c
index 39ae36a..ef82908 100644
--- a/operations/common/waves.c
+++ b/operations/common/waves.c
@@ -24,26 +24,26 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (x, _("X center"),
-    "blurb", _("X coordinate of the center of the waves"),
+    "description", _("X coordinate of the center of the waves"),
     "ui-min", 0.0, "ui-max", 1024.0, "ui-gamma", 1.0,
     "unit", "pixel-coordinate",
     "axis", "x",
     NULL)
 
 gegl_property_double (y, _("Y center"),
-    "blurb", _("Y coordinate of the center of the waves"),
+    "description", _("Y coordinate of the center of the waves"),
     "ui-min", 0.0, "ui-max", 1024.0, "ui-gamma", 1.0,
     "unit", "pixel-coordinate",
     "axis", "y",
     NULL)
 
 gegl_property_double (amplitude, _("Amplitude"),
-    "blurb", _("Amplitude of the ripple"),
+    "description", _("Amplitude of the ripple"),
     "default", 25.0, "min", 0.0, "max", 1000.0,
     NULL)
 
 gegl_property_double (period, _("Period"),
-    "blurb", _("Period (wavelength) of the ripple"),
+    "description", _("Period (wavelength) of the ripple"),
     "default", 200.0, "min", 0.0, "max", 1000.0,
     NULL)
 
@@ -57,12 +57,12 @@ gegl_property_double (aspect, _("Aspect ratio"),
 
 gegl_property_enum (sampler_type, _("Resampling method"),
     GeglSamplerType, gegl_sampler_type,
-    "blurb", _("Mathematical method for reconstructing pixel values"),
+    "description", _("Mathematical method for reconstructing pixel values"),
     "default", GEGL_SAMPLER_CUBIC,
     NULL)
 
 gegl_property_boolean (clamp, _("Clamp deformation"),
-    "blurb", _("Limit deformation in the image area."),
+    "description", _("Limit deformation in the image area."),
     NULL)
 
 #else
diff --git a/operations/common/whirl-pinch.c b/operations/common/whirl-pinch.c
index 76792d3..be9844f 100644
--- a/operations/common/whirl-pinch.c
+++ b/operations/common/whirl-pinch.c
@@ -34,19 +34,19 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (whirl, _("Whirl"),
-    "blurb", _("Whirl angle (degrees)"),
+    "description", _("Whirl angle (degrees)"),
     "default", 90.0,
     "ui-min", -720.0, "ui-max", 720.0, "ui-gamma", 1.0,
     "unit", "degrees",
     NULL)
 
 gegl_property_double (pinch, _("Pinch"),
-    "blurb", _("Pinch amount"),
+    "description", _("Pinch amount"),
     "default", 0.0, "min", -1.0, "max", 1.0,
     NULL)
 
 gegl_property_double (radius, _("Radius"),
-    "blurb", _("Radius (1.0 is the largest circle that fits in the "
+    "description", _("Radius (1.0 is the largest circle that fits in the "
                "image, and 2.0 goes all the way to the corners)"),
     "default", 1.0, "min", 0.0, "max", 2.0,
     NULL)
diff --git a/operations/common/wind.c b/operations/common/wind.c
index e4ab2f0..ac91297 100644
--- a/operations/common/wind.c
+++ b/operations/common/wind.c
@@ -24,17 +24,17 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_double (threshold, _("Threshold"),
-    "blurb", _("Higher values restrict the effect to fewer areas of the image"),
+    "description", _("Higher values restrict the effect to fewer areas of the image"),
     "default", 10.0, "min", 0.0, "max", 100.0,
     NULL)
 
 gegl_property_int (strength, _("Strength"),
-    "blurb", _("Higher values increase the magnitude of the effect"),
+    "description", _("Higher values increase the magnitude of the effect"),
     "default", 40, "min", 1, "max", 1000,
     NULL)
 
 gegl_property_seed (seed, _("Seed"), rand,
-    "blurb", _("Random seed"),
+    "description", _("Random seed"),
     NULL)
 
 #else
diff --git a/operations/common/write-buffer.c b/operations/common/write-buffer.c
index 10faa4b..4f2eff1 100644
--- a/operations/common/write-buffer.c
+++ b/operations/common/write-buffer.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_PROPERTIES
 
 gegl_property_object (buffer, _("Buffer location"),
-    "blurb", _("A pre-existing GeglBuffer to write incoming buffer data to."),
+    "description", _("A pre-existing GeglBuffer to write incoming buffer data to."),
     NULL)
 
 #else


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]