[gimp] Issue #3500 - Preferences option to convert to Preferred RGB profile...



commit d67f4604aab170f033acf9126c1976ca5a83d85e
Author: Michael Natterer <mitch gimp org>
Date:   Fri Jun 21 12:34:56 2019 +0200

    Issue #3500 - Preferences option to convert to Preferred RGB profile...
    
    ...doesn't work
    
    Rename the labels to "built-in sRGB color profile" and "built-in
    grayscale color profile" because that's what the option does, it never
    converted to the preferred profiles from preferences.

 app/core/core-enums.c                     | 2 +-
 app/core/core-enums.h                     | 2 +-
 app/dialogs/color-profile-import-dialog.c | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/app/core/core-enums.c b/app/core/core-enums.c
index 222d678915..90580abdf5 100644
--- a/app/core/core-enums.c
+++ b/app/core/core-enums.c
@@ -216,7 +216,7 @@ gimp_color_profile_policy_get_type (void)
   {
     { GIMP_COLOR_PROFILE_POLICY_ASK, NC_("color-profile-policy", "Ask what to do"), NULL },
     { GIMP_COLOR_PROFILE_POLICY_KEEP, NC_("color-profile-policy", "Keep embedded profile"), NULL },
-    { GIMP_COLOR_PROFILE_POLICY_CONVERT, NC_("color-profile-policy", "Convert to preferred RGB color 
profile"), NULL },
+    { GIMP_COLOR_PROFILE_POLICY_CONVERT, NC_("color-profile-policy", "Convert to built-in sRGB or grayscale 
profile"), NULL },
     { 0, NULL, NULL }
   };
 
diff --git a/app/core/core-enums.h b/app/core/core-enums.h
index d10068c6b3..4b6ea7c0ac 100644
--- a/app/core/core-enums.h
+++ b/app/core/core-enums.h
@@ -137,7 +137,7 @@ typedef enum  /*< pdb-skip >*/
 {
   GIMP_COLOR_PROFILE_POLICY_ASK,    /*< desc="Ask what to do"           >*/
   GIMP_COLOR_PROFILE_POLICY_KEEP,   /*< desc="Keep embedded profile"    >*/
-  GIMP_COLOR_PROFILE_POLICY_CONVERT /*< desc="Convert to preferred RGB color profile" >*/
+  GIMP_COLOR_PROFILE_POLICY_CONVERT /*< desc="Convert to built-in sRGB or grayscale profile" >*/
 } GimpColorProfilePolicy;
 
 
diff --git a/app/dialogs/color-profile-import-dialog.c b/app/dialogs/color-profile-import-dialog.c
index 94ea02ff99..bcba551d90 100644
--- a/app/dialogs/color-profile-import-dialog.c
+++ b/app/dialogs/color-profile-import-dialog.c
@@ -83,12 +83,12 @@ color_profile_import_dialog_run (GimpImage                 *image,
   if (gimp_image_get_base_type (image) == GIMP_GRAY)
     {
       title       = _("Convert to Grayscale Working Space?");
-      frame_title = _("Convert the image to the grayscale working space?");
+      frame_title = _("Convert the image to the built-in grayscale color profile?");
     }
   else
     {
       title       = _("Convert to RGB Working Space?");
-      frame_title = _("Convert the image to the RGB working space?");
+      frame_title = _("Convert the image to the built-in sRGB color profile?");
     }
 
   dialog =


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