mirror of https://github.com/GNOME/gimp.git
app: fix some RGB/sRGB mixup in 2 labels.
This commit is contained in:
parent
0d7c26f129
commit
12348f5241
|
@ -220,7 +220,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_BUILTIN, NC_("color-profile-policy", "Convert to built-in sRGB or grayscale profile"), NULL },
|
||||
{ GIMP_COLOR_PROFILE_POLICY_CONVERT_PREFERRED, NC_("color-profile-policy", "Convert to preferred sRGB or grayscale profile (defaulting to built-in)"), NULL },
|
||||
{ GIMP_COLOR_PROFILE_POLICY_CONVERT_PREFERRED, NC_("color-profile-policy", "Convert to preferred RGB or grayscale profile (defaulting to built-in)"), NULL },
|
||||
{ 0, NULL, NULL }
|
||||
};
|
||||
|
||||
|
|
|
@ -139,7 +139,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_BUILTIN, /*< desc="Convert to built-in sRGB or grayscale profile" >*/
|
||||
GIMP_COLOR_PROFILE_POLICY_CONVERT_PREFERRED, /*< desc="Convert to preferred sRGB or grayscale profile (defaulting to built-in)" >*/
|
||||
GIMP_COLOR_PROFILE_POLICY_CONVERT_PREFERRED, /*< desc="Convert to preferred RGB or grayscale profile (defaulting to built-in)" >*/
|
||||
} GimpColorProfilePolicy;
|
||||
|
||||
|
||||
|
|
|
@ -165,7 +165,7 @@ color_profile_import_dialog_run (GimpImage *image,
|
|||
if (gimp_image_get_base_type (image) == GIMP_GRAY)
|
||||
frame_title = _("Convert the image to the preferred grayscale color profile?");
|
||||
else
|
||||
frame_title = _("Convert the image to the preferred sRGB color profile?");
|
||||
frame_title = _("Convert the image to the preferred RGB color profile?");
|
||||
|
||||
frame = gimp_frame_new (frame_title);
|
||||
gtk_stack_add_titled (GTK_STACK (stack), frame, "preferred", "Preferred Profile");
|
||||
|
|
Loading…
Reference in New Issue