]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/commands/videoinfo.c: Use "paletted" rather than "packed
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 7 May 2013 12:44:05 +0000 (14:44 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 7 May 2013 12:44:05 +0000 (14:44 +0200)
pixel".

ChangeLog
grub-core/commands/videoinfo.c

index b7b37773beb499461ba31c4c5e1dc2a2e4f3716c..8b77759778c3747161f2e3361d79d3bcece3f397 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        Menu color test.
index 7a75c9d5a92b543184647f2176dbe14461cb52af..4be8107d553a1e2fa582fd292ba58e36312c2372 100644 (file)
@@ -73,9 +73,9 @@ hook (const struct grub_video_mode_info *info, void *hook_arg)
                  info->blue_field_pos,
                  info->reserved_field_pos);
   if (info->mode_type & GRUB_VIDEO_MODE_TYPE_INDEX_COLOR)
-    /* TRANSLATORS: In "packed pixel" mode you write the index of the color
-       in the palette. Synonyms include "paletted color".  */
-    grub_xputs (_("Packed pixel "));
+    /* TRANSLATORS: In "paletted color" mode you write the index of the color
+       in the palette. Synonyms include "packed pixel".  */
+    grub_xputs (_("Paletted "));
   if (info->mode_type & GRUB_VIDEO_MODE_TYPE_YUV)
     grub_xputs (_("YUV "));
   if (info->mode_type & GRUB_VIDEO_MODE_TYPE_PLANAR)