libgimpbase: Add mnemonics to Convert Indexed options
This commit is contained in:
parent
f016b61ebc
commit
06915ec881
2 changed files with 8 additions and 8 deletions
|
|
@ -384,10 +384,10 @@ gimp_convert_palette_type_get_type (void)
|
|||
|
||||
static const GimpEnumDesc descs[] =
|
||||
{
|
||||
{ GIMP_CONVERT_PALETTE_GENERATE, NC_("convert-palette-type", "Generate optimum palette"), NULL },
|
||||
{ GIMP_CONVERT_PALETTE_WEB, NC_("convert-palette-type", "Use web-optimized palette"), NULL },
|
||||
{ GIMP_CONVERT_PALETTE_MONO, NC_("convert-palette-type", "Use black and white (1-bit) palette"), NULL },
|
||||
{ GIMP_CONVERT_PALETTE_CUSTOM, NC_("convert-palette-type", "Use custom palette"), NULL },
|
||||
{ GIMP_CONVERT_PALETTE_GENERATE, NC_("convert-palette-type", "_Generate optimum palette"), NULL },
|
||||
{ GIMP_CONVERT_PALETTE_WEB, NC_("convert-palette-type", "Use _web-optimized palette"), NULL },
|
||||
{ GIMP_CONVERT_PALETTE_MONO, NC_("convert-palette-type", "Use _black and white (1-bit) palette"), NULL },
|
||||
{ GIMP_CONVERT_PALETTE_CUSTOM, NC_("convert-palette-type", "Use custom _palette"), NULL },
|
||||
{ 0, NULL, NULL }
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -293,10 +293,10 @@ GType gimp_convert_palette_type_get_type (void) G_GNUC_CONST;
|
|||
|
||||
typedef enum
|
||||
{
|
||||
GIMP_CONVERT_PALETTE_GENERATE, /*< desc="Generate optimum palette" >*/
|
||||
GIMP_CONVERT_PALETTE_WEB, /*< desc="Use web-optimized palette" >*/
|
||||
GIMP_CONVERT_PALETTE_MONO, /*< desc="Use black and white (1-bit) palette" >*/
|
||||
GIMP_CONVERT_PALETTE_CUSTOM /*< desc="Use custom palette" >*/
|
||||
GIMP_CONVERT_PALETTE_GENERATE, /*< desc="_Generate optimum palette" >*/
|
||||
GIMP_CONVERT_PALETTE_WEB, /*< desc="Use _web-optimized palette" >*/
|
||||
GIMP_CONVERT_PALETTE_MONO, /*< desc="Use _black and white (1-bit) palette" >*/
|
||||
GIMP_CONVERT_PALETTE_CUSTOM /*< desc="Use custom _palette" >*/
|
||||
} GimpConvertPaletteType;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue