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 _______________________________________________ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils