Decrease number of strings to translate.
This commit is contained in:
parent
74fa9417e5
commit
57a691b7e7
12 changed files with 29 additions and 24 deletions
|
@ -29,7 +29,7 @@ GRUB_MOD_LICENSE ("GPLv3+");
|
|||
|
||||
static const struct grub_arg_option options[] =
|
||||
{
|
||||
{ "set", 's', 0, N_("Variable name to update."), N_("VARNAME"), ARG_TYPE_STRING },
|
||||
{ "set", 's', 0, N_("Set a variable to return value."), N_("VARNAME"), ARG_TYPE_STRING },
|
||||
{ "upcase", 'U', 0, N_("Translate to upper case."), 0, 0 },
|
||||
{ "downcase", 'D', 0, N_("Translate to lower case."), 0, 0 },
|
||||
{ 0, 0, 0, 0, 0, 0 }
|
||||
|
|
|
@ -149,7 +149,7 @@ grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr,
|
|||
|
||||
if (!grub_arm_64_check_xxxx26_offset (offset))
|
||||
return grub_error (GRUB_ERR_BAD_MODULE,
|
||||
N_("Trampoline out of range"));
|
||||
"trampoline out of range");
|
||||
|
||||
grub_arm64_set_xxxx26_offset (place, offset);
|
||||
}
|
||||
|
|
|
@ -695,9 +695,9 @@ static grub_command_t cmd_xen, cmd_initrd, cmd_module, cmd_multiboot;
|
|||
GRUB_MOD_INIT (xen)
|
||||
{
|
||||
cmd_xen = grub_register_command ("linux", grub_cmd_xen,
|
||||
0, N_("Load linux."));
|
||||
0, N_("Load Linux."));
|
||||
cmd_multiboot = grub_register_command ("multiboot", grub_cmd_xen,
|
||||
0, N_("Load linux."));
|
||||
0, N_("Load Linux."));
|
||||
cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd,
|
||||
0, N_("Load initrd."));
|
||||
cmd_module = grub_register_command ("module", grub_cmd_module,
|
||||
|
|
|
@ -32,7 +32,7 @@ grub_osdep_dl_memalign (grub_size_t align, grub_size_t size)
|
|||
void *ret;
|
||||
if (align > 4096)
|
||||
{
|
||||
grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET, N_("too large alignment"));
|
||||
grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET, "too large alignment");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue