[gegl] operations: fixed typos and dots spotted by Chris Leonard
- From: Alexandre Prokoudine <aprokoudine src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] operations: fixed typos and dots spotted by Chris Leonard
- Date: Sun, 1 Apr 2012 11:21:54 +0000 (UTC)
commit f327265290da4ae5d8c76220acbd47058a563655
Author: Alexandre Prokoudine <alexandre prokoudine gmail com>
Date: Sun Apr 1 15:21:04 2012 +0400
operations: fixed typos and dots spotted by Chris Leonard
gegl/gegl-init.c | 4 ++--
operations/affine/affine.c | 2 +-
operations/common/c2g.c | 8 ++++----
operations/common/fattal02.c | 2 +-
operations/common/fractal-explorer.c | 2 +-
operations/common/gaussian-blur.c | 4 ++--
operations/common/layer.c | 4 ++--
operations/common/polar-coordinates.c | 6 +++---
operations/common/stress.c | 8 ++++----
9 files changed, 20 insertions(+), 20 deletions(-)
---
diff --git a/gegl/gegl-init.c b/gegl/gegl-init.c
index 3d5b13f..eb44817 100644
--- a/gegl/gegl-init.c
+++ b/gegl/gegl-init.c
@@ -233,7 +233,7 @@ static const GOptionEntry cmd_entries[]=
{
"gegl-chunk-size", 0, 0,
G_OPTION_ARG_STRING, &cmd_gegl_chunk_size,
- N_("The count of pixels to compute simulantous"), "pixel count"
+ N_("The count of pixels to compute simultaneously"), "pixel count"
},
{
"gegl-quality", 0, 0,
@@ -243,7 +243,7 @@ static const GOptionEntry cmd_entries[]=
{
"gegl-threads", 0, 0,
G_OPTION_ARG_STRING, &cmd_gegl_threads,
- N_("The number of concurrent processing threads to use."), "<threads>"
+ N_("The number of concurrent processing threads to use"), "<threads>"
},
{ NULL }
};
diff --git a/operations/affine/affine.c b/operations/affine/affine.c
index 49d8bc9..18d4b1a 100644
--- a/operations/affine/affine.c
+++ b/operations/affine/affine.c
@@ -227,7 +227,7 @@ op_affine_class_init (OpAffineClass *klass)
g_object_class_install_property (gobject_class, PROP_LANCZOS_WIDTH,
g_param_spec_int (
"lanczos-width",
- _("Lanczos-width"),
+ _("Lanczos width"),
_("Width of the Lanczos function"),
3, 6, 3,
G_PARAM_CONSTRUCT | G_PARAM_READWRITE));
diff --git a/operations/common/c2g.c b/operations/common/c2g.c
index 16f8e30..0317977 100644
--- a/operations/common/c2g.c
+++ b/operations/common/c2g.c
@@ -25,11 +25,11 @@
#ifdef GEGL_CHANT_PROPERTIES
gegl_chant_int_ui (radius, _("Radius"), 2, 3000, 300, 2, 3000, 1.6,
- _("Neighbourhood taken into account, this is the radius in pixels taken into account when deciding which colors map to which gray values."))
+ _("Neighborhood taken into account, this is the radius in pixels taken into account when deciding which colors map to which gray values"))
gegl_chant_int_ui (samples, _("Samples"), 1, 1000, 4, 1, 20, 1.0,
- _("Number of samples to do per iteration looking for the range of colors."))
+ _("Number of samples to do per iteration looking for the range of colors"))
gegl_chant_int_ui (iterations, _("Iterations"), 1, 1000, 10, 1, 20, 1.0,
- _("Number of iterations, a higher number of iterations provides a less noisy results at computational cost."))
+ _("Number of iterations, a higher number of iterations provides less noisy results at a computational cost"))
/*
gegl_chant_double (rgamma, _("Radial Gamma"), 0.0, 8.0, 2.0,
@@ -192,7 +192,7 @@ gegl_chant_class_init (GeglChantClass *klass)
"description",
_("Color to grayscale conversion, uses envelopes formed from spatial "
" color differences to perform color-feature preserving grayscale "
- " spatial contrast enhancement."),
+ " spatial contrast enhancement"),
NULL);
}
diff --git a/operations/common/fattal02.c b/operations/common/fattal02.c
index a45fe34..0403c38 100644
--- a/operations/common/fattal02.c
+++ b/operations/common/fattal02.c
@@ -38,7 +38,7 @@ gegl_chant_double (beta, _("Beta"),
_("Strength of local detail enhancement"))
gegl_chant_double (saturation, _("Saturation"),
0.0, 1.0, 0.8,
- _("Global colour saturation factor"))
+ _("Global color saturation factor"))
gegl_chant_double (noise, _("Noise"),
0.0, 1.0, 0.0,
_("Gradient threshold for lowering detail enhancement"))
diff --git a/operations/common/fractal-explorer.c b/operations/common/fractal-explorer.c
index 08c71aa..fd1768d 100644
--- a/operations/common/fractal-explorer.c
+++ b/operations/common/fractal-explorer.c
@@ -32,7 +32,7 @@ gegl_chant_int_ui (width, _("Width"), 1, 10000000, 400, 1, 2000, 1.5,
gegl_chant_int_ui (height, _("Height"), 1, 10000000, 400, 1, 2000, 1.5,
_("Height"))
-gegl_chant_int (fractaltype, _("Fractal type"), 0, 8, 0, _("Fractal Type"))
+gegl_chant_int (fractaltype, _("Fractal type"), 0, 8, 0, _("Type of a fractal"))
gegl_chant_double (xmin, _("Left"), -3.0, 3.0, -2.0, _("Left"))
gegl_chant_double (xmax, _("Right"), -3.0, 3.0, 2.0, _("Right"))
diff --git a/operations/common/gaussian-blur.c b/operations/common/gaussian-blur.c
index 3e98241..6dbfdc1 100644
--- a/operations/common/gaussian-blur.c
+++ b/operations/common/gaussian-blur.c
@@ -493,8 +493,8 @@ gegl_chant_class_init (GeglChantClass *klass)
"name", "gegl:gaussian-blur",
"categories", "blur",
"description",
- _("Performs an averaging of neighbouring pixels with the "
- "normal distribution as weighting."),
+ _("Performs an averaging of neighboring pixels with the "
+ "normal distribution as weighting"),
NULL);
}
diff --git a/operations/common/layer.c b/operations/common/layer.c
index 4375518..3e432be 100644
--- a/operations/common/layer.c
+++ b/operations/common/layer.c
@@ -35,7 +35,7 @@ gegl_chant_double(x, _("X"), -G_MAXDOUBLE, G_MAXDOUBLE, 0.0,
_("Horizontal position"))
gegl_chant_double(y, _("Y"), -G_MAXDOUBLE, G_MAXDOUBLE, 0.0,
_("Vertical position"))
-gegl_chant_double(scale, _("scale"), -G_MAXDOUBLE, G_MAXDOUBLE, 1.0,
+gegl_chant_double(scale, _("Scale"), -G_MAXDOUBLE, G_MAXDOUBLE, 1.0,
_("Scale 1:1 size"))
gegl_chant_file_path(src, _("Source"), "",
_("Source datafile (png, jpg, raw, svg, bmp, tif, ...)"))
@@ -264,7 +264,7 @@ gegl_chant_class_init (GeglChantClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:layer",
"categories" , "meta",
- "description", _("A layer in the traditional sense."),
+ "description", _("A layer in the traditional sense"),
NULL);
}
diff --git a/operations/common/polar-coordinates.c b/operations/common/polar-coordinates.c
index c8a269f..54dc3a6 100644
--- a/operations/common/polar-coordinates.c
+++ b/operations/common/polar-coordinates.c
@@ -35,9 +35,9 @@ gegl_chant_double (depth, _("Circle depth in percent"), 0.0, 100.0, 100.0,
_("Circle depth in percent"))
gegl_chant_double (angle, _("Offset angle"), 0.0, 359.9, 0.0,
_("Offset angle."))
-gegl_chant_boolean (bw, _("Map backwards"), FALSE, _("Map backwards"))
-gegl_chant_boolean (top, _("Map from top"), TRUE, _("Map from top"))
-gegl_chant_boolean (polar, _("To polar"), TRUE, _("To polar"))
+gegl_chant_boolean (bw, _("Map backwards"), FALSE, _("Start from the right instead of the left"))
+gegl_chant_boolean (top, _("Map from top"), TRUE, _("Put the top row in the middle and the bottom row on the outside"))
+gegl_chant_boolean (polar, _("To polar"), TRUE, _("Map the image to a circle"))
gegl_chant_int (pole_x, _("X:"), 0, G_MAXINT, 0,
_("Origin point for the polar coordinates"))
gegl_chant_int (pole_y, _("Y:"), 0, G_MAXINT, 0,
diff --git a/operations/common/stress.c b/operations/common/stress.c
index ca01015..ed191af 100644
--- a/operations/common/stress.c
+++ b/operations/common/stress.c
@@ -25,11 +25,11 @@
#ifdef GEGL_CHANT_PROPERTIES
gegl_chant_int_ui (radius, _("Radius"), 2, 5000.0, 300, 2, 2000, 1.0,
- _("Neighbourhood taken into account, for enhancement ideal values are close to the longest side of the image, increasing this increases the runtime."))
+ _("Neighborhood taken into account, for enhancement ideal values are close to the longest side of the image, increasing this increases the runtime"))
gegl_chant_int_ui (samples, _("Samples"), 2, 200, 5, 2, 10, 1.0,
- _("Number of samples to do per iteration looking for the range of colors."))
+ _("Number of samples to do per iteration looking for the range of colors"))
gegl_chant_int_ui (iterations, _("Iterations"), 1, 200, 5, 1, 10, 1.0,
- _("Number of iterations, a higher number of iterations provides a less noisy rendering at computational cost."))
+ _("Number of iterations, a higher number of iterations provides a less noisy rendering at a computational cost"))
/*
@@ -188,7 +188,7 @@ gegl_chant_class_init (GeglChantClass *klass)
"name" , "gegl:stress",
"categories" , "enhance",
"description",
- _("Spatio Temporal Retinex-like Envelope with Stochastic Sampling."),
+ _("Spatio Temporal Retinex-like Envelope with Stochastic Sampling"),
NULL);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]