[gimp/gimp-2-10] Issue #3500 - Preferences option to convert to Preferred RGB profile...
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gimp-2-10] Issue #3500 - Preferences option to convert to Preferred RGB profile...
- Date: Fri, 21 Jun 2019 10:51:51 +0000 (UTC)
commit f73e31571a85e303e9d7228f80f4ccf605602656
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.
(cherry picked from commit d67f4604aab170f033acf9126c1976ca5a83d85e)
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 1202ca35e3..055708010b 100644
--- a/app/core/core-enums.c
+++ b/app/core/core-enums.c
@@ -185,7 +185,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 7cb5a71c09..5448cccb37 100644
--- a/app/core/core-enums.h
+++ b/app/core/core-enums.h
@@ -117,7 +117,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 2f268626e7..86f2be3a14 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]