Mark few forgotten strings for translation.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-05-07 11:41:47 +02:00
parent e34092fdf1
commit d22840ec12
6 changed files with 14 additions and 8 deletions

View file

@ -311,13 +311,13 @@ main (int argc, char **argv)
buf = malloc (len);
if (!buf)
{
printf ("Couldn't malloc buffer\n");
printf (_("error: %s.\n"), _("out of memory"));
fclose (f);
return 2;
}
if (fread (buf, 1, len, f) != len)
{
printf ("Read failed\n");
printf (_("cannot read `%s': %s"), strerror (errno));
free (buf);
fclose (f);
return 2;