[gegl] Removed dots from the end of tooltips in user-visible messages in ops



commit 8a499da65e7765e697e2a8c57d28ef5bb93b2b36
Author: Alexandre Prokoudine <alexandre prokoudine gmail com>
Date:   Sun Apr 1 11:11:44 2012 +0400

    Removed dots from the end of tooltips in user-visible messages in ops

 operations/common/noise.c                |    2 +-
 operations/common/polar-coordinates.c    |    6 +++---
 operations/common/unsharp-mask.c         |    4 ++--
 operations/external/ff-load.c            |    6 +++---
 operations/external/jp2-load.c           |    4 ++--
 operations/external/jpg-load.c           |    2 +-
 operations/external/jpg-save.c           |    4 ++--
 operations/external/path.c               |   18 +++++++++---------
 operations/workshop/convolution-matrix.c |    2 +-
 operations/workshop/cubism.c             |    2 +-
 operations/workshop/emboss.c             |    2 +-
 11 files changed, 26 insertions(+), 26 deletions(-)
---
diff --git a/operations/common/noise.c b/operations/common/noise.c
index 3df9b00..eb0d8bf 100644
--- a/operations/common/noise.c
+++ b/operations/common/noise.c
@@ -108,7 +108,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "name"       , "gegl:perlin-noise",
     "categories" , "render",
-    "description", _("Perlin noise generator."),
+    "description", _("Perlin noise generator"),
     NULL);
 
 }
diff --git a/operations/common/polar-coordinates.c b/operations/common/polar-coordinates.c
index bd36b99..c8a269f 100644
--- a/operations/common/polar-coordinates.c
+++ b/operations/common/polar-coordinates.c
@@ -32,12 +32,12 @@
 #ifdef GEGL_CHANT_PROPERTIES
 
 gegl_chant_double (depth, _("Circle depth in percent"), 0.0, 100.0, 100.0,
-                   _("Circle depth in percent."))
+                   _("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 (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 (polar, _("To polar"), TRUE, _("To polar"))
 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/unsharp-mask.c b/operations/common/unsharp-mask.c
index 6a2d470..1d5acd8 100644
--- a/operations/common/unsharp-mask.c
+++ b/operations/common/unsharp-mask.c
@@ -24,7 +24,7 @@
 gegl_chant_double_ui (std_dev, _("Std. Dev."), 0.0, 500.0, 1.0, 0.0, 200.0, 1.5,
                   _("Standard deviation (spatial scale factor)"))
 gegl_chant_double_ui (scale,  _("Scale"), 0.0, 100.0, 1.0, 0.0, 100.0, 1.5,
-                  _("Scale, strength of effect."))
+                  _("Scale, strength of effect"))
 
 #else
 
@@ -71,7 +71,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   "categories" , "meta:enhance",
   "description",
         _("Performs an unsharp mask on the input buffer (sharpens an image by "
-          "adding false mach-bands around edges)."),
+          "adding false mach-bands around edges)"),
         NULL);
 }
 
diff --git a/operations/external/ff-load.c b/operations/external/ff-load.c
index 5814460..442ec5f 100644
--- a/operations/external/ff-load.c
+++ b/operations/external/ff-load.c
@@ -22,8 +22,8 @@
 
 #ifdef GEGL_CHANT_PROPERTIES
 
-gegl_chant_file_path (path, _("File"), "/home/pippin/input.avi", _("Path of file to load."))
-gegl_chant_int (frame, _("Frame"), 0, 1000000, 0, _("frame number"))
+gegl_chant_file_path (path, _("File"), "/home/pippin/input.avi", _("Path of file to load"))
+gegl_chant_int (frame, _("Frame"), 0, 1000000, 0, _("Frame number"))
 
 #else
 
@@ -468,7 +468,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "name"        , "gegl:ff-load",
     "categories"  , "input:video",
-    "description" , _("FFmpeg video frame importer."),
+    "description" , _("FFmpeg video frame importer"),
     NULL);
 }
 
diff --git a/operations/external/jp2-load.c b/operations/external/jp2-load.c
index a019454..a08dcb7 100644
--- a/operations/external/jp2-load.c
+++ b/operations/external/jp2-load.c
@@ -22,7 +22,7 @@
 
 #ifdef GEGL_CHANT_PROPERTIES
 
-gegl_chant_file_path (path, _("File"), "", _("Path of file to load."))
+gegl_chant_file_path (path, _("File"), "", _("Path of file to load"))
 
 #else
 
@@ -394,7 +394,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "name"        , "gegl:jp2-load",
     "categories"  , "hidden",
-    "description" , _("JPEG-2000 image loader."),
+    "description" , _("JPEG-2000 image loader"),
     NULL);
 
   gegl_extension_handler_register (".jp2", "gegl:jp2-load");
diff --git a/operations/external/jpg-load.c b/operations/external/jpg-load.c
index af1806b..e61ea54 100644
--- a/operations/external/jpg-load.c
+++ b/operations/external/jpg-load.c
@@ -22,7 +22,7 @@
 
 #ifdef GEGL_CHANT_PROPERTIES
 
-gegl_chant_file_path (path, _("File"), "", _("Path of file to load."))
+gegl_chant_file_path (path, _("File"), "", _("Path of file to load"))
 
 #else
 
diff --git a/operations/external/jpg-save.c b/operations/external/jpg-save.c
index 082a3dc..6bbbbed 100644
--- a/operations/external/jpg-save.c
+++ b/operations/external/jpg-save.c
@@ -23,7 +23,7 @@
 #ifdef GEGL_CHANT_PROPERTIES
 
 gegl_chant_string (path, _("File"), "",
-                   _("Target path and filename, use '-' for stdout."))
+                   _("Target path and filename, use '-' for stdout"))
 gegl_chant_int    (quality, _("Quality"), 1, 100, 90,
                    _("JPEG compression quality (between 1 and 100)"))
 gegl_chant_int    (smoothing, _("Smoothing"),
@@ -189,7 +189,7 @@ gegl_chant_class_init (GeglChantClass *klass)
     "name"        , "gegl:jpg-save",
     "categories"  , "output",
     "description" ,
-    _("JPEG image saver (passes the buffer through, saves as a side-effect.)"),
+    _("JPEG image saver (passes the buffer through, saves as a side-effect)"),
     NULL);
 
   gegl_extension_handler_register_saver (".jpg", "gegl:jpg-save");
diff --git a/operations/external/path.c b/operations/external/path.c
index 5adf573..608b962 100644
--- a/operations/external/path.c
+++ b/operations/external/path.c
@@ -25,27 +25,27 @@
 
 
 gegl_chant_color  (fill, _("Fill Color"),  "rgba(0.0,0.0,0.0,0.6)",
-                         _("Color of paint to use for filling, use 0 opacity to disable filling."))
+                         _("Color of paint to use for filling, use 0 opacity to disable filling"))
 gegl_chant_color  (stroke,    _("Stroke Color"),      "rgba(0.0,0.0,0.0,0.0)",
-                             _("Color of paint to use for stroking."))
+                             _("Color of paint to use for stroking"))
 
 gegl_chant_double (stroke_width,_("Stroke width"),  0.0, 200.0, 2.0,
-                             _("The width of the brush used to stroke the path."))
+                             _("The width of the brush used to stroke the path"))
 
 gegl_chant_double (stroke_opacity,  _("Stroke opacity"),  -2.0, 2.0, 1.0,
-                             _("Opacity of stroke, note, does not behave like SVG since at the moment stroking is done using an airbrush tool."))
+                             _("Opacity of stroke, note, does not behave like SVG since at the moment stroking is done using an airbrush tool"))
 
 gegl_chant_double (stroke_hardness, _("Hardness"),   0.0, 1.0, 0.6,
-                             _("hardness of brush, 0.0 for soft brush 1.0 for hard brush."))
+                             _("Hardness of the brush, 0.0 for a soft brush, 1.0 for a hard brush"))
 
-gegl_chant_string (fill_rule,_("Fill rule."), "nonzero",
-                             _("how to determine what to fill (nonzero|evenodd"))
+gegl_chant_string (fill_rule,_("Fill rule"), "nonzero",
+                             _("How to determine what to fill (nonzero|evenodd"))
 
 gegl_chant_string (transform,_("Transform"), "",
-                             _("svg style description of transform."))
+                             _("SVG style description of transform"))
 
 gegl_chant_double (fill_opacity, _("Fill opacity"),  -2.0, 2.0, 1.0,
-                             _("The fill opacity to use."))
+                             _("The fill opacity to use"))
 
 gegl_chant_path   (d,        _("Vector"),
                              _("A GeglVector representing the path of the stroke"))
diff --git a/operations/workshop/convolution-matrix.c b/operations/workshop/convolution-matrix.c
index ef17039..0765efd 100644
--- a/operations/workshop/convolution-matrix.c
+++ b/operations/workshop/convolution-matrix.c
@@ -430,7 +430,7 @@ gegl_chant_class_init (GeglChantClass *klass)
     "categories"  , "generic",
     "name"        , "gegl:convolution-matrix",
     "description" ,
-    _("Creates image by manually set convolution matrix."),
+    _("Creates image by manually set convolution matrix"),
     NULL);
 }
 
diff --git a/operations/workshop/cubism.c b/operations/workshop/cubism.c
index 6071f28..5c10e42 100644
--- a/operations/workshop/cubism.c
+++ b/operations/workshop/cubism.c
@@ -592,7 +592,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "categories", "artistic",
     "name", "gegl:cubism",
-    "description",  _("Filter that somehow resembels a cubist painting style."),
+    "description",  _("A filter that somehow resembles a cubist painting style"),
     NULL);
 }
 
diff --git a/operations/workshop/emboss.c b/operations/workshop/emboss.c
index 7f4d162..c1c2063 100644
--- a/operations/workshop/emboss.c
+++ b/operations/workshop/emboss.c
@@ -245,7 +245,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "categories" , "distort",
     "name"       , "gegl:emboss",
-    "description", _("Simulates an image created by embossing."),
+    "description", _("Simulates an image created by embossing"),
     NULL);
 }
 



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