[gegl] No more dots in the end of tooltips in ops. Proper capitalization in some of them.
- From: Alexandre Prokoudine <aprokoudine src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] No more dots in the end of tooltips in ops. Proper capitalization in some of them.
- Date: Sun, 1 Apr 2012 07:41:48 +0000 (UTC)
commit fe1cdad0ade73ba349f67688962f7ee37d849f84
Author: Alexandre Prokoudine <alexandre prokoudine gmail com>
Date: Sun Apr 1 11:41:07 2012 +0400
No more dots in the end of tooltips in ops. Proper capitalization in some of them.
operations/workshop/box-max.c | 2 +-
operations/workshop/box-min.c | 2 +-
operations/workshop/box-percentile.c | 4 ++--
operations/workshop/color-reduction.c | 2 +-
operations/workshop/color-rotate.c | 2 +-
operations/workshop/deinterlace.c | 2 +-
operations/workshop/linear-gradient.c | 6 +++---
operations/workshop/mandelbrot.c | 2 +-
operations/workshop/noise-spread.c | 2 +-
operations/workshop/plasma.c | 2 +-
operations/workshop/radial-gradient.c | 6 +++---
operations/workshop/red-eye-removal.c | 2 +-
operations/workshop/snn-percentile.c | 2 +-
13 files changed, 18 insertions(+), 18 deletions(-)
---
diff --git a/operations/workshop/box-max.c b/operations/workshop/box-max.c
index b395700..37b77d2 100644
--- a/operations/workshop/box-max.c
+++ b/operations/workshop/box-max.c
@@ -195,7 +195,7 @@ gegl_chant_class_init (GeglChantClass *klass)
"name" , "gegl:box-max",
"categories" , "misc",
"description" ,
- _("Sets the target pixel to the value of the maximum value in a box surrounding the pixel."),
+ _("Sets the target pixel to the value of the maximum value in a box surrounding the pixel"),
NULL);
}
diff --git a/operations/workshop/box-min.c b/operations/workshop/box-min.c
index a9cf636..529a411 100644
--- a/operations/workshop/box-min.c
+++ b/operations/workshop/box-min.c
@@ -195,7 +195,7 @@ gegl_chant_class_init (GeglChantClass *klass)
"name" , "gegl:box-min",
"categories" , "misc",
"description" ,
- _("Sets the target pixel to the value of the minimum value in a box surrounding the pixel."),
+ _("Sets the target pixel to the value of the minimum value in a box surrounding the pixel"),
NULL);
}
diff --git a/operations/workshop/box-percentile.c b/operations/workshop/box-percentile.c
index 0cc9273..bbe8af6 100644
--- a/operations/workshop/box-percentile.c
+++ b/operations/workshop/box-percentile.c
@@ -27,7 +27,7 @@
gegl_chant_double (radius, _("Radius"), 0.0, 70.0, 4.0,
_("Radius of square pixel region (width and height will be radius*2+1)"))
gegl_chant_double (percentile, _("Percentile"), 0.0, 100.0, 50,
- _("The percentile to compute, defaults to 50, which is a median filter."))
+ _("The percentile to compute, defaults to 50, which is a median filter"))
#else
@@ -228,7 +228,7 @@ gegl_chant_class_init (GeglChantClass *klass)
"categories" , "misc",
"description",
_("Sets the target pixel to the color corresponding to a given percentile "
- "when colors are sorted by luminance."),
+ "when colors are sorted by luminance"),
NULL);
}
diff --git a/operations/workshop/color-reduction.c b/operations/workshop/color-reduction.c
index 0b62a2a..24ae0aa 100644
--- a/operations/workshop/color-reduction.c
+++ b/operations/workshop/color-reduction.c
@@ -456,7 +456,7 @@ gegl_chant_class_init (GeglChantClass *klass)
"name" , "gegl:color-reduction",
"categories" , "misc",
"description" ,
- _("Reduces the number of bits per channel (colors and alpha), with optional dithering."),
+ _("Reduces the number of bits per channel (colors and alpha), with optional dithering"),
NULL);
}
diff --git a/operations/workshop/color-rotate.c b/operations/workshop/color-rotate.c
index cf6445d..4f75480 100644
--- a/operations/workshop/color-rotate.c
+++ b/operations/workshop/color-rotate.c
@@ -382,7 +382,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"categories" , "color",
"name" , "gegl:color-rotate",
- "description" , _("Rotate colors on the image."),
+ "description" , _("Rotate colors on the image"),
NULL);
}
diff --git a/operations/workshop/deinterlace.c b/operations/workshop/deinterlace.c
index 5206a13..6df8cc6 100644
--- a/operations/workshop/deinterlace.c
+++ b/operations/workshop/deinterlace.c
@@ -306,7 +306,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"categories" , "enhance",
"name" , "gegl:deinterlace",
- "description" , _("Performs deinterlace on the image."),
+ "description" , _("Performs deinterlace on the image"),
NULL);
}
diff --git a/operations/workshop/linear-gradient.c b/operations/workshop/linear-gradient.c
index b7b5c87..1d0749d 100644
--- a/operations/workshop/linear-gradient.c
+++ b/operations/workshop/linear-gradient.c
@@ -26,9 +26,9 @@ 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 gradient"))
gegl_chant_color (color2, _("Other color"), "white",
- _("one end of gradient"))
+ _("One end of gradient"))
#else
@@ -134,7 +134,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:linear-gradient",
"categories" , "render",
- "description" , _("linear gradient renderer"),
+ "description" , _("Linear gradient renderer"),
NULL);
}
diff --git a/operations/workshop/mandelbrot.c b/operations/workshop/mandelbrot.c
index 20d464d..ee9732e 100644
--- a/operations/workshop/mandelbrot.c
+++ b/operations/workshop/mandelbrot.c
@@ -141,7 +141,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:mandelbrot",
"categories" , "render",
- "description" , _("Mandelbrot set renderer."),
+ "description" , _("Mandelbrot set renderer"),
NULL);
}
diff --git a/operations/workshop/noise-spread.c b/operations/workshop/noise-spread.c
index 3a82116..784e06a 100644
--- a/operations/workshop/noise-spread.c
+++ b/operations/workshop/noise-spread.c
@@ -169,7 +169,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"categories" , "noise",
"name" , "gegl:noise-spread",
- "description", _("Spread filter"),
+ "description", _("Noise spread filter"),
NULL);
}
diff --git a/operations/workshop/plasma.c b/operations/workshop/plasma.c
index a553c02..872f539 100644
--- a/operations/workshop/plasma.c
+++ b/operations/workshop/plasma.c
@@ -385,7 +385,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:plasma",
"categories" , "render",
- "description", _("Performs plasma on the image."),
+ "description", _("Performs plasma effect on the image"),
NULL);
}
diff --git a/operations/workshop/radial-gradient.c b/operations/workshop/radial-gradient.c
index b940de2..5bea108 100644
--- a/operations/workshop/radial-gradient.c
+++ b/operations/workshop/radial-gradient.c
@@ -26,9 +26,9 @@ gegl_chant_double (y1, _("y1"), -1000.0, 1000.0, 25.0, "")
gegl_chant_double (x2, _("x2"), -1000.0, 1000.0, 50.0, "")
gegl_chant_double (y2, _("y2"), -1000.0, 1000.0, 50.0, "")
gegl_chant_color (color1, _("Color"), "black",
- _("one end of gradient"))
+ _("One end of gradient"))
gegl_chant_color (color2, _("Other color"), "white",
- _("one end of gradient"))
+ _("One end of gradient"))
#else
@@ -126,7 +126,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:radial-gradient",
"categories" , "render",
- "description" , _("radial gradient renderer"),
+ "description" , _("Radial gradient renderer"),
NULL);
}
diff --git a/operations/workshop/red-eye-removal.c b/operations/workshop/red-eye-removal.c
index b197157..04e490b 100644
--- a/operations/workshop/red-eye-removal.c
+++ b/operations/workshop/red-eye-removal.c
@@ -129,7 +129,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"categories" , "enhance",
"name" , "gegl:red-eye-removal",
- "description" , _("Performs red-eye-removal on the image."),
+ "description" , _("Performs red-eye-removal on the image"),
NULL);
}
diff --git a/operations/workshop/snn-percentile.c b/operations/workshop/snn-percentile.c
index d45decb..4164ccd 100644
--- a/operations/workshop/snn-percentile.c
+++ b/operations/workshop/snn-percentile.c
@@ -29,7 +29,7 @@ gegl_chant_double (radius, _("Radius"), 0.0, 70.0, 8.0,
gegl_chant_int (pairs, _("Pairs"), 1, 2, 2,
_("Number of pairs, higher number preserves more acute features"))
gegl_chant_double (percentile, _("Percentile"), 0.0, 100.0, 50.0,
- _("The percentile to return, the default value 50 is equal to the median."))
+ _("The percentile to return, the default value 50 is equal to the median"))
#else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]