[gegl] Shadows-Highlights: Normalize metadata and user-visible labels



commit b3630f405109ba82e173f2e22e4289826130df8c
Author: Alexandre Prokoudine <alexandre prokoudine gmail com>
Date:   Sat Jun 17 03:50:21 2017 +0300

    Shadows-Highlights: Normalize metadata and user-visible labels

 .../workshop/shadows-highlights-correction.c       |    8 ++++----
 operations/workshop/shadows-highlights.c           |   16 ++++++++--------
 2 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/operations/workshop/shadows-highlights-correction.c 
b/operations/workshop/shadows-highlights-correction.c
index ce19b9b..0690380 100644
--- a/operations/workshop/shadows-highlights-correction.c
+++ b/operations/workshop/shadows-highlights-correction.c
@@ -20,16 +20,16 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_double (s_amount, _("shadows amount"), 0.2)
+property_double (s_amount, _("Shadows amount"), 0.2)
     value_range (0.0, 1.0)
 
-property_double (s_tonalwidth, _("shadows tonal width"), 0.1)
+property_double (s_tonalwidth, _("Shadows tonal width"), 0.1)
     value_range (0.001, 1.0)
 
-property_double (h_amount, _("highlights amount"), 0.2)
+property_double (h_amount, _("Highlights amount"), 0.2)
     value_range (0.0, 1.0)
 
-property_double (h_tonalwidth, _("highlights tonal width"), 0.1)
+property_double (h_tonalwidth, _("Highlights tonal width"), 0.1)
     value_range (0.001, 1.0)
 
 #else
diff --git a/operations/workshop/shadows-highlights.c b/operations/workshop/shadows-highlights.c
index 5e88bf8..9793374 100644
--- a/operations/workshop/shadows-highlights.c
+++ b/operations/workshop/shadows-highlights.c
@@ -19,22 +19,22 @@
 
 #ifdef GEGL_PROPERTIES
 
-property_double (s_amount, _("shadows amount"), 0.2)
+property_double (s_amount, _("Shadows amount"), 0.2)
     value_range (0.0, 1.0)
 
-property_double (s_tonalwidth, _("shadows tonal width"), 0.1)
+property_double (s_tonalwidth, _("Shadows tonal width"), 0.1)
     value_range (0.001, 1.0)
 
-property_double (s_radius, _("shadows radius"), 5.0)
+property_double (s_radius, _("Shadows radius"), 5.0)
     value_range (0.0, 100.0)
 
-property_double (h_amount, _("highlights amount"), 0.2)
+property_double (h_amount, _("Highlights amount"), 0.2)
     value_range (0.0, 1.0)
 
-property_double (h_tonalwidth, _("highlights tonal width"), 0.1)
+property_double (h_tonalwidth, _("Highlights tonal width"), 0.1)
     value_range (0.001, 1.0)
 
-property_double (h_radius, _("highlights radius"), 5.0)
+property_double (h_radius, _("Highlights radius"), 5.0)
     value_range (0.0, 100.0)
 
 #else
@@ -103,9 +103,9 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
     "name",        "gegl:shadows-highlights",
-    "title",       _("Shadows Highlights"),
+    "title",       _("Shadows-Highlights"),
     "categories",  "light",
-    "description", _("Performs shadows and highlights correction"),
+    "description", _("Perform shadows and highlights correction"),
     NULL);
 }
 


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