* grub-core/commands/videoinfo.c: Add TRANSLATORS comments.
* grub-core/commands/xnu_uuid.c: Likewise. * grub-core/loader/efi/appleloader.c: Likewise. * grub-core/script/execute.c: Likewise. * grub-core/script/main.c: Likewise. * util/grub-mkfont.c: Likewise.
This commit is contained in:
parent
1acc5b1f3d
commit
e8e0566b0c
7 changed files with 31 additions and 3 deletions
|
@ -55,6 +55,8 @@ hook (const struct grub_video_mode_info *info)
|
|||
grub_xputs (_("Text-only "));
|
||||
/* Show mask and position details for direct color modes. */
|
||||
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_RGB)
|
||||
/* TRANSLATORS: "Direct color" is a mode when the color components
|
||||
are written dirrectly into memory. */
|
||||
grub_printf_ (N_("Direct color, mask: %d/%d/%d/%d pos: %d/%d/%d/%d"),
|
||||
info->red_mask_size,
|
||||
info->green_mask_size,
|
||||
|
@ -65,6 +67,8 @@ hook (const struct grub_video_mode_info *info)
|
|||
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 "));
|
||||
if (info->mode_type & GRUB_VIDEO_MODE_TYPE_YUV)
|
||||
grub_xputs (_("YUV "));
|
||||
|
|
|
@ -100,6 +100,8 @@ static grub_command_t cmd;
|
|||
GRUB_MOD_INIT (xnu_uuid)
|
||||
{
|
||||
cmd = grub_register_command ("xnu_uuid", grub_cmd_xnu_uuid,
|
||||
/* TRANSLATORS: GRUBUUID stands for "filesystem
|
||||
UUID as used in GRUB". */
|
||||
N_("[-l] GRUBUUID [VARNAME]"),
|
||||
N_("Transform 64-bit UUID to format "
|
||||
"suitable for XNU. If -l is given keep "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue