Improve string. Gettextize.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-12 15:25:25 +01:00
parent 78dde88e8c
commit d61386e21d
64 changed files with 219 additions and 131 deletions

View file

@ -50,7 +50,7 @@ execute_command (const char *name, int n, char **args)
cmd = grub_command_find (name);
if (! cmd)
grub_util_error (_("can\'t find command %s"), name);
grub_util_error (_("can't find command `%s'"), name);
return (cmd->func) (cmd, n, args);
}

View file

@ -938,7 +938,7 @@ SUFFIX (load_image) (const char *kernel_path, grub_size_t *exec_size,
num_sections = grub_target_to_host16 (e->e_shnum);
if (kernel_size < section_offset + section_entsize * num_sections)
grub_util_error ("invalid ELF format");
grub_util_error (_("premature end of file %s"), kernel_path);
sections = (Elf_Shdr *) (kernel_img + section_offset);
@ -1025,7 +1025,7 @@ SUFFIX (load_image) (const char *kernel_path, grub_size_t *exec_size,
#endif
if (! symtab_section)
grub_util_error ("no symbol table");
grub_util_error ("%s", _("no symbol table"));
}
else
{

View file

@ -61,7 +61,7 @@ execute_command (const char *name, int n, char **args)
cmd = grub_command_find (name);
if (! cmd)
grub_util_error (_("can\'t find command %s"), name);
grub_util_error (_("can't find command `%s'"), name);
return (cmd->func) (cmd, n, args);
}