[gimp] app: modify unabbreviated value descriptions of GimpGradientColor



commit a08a9171d71607bc641b20db1df738e51aa4fb02
Author: Ell <ell_se yahoo com>
Date:   Thu Nov 30 03:59:36 2017 -0500

    app: modify unabbreviated value descriptions of GimpGradientColor
    
    ... to match the old gradient editor menu labels.

 app/core/core-enums.c |   16 ++++++++--------
 app/core/core-enums.h |   10 +++++-----
 2 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/app/core/core-enums.c b/app/core/core-enums.c
index 97e3150..6f1ccde 100644
--- a/app/core/core-enums.c
+++ b/app/core/core-enums.c
@@ -990,20 +990,20 @@ gimp_gradient_color_get_type (void)
   static const GimpEnumDesc descs[] =
   {
     { GIMP_GRADIENT_COLOR_FIXED, NC_("gradient-color", "Fixed"), NULL },
-    { GIMP_GRADIENT_COLOR_FOREGROUND, NC_("gradient-color", "Foreground"), NULL },
-    /* Translators: this is an abbreviated version of "Foreground".
+    { GIMP_GRADIENT_COLOR_FOREGROUND, NC_("gradient-color", "Foreground color"), NULL },
+    /* Translators: this is an abbreviated version of "Foreground color".
        Keep it short. */
     { GIMP_GRADIENT_COLOR_FOREGROUND, NC_("gradient-color", "FG"), NULL },
-    { GIMP_GRADIENT_COLOR_FOREGROUND_TRANSPARENT, NC_("gradient-color", "Foreground (transarent)"), NULL },
-    /* Translators: this is an abbreviated version of "Foreground (transarent)".
+    { GIMP_GRADIENT_COLOR_FOREGROUND_TRANSPARENT, NC_("gradient-color", "Foreground color (transarent)"), 
NULL },
+    /* Translators: this is an abbreviated version of "Foreground color (transarent)".
        Keep it short. */
     { GIMP_GRADIENT_COLOR_FOREGROUND_TRANSPARENT, NC_("gradient-color", "FG (t)"), NULL },
-    { GIMP_GRADIENT_COLOR_BACKGROUND, NC_("gradient-color", "Background"), NULL },
-    /* Translators: this is an abbreviated version of "Background".
+    { GIMP_GRADIENT_COLOR_BACKGROUND, NC_("gradient-color", "Background color"), NULL },
+    /* Translators: this is an abbreviated version of "Background color".
        Keep it short. */
     { GIMP_GRADIENT_COLOR_BACKGROUND, NC_("gradient-color", "BG"), NULL },
-    { GIMP_GRADIENT_COLOR_BACKGROUND_TRANSPARENT, NC_("gradient-color", "Background (transparent)"), NULL },
-    /* Translators: this is an abbreviated version of "Background (transparent)".
+    { GIMP_GRADIENT_COLOR_BACKGROUND_TRANSPARENT, NC_("gradient-color", "Background color (transparent)"), 
NULL },
+    /* Translators: this is an abbreviated version of "Background color (transparent)".
        Keep it short. */
     { GIMP_GRADIENT_COLOR_BACKGROUND_TRANSPARENT, NC_("gradient-color", "BG (t)"), NULL },
     { 0, NULL, NULL }
diff --git a/app/core/core-enums.h b/app/core/core-enums.h
index b7f6476..515c571 100644
--- a/app/core/core-enums.h
+++ b/app/core/core-enums.h
@@ -467,11 +467,11 @@ GType gimp_gradient_color_get_type (void) G_GNUC_CONST;
 
 typedef enum  /*< pdb-skip >*/
 {
-  GIMP_GRADIENT_COLOR_FIXED,                  /*< desc="Fixed"                                     >*/
-  GIMP_GRADIENT_COLOR_FOREGROUND,             /*< desc="Foreground",               abbrev="FG"     >*/
-  GIMP_GRADIENT_COLOR_FOREGROUND_TRANSPARENT, /*< desc="Foreground (transarent)",  abbrev="FG (t)" >*/
-  GIMP_GRADIENT_COLOR_BACKGROUND,             /*< desc="Background",               abbrev="BG"     >*/
-  GIMP_GRADIENT_COLOR_BACKGROUND_TRANSPARENT  /*< desc="Background (transparent)", abbrev="BG (t)" >*/
+  GIMP_GRADIENT_COLOR_FIXED,                  /*< desc="Fixed"                                           >*/
+  GIMP_GRADIENT_COLOR_FOREGROUND,             /*< desc="Foreground color",               abbrev="FG"     >*/
+  GIMP_GRADIENT_COLOR_FOREGROUND_TRANSPARENT, /*< desc="Foreground color (transarent)",  abbrev="FG (t)" >*/
+  GIMP_GRADIENT_COLOR_BACKGROUND,             /*< desc="Background color",               abbrev="BG"     >*/
+  GIMP_GRADIENT_COLOR_BACKGROUND_TRANSPARENT  /*< desc="Background color (transparent)", abbrev="BG (t)" >*/
 } GimpGradientColor;
 
 


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