* grub-core/commands/videoinfo.c: Use "paletted" rather than "packed
pixel".
This commit is contained in:
parent
c5dbc13d28
commit
16940e077c
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/commands/videoinfo.c: Use "paletted" rather than "packed
|
||||||
|
pixel".
|
||||||
|
|
||||||
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Menu color test.
|
Menu color test.
|
||||||
|
|
|
@ -73,9 +73,9 @@ hook (const struct grub_video_mode_info *info, void *hook_arg)
|
||||||
info->blue_field_pos,
|
info->blue_field_pos,
|
||||||
info->reserved_field_pos);
|
info->reserved_field_pos);
|
||||||
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_INDEX_COLOR)
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_INDEX_COLOR)
|
||||||
/* TRANSLATORS: In "packed pixel" mode you write the index of the color
|
/* TRANSLATORS: In "paletted color" mode you write the index of the color
|
||||||
in the palette. Synonyms include "paletted color". */
|
in the palette. Synonyms include "packed pixel". */
|
||||||
grub_xputs (_("Packed pixel "));
|
grub_xputs (_("Paletted "));
|
||||||
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_YUV)
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_YUV)
|
||||||
grub_xputs (_("YUV "));
|
grub_xputs (_("YUV "));
|
||||||
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_PLANAR)
|
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_PLANAR)
|
||||||
|
|
Loading…
Reference in a new issue