[gegl] operations: more fixes in places spotted by Chris Leonard
- From: Alexandre Prokoudine <aprokoudine src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] operations: more fixes in places spotted by Chris Leonard
- Date: Sun, 1 Apr 2012 11:33:18 +0000 (UTC)
commit 04766e56fde4b00a85d8d9c1cbdd42ff4caec22a
Author: Alexandre Prokoudine <alexandre prokoudine gmail com>
Date: Sun Apr 1 15:32:07 2012 +0400
operations: more fixes in places spotted by Chris Leonard
operations/affine/affine.c | 4 ++--
operations/common/dropshadow.c | 8 ++++----
operations/workshop/linear-gradient.c | 12 ++++++------
3 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/operations/affine/affine.c b/operations/affine/affine.c
index 18d4b1a..1d41079 100644
--- a/operations/affine/affine.c
+++ b/operations/affine/affine.c
@@ -198,7 +198,7 @@ op_affine_class_init (OpAffineClass *klass)
g_param_spec_double (
"origin-x",
_("Origin-x"),
- _("X-coordinate of origin"),
+ _("X coordinate of origin"),
-G_MAXDOUBLE, G_MAXDOUBLE,
0.,
G_PARAM_CONSTRUCT | G_PARAM_READWRITE));
@@ -206,7 +206,7 @@ op_affine_class_init (OpAffineClass *klass)
g_param_spec_double (
"origin-y",
_("Origin-y"),
- _("Y-coordinate of origin"),
+ _("Y coordinate of origin"),
-G_MAXDOUBLE, G_MAXDOUBLE,
0.,
G_PARAM_CONSTRUCT | G_PARAM_READWRITE));
diff --git a/operations/common/dropshadow.c b/operations/common/dropshadow.c
index 5a49dcb..a9785cb 100644
--- a/operations/common/dropshadow.c
+++ b/operations/common/dropshadow.c
@@ -24,11 +24,11 @@
gegl_chant_double (opacity, _("Opacity"), -2.0, 2.0, 0.5, _("Opacity"))
gegl_chant_double_ui (x, _("X"), -G_MAXDOUBLE, G_MAXDOUBLE, 20.0, -20.0, 20.0, 1.0,
- _("Horizontal shadow offset."))
+ _("Horizontal shadow offset"))
gegl_chant_double_ui (y, _("Y"), -G_MAXDOUBLE, G_MAXDOUBLE, 20.0, -20.0, 20.0, 1.0,
- _("Vertical shadow offset."))
+ _("Vertical shadow offset"))
gegl_chant_double_ui (radius, _("Radius"), 0.0, G_MAXDOUBLE, 10.0, 0.0, 300.0, 1.5,
- _("Blur radius."))
+ _("Blur radius"))
#else
@@ -79,7 +79,7 @@ gegl_chant_class_init (GeglChantClass *klass)
"name" , "gegl:dropshadow",
"categories" , "meta:effects",
"description",
- _("Creates a dropshadow effect on the input buffer."),
+ _("Creates a dropshadow effect on the input buffer"),
NULL);
}
diff --git a/operations/workshop/linear-gradient.c b/operations/workshop/linear-gradient.c
index 1d0749d..bb86153 100644
--- a/operations/workshop/linear-gradient.c
+++ b/operations/workshop/linear-gradient.c
@@ -21,14 +21,14 @@
#ifdef GEGL_CHANT_PROPERTIES
-gegl_chant_double (x1, _("x1"), -1000.0, 1000.0, 25.0, "")
-gegl_chant_double (y1, _("y1"), -1000.0, 1000.0, 25.0, "")
-gegl_chant_double (x2, _("x2"), -1000.0, 1000.0, 150.0, "")
-gegl_chant_double (y2, _("y2"), -1000.0, 1000.0, 150.0, "")
+gegl_chant_double (x1, _("X1"), -1000.0, 1000.0, 25.0, "")
+gegl_chant_double (y1, _("Y1"), -1000.0, 1000.0, 25.0, "")
+gegl_chant_double (x2, _("X2"), -1000.0, 1000.0, 150.0, "")
+gegl_chant_double (y2, _("Y2"), -1000.0, 1000.0, 150.0, "")
gegl_chant_color (color1, _("Color"), "black",
- _("One end of gradient"))
+ _("One end of a agradient"))
gegl_chant_color (color2, _("Other color"), "white",
- _("One end of gradient"))
+ _("The other end of a gradient"))
#else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]