[gegl] operations: normalize labels



commit 0633a5565e55f185e00e2c817c6cc3fcc106b040
Author: Øyvind Kolås <pippin gimp org>
Date:   Wed May 21 21:23:37 2014 +0200

    operations: normalize labels
    
    The strings are to be used in UI labels, and - at least the english version -
    in the Operation reference; they shouldn't be capitalized as if they were
    titles.

 operations/common/apply-lens.c                     |    2 +-
 operations/common/channel-mixer.c                  |    2 +-
 operations/common/color-reduction.c                |    2 +-
 operations/common/cubism.c                         |    2 +-
 operations/common/exp-combine.c                    |    6 +-
 operations/common/pixelize.c                       |    4 +-
 operations/common/reinhard05.c                     |    4 +-
 operations/common/unsharp-mask.c                   |    2 +-
 operations/core/cast-format.c                      |    4 +-
 operations/core/convert-format.c                   |    2 +-
 operations/external/lcms-from-profile.c            |    4 +-
 operations/external/matting-levin.c                |    2 +-
 operations/seamless-clone/seamless-clone-compose.c |    6 +-
 operations/seamless-clone/seamless-clone.c         |    6 +-
 operations/workshop/color-rotate.c                 |   16 ++----
 operations/workshop/convolution-matrix.c           |   54 ++++++++++----------
 operations/workshop/external/ff-save.c             |    5 +-
 operations/workshop/external/lens-correct.c        |   42 ++++++++--------
 operations/workshop/gaussian-blur-iir.c            |    4 +-
 operations/workshop/ink-simulator.c                |    6 +-
 20 files changed, 85 insertions(+), 90 deletions(-)
---
diff --git a/operations/common/apply-lens.c b/operations/common/apply-lens.c
index 58d5c52..eda1902 100644
--- a/operations/common/apply-lens.c
+++ b/operations/common/apply-lens.c
@@ -34,7 +34,7 @@ property_double (refraction_index, _("Lens refraction index"), 1.7)
 property_boolean (keep_surroundings, _("Keep original surroundings"), FALSE)
   description(_("Keep image unchanged, where not affected by the lens."))
 
-property_color (background_color, _("Background Color"), "none")
+property_color (background_color, _("Background color"), "none")
   //ui_meta ("role", "color-secondary")
 
 #else
diff --git a/operations/common/channel-mixer.c b/operations/common/channel-mixer.c
index 3d12ea1..4123e0c 100644
--- a/operations/common/channel-mixer.c
+++ b/operations/common/channel-mixer.c
@@ -35,7 +35,7 @@
 
 property_boolean (monochrome, _("Monochrome"), FALSE)
 
-property_boolean (preserve_luminosity, _("Preserve Luminosity"), FALSE)
+property_boolean (preserve_luminosity, _("Preserve luminosity"), FALSE)
 
 property_double (rr_gain, _("Red Red Gain"), 1.0)
   description(_("Set the red gain for the red channel"))
diff --git a/operations/common/color-reduction.c b/operations/common/color-reduction.c
index 1325c6f..b7b20e6 100644
--- a/operations/common/color-reduction.c
+++ b/operations/common/color-reduction.c
@@ -48,7 +48,7 @@ property_int  (alpha_bits, _("Alpha bits"), 8)
     description(_("Number of bits for alpha channel"))
     value_range (1, 16)
 
-property_enum (dither_strategy, _("Dithering Strategy"),
+property_enum (dither_strategy, _("Dithering strategy"),
                GeglDitherStrategy, gegl_dither_strategy, GEGL_DITHER_RESILIENT)
     description (_("The dithering strategy to use"))
 
diff --git a/operations/common/cubism.c b/operations/common/cubism.c
index 109d669..b887bb6 100644
--- a/operations/common/cubism.c
+++ b/operations/common/cubism.c
@@ -36,7 +36,7 @@ property_double (tile_saturation, _("Tile saturation"), 2.5)
     description (_("Expand tiles by this amount"))
     value_range (0.0, 10.0)
 
-property_color  (bg_color, _("Background Color"), "rgba(0.0, 0.0, 0.0, 0.0)")
+property_color  (bg_color, _("Background color"), "rgba(0.0, 0.0, 0.0, 0.0)")
     description (("The tiles' background color"))
 
 property_seed (seed, _("Random seed"), rand)
diff --git a/operations/common/exp-combine.c b/operations/common/exp-combine.c
index 30ce052..4a7b0a8 100644
--- a/operations/common/exp-combine.c
+++ b/operations/common/exp-combine.c
@@ -22,14 +22,14 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_string(exposures, _("Exposure Values"), "")
+property_string(exposures, _("Exposure values"), "")
     description (_("Relative brightness of each exposure in EV"))
 
-property_int (steps, _("Discretization Bits"), 13)
+property_int (steps, _("Discretization bits"), 13)
     description (_("Log2 of source's discretization steps"))
     value_range (8, 32)
 
-property_double (sigma, _("Weight Sigma"), 8.0f)
+property_double (sigma, _("Weight sigma"), 8.0f)
     description (_("Weight distribution sigma controlling response contributions"))
     value_range (0.0f, 32.0f)
 
diff --git a/operations/common/pixelize.c b/operations/common/pixelize.c
index 510833a..25650d1 100644
--- a/operations/common/pixelize.c
+++ b/operations/common/pixelize.c
@@ -49,12 +49,12 @@ property_int    (size_y, _("Block height"), 16)
     ui_meta     ("unit", "pixel-distance")
     ui_meta     ("axis", "y")
 
-property_double (ratio_x, _("X size ratio"), 1.0)
+property_double (ratio_x, _("Size ratio X"), 1.0)
     description (_("Horizontal size ratio of a pixel inside each block"))
     value_range (0.0, 1.0)
     ui_meta     ("axis", "x")
 
-property_double (ratio_y, _("Y size ratio"), 1.0)
+property_double (ratio_y, _("Size ratio Y"), 1.0)
     description (_("Vertical size ratio of a pixel inside each block"))
     value_range (0.0, 1.0)
     ui_meta     ("axis", "y")
diff --git a/operations/common/reinhard05.c b/operations/common/reinhard05.c
index 50b9bf8..f205d30 100644
--- a/operations/common/reinhard05.c
+++ b/operations/common/reinhard05.c
@@ -27,11 +27,11 @@ property_double (brightness, _("Brightness"), 0.0)
     description(_("Overall brightness of the image"))
     value_range (-100.0, 100.0)
 
-property_double (chromatic, _("Chromatic Adaptation"), 0.0)
+property_double (chromatic, _("Chromatic adaptation"), 0.0)
     description(_("Adaptation to color variation across the image"))
     value_range (0.0, 1.0)
 
-property_double (light, _("Light Adaptation"), 1.0)
+property_double (light, _("Light adaptation"), 1.0)
     description(_("Adaptation to light variation across the image"))
     value_range (0.0, 1.0)
 
diff --git a/operations/common/unsharp-mask.c b/operations/common/unsharp-mask.c
index 896508a..395e29c 100644
--- a/operations/common/unsharp-mask.c
+++ b/operations/common/unsharp-mask.c
@@ -21,7 +21,7 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_double (std_dev, _("Std. Dev."), 0.55)
+property_double (std_dev, _("Standard Deviation"), 0.55)
     description(_("Standard deviation (spatial scale factor)"))
     value_range (0.2, 300)
     ui_range    (0.2, 40.0)
diff --git a/operations/core/cast-format.c b/operations/core/cast-format.c
index 7f28d70..f528499 100644
--- a/operations/core/cast-format.c
+++ b/operations/core/cast-format.c
@@ -24,9 +24,9 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_format (input_format, _("Input Format"), NULL)
+property_format (input_format, _("Input format"), NULL)
     description(_("The babl format of the input"))
-property_format (output_format, _("Output Format"), NULL)
+property_format (output_format, _("Output format"), NULL)
     description(_("The babl format of the output"))
 
 #else
diff --git a/operations/core/convert-format.c b/operations/core/convert-format.c
index fb484da..7a7358c 100644
--- a/operations/core/convert-format.c
+++ b/operations/core/convert-format.c
@@ -24,7 +24,7 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_format (format, _("Output Format"), NULL)
+property_format (format, _("Output format"), NULL)
   description(_("The babl format of the output"))
 
 #else
diff --git a/operations/external/lcms-from-profile.c b/operations/external/lcms-from-profile.c
index 87d4c21..28a76c7 100644
--- a/operations/external/lcms-from-profile.c
+++ b/operations/external/lcms-from-profile.c
@@ -34,12 +34,12 @@ enum_start (gegl_rendering_intent)
 /* TODO: Add the K_ONLY and K_PLANE intents */
 enum_end (GeglRenderingIntent)
 
-property_enum (intent, _("Rendering Intent"),
+property_enum (intent, _("Rendering intent"),
                  GeglRenderingIntent, gegl_rendering_intent,
                  GEGL_RENDERING_INTENT_PERCEPTUAL)
   description(_("The rendering intent to use in the conversion."))
 
-property_boolean (black_point_compensation, _("Black Point Compensation"),
+property_boolean (black_point_compensation, _("Black point compensation"),
                   FALSE)
   description (_("Convert using black point compensation."))
 
diff --git a/operations/external/matting-levin.c b/operations/external/matting-levin.c
index b4edbeb..b6e979c 100644
--- a/operations/external/matting-levin.c
+++ b/operations/external/matting-levin.c
@@ -42,7 +42,7 @@ property_int    (levels, _("Levels"), 4)
    description  (_("Number of downsampled levels to use"))
    value_range  (0, 8)
 
-property_int    (active_levels, _("Active Levels"), 2)
+property_int    (active_levels, _("Active levels"), 2)
    description  (_("Number of levels to perform solving"))
    value_range  (0, 8)
 
diff --git a/operations/seamless-clone/seamless-clone-compose.c 
b/operations/seamless-clone/seamless-clone-compose.c
index 15a3a43..5b398d5 100644
--- a/operations/seamless-clone/seamless-clone-compose.c
+++ b/operations/seamless-clone/seamless-clone-compose.c
@@ -18,17 +18,17 @@
  */
 
 #ifdef GEGL_PROPERTIES
-property_int (max_refine_steps, _("Refinement Steps"), 2000)
+property_int (max_refine_steps, _("Refinement steps"), 2000)
   description(_("Maximal amount of refinement points to be used for the interpolation mesh"))
   value_range (0, 100000)
 
-property_int (xoff, _("X offset"), 0)
+property_int (xoff, _("Offset X"), 0)
   description (_("How much horizontal offset should applied to the paste"))
   value_range (0, 100000)
   ui_meta     ("axis", "x")
   ui_meta     ("unit", "pixel-coordinate")
 
-property_int (yoff, _("Y offset"), 0)
+property_int (yoff, _("Offset Y"), 0)
   description(_("How much vertical offset should applied to the paste"))
   value_range (0, 100000)
   ui_meta     ("axis", "y")
diff --git a/operations/seamless-clone/seamless-clone.c b/operations/seamless-clone/seamless-clone.c
index 9692391..29c2a27 100644
--- a/operations/seamless-clone/seamless-clone.c
+++ b/operations/seamless-clone/seamless-clone.c
@@ -19,17 +19,17 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_int (max_refine_steps, _("Refinement Steps"), 2000)
+property_int (max_refine_steps, _("Refinement steps"), 2000)
   description (_("Maximal amount of refinement points to be used for the interpolation mesh"))
   value_range (0, 100000)
 
-property_int (xoff, _("X offset"), 0)
+property_int (xoff, _("Offset X"), 0)
   description (_("How much horizontal offset should applied to the paste"))
   value_range (-100000, 100000)
   ui_meta     ("unit", "pixel-coordinate")
   ui_meta     ("axis", "x")
 
-property_int (yoff, _("Y offset"), 0)
+property_int (yoff, _("Offset Y"), 0)
   description (_("How much horizontal offset should applied to the paste"))
   value_range (-100000, 100000)
   ui_meta     ("unit", "pixel-coordinate")
diff --git a/operations/workshop/color-rotate.c b/operations/workshop/color-rotate.c
index 5f6fc63..6f517b8 100644
--- a/operations/workshop/color-rotate.c
+++ b/operations/workshop/color-rotate.c
@@ -33,12 +33,12 @@
 property_boolean (s_cl, _("Clockwise"), FALSE)
     description (_("Switch to clockwise"))
 
-property_int (s_fr, _("From:"), 0)
+property_int (s_fr, _("From"), 0)
     description (_("Starting angle for the color rotation"))
     value_range (0, 360)
     ui_meta     ("unit", "degree")
 
-property_int (s_to, _("To:"), 0)
+property_int (s_to, _("To"), 0)
     description (_("End angle for the color rotation"))
     value_range (0, 360)
     ui_meta     ("unit", "degree")
@@ -46,11 +46,11 @@ property_int (s_to, _("To:"), 0)
 property_boolean (d_cl, _("Clockwise"), FALSE)
     description (_("Switch to clockwise"))
 
-property_int (d_fr, _("From:"), 0)
+property_int (d_fr, _("From"), 0)
     value_range (0, 360)
     description (_("Starting angle for the color rotation"))
 
-property_int (d_to, _("To:"), 0)
+property_int (d_to, _("To"), 0)
     value_range (0, 360)
     description (_("End angle for the color rotation"))
 
@@ -59,17 +59,13 @@ property_boolean (gray, _("Grayscale"), FALSE)
 
 property_double (hue, _("Hue"), 0.0)
     value_range (0.0, 2.0)
-    description (_("The value of hue"))
 
 property_double (saturation, _("Saturation"), 0.0)
-    description (_("The value of saturation"))
     value_range (0.0, 1.0)
 
-property_boolean (change, _("Change/Treat to this"), FALSE)
-    description (_("Change/Treat to this"))
+property_boolean (change, _("Change/treat to this"), FALSE)
 
-property_double (threshold, _("Threshold"), 0.0)
-    description (_("The value of gray threshold"))
+property_double (threshold, _("Gray threshold"), 0.0)
     value_range (0.0, 1.0)
 
 #else
diff --git a/operations/workshop/convolution-matrix.c b/operations/workshop/convolution-matrix.c
index bdf5511..6d08d8b 100644
--- a/operations/workshop/convolution-matrix.c
+++ b/operations/workshop/convolution-matrix.c
@@ -22,34 +22,34 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_double (a1, _("(1,1) "), 0.0)
-property_double (a2, _("(1,2) "), 0.0)
-property_double (a3, _("(1,3) "), 0.0)
-property_double (a4, _("(1,4) "), 0.0)
-property_double (a5, _("(1,5) "), 0.0)
-property_double (b1, _("(2,1) "), 0.0)
-property_double (b2, _("(2,2) "), 0.0)
-property_double (b3, _("(2,3) "), 0.0)
-property_double (b4, _("(2,4) "), 0.0)
-property_double (b5, _("(2,5) "), 0.0)
-property_double (c1, _("(3,1) "), 0.0)
-property_double (c2, _("(3,2) "), 0.0)
-property_double (c3, _("(3,3) "), 1.0)
-property_double (c4, _("(3,4) "), 0.0)
-property_double (c5, _("(3,5) "), 0.0)
-property_double (d1, _("(4,1) "), 0.0)
-property_double (d2, _("(4,2) "), 0.0)
-property_double (d3, _("(4,3) "), 0.0)
-property_double (d4, _("(4,4) "), 0.0)
-property_double (d5, _("(4,5) "), 0.0)
-property_double (e1, _("(5,1) "), 0.0)
-property_double (e2, _("(5,2) "), 0.0)
-property_double (e3, _("(5,3) "), 0.0)
-property_double (e4, _("(5,4) "), 0.0)
-property_double (e5, _("(5,5) "), 0.0)
-
-property_double (div, _("Divisor: "), 1.0)
-property_double (off, _("Offset: "), 0.0)
+property_double (a1, _("(1,1)"), 0.0)
+property_double (a2, _("(1,2)"), 0.0)
+property_double (a3, _("(1,3)"), 0.0)
+property_double (a4, _("(1,4)"), 0.0)
+property_double (a5, _("(1,5)"), 0.0)
+property_double (b1, _("(2,1)"), 0.0)
+property_double (b2, _("(2,2)"), 0.0)
+property_double (b3, _("(2,3)"), 0.0)
+property_double (b4, _("(2,4)"), 0.0)
+property_double (b5, _("(2,5)"), 0.0)
+property_double (c1, _("(3,1)"), 0.0)
+property_double (c2, _("(3,2)"), 0.0)
+property_double (c3, _("(3,3)"), 1.0)
+property_double (c4, _("(3,4)"), 0.0)
+property_double (c5, _("(3,5)"), 0.0)
+property_double (d1, _("(4,1)"), 0.0)
+property_double (d2, _("(4,2)"), 0.0)
+property_double (d3, _("(4,3)"), 0.0)
+property_double (d4, _("(4,4)"), 0.0)
+property_double (d5, _("(4,5)"), 0.0)
+property_double (e1, _("(5,1)"), 0.0)
+property_double (e2, _("(5,2)"), 0.0)
+property_double (e3, _("(5,3)"), 0.0)
+property_double (e4, _("(5,4)"), 0.0)
+property_double (e5, _("(5,5)"), 0.0)
+
+property_double (div, _("Divisor"), 1.0)
+property_double (off, _("Offset"), 0.0)
    value_range (-1.0, 1.0)
 
 property_boolean (norm, _("Normalize"), TRUE)
diff --git a/operations/workshop/external/ff-save.c b/operations/workshop/external/ff-save.c
index eb44b6e..8146599 100644
--- a/operations/workshop/external/ff-save.c
+++ b/operations/workshop/external/ff-save.c
@@ -30,12 +30,11 @@
 property_string (path, _("File"), "/tmp/fnord.mp4")
     description (_("Target path and filename, use '-' for stdout."))
 
-property_double (bitrate, _("Target itrate"), 800000.0)
+property_double (bitrate, _("Target bitrate"), 800000.0)
      value_range (0.0, 100000000.0)
 
-property_double (fps, _("FPS"), 25)
+property_double (fps, _("Frames/second"), 25)
      value_range (0.0, 100.0)
-     description (_("frames per second"))
 
 #else
 
diff --git a/operations/workshop/external/lens-correct.c b/operations/workshop/external/lens-correct.c
index 2205e33..fb25e5d 100644
--- a/operations/workshop/external/lens-correct.c
+++ b/operations/workshop/external/lens-correct.c
@@ -25,13 +25,13 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_string (maker, _("Maker:"),"none")
+property_string (maker, _("Maker"),"none")
     description (_("Write lens maker correctly"))
 
-property_string (Camera, _("Camera:"),"none")
+property_string (Camera, _("Camera"),"none")
     description (_("Write camera name correctly"))
 
-property_string (Lens, _("Lens:"),"none")
+property_string (Lens, _("Lens"),"none")
     description(_("Write your lens model with uppercase letters"))
 
 property_double (focal, _("Focal of the camera"), 20.0)
@@ -41,10 +41,10 @@ property_double (focal, _("Focal of the camera"), 20.0)
 property_boolean (center, _("Center"), TRUE)
     description (_("If you want center"))
 
-property_int (cx, _("Lens center x"), 0)
+property_int (cx, _("Lens center X"), 0)
     description (_("Coordinates of lens center"))
 
-property_int (cy, _("Lens center y"), 0)
+property_int (cy, _("Lens center Y"), 0)
     description (_("Coordinates of lens center"))
 
 property_double (rscale, _("Scale"), 0.5)
@@ -54,41 +54,41 @@ property_double (rscale, _("Scale"), 0.5)
 property_boolean (correct, _("Autocorrect d values"), TRUE)
     description (_("Autocorrect D values for lens correction models."))
 
-property_double (red_a, _("Model red a:"), 0.0)
+property_double (red_a, _("Model red a"), 0.0)
    value_range (-1.0, 1.0)
-property_double (red_b, _("Model red b:"), 0.0)
+property_double (red_b, _("Model red b"), 0.0)
    value_range (-1.0, 1.0)
-property_double (red_c, _("Model red c:"), 0.0)
+property_double (red_c, _("Model red c"), 0.0)
    value_range (-1.0, 1.0)
-property_double (red_d, _("Model red d:"), 1.0)
+property_double (red_d, _("Model red d"), 1.0)
    value_range (0.0, 2.0)
 
-property_double (green_a, _("Model green a:"), 0.0)
+property_double (green_a, _("Model green a"), 0.0)
    value_range (-1.0, 1.0)
-property_double (green_b, _("Model green b:"), 0.0)
+property_double (green_b, _("Model green b"), 0.0)
    value_range (-1.0, 1.0)
-property_double (green_c, _("Model green c:"), 0.0)
+property_double (green_c, _("Model green c"), 0.0)
    value_range (-1.0, 1.0)
-property_double (green_d, _("Model green d:"), 1.0)
+property_double (green_d, _("Model green d"), 1.0)
    value_range (0.0, 2.0)
 
-property_double (blue_a, _("Model blue a:"), 0.0)
+property_double (blue_a, _("Model blue a"), 0.0)
    value_range (-1.0, 1.0)
-property_double (blue_b, _("Model blue b:"), 0.0)
+property_double (blue_b, _("Model blue b"), 0.0)
    value_range (-1.0, 1.0)
-property_double (blue_c, _("Model blue c:"), 0.0)
+property_double (blue_c, _("Model blue c"), 0.0)
    value_range (-1.0, 1.0)
-property_double (blue_d, _("Model blue d:"), 1.0)
+property_double (blue_d, _("Model blue d"), 1.0)
    value_range (0.0, 2.0)
 
 
-property_double (alpha_a, _("Model alpha a:"), 0.0)
+property_double (alpha_a, _("Model alpha a"), 0.0)
    value_range (-1.0, 1.0)
-property_double (alpha_b, _("Model alpha b:"), 0.0)
+property_double (alpha_b, _("Model alpha b"), 0.0)
    value_range (-1.0, 1.0)
-property_double (alpha_c, _("Model alpha c:"), 0.0)
+property_double (alpha_c, _("Model alpha c"), 0.0)
    value_range (-1.0, 1.0)
-property_double (alpha_d, _("Model alpha d:"), 1.0)
+property_double (alpha_d, _("Model alpha d"), 1.0)
    value_range (0.0, 2.0)
 
 #else
diff --git a/operations/workshop/gaussian-blur-iir.c b/operations/workshop/gaussian-blur-iir.c
index 4ef191f..f8b2425 100644
--- a/operations/workshop/gaussian-blur-iir.c
+++ b/operations/workshop/gaussian-blur-iir.c
@@ -35,13 +35,13 @@ enum_start (gegl_gaussian_blur_policy)
 enum_end (GeglGaussianBlurPolicy)
 
 
-property_double (std_dev_x, _("Horizontal Std. Dev."), 1.5)
+property_double (std_dev_x, _("Standard deviation X"), 1.5)
    description (_("Standard deviation (spatial scale factor)"))
    value_range (0.0, 1500.0)
    ui_range (0.24, 100.0)
    ui_gamma (3.0)
 
-property_double (std_dev_y, _("Vertical Std. Dev."), 1.5)
+property_double (std_dev_y, _("Standard deviation Y"), 1.5)
    description (_("Standard deviation (spatial scale factor)"))
    value_range (0.0, 1500.0)
    ui_range (0.24, 100.0)
diff --git a/operations/workshop/ink-simulator.c b/operations/workshop/ink-simulator.c
index 21c044b..61384a6 100644
--- a/operations/workshop/ink-simulator.c
+++ b/operations/workshop/ink-simulator.c
@@ -39,10 +39,10 @@ enum_start (ink_sim_mode)
   enum_value (GEGL_SSIM_SEPARATE_PROOF, "separate-proof")
 enum_end (GeglInkSimMode)
 
-property_string (config, _("ink configuration"), DEFAULT_CONFIG)
+property_string (config, _("Ink configuration"), DEFAULT_CONFIG)
   description (_("Textual desciption of inks used for simulated print-job"))
 
-property_enum (mode, _("mode"), GeglInkSimMode, ink_sim_mode,
+property_enum (mode, _("Mode"), GeglInkSimMode, ink_sim_mode,
                  GEGL_SSIM_SEPARATE_PROOF)
   description (_("how the ink simulator is used"))
 
@@ -60,7 +60,7 @@ property_double (ink_limit, _("Ink limit"), 0.0, 5.0, 3.0,
 
 #endif
 
-property_int (debug_width, _("debug width"), 0)
+property_int (debug_width, _("Debug width"), 0)
    value_range (0, 150)
    description (_("how wide peel off bands for ink order vis"))
 


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