[gegl] operations: "X Foo" -> "Foo X" for Foo in Offset, Size, Ratio, ...



commit f54d6b3cebd263528f1ec0421e17b34bdbc1b83e
Author: Michael Natterer <mitch gimp org>
Date:   Mon May 19 01:49:43 2014 +0200

    operations: "X Foo" -> "Foo X" for Foo in Offset, Size, Ratio, ...

 operations/common/bump-map.c        |    8 ++++----
 operations/common/checkerboard.c    |    6 +++---
 operations/common/grid.c            |    4 ++--
 operations/common/lens-distortion.c |    4 ++--
 operations/common/mirrors.c         |    6 +++---
 operations/common/waves.c           |    4 ++--
 6 files changed, 16 insertions(+), 16 deletions(-)
---
diff --git a/operations/common/bump-map.c b/operations/common/bump-map.c
index 2f082f1..31c87cc 100644
--- a/operations/common/bump-map.c
+++ b/operations/common/bump-map.c
@@ -71,13 +71,13 @@ gegl_chant_double  (depth, _("Depth"),
                     0.0005, 100, 0.005,
                     _("Depth"))
 
-gegl_chant_int_ui  (offset_x, _("X Offset"),
+gegl_chant_int_ui  (offset_x, _("Offset X"),
                     -20000, 20000,0, -1000.0, 1000.0, 1.0,
-                    _("X offset"))
+                    NULL)
 
-gegl_chant_int_ui  (offset_y, _("Y Offset"),
+gegl_chant_int_ui  (offset_y, _("Offset Y"),
                     -20000, 20000,0, -1000.0, 1000.0, 1.0,
-                    _("Y offset"))
+                    NULL)
 
 gegl_chant_double  (waterlevel, _("Waterlevel"),
                     0.0,1.0,0.0,
diff --git a/operations/common/checkerboard.c b/operations/common/checkerboard.c
index 16b7987..01d3766 100644
--- a/operations/common/checkerboard.c
+++ b/operations/common/checkerboard.c
@@ -25,7 +25,7 @@
 gegl_property_int (x, _("Width"),
     "description", _("Horizontal width of cells pixels"),
     "default",  16,
-    "min",       1, 
+    "min",       1,
     "ui-min",    1, "ui-max", 256, "ui-gamma", 1.5,
     "unit", "pixel-distance",
     "axis", "x",
@@ -39,14 +39,14 @@ gegl_property_int (y, _("Height"),
     "axis", "y",
     NULL)
 
-gegl_property_int (x_offset, _("X offset"),
+gegl_property_int (x_offset, _("Offset X"),
     "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"),
+gegl_property_int (y_offset, _("Offset Y"),
     "description", _("Vertical offset (from origin) for start of grid"),
     "ui-min", -10, "ui-max",  10,
     "unit", "pixel-coordinate",
diff --git a/operations/common/grid.c b/operations/common/grid.c
index cb1c991..ac168d1 100644
--- a/operations/common/grid.c
+++ b/operations/common/grid.c
@@ -37,7 +37,7 @@ gegl_property_int (y, _("Height"),
     "axis", "y",
     NULL)
 
-gegl_property_int (x_offset, _("X offset"),
+gegl_property_int (x_offset, _("Offset X"),
     "description", _("Horizontal offset (from origin) for start of grid"),
     "default", 0,
     "ui-min", -64, "ui-max", 64,
@@ -45,7 +45,7 @@ gegl_property_int (x_offset, _("X offset"),
     "axis", "x",
     NULL)
 
-gegl_property_int (y_offset, _("Y offset"),
+gegl_property_int (y_offset, _("Offset Y"),
     "description", _("Vertical offset (from origin) for start of grid"),
     "default", 0,
     "ui-min", -64, "ui-max", 64,
diff --git a/operations/common/lens-distortion.c b/operations/common/lens-distortion.c
index cde43a9..8630e5d 100644
--- a/operations/common/lens-distortion.c
+++ b/operations/common/lens-distortion.c
@@ -45,12 +45,12 @@ gegl_property_double (zoom, _("Zoom"),
     "min", -100.0, "max", 100.0,
     NULL)
 
-gegl_property_double (x_shift, _("X shift"),
+gegl_property_double (x_shift, _("Shift X"),
     "description", _("Effect centre offset in X"),
     "min", -100.0, "max", 100.0,
     NULL)
 
-gegl_property_double (y_shift, _("Y shift"),
+gegl_property_double (y_shift, _("Shift Y"),
     "description", _("Effect centre offset in Y"),
     "min", -100.0, "max", 100.0,
     NULL)
diff --git a/operations/common/mirrors.c b/operations/common/mirrors.c
index 5113bce..fe14372 100644
--- a/operations/common/mirrors.c
+++ b/operations/common/mirrors.c
@@ -35,7 +35,7 @@ gegl_property_double (m_angle, _("Mirror rotation"),
 
 gegl_property_double (r_angle, _("Result rotation"),
     "description", _("Rotation applied to the result"),
-    "min", 0.0, "max", 360.0, "default", 0.0, 
+    "min", 0.0, "max", 360.0, "default", 0.0,
     "unit", "degree",
     NULL)
 
@@ -44,12 +44,12 @@ gegl_property_int    (n_segs, _("Mirrors"),
     "default", 6, "min", 2, "max", 24,
     NULL)
 
-gegl_property_double (c_x, _("X offset"),
+gegl_property_double (c_x, _("Offset X"),
     "description", _("X offset of the result of mirroring"),
     "default", 0.5, "min", 0.0, "max", 1.0,
     NULL)
 
-gegl_property_double (c_y, _("Y offset"),
+gegl_property_double (c_y, _("Offset Y"),
     "description", _("Y offset of the result of mirroring"),
     "default", 0.5, "min", 0.0, "max", 1.0,
     NULL)
diff --git a/operations/common/waves.c b/operations/common/waves.c
index ef82908..cbfd697 100644
--- a/operations/common/waves.c
+++ b/operations/common/waves.c
@@ -23,14 +23,14 @@
 
 #ifdef GEGL_PROPERTIES
 
-gegl_property_double (x, _("X center"),
+gegl_property_double (x, _("Center X"),
     "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"),
+gegl_property_double (y, _("Center Y"),
     "description", _("Y coordinate of the center of the waves"),
     "ui-min", 0.0, "ui-max", 1024.0, "ui-gamma", 1.0,
     "unit", "pixel-coordinate",


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