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 d67f4604aa)
This commit is contained in:
Michael Natterer
2019-06-21 12:34:56 +02:00
parent f97464f7bf
commit f73e31571a
3 changed files with 4 additions and 4 deletions

View File

@ -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 }
};

View File

@ -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;

View File

@ -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 =