bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Untranslated strings in readelf.c


From: Frédéric Marchal
Subject: Untranslated strings in readelf.c
Date: Fri, 16 Apr 2010 09:13:27 +0200
User-agent: KMail/1.9.9

Hello,

Several untranlated strings exist in binutils 2.20 in function 
process_mips_specific of readelf.c. In particular around this place:

  10048       printf (_(" Reserved entries:\n"));
  10049       printf (_("  %*s %10s %*s Purpose\n"),
  10050               addr_size * 2, "Address", "Access",
  10051               addr_size * 2, "Initial");
  10052       entry = print_mips_got_entry (data, pltgot, entry);
  10053       printf (" Lazy resolver\n");
  10054       if (data
  10055           && (byte_get (data + entry - pltgot, addr_size)
  10056               >> (addr_size * 8 - 1)) != 0)
  10057         {
  10058           entry = print_mips_got_entry (data, pltgot, entry);
  10059           printf (" Module pointer (GNU extension)\n");
  10060         }
  10061       printf ("\n");
  10062
  10063       if (entry < local_end)
  10064         {
  10065           printf (_(" Local entries:\n"));
  10066           printf (_("  %*s %10s %*s\n"),
  10067                   addr_size * 2, "Address", "Access",
  10068                   addr_size * 2, "Initial");

Note the missing _() around "Address", "Access" and "Initial" in the two 
printf.

Frederic




reply via email to

[Prev in Thread] Current Thread [Next in Thread]