From: Ulrich Drepper Date: Sun, 2 Oct 2011 12:33:19 +0000 (-0400) Subject: Add demangling support to nm X-Git-Tag: elfutils-0.153~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b4a16cf0c61746e9b2414570e82e0efcfdf1e721;p=thirdparty%2Felfutils.git Add demangling support to nm --- diff --git a/ChangeLog b/ChangeLog index 0319e7e61..ff9496f3c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-10-02 Ulrich Drepper + + * configure.ac: Check for __cxa_demangle in libstdc++. + 2011-02-08 Roland McGrath * configure.ac (C99 check): Use AC_LANG_SOURCE. diff --git a/NEWS b/NEWS index e4b2402fb..75db63c05 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,8 @@ Version 0.153 libdw: Support reading .zdebug_* DWARF sections compressed via zlib. +nm: Support C++ demangling. + Version 0.152 Various build and warning nits fixed for newest GCC and Autoconf. @@ -97,8 +99,8 @@ libdwfl: Support automatic decompression of files in XZ format, Version 0.142: libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx alias - for elf_getshstrndx and deprecate original names. Sun screwed up - their implementation and asked for a solution. + for elf_getshstrndx and deprecate original names. Sun screwed up + their implementation and asked for a solution. libebl: Add support for STB_GNU_UNIQUE. @@ -135,7 +137,7 @@ Version 0.139: libcpu: Add Intel SSE4 disassembler support readelf: Implement call frame information and exception handling dumping. - Add -e option. Enable it implicitly for -a. + Add -e option. Enable it implicitly for -a. elflint: Check PT_GNU_EH_FRAME program header entry. diff --git a/configure.ac b/configure.ac index b68f543f9..f792d43d4 100644 --- a/configure.ac +++ b/configure.ac @@ -172,7 +172,7 @@ test "$use_mudflap" = yes -o "$use_gprof" = yes -o "$use_gcov" = yes]) AC_ARG_ENABLE([tests-rpath], AS_HELP_STRING([--enable-tests-rpath],[build $ORIGIN-using rpath into tests]), - [tests_use_rpath=yes], [tests_use_rpath=no]) + [tests_use_rpath=yes], [tests_use_rpath=no]) AM_CONDITIONAL(TESTS_RPATH, test "$tests_use_rpath" = yes) LIBEBL_SUBDIR="$PACKAGE" @@ -195,6 +195,10 @@ zip_LIBS="$LIBS" LIBS="$save_LIBS" AC_SUBST([zip_LIBS]) +AC_CHECK_LIB([stdc++], [__cxa_demangle], [dnl +AC_DEFINE([USE_DEMANGLE], [1], [Defined if demangling is enabled])]) +AM_CONDITIONAL(DEMANGLE, test "$ac_cv_lib_stdcpp___cxa_demangle" = yes) + dnl The directories with content. dnl Documentation. diff --git a/lib/ChangeLog b/lib/ChangeLog index cf7768847..a6fec3094 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2011-10-02 Ulrich Drepper + + * system.h: Declare __cxa_demangle. + 2011-07-09 Roland McGrath * sha1.c (be64_copy): New function. diff --git a/lib/system.h b/lib/system.h index 269542642..8e32c3a1f 100644 --- a/lib/system.h +++ b/lib/system.h @@ -102,4 +102,9 @@ extern int crc32_file (int fd, uint32_t *resp); #define ARGP_PROGRAM_BUG_ADDRESS_DEF \ const char *const apba__ __asm ("argp_program_bug_address") + +/* The demangler from libstdc++. */ +extern char *__cxa_demangle (const char *mangled_name, char *output_buffer, + size_t *length, int *status); + #endif /* system.h */ diff --git a/po/de.po b/po/de.po index 7be8eb4d4..ad78f210e 100644 --- a/po/de.po +++ b/po/de.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: elfutils VERSION\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" -"POT-Creation-Date: 2011-07-09 02:32-0700\n" +"POT-Creation-Date: 2011-09-29 15:40-0400\n" "PO-Revision-Date: 2009-06-29 15:15+0200\n" "Last-Translator: Michael Münch \n" "Language-Team: German\n" @@ -22,8 +22,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 0.3\n" -#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2841 -#: src/readelf.c:3180 src/unstrip.c:2098 src/unstrip.c:2306 +#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2844 +#: src/readelf.c:3183 src/unstrip.c:2098 src/unstrip.c:2306 #, c-format msgid "memory exhausted" msgstr "Kein Speicher mehr verfügbar" @@ -472,7 +472,7 @@ msgstr "ungültige Grösse des Quell-Operanden" msgid "invalid size of destination operand" msgstr "ungültige Grösse des Ziel-Operanden" -#: libelf/elf_error.c:108 src/readelf.c:5173 +#: libelf/elf_error.c:108 src/readelf.c:5176 #, c-format msgid "invalid encoding" msgstr "ungültige Kodierung" @@ -555,8 +555,8 @@ msgstr "data/scn Unterschied" msgid "invalid section header" msgstr "ungültiger Abschnitts-Header" -#: libelf/elf_error.c:208 src/readelf.c:6850 src/readelf.c:6951 -#: src/readelf.c:7113 +#: libelf/elf_error.c:208 src/readelf.c:6853 src/readelf.c:6954 +#: src/readelf.c:7116 #, c-format msgid "invalid data" msgstr "Ungültige Daten" @@ -642,7 +642,7 @@ msgstr "" #: src/addr2line.c:189 src/ar.c:289 src/elfcmp.c:670 src/elflint.c:239 #: src/findtextrel.c:170 src/ld.c:957 src/nm.c:253 src/objdump.c:181 -#: src/ranlib.c:136 src/readelf.c:459 src/size.c:219 src/strings.c:227 +#: src/ranlib.c:136 src/readelf.c:462 src/size.c:219 src/strings.c:227 #: src/strip.c:221 src/unstrip.c:234 #, c-format msgid "" @@ -657,7 +657,7 @@ msgstr "" #: src/addr2line.c:194 src/ar.c:294 src/elfcmp.c:675 src/elflint.c:244 #: src/findtextrel.c:175 src/ld.c:962 src/nm.c:258 src/objdump.c:186 -#: src/ranlib.c:141 src/readelf.c:464 src/size.c:224 src/strings.c:232 +#: src/ranlib.c:141 src/readelf.c:467 src/size.c:224 src/strings.c:232 #: src/strip.c:226 src/unstrip.c:239 #, c-format msgid "Written by %s.\n" @@ -816,112 +816,112 @@ msgstr "Archivname erforderlich" msgid "More than one operation specified" msgstr "Mehr als eine Operation angegeben" -#: src/ar.c:404 +#: src/ar.c:408 #, c-format msgid "cannot open archive '%s'" msgstr "Konnte Archiv '%s' nicht öffnen" -#: src/ar.c:414 +#: src/ar.c:418 #, c-format msgid "cannot open archive '%s': %s" msgstr "Konnte Archiv '%s': %s nicht öffnen" -#: src/ar.c:418 +#: src/ar.c:422 #, c-format msgid "%s: not an archive file" msgstr "%s: Keine Archiv-Datei" -#: src/ar.c:422 +#: src/ar.c:426 #, c-format msgid "cannot stat archive '%s'" msgstr "" -#: src/ar.c:434 +#: src/ar.c:438 #, c-format msgid "no entry %s in archive\n" msgstr "Kein Eintrag %s in Archiv\n" -#: src/ar.c:487 src/ar.c:929 src/ar.c:1129 +#: src/ar.c:491 src/ar.c:933 src/ar.c:1133 #, c-format msgid "cannot create hash table" msgstr "Konnte Hash-Tabelle nicht erstellen" -#: src/ar.c:494 src/ar.c:936 src/ar.c:1138 +#: src/ar.c:498 src/ar.c:940 src/ar.c:1142 #, c-format msgid "cannot insert into hash table" msgstr "Konnte nicht in Hash-Tabelle einfügen" -#: src/ar.c:502 src/ranlib.c:176 +#: src/ar.c:506 src/ranlib.c:176 #, c-format msgid "cannot stat '%s'" msgstr "" -#: src/ar.c:598 +#: src/ar.c:602 #, c-format msgid "cannot read content of %s: %s" msgstr "Konnte Inhalt von %s: %s nicht lesen" -#: src/ar.c:641 +#: src/ar.c:645 #, c-format msgid "cannot open %.*s" msgstr "Konnte %.*s nicht öffnen" -#: src/ar.c:663 +#: src/ar.c:667 #, c-format msgid "failed to write %s" msgstr "Konnte %s nicht schreiben" -#: src/ar.c:675 +#: src/ar.c:679 #, c-format msgid "cannot change mode of %s" msgstr "" -#: src/ar.c:691 +#: src/ar.c:695 #, c-format msgid "cannot change modification time of %s" msgstr "Konnte Bearbeitungszeit von %s nicht ändern" -#: src/ar.c:737 +#: src/ar.c:741 #, c-format msgid "cannot rename temporary file to %.*s" msgstr "Konnte temporäre Datei nicht in %.*s umbenennen" -#: src/ar.c:773 src/ar.c:1021 src/ar.c:1419 src/ranlib.c:250 +#: src/ar.c:777 src/ar.c:1025 src/ar.c:1423 src/ranlib.c:250 #, c-format msgid "cannot create new file" msgstr "neue Datei konnte nicht angelegt werden" -#: src/ar.c:1220 +#: src/ar.c:1224 #, c-format msgid "position member %s not found" msgstr "" -#: src/ar.c:1230 +#: src/ar.c:1234 #, c-format msgid "%s: no entry %s in archive!\n" msgstr "%s: Kein Eintrag %s in dem Archiv!\n" -#: src/ar.c:1259 src/ldgeneric.c:517 src/objdump.c:257 +#: src/ar.c:1263 src/ldgeneric.c:517 src/objdump.c:257 #, c-format msgid "cannot open %s" msgstr "Konnte %s nicht öffnen" -#: src/ar.c:1264 +#: src/ar.c:1268 #, c-format msgid "cannot stat %s" msgstr "" -#: src/ar.c:1270 +#: src/ar.c:1274 #, c-format msgid "%s is no regular file" msgstr "%s ist keine reguläre Datei" -#: src/ar.c:1283 +#: src/ar.c:1287 #, c-format msgid "cannot get ELF descriptor for %s: %s\n" msgstr "" -#: src/ar.c:1302 +#: src/ar.c:1306 #, c-format msgid "cannot read %s: %s" msgstr "Konnte %s: %s nicht lesen" @@ -1165,11 +1165,11 @@ msgstr "" msgid "Pedantic checking of ELF files compliance with gABI/psABI spec." msgstr "" -#: src/elflint.c:86 src/readelf.c:118 +#: src/elflint.c:86 src/readelf.c:119 msgid "FILE..." msgstr "DATEI..." -#: src/elflint.c:159 src/readelf.c:274 +#: src/elflint.c:159 src/readelf.c:275 #, c-format msgid "cannot open input file" msgstr "Kann Eingabedatei nicht öffnen" @@ -1188,7 +1188,7 @@ msgstr "Fehler beim Schliessen des Elf-Desktriptor: %s\n" msgid "No errors" msgstr "Keine Fehler" -#: src/elflint.c:223 src/readelf.c:435 +#: src/elflint.c:223 src/readelf.c:436 msgid "Missing file name.\n" msgstr "Dateiname fehlt.\n" @@ -3262,7 +3262,7 @@ msgstr "" msgid "Warning: size of `%s' changed from % in %s to % in %s" msgstr "" -#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:639 src/strip.c:570 +#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:642 src/strip.c:570 #, c-format msgid "cannot determine number of sections: %s" msgstr "" @@ -3694,11 +3694,11 @@ msgstr "%s%s%s: Dateiformat nicht erkannt" msgid "cannot create search tree" msgstr "Kann Suchbaum nicht erstellen" -#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:895 -#: src/readelf.c:1038 src/readelf.c:1186 src/readelf.c:1368 src/readelf.c:1568 -#: src/readelf.c:1754 src/readelf.c:1964 src/readelf.c:2218 src/readelf.c:2284 -#: src/readelf.c:2362 src/readelf.c:2860 src/readelf.c:2896 src/readelf.c:2958 -#: src/readelf.c:7303 src/readelf.c:8208 src/readelf.c:8355 src/readelf.c:8423 +#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:898 +#: src/readelf.c:1041 src/readelf.c:1189 src/readelf.c:1371 src/readelf.c:1571 +#: src/readelf.c:1757 src/readelf.c:1967 src/readelf.c:2221 src/readelf.c:2287 +#: src/readelf.c:2365 src/readelf.c:2863 src/readelf.c:2899 src/readelf.c:2961 +#: src/readelf.c:7306 src/readelf.c:8211 src/readelf.c:8358 src/readelf.c:8426 #: src/size.c:425 src/size.c:499 src/strip.c:510 #, c-format msgid "cannot get section header string table index" @@ -3772,7 +3772,7 @@ msgstr "" msgid "Show information from FILEs (a.out by default)." msgstr "" -#: src/objdump.c:236 src/readelf.c:440 +#: src/objdump.c:236 src/readelf.c:441 msgid "No operation specified.\n" msgstr "Keine Operation angegeben.\n" @@ -3781,11 +3781,11 @@ msgstr "Keine Operation angegeben.\n" msgid "while close `%s'" msgstr "" -#: src/objdump.c:379 src/readelf.c:1663 src/readelf.c:1837 +#: src/objdump.c:379 src/readelf.c:1666 src/readelf.c:1840 msgid "INVALID SYMBOL" msgstr "" -#: src/objdump.c:394 src/readelf.c:1694 src/readelf.c:1870 +#: src/objdump.c:394 src/readelf.c:1697 src/readelf.c:1873 msgid "INVALID SECTION" msgstr "" @@ -3921,256 +3921,260 @@ msgstr "Ausgabekontrolle:" msgid "Do not find symbol names for addresses in DWARF data" msgstr "Keine symbolischen Namen für Adressen in DWARF-Daten suchen" -#: src/readelf.c:114 +#: src/readelf.c:110 +msgid "Ignored for compatibility (lines always wide)" +msgstr "" + +#: src/readelf.c:115 msgid "Print information from ELF file in human-readable form." msgstr "Informationen aus der ELF-Datei in menschenlesbarer Form ausgeben." -#: src/readelf.c:411 +#: src/readelf.c:412 #, c-format msgid "Unknown DWARF debug section `%s'.\n" msgstr "" -#: src/readelf.c:475 +#: src/readelf.c:478 #, c-format msgid "cannot generate Elf descriptor: %s" msgstr "konnte Elf-Deskriptor nicht erzeugen: %s" -#: src/readelf.c:487 +#: src/readelf.c:490 #, c-format msgid "'%s' is not an archive, cannot print archive index" msgstr "" -#: src/readelf.c:492 +#: src/readelf.c:495 #, c-format msgid "error while closing Elf descriptor: %s" msgstr "" -#: src/readelf.c:584 +#: src/readelf.c:587 #, c-format msgid "cannot stat input file" msgstr "" -#: src/readelf.c:586 +#: src/readelf.c:589 #, c-format msgid "input file is empty" msgstr "" -#: src/readelf.c:588 +#: src/readelf.c:591 #, c-format msgid "failed reading '%s': %s" msgstr "Konnte '%s' nicht lesen: %s" -#: src/readelf.c:624 +#: src/readelf.c:627 #, c-format msgid "cannot read ELF header: %s" msgstr "" -#: src/readelf.c:632 +#: src/readelf.c:635 #, c-format msgid "cannot create EBL handle" msgstr "" -#: src/readelf.c:645 +#: src/readelf.c:648 #, fuzzy, c-format msgid "cannot determine number of program headers: %s" msgstr "konnte Programm-Kopf nicht erstellen: %s" -#: src/readelf.c:731 +#: src/readelf.c:734 msgid "NONE (None)" msgstr "" -#: src/readelf.c:732 +#: src/readelf.c:735 msgid "REL (Relocatable file)" msgstr "" -#: src/readelf.c:733 +#: src/readelf.c:736 msgid "EXEC (Executable file)" msgstr "" -#: src/readelf.c:734 +#: src/readelf.c:737 msgid "DYN (Shared object file)" msgstr "" -#: src/readelf.c:735 +#: src/readelf.c:738 msgid "CORE (Core file)" msgstr "" -#: src/readelf.c:740 +#: src/readelf.c:743 #, c-format msgid "OS Specific: (%x)\n" msgstr "" -#: src/readelf.c:742 +#: src/readelf.c:745 #, c-format msgid "Processor Specific: (%x)\n" msgstr "" -#: src/readelf.c:752 +#: src/readelf.c:755 msgid "" "ELF Header:\n" " Magic: " msgstr "" -#: src/readelf.c:756 +#: src/readelf.c:759 #, c-format msgid "" "\n" " Class: %s\n" msgstr "" -#: src/readelf.c:761 +#: src/readelf.c:764 #, fuzzy, c-format msgid " Data: %s\n" msgstr " Daten: %s\n" -#: src/readelf.c:767 +#: src/readelf.c:770 #, c-format msgid " Ident Version: %hhd %s\n" msgstr "" -#: src/readelf.c:769 src/readelf.c:786 +#: src/readelf.c:772 src/readelf.c:789 msgid "(current)" msgstr "(aktuell)" -#: src/readelf.c:773 +#: src/readelf.c:776 #, c-format msgid " OS/ABI: %s\n" msgstr "" -#: src/readelf.c:776 +#: src/readelf.c:779 #, c-format msgid " ABI Version: %hhd\n" msgstr "" -#: src/readelf.c:779 +#: src/readelf.c:782 msgid " Type: " msgstr " Typ: " -#: src/readelf.c:782 +#: src/readelf.c:785 #, c-format msgid " Machine: %s\n" msgstr "" -#: src/readelf.c:784 +#: src/readelf.c:787 #, c-format msgid " Version: %d %s\n" msgstr "" -#: src/readelf.c:788 +#: src/readelf.c:791 #, c-format msgid " Entry point address: %#\n" msgstr "" -#: src/readelf.c:791 +#: src/readelf.c:794 #, c-format msgid " Start of program headers: % %s\n" msgstr "" -#: src/readelf.c:792 src/readelf.c:795 +#: src/readelf.c:795 src/readelf.c:798 msgid "(bytes into file)" msgstr "" -#: src/readelf.c:794 +#: src/readelf.c:797 #, c-format msgid " Start of section headers: % %s\n" msgstr "" -#: src/readelf.c:797 +#: src/readelf.c:800 #, c-format msgid " Flags: %s\n" msgstr "" -#: src/readelf.c:800 +#: src/readelf.c:803 #, c-format msgid " Size of this header: % %s\n" msgstr "" -#: src/readelf.c:801 src/readelf.c:804 src/readelf.c:821 +#: src/readelf.c:804 src/readelf.c:807 src/readelf.c:824 msgid "(bytes)" msgstr "(Bytes)" -#: src/readelf.c:803 +#: src/readelf.c:806 #, c-format msgid " Size of program header entries: % %s\n" msgstr "" -#: src/readelf.c:806 +#: src/readelf.c:809 #, c-format msgid " Number of program headers entries: %" msgstr "" -#: src/readelf.c:813 +#: src/readelf.c:816 #, c-format msgid " (% in [0].sh_info)" msgstr "" -#: src/readelf.c:816 src/readelf.c:833 src/readelf.c:847 +#: src/readelf.c:819 src/readelf.c:836 src/readelf.c:850 msgid " ([0] not available)" msgstr "" -#: src/readelf.c:820 +#: src/readelf.c:823 #, c-format msgid " Size of section header entries: % %s\n" msgstr "" -#: src/readelf.c:823 +#: src/readelf.c:826 #, c-format msgid " Number of section headers entries: %" msgstr "" -#: src/readelf.c:830 +#: src/readelf.c:833 #, c-format msgid " (% in [0].sh_size)" msgstr "" -#: src/readelf.c:843 +#: src/readelf.c:846 #, c-format msgid " (% in [0].sh_link)" msgstr "" -#: src/readelf.c:851 +#: src/readelf.c:854 #, c-format msgid "" " Section header string table index: XINDEX%s\n" "\n" msgstr "" -#: src/readelf.c:855 +#: src/readelf.c:858 #, c-format msgid "" " Section header string table index: %\n" "\n" msgstr "" -#: src/readelf.c:887 +#: src/readelf.c:890 #, c-format msgid "" "There are %d section headers, starting at offset %#:\n" "\n" msgstr "" -#: src/readelf.c:897 +#: src/readelf.c:900 msgid "Section Headers:" msgstr "" -#: src/readelf.c:900 +#: src/readelf.c:903 msgid "" "[Nr] Name Type Addr Off Size ES Flags Lk " "Inf Al" msgstr "" -#: src/readelf.c:902 +#: src/readelf.c:905 msgid "" "[Nr] Name Type Addr Off Size ES " "Flags Lk Inf Al" msgstr "" -#: src/readelf.c:909 src/readelf.c:1062 +#: src/readelf.c:912 src/readelf.c:1065 #, c-format msgid "cannot get section: %s" msgstr "" -#: src/readelf.c:916 src/readelf.c:1070 src/readelf.c:8375 src/unstrip.c:353 +#: src/readelf.c:919 src/readelf.c:1073 src/readelf.c:8378 src/unstrip.c:353 #: src/unstrip.c:384 src/unstrip.c:433 src/unstrip.c:541 src/unstrip.c:558 #: src/unstrip.c:594 src/unstrip.c:792 src/unstrip.c:1060 src/unstrip.c:1250 #: src/unstrip.c:1310 src/unstrip.c:1431 src/unstrip.c:1484 src/unstrip.c:1591 @@ -4179,39 +4183,39 @@ msgstr "" msgid "cannot get section header: %s" msgstr "" -#: src/readelf.c:974 +#: src/readelf.c:977 msgid "Program Headers:" msgstr "Programm-Köpfe:" -#: src/readelf.c:976 +#: src/readelf.c:979 msgid "" " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" msgstr "" -#: src/readelf.c:979 +#: src/readelf.c:982 msgid "" " Type Offset VirtAddr PhysAddr FileSiz " "MemSiz Flg Align" msgstr "" -#: src/readelf.c:1019 +#: src/readelf.c:1022 #, c-format msgid "\t[Requesting program interpreter: %s]\n" msgstr "" -#: src/readelf.c:1040 +#: src/readelf.c:1043 msgid "" "\n" " Section to Segment mapping:\n" " Segment Sections..." msgstr "" -#: src/readelf.c:1051 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 +#: src/readelf.c:1054 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 #, c-format msgid "cannot get program header: %s" msgstr "" -#: src/readelf.c:1192 +#: src/readelf.c:1195 #, c-format msgid "" "\n" @@ -4222,7 +4226,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:1197 +#: src/readelf.c:1200 #, c-format msgid "" "\n" @@ -4233,15 +4237,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:1205 +#: src/readelf.c:1208 msgid "" msgstr "" -#: src/readelf.c:1219 +#: src/readelf.c:1222 msgid "" msgstr "" -#: src/readelf.c:1370 +#: src/readelf.c:1373 #, c-format msgid "" "\n" @@ -4254,43 +4258,43 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:1382 +#: src/readelf.c:1385 msgid " Type Value\n" msgstr "" -#: src/readelf.c:1406 +#: src/readelf.c:1409 #, c-format msgid "Shared library: [%s]\n" msgstr "" -#: src/readelf.c:1411 +#: src/readelf.c:1414 #, c-format msgid "Library soname: [%s]\n" msgstr "" -#: src/readelf.c:1416 +#: src/readelf.c:1419 #, c-format msgid "Library rpath: [%s]\n" msgstr "" -#: src/readelf.c:1421 +#: src/readelf.c:1424 #, c-format msgid "Library runpath: [%s]\n" msgstr "" -#: src/readelf.c:1441 +#: src/readelf.c:1444 #, c-format msgid "% (bytes)\n" msgstr "" -#: src/readelf.c:1553 src/readelf.c:1739 +#: src/readelf.c:1556 src/readelf.c:1742 #, c-format msgid "" "\n" "Invalid symbol table at offset %#0\n" msgstr "" -#: src/readelf.c:1571 src/readelf.c:1756 +#: src/readelf.c:1574 src/readelf.c:1759 #, c-format msgid "" "\n" @@ -4303,7 +4307,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:1586 +#: src/readelf.c:1589 #, c-format msgid "" "\n" @@ -4314,29 +4318,29 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:1596 +#: src/readelf.c:1599 msgid " Offset Type Value Name\n" msgstr "" -#: src/readelf.c:1598 +#: src/readelf.c:1601 msgid " Offset Type Value Name\n" msgstr "" -#: src/readelf.c:1651 src/readelf.c:1662 src/readelf.c:1675 src/readelf.c:1693 -#: src/readelf.c:1705 src/readelf.c:1824 src/readelf.c:1836 src/readelf.c:1850 -#: src/readelf.c:1869 src/readelf.c:1882 +#: src/readelf.c:1654 src/readelf.c:1665 src/readelf.c:1678 src/readelf.c:1696 +#: src/readelf.c:1708 src/readelf.c:1827 src/readelf.c:1839 src/readelf.c:1853 +#: src/readelf.c:1872 src/readelf.c:1885 msgid "" msgstr "" -#: src/readelf.c:1768 +#: src/readelf.c:1771 msgid " Offset Type Value Addend Name\n" msgstr "" -#: src/readelf.c:1770 +#: src/readelf.c:1773 msgid " Offset Type Value Addend Name\n" msgstr "" -#: src/readelf.c:1971 +#: src/readelf.c:1974 #, c-format msgid "" "\n" @@ -4347,40 +4351,40 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:1977 +#: src/readelf.c:1980 #, c-format msgid " %lu local symbol String table: [%2u] '%s'\n" msgid_plural " %lu local symbols String table: [%2u] '%s'\n" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:1987 +#: src/readelf.c:1990 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr "" -#: src/readelf.c:1989 +#: src/readelf.c:1992 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr "" -#: src/readelf.c:2009 +#: src/readelf.c:2012 #, c-format msgid "%5u: %0* %6 %-7s %-6s %-9s %6s %s" msgstr "" -#: src/readelf.c:2097 +#: src/readelf.c:2100 #, c-format msgid "bad dynamic symbol" msgstr "" -#: src/readelf.c:2179 +#: src/readelf.c:2182 msgid "none" msgstr "keine" -#: src/readelf.c:2196 +#: src/readelf.c:2199 msgid "| " msgstr "| " -#: src/readelf.c:2221 +#: src/readelf.c:2224 #, c-format msgid "" "\n" @@ -4393,17 +4397,17 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:2244 +#: src/readelf.c:2247 #, fuzzy, c-format msgid " %#06x: Version: %hu File: %s Cnt: %hu\n" msgstr " %#06x: Version: %hu Datei: %s Cnt: %hu\n" -#: src/readelf.c:2257 +#: src/readelf.c:2260 #, c-format msgid " %#06x: Name: %s Flags: %s Version: %hu\n" msgstr " %#06x: Name: %s Flags: %s Version: %hu\n" -#: src/readelf.c:2288 +#: src/readelf.c:2291 #, c-format msgid "" "\n" @@ -4416,17 +4420,17 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:2318 +#: src/readelf.c:2321 #, c-format msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n" msgstr "" -#: src/readelf.c:2333 +#: src/readelf.c:2336 #, c-format msgid " %#06x: Parent %d: %s\n" msgstr "" -#: src/readelf.c:2565 +#: src/readelf.c:2568 #, c-format msgid "" "\n" @@ -4439,15 +4443,15 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:2595 +#: src/readelf.c:2598 msgid " 0 *local* " msgstr " 0 *lokal* " -#: src/readelf.c:2600 +#: src/readelf.c:2603 msgid " 1 *global* " msgstr " 1 *global* " -#: src/readelf.c:2631 +#: src/readelf.c:2634 #, c-format msgid "" "\n" @@ -4462,41 +4466,41 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:2655 +#: src/readelf.c:2658 #, no-c-format msgid " Length Number % of total Coverage\n" msgstr "" -#: src/readelf.c:2657 +#: src/readelf.c:2660 #, c-format msgid " 0 %6 %5.1f%%\n" msgstr " 0 %6 %5.1f%%\n" -#: src/readelf.c:2664 +#: src/readelf.c:2667 #, c-format msgid "%7d %6 %5.1f%% %5.1f%%\n" msgstr "%7d %6 %5.1f%% %5.1f%%\n" -#: src/readelf.c:2677 +#: src/readelf.c:2680 #, c-format msgid "" " Average number of tests: successful lookup: %f\n" "\t\t\t unsuccessful lookup: %f\n" msgstr "" -#: src/readelf.c:2695 src/readelf.c:2737 src/readelf.c:2778 +#: src/readelf.c:2698 src/readelf.c:2740 src/readelf.c:2781 #, c-format msgid "cannot get data for section %d: %s" msgstr "" -#: src/readelf.c:2832 +#: src/readelf.c:2835 #, c-format msgid "" " Symbol Bias: %u\n" " Bitmask Size: %zu bytes %%% bits set 2nd hash shift: %u\n" msgstr "" -#: src/readelf.c:2906 +#: src/readelf.c:2909 #, c-format msgid "" "\n" @@ -4507,13 +4511,13 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:2920 +#: src/readelf.c:2923 msgid "" " Library Time Stamp Checksum Version " "Flags" msgstr "" -#: src/readelf.c:2970 +#: src/readelf.c:2973 #, c-format msgid "" "\n" @@ -4521,160 +4525,160 @@ msgid "" "%#0:\n" msgstr "" -#: src/readelf.c:2986 +#: src/readelf.c:2989 msgid " Owner Size\n" msgstr "" -#: src/readelf.c:3012 +#: src/readelf.c:3015 #, c-format msgid " %-13s %4\n" msgstr " %-13s %4\n" -#: src/readelf.c:3044 +#: src/readelf.c:3047 #, c-format msgid " %-4u %12\n" msgstr " %-4u %12\n" -#: src/readelf.c:3049 +#: src/readelf.c:3052 #, c-format msgid " File: %11\n" msgstr " File: %11\n" -#: src/readelf.c:3084 +#: src/readelf.c:3087 #, c-format msgid " %s: %, %s\n" msgstr " %s: %, %s\n" -#: src/readelf.c:3087 +#: src/readelf.c:3090 #, c-format msgid " %s: %\n" msgstr " %s: %\n" -#: src/readelf.c:3090 +#: src/readelf.c:3093 #, c-format msgid " %s: %s\n" msgstr " %s: %s\n" -#: src/readelf.c:3097 +#: src/readelf.c:3100 #, c-format msgid " %u: %\n" msgstr " %u: %\n" -#: src/readelf.c:3100 +#: src/readelf.c:3103 #, c-format msgid " %u: %s\n" msgstr " %u: %s\n" -#: src/readelf.c:3136 +#: src/readelf.c:3139 #, c-format msgid "%s+%# <%s+%#>" msgstr "%s+%# <%s+%#>" -#: src/readelf.c:3139 +#: src/readelf.c:3142 #, c-format msgid "%s+%#0* <%s+%#>" msgstr "%s+%#0* <%s+%#>" -#: src/readelf.c:3144 +#: src/readelf.c:3147 #, c-format msgid "%# <%s+%#>" msgstr "%# <%s+%#>" -#: src/readelf.c:3147 +#: src/readelf.c:3150 #, c-format msgid "%#0* <%s+%#>" msgstr "%#0* <%s+%#>" -#: src/readelf.c:3153 +#: src/readelf.c:3156 #, c-format msgid "%s+%# <%s>" msgstr "%s+%# <%s>" -#: src/readelf.c:3156 +#: src/readelf.c:3159 #, c-format msgid "%s+%#0* <%s>" msgstr "%s+%#0* <%s>" -#: src/readelf.c:3160 +#: src/readelf.c:3163 #, c-format msgid "%# <%s>" msgstr "%# <%s>" -#: src/readelf.c:3163 +#: src/readelf.c:3166 #, c-format msgid "%#0* <%s>" msgstr "%#0* <%s>" -#: src/readelf.c:3168 +#: src/readelf.c:3171 #, c-format msgid "%s+%#" msgstr "%s+%#" -#: src/readelf.c:3171 +#: src/readelf.c:3174 #, c-format msgid "%s+%#0*" msgstr "%s+%#0*" -#: src/readelf.c:3310 +#: src/readelf.c:3313 #, c-format msgid "unknown tag %hx" msgstr "unbekannter Tag %hx" -#: src/readelf.c:3312 +#: src/readelf.c:3315 #, c-format msgid "unknown user tag %hx" msgstr "unbekannter Benutzer-Tag %hx" -#: src/readelf.c:3600 +#: src/readelf.c:3603 #, c-format msgid "unknown attribute %hx" msgstr "unbekanntes Attribut %hx" -#: src/readelf.c:3603 +#: src/readelf.c:3606 #, c-format msgid "unknown user attribute %hx" msgstr "unbekanntes Benutzer-Attribut %hx" -#: src/readelf.c:3654 +#: src/readelf.c:3657 #, fuzzy, c-format msgid "unknown form %#" msgstr "unbekannte Form %" -#: src/readelf.c:3890 +#: src/readelf.c:3893 msgid "empty block" msgstr "" -#: src/readelf.c:3893 +#: src/readelf.c:3896 #, c-format msgid "%zu byte block:" msgstr "" -#: src/readelf.c:4416 +#: src/readelf.c:4419 #, c-format msgid "%*s[%4] %s \n" msgstr "" -#: src/readelf.c:4452 +#: src/readelf.c:4455 #, c-format msgid "%s %# used with different address sizes" msgstr "" -#: src/readelf.c:4459 +#: src/readelf.c:4462 #, c-format msgid "%s %# used with different offset sizes" msgstr "" -#: src/readelf.c:4539 +#: src/readelf.c:4542 #, c-format msgid " [%6tx] \n" msgstr "" -#: src/readelf.c:4547 +#: src/readelf.c:4550 #, c-format msgid " [%6tx] ... % bytes ...\n" msgstr "" -#: src/readelf.c:4566 +#: src/readelf.c:4569 #, c-format msgid "" "\n" @@ -4682,37 +4686,37 @@ msgid "" " [ Code]\n" msgstr "" -#: src/readelf.c:4574 +#: src/readelf.c:4577 #, c-format msgid "" "\n" "Abbreviation section at offset %:\n" msgstr "" -#: src/readelf.c:4587 +#: src/readelf.c:4590 #, c-format msgid " *** error while reading abbreviation: %s\n" msgstr "" -#: src/readelf.c:4603 +#: src/readelf.c:4606 #, c-format msgid " [%5u] offset: %, children: %s, tag: %s\n" msgstr "" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "yes" msgstr "ja" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "no" msgstr "nein" -#: src/readelf.c:4641 +#: src/readelf.c:4644 #, c-format msgid "cannot get .debug_aranges content: %s" msgstr "" -#: src/readelf.c:4646 +#: src/readelf.c:4649 #, c-format msgid "" "\n" @@ -4723,123 +4727,123 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:4677 +#: src/readelf.c:4680 #, c-format msgid " [%*zu] ???\n" msgstr " [%*zu] ???\n" -#: src/readelf.c:4679 +#: src/readelf.c:4682 #, c-format msgid "" " [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" msgstr "" -#: src/readelf.c:4698 +#: src/readelf.c:4701 #, c-format msgid "cannot get .debug_ranges content: %s" msgstr "" -#: src/readelf.c:4703 src/readelf.c:5204 src/readelf.c:5982 src/readelf.c:6483 -#: src/readelf.c:6598 src/readelf.c:6770 +#: src/readelf.c:4706 src/readelf.c:5207 src/readelf.c:5985 src/readelf.c:6486 +#: src/readelf.c:6601 src/readelf.c:6773 #, c-format msgid "" "\n" "DWARF section [%2zu] '%s' at offset %#:\n" msgstr "" -#: src/readelf.c:4727 src/readelf.c:6508 +#: src/readelf.c:4730 src/readelf.c:6511 #, c-format msgid " [%6tx] \n" msgstr "" -#: src/readelf.c:4749 src/readelf.c:6530 +#: src/readelf.c:4752 src/readelf.c:6533 #, c-format msgid " [%6tx] base address %s\n" msgstr "" -#: src/readelf.c:4755 src/readelf.c:6536 +#: src/readelf.c:4758 src/readelf.c:6539 #, fuzzy, c-format msgid " [%6tx] empty list\n" msgstr " [%6tx] %s..%s\n" -#: src/readelf.c:4764 +#: src/readelf.c:4767 #, c-format msgid " [%6tx] %s..%s\n" msgstr " [%6tx] %s..%s\n" -#: src/readelf.c:4766 +#: src/readelf.c:4769 #, c-format msgid " %s..%s\n" msgstr " %s..%s\n" -#: src/readelf.c:5193 src/readelf.c:6838 src/readelf.c:6940 src/readelf.c:7098 +#: src/readelf.c:5196 src/readelf.c:6841 src/readelf.c:6943 src/readelf.c:7101 #, c-format msgid "cannot get %s content: %s" msgstr "" -#: src/readelf.c:5200 +#: src/readelf.c:5203 #, c-format msgid "" "\n" "Call frame information section [%2zu] '%s' at offset %#:\n" msgstr "" -#: src/readelf.c:5228 src/readelf.c:6017 +#: src/readelf.c:5231 src/readelf.c:6020 #, c-format msgid "invalid data in section [%zu] '%s'" msgstr "" -#: src/readelf.c:5250 +#: src/readelf.c:5253 #, c-format msgid "" "\n" " [%6tx] Zero terminator\n" msgstr "" -#: src/readelf.c:5335 +#: src/readelf.c:5338 #, fuzzy, c-format msgid "invalid augmentation length" msgstr "ungültige Abschnittsausrichtung" -#: src/readelf.c:5347 +#: src/readelf.c:5350 msgid "FDE address encoding: " msgstr "" -#: src/readelf.c:5353 +#: src/readelf.c:5356 msgid "LSDA pointer encoding: " msgstr "" -#: src/readelf.c:5451 +#: src/readelf.c:5454 #, c-format msgid " (offset: %#)" msgstr "" -#: src/readelf.c:5458 +#: src/readelf.c:5461 #, c-format msgid " (end offset: %#)" msgstr "" -#: src/readelf.c:5485 +#: src/readelf.c:5488 #, c-format msgid " %-26sLSDA pointer: %#\n" msgstr "" -#: src/readelf.c:5536 +#: src/readelf.c:5539 #, c-format msgid "cannot get attribute code: %s" msgstr "" -#: src/readelf.c:5545 +#: src/readelf.c:5548 #, c-format msgid "cannot get attribute form: %s" msgstr "" -#: src/readelf.c:5560 +#: src/readelf.c:5563 #, c-format msgid "cannot get attribute value: %s" msgstr "" -#: src/readelf.c:5819 +#: src/readelf.c:5822 #, c-format msgid "" "\n" @@ -4847,7 +4851,7 @@ msgid "" " [Offset]\n" msgstr "" -#: src/readelf.c:5851 +#: src/readelf.c:5854 #, c-format msgid "" " Type unit at offset %:\n" @@ -4856,7 +4860,7 @@ msgid "" " Type signature: %#, Type offset: %#\n" msgstr "" -#: src/readelf.c:5860 +#: src/readelf.c:5863 #, c-format msgid "" " Compilation unit at offset %:\n" @@ -4864,44 +4868,44 @@ msgid "" "%, Offset size: %\n" msgstr "" -#: src/readelf.c:5886 +#: src/readelf.c:5889 #, c-format msgid "cannot get DIE at offset % in section '%s': %s" msgstr "" -#: src/readelf.c:5898 +#: src/readelf.c:5901 #, c-format msgid "cannot get DIE offset: %s" msgstr "" -#: src/readelf.c:5907 +#: src/readelf.c:5910 #, c-format msgid "cannot get tag of DIE at offset % in section '%s': %s" msgstr "" -#: src/readelf.c:5938 +#: src/readelf.c:5941 #, c-format msgid "cannot get next DIE: %s\n" msgstr "" -#: src/readelf.c:5946 +#: src/readelf.c:5949 #, c-format msgid "cannot get next DIE: %s" msgstr "" -#: src/readelf.c:5995 +#: src/readelf.c:5998 #, c-format msgid "cannot get line data section data: %s" msgstr "" -#: src/readelf.c:6008 +#: src/readelf.c:6011 #, c-format msgid "" "\n" "Table at offset %Zu:\n" msgstr "" -#: src/readelf.c:6063 +#: src/readelf.c:6066 #, c-format msgid "" "\n" @@ -4918,184 +4922,184 @@ msgid "" "Opcodes:\n" msgstr "" -#: src/readelf.c:6084 +#: src/readelf.c:6087 #, c-format msgid "invalid data at offset %tu in section [%zu] '%s'" msgstr "" -#: src/readelf.c:6099 +#: src/readelf.c:6102 #, c-format msgid " [%*] %hhu argument\n" msgid_plural " [%*] %hhu arguments\n" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:6107 +#: src/readelf.c:6110 msgid "" "\n" "Directory table:" msgstr "" -#: src/readelf.c:6123 +#: src/readelf.c:6126 msgid "" "\n" "File name table:\n" " Entry Dir Time Size Name" msgstr "" -#: src/readelf.c:6152 +#: src/readelf.c:6155 msgid "" "\n" "Line number statements:" msgstr "" -#: src/readelf.c:6228 +#: src/readelf.c:6231 #, c-format msgid " special opcode %u: address+%u = %s, op_index = %u, line%+d = %zu\n" msgstr "" -#: src/readelf.c:6233 +#: src/readelf.c:6236 #, c-format msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" msgstr "" -#: src/readelf.c:6253 +#: src/readelf.c:6256 #, c-format msgid " extended opcode %u: " msgstr "" -#: src/readelf.c:6258 +#: src/readelf.c:6261 msgid " end of sequence" msgstr "" -#: src/readelf.c:6275 +#: src/readelf.c:6278 #, c-format msgid " set address to %s\n" msgstr "" -#: src/readelf.c:6296 +#: src/readelf.c:6299 #, c-format msgid " define new file: dir=%u, mtime=%, length=%, name=%s\n" msgstr "" -#: src/readelf.c:6309 +#: src/readelf.c:6312 #, c-format msgid " set discriminator to %u\n" msgstr "" -#: src/readelf.c:6314 +#: src/readelf.c:6317 #, fuzzy msgid " unknown opcode" msgstr "unbekannter Typ" -#: src/readelf.c:6326 +#: src/readelf.c:6329 msgid " copy" msgstr "" -#: src/readelf.c:6337 +#: src/readelf.c:6340 #, c-format msgid " advance address by %u to %s, op_index to %u\n" msgstr "" -#: src/readelf.c:6341 +#: src/readelf.c:6344 #, c-format msgid " advance address by %u to %s\n" msgstr "" -#: src/readelf.c:6352 +#: src/readelf.c:6355 #, c-format msgid " advance line by constant %d to %\n" msgstr "" -#: src/readelf.c:6360 +#: src/readelf.c:6363 #, c-format msgid " set file to %\n" msgstr "" -#: src/readelf.c:6370 +#: src/readelf.c:6373 #, c-format msgid " set column to %\n" msgstr "" -#: src/readelf.c:6377 +#: src/readelf.c:6380 #, c-format msgid " set '%s' to %\n" msgstr "" -#: src/readelf.c:6383 +#: src/readelf.c:6386 msgid " set basic block flag" msgstr "" -#: src/readelf.c:6392 +#: src/readelf.c:6395 #, c-format msgid " advance address by constant %u to %s, op_index to %u\n" msgstr "" -#: src/readelf.c:6396 +#: src/readelf.c:6399 #, c-format msgid " advance address by constant %u to %s\n" msgstr "" -#: src/readelf.c:6414 +#: src/readelf.c:6417 #, c-format msgid " advance address by fixed value %u to %s\n" msgstr "" -#: src/readelf.c:6423 +#: src/readelf.c:6426 msgid " set prologue end flag" msgstr "" -#: src/readelf.c:6428 +#: src/readelf.c:6431 msgid " set epilogue begin flag" msgstr "" -#: src/readelf.c:6437 +#: src/readelf.c:6440 #, c-format msgid " set isa to %u\n" msgstr "" -#: src/readelf.c:6446 +#: src/readelf.c:6449 #, c-format msgid " unknown opcode with % parameter:" msgid_plural " unknown opcode with % parameters:" msgstr[0] "" msgstr[1] "" -#: src/readelf.c:6478 +#: src/readelf.c:6481 #, c-format msgid "cannot get .debug_loc content: %s" msgstr "" -#: src/readelf.c:6548 +#: src/readelf.c:6551 #, c-format msgid " [%6tx] %s..%s" msgstr " [%6tx] %s..%s" -#: src/readelf.c:6550 +#: src/readelf.c:6553 #, c-format msgid " %s..%s" msgstr " %s..%s" -#: src/readelf.c:6557 +#: src/readelf.c:6560 msgid " \n" msgstr "" -#: src/readelf.c:6609 +#: src/readelf.c:6612 #, c-format msgid "cannot get macro information section data: %s" msgstr "" -#: src/readelf.c:6688 +#: src/readelf.c:6691 #, c-format msgid "%*s*** non-terminated string at end of section" msgstr "" -#: src/readelf.c:6756 +#: src/readelf.c:6759 #, c-format msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" msgstr "" -#: src/readelf.c:6796 +#: src/readelf.c:6799 #, c-format msgid "" "\n" @@ -5103,47 +5107,47 @@ msgid "" " %*s String\n" msgstr "" -#: src/readelf.c:6810 +#: src/readelf.c:6813 #, c-format msgid " *** error while reading strings: %s\n" msgstr "" -#: src/readelf.c:6830 +#: src/readelf.c:6833 #, c-format msgid "" "\n" "Call frame search table section [%2zu] '.eh_frame_hdr':\n" msgstr "" -#: src/readelf.c:6932 +#: src/readelf.c:6935 #, c-format msgid "" "\n" "Exception handling table section [%2zu] '.gcc_except_table':\n" msgstr "" -#: src/readelf.c:6955 +#: src/readelf.c:6958 #, c-format msgid " LPStart encoding: %#x " msgstr "" -#: src/readelf.c:6967 +#: src/readelf.c:6970 #, c-format msgid " TType encoding: %#x " msgstr "" -#: src/readelf.c:6981 +#: src/readelf.c:6984 #, c-format msgid " Call site encoding: %#x " msgstr "" -#: src/readelf.c:6994 +#: src/readelf.c:6997 msgid "" "\n" " Call site table:" msgstr "" -#: src/readelf.c:7008 +#: src/readelf.c:7011 #, c-format msgid "" " [%4u] Call site start: %#\n" @@ -5152,198 +5156,198 @@ msgid "" " Action: %u\n" msgstr "" -#: src/readelf.c:7068 +#: src/readelf.c:7071 #, c-format msgid "invalid TType encoding" msgstr "" -#: src/readelf.c:7089 +#: src/readelf.c:7092 #, c-format msgid "" "\n" "GDB section [%2zu] '%s' at offset %# contains % bytes :\n" msgstr "" -#: src/readelf.c:7118 +#: src/readelf.c:7121 #, fuzzy, c-format msgid " Version: %\n" msgstr " %s: %\n" -#: src/readelf.c:7124 +#: src/readelf.c:7127 #, c-format msgid " unknown version, cannot parse section\n" msgstr "" -#: src/readelf.c:7133 +#: src/readelf.c:7136 #, c-format msgid " CU offset: %#\n" msgstr "" -#: src/readelf.c:7140 +#: src/readelf.c:7143 #, c-format msgid " TU offset: %#\n" msgstr "" -#: src/readelf.c:7147 +#: src/readelf.c:7150 #, c-format msgid " address offset: %#\n" msgstr "" -#: src/readelf.c:7154 +#: src/readelf.c:7157 #, c-format msgid " symbol offset: %#\n" msgstr "" -#: src/readelf.c:7161 +#: src/readelf.c:7164 #, c-format msgid " constant offset: %#\n" msgstr "" -#: src/readelf.c:7168 +#: src/readelf.c:7171 #, c-format msgid "" "\n" " CU list at offset %# contains %zu entries:\n" msgstr "" -#: src/readelf.c:7190 +#: src/readelf.c:7193 #, c-format msgid "" "\n" " TU list at offset %# contains %zu entries:\n" msgstr "" -#: src/readelf.c:7216 +#: src/readelf.c:7219 #, c-format msgid "" "\n" " Address list at offset %# contains %zu entries:\n" msgstr "" -#: src/readelf.c:7243 +#: src/readelf.c:7246 #, c-format msgid "" "\n" " Symbol table at offset %# contains %zu slots:\n" msgstr "" -#: src/readelf.c:7292 +#: src/readelf.c:7295 #, c-format msgid "cannot get debug context descriptor: %s" msgstr "" -#: src/readelf.c:7441 src/readelf.c:8042 +#: src/readelf.c:7444 src/readelf.c:8045 #, c-format msgid "cannot convert core note data: %s" msgstr "" -#: src/readelf.c:7782 +#: src/readelf.c:7785 #, c-format msgid "" "\n" "%*s... ..." msgstr "" -#: src/readelf.c:8141 +#: src/readelf.c:8144 msgid " Owner Data size Type\n" msgstr "" -#: src/readelf.c:8159 +#: src/readelf.c:8162 #, c-format msgid " %-13.*s %9 %s\n" msgstr "" -#: src/readelf.c:8193 +#: src/readelf.c:8196 #, c-format msgid "cannot get content of note section: %s" msgstr "" -#: src/readelf.c:8220 +#: src/readelf.c:8223 #, c-format msgid "" "\n" "Note section [%2zu] '%s' of % bytes at offset %#0:\n" msgstr "" -#: src/readelf.c:8243 +#: src/readelf.c:8246 #, c-format msgid "" "\n" "Note segment of % bytes at offset %#0:\n" msgstr "" -#: src/readelf.c:8289 +#: src/readelf.c:8292 #, c-format msgid "" "\n" "Section [%Zu] '%s' has no data to dump.\n" msgstr "" -#: src/readelf.c:8295 src/readelf.c:8318 +#: src/readelf.c:8298 src/readelf.c:8321 #, c-format msgid "cannot get data for section [%Zu] '%s': %s" msgstr "" -#: src/readelf.c:8299 +#: src/readelf.c:8302 #, c-format msgid "" "\n" "Hex dump of section [%Zu] '%s', % bytes at offset %#0:\n" msgstr "" -#: src/readelf.c:8312 +#: src/readelf.c:8315 #, c-format msgid "" "\n" "Section [%Zu] '%s' has no strings to dump.\n" msgstr "" -#: src/readelf.c:8322 +#: src/readelf.c:8325 #, c-format msgid "" "\n" "String section [%Zu] '%s' contains % bytes at offset %#0:\n" msgstr "" -#: src/readelf.c:8370 +#: src/readelf.c:8373 #, c-format msgid "" "\n" "section [%lu] does not exist" msgstr "" -#: src/readelf.c:8399 +#: src/readelf.c:8402 #, c-format msgid "" "\n" "section '%s' does not exist" msgstr "" -#: src/readelf.c:8456 +#: src/readelf.c:8459 #, c-format msgid "cannot get symbol index of archive '%s': %s" msgstr "" -#: src/readelf.c:8459 +#: src/readelf.c:8462 #, c-format msgid "" "\n" "Archive '%s' has no symbol index\n" msgstr "" -#: src/readelf.c:8463 +#: src/readelf.c:8466 #, c-format msgid "" "\n" "Index of archive '%s' has %Zu entries:\n" msgstr "" -#: src/readelf.c:8481 +#: src/readelf.c:8484 #, c-format msgid "cannot extract member at offset %Zu in '%s': %s" msgstr "" -#: src/readelf.c:8486 +#: src/readelf.c:8489 #, c-format msgid "Archive member '%s' contains:\n" msgstr "" diff --git a/po/es.po b/po/es.po index ff9690051..ae711f50d 100644 --- a/po/es.po +++ b/po/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: elfutils.master.es\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" -"POT-Creation-Date: 2011-07-09 02:32-0700\n" +"POT-Creation-Date: 2011-09-29 15:40-0400\n" "PO-Revision-Date: 2011-01-10 15:17-0300\n" "Last-Translator: Claudio Rodrigo Pereyra Diaz \n" @@ -24,8 +24,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Country: ARGENTINA\n" -#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2841 -#: src/readelf.c:3180 src/unstrip.c:2098 src/unstrip.c:2306 +#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2844 +#: src/readelf.c:3183 src/unstrip.c:2098 src/unstrip.c:2306 #, c-format msgid "memory exhausted" msgstr "memoria agotada" @@ -469,7 +469,7 @@ msgstr "tamaño inválido del operando fuente" msgid "invalid size of destination operand" msgstr "tamaño inválido del operando destino" -#: libelf/elf_error.c:108 src/readelf.c:5173 +#: libelf/elf_error.c:108 src/readelf.c:5176 #, c-format msgid "invalid encoding" msgstr "codificación inválida" @@ -550,8 +550,8 @@ msgstr "no coinciden los datos/scn" msgid "invalid section header" msgstr "encabezamiento de sección inválida" -#: libelf/elf_error.c:208 src/readelf.c:6850 src/readelf.c:6951 -#: src/readelf.c:7113 +#: libelf/elf_error.c:208 src/readelf.c:6853 src/readelf.c:6954 +#: src/readelf.c:7116 #, c-format msgid "invalid data" msgstr "datos inválidos" @@ -642,7 +642,7 @@ msgstr "[DIREC...]" #: src/addr2line.c:189 src/ar.c:289 src/elfcmp.c:670 src/elflint.c:239 #: src/findtextrel.c:170 src/ld.c:957 src/nm.c:253 src/objdump.c:181 -#: src/ranlib.c:136 src/readelf.c:459 src/size.c:219 src/strings.c:227 +#: src/ranlib.c:136 src/readelf.c:462 src/size.c:219 src/strings.c:227 #: src/strip.c:221 src/unstrip.c:234 #, c-format msgid "" @@ -658,7 +658,7 @@ msgstr "" #: src/addr2line.c:194 src/ar.c:294 src/elfcmp.c:675 src/elflint.c:244 #: src/findtextrel.c:175 src/ld.c:962 src/nm.c:258 src/objdump.c:186 -#: src/ranlib.c:141 src/readelf.c:464 src/size.c:224 src/strings.c:232 +#: src/ranlib.c:141 src/readelf.c:467 src/size.c:224 src/strings.c:232 #: src/strip.c:226 src/unstrip.c:239 #, c-format msgid "Written by %s.\n" @@ -816,112 +816,112 @@ msgstr "nombre de archivo requerido" msgid "More than one operation specified" msgstr "Más de una operación especificada" -#: src/ar.c:404 +#: src/ar.c:408 #, c-format msgid "cannot open archive '%s'" msgstr "Imposible abrir el archivo '%s'" -#: src/ar.c:414 +#: src/ar.c:418 #, c-format msgid "cannot open archive '%s': %s" msgstr "Imposible abrir el archivo '%s': %s" -#: src/ar.c:418 +#: src/ar.c:422 #, c-format msgid "%s: not an archive file" msgstr "%s: no es un fichero de archivo" -#: src/ar.c:422 +#: src/ar.c:426 #, c-format msgid "cannot stat archive '%s'" msgstr "no sepuede stat el archivo '%s'" -#: src/ar.c:434 +#: src/ar.c:438 #, c-format msgid "no entry %s in archive\n" msgstr "no hay entrada %s en archivo\n" -#: src/ar.c:487 src/ar.c:929 src/ar.c:1129 +#: src/ar.c:491 src/ar.c:933 src/ar.c:1133 #, c-format msgid "cannot create hash table" msgstr "Falló al crear la tabla de dispersión" -#: src/ar.c:494 src/ar.c:936 src/ar.c:1138 +#: src/ar.c:498 src/ar.c:940 src/ar.c:1142 #, c-format msgid "cannot insert into hash table" msgstr "no sepuede insertar en tabla de dispersión" -#: src/ar.c:502 src/ranlib.c:176 +#: src/ar.c:506 src/ranlib.c:176 #, c-format msgid "cannot stat '%s'" msgstr "no se puede stat '%s'" -#: src/ar.c:598 +#: src/ar.c:602 #, c-format msgid "cannot read content of %s: %s" msgstr "no se puede leer el contenido de %s: %s" -#: src/ar.c:641 +#: src/ar.c:645 #, c-format msgid "cannot open %.*s" msgstr " Imposible abrir %.*s" -#: src/ar.c:663 +#: src/ar.c:667 #, c-format msgid "failed to write %s" msgstr "Falló al escribir %s" -#: src/ar.c:675 +#: src/ar.c:679 #, c-format msgid "cannot change mode of %s" msgstr "No se puede cambiar el modo de %s" -#: src/ar.c:691 +#: src/ar.c:695 #, c-format msgid "cannot change modification time of %s" msgstr "No puede cambiar tiempo de modificación de %s" -#: src/ar.c:737 +#: src/ar.c:741 #, c-format msgid "cannot rename temporary file to %.*s" msgstr "no sepuede renombrar fichero temporal para %.*s" -#: src/ar.c:773 src/ar.c:1021 src/ar.c:1419 src/ranlib.c:250 +#: src/ar.c:777 src/ar.c:1025 src/ar.c:1423 src/ranlib.c:250 #, c-format msgid "cannot create new file" msgstr "no sepuede crear fichero nuevo" -#: src/ar.c:1220 +#: src/ar.c:1224 #, c-format msgid "position member %s not found" msgstr "no se encuentra miembro de posición %s " -#: src/ar.c:1230 +#: src/ar.c:1234 #, c-format msgid "%s: no entry %s in archive!\n" msgstr "%s: ¡no hay entrada %s en archive!\n" -#: src/ar.c:1259 src/ldgeneric.c:517 src/objdump.c:257 +#: src/ar.c:1263 src/ldgeneric.c:517 src/objdump.c:257 #, c-format msgid "cannot open %s" msgstr "no sepuede abrir %s" -#: src/ar.c:1264 +#: src/ar.c:1268 #, c-format msgid "cannot stat %s" msgstr "no sepuede efectuar stat %s" -#: src/ar.c:1270 +#: src/ar.c:1274 #, c-format msgid "%s is no regular file" msgstr " %s no es un fichero ordinario " -#: src/ar.c:1283 +#: src/ar.c:1287 #, c-format msgid "cannot get ELF descriptor for %s: %s\n" msgstr "no sepuede obtener descriptor ELF para %s: %s\n" -#: src/ar.c:1302 +#: src/ar.c:1306 #, c-format msgid "cannot read %s: %s" msgstr "no sepuede leer %s: %s" @@ -1169,11 +1169,11 @@ msgstr "" msgid "Pedantic checking of ELF files compliance with gABI/psABI spec." msgstr "Chequeo minucioso de ficheros ELF de acuerdo con gABI/psABI " -#: src/elflint.c:86 src/readelf.c:118 +#: src/elflint.c:86 src/readelf.c:119 msgid "FILE..." msgstr "FICHERO..." -#: src/elflint.c:159 src/readelf.c:274 +#: src/elflint.c:159 src/readelf.c:275 #, c-format msgid "cannot open input file" msgstr "no se puede abrir el fichero de entrada" @@ -1192,7 +1192,7 @@ msgstr "error al cerrar el descriptor ELF: %s\n" msgid "No errors" msgstr "No hay errores" -#: src/elflint.c:223 src/readelf.c:435 +#: src/elflint.c:223 src/readelf.c:436 msgid "Missing file name.\n" msgstr "Falta el nombre de archivo.\n" @@ -3560,7 +3560,7 @@ msgid "Warning: size of `%s' changed from % in %s to % in %s" msgstr "" "Advertencia: el tamaño de `%s' cambió de % en %s a % en %s" -#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:639 src/strip.c:570 +#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:642 src/strip.c:570 #, c-format msgid "cannot determine number of sections: %s" msgstr "no se pudieron determinar el número de secciones: %s" @@ -4020,11 +4020,11 @@ msgstr "%s%s%s: no se reconoció el formato de fichero" msgid "cannot create search tree" msgstr "No se puede crear el árbol de búsqueda" -#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:895 -#: src/readelf.c:1038 src/readelf.c:1186 src/readelf.c:1368 src/readelf.c:1568 -#: src/readelf.c:1754 src/readelf.c:1964 src/readelf.c:2218 src/readelf.c:2284 -#: src/readelf.c:2362 src/readelf.c:2860 src/readelf.c:2896 src/readelf.c:2958 -#: src/readelf.c:7303 src/readelf.c:8208 src/readelf.c:8355 src/readelf.c:8423 +#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:898 +#: src/readelf.c:1041 src/readelf.c:1189 src/readelf.c:1371 src/readelf.c:1571 +#: src/readelf.c:1757 src/readelf.c:1967 src/readelf.c:2221 src/readelf.c:2287 +#: src/readelf.c:2365 src/readelf.c:2863 src/readelf.c:2899 src/readelf.c:2961 +#: src/readelf.c:7306 src/readelf.c:8211 src/readelf.c:8358 src/readelf.c:8426 #: src/size.c:425 src/size.c:499 src/strip.c:510 #, c-format msgid "cannot get section header string table index" @@ -4101,7 +4101,7 @@ msgstr "Sólo muestra información para NOMBRE de sección." msgid "Show information from FILEs (a.out by default)." msgstr "Muestra información de FICHEROS (a.out por defecto)." -#: src/objdump.c:236 src/readelf.c:440 +#: src/objdump.c:236 src/readelf.c:441 msgid "No operation specified.\n" msgstr "No se especificó una operación.\n" @@ -4110,11 +4110,11 @@ msgstr "No se especificó una operación.\n" msgid "while close `%s'" msgstr "mientras cierra `%s'" -#: src/objdump.c:379 src/readelf.c:1663 src/readelf.c:1837 +#: src/objdump.c:379 src/readelf.c:1666 src/readelf.c:1840 msgid "INVALID SYMBOL" msgstr "SÍMBOLO INVÁLIDO" -#: src/objdump.c:394 src/readelf.c:1694 src/readelf.c:1870 +#: src/objdump.c:394 src/readelf.c:1697 src/readelf.c:1873 msgid "INVALID SECTION" msgstr "SECCIÓN INVÁLIDA" @@ -4254,93 +4254,97 @@ msgid "Do not find symbol names for addresses in DWARF data" msgstr "" "No se encuentran los nombres de símbolos para direcciones en datos DWARF" -#: src/readelf.c:114 +#: src/readelf.c:110 +msgid "Ignored for compatibility (lines always wide)" +msgstr "" + +#: src/readelf.c:115 msgid "Print information from ELF file in human-readable form." msgstr "" "Imprimir información del fichero ELF en una forma comprensible para los " "seres humanos." -#: src/readelf.c:411 +#: src/readelf.c:412 #, c-format msgid "Unknown DWARF debug section `%s'.\n" msgstr "Sección de depuración DWARF desconocida `%s'.\n" -#: src/readelf.c:475 +#: src/readelf.c:478 #, c-format msgid "cannot generate Elf descriptor: %s" msgstr "no se puede crear descriptor ELF: %s" -#: src/readelf.c:487 +#: src/readelf.c:490 #, c-format msgid "'%s' is not an archive, cannot print archive index" msgstr "'%s' no es un archivo, no se puede imprimir índice de archivo" -#: src/readelf.c:492 +#: src/readelf.c:495 #, c-format msgid "error while closing Elf descriptor: %s" msgstr "error al cerrar el descriptor ELF: %s" -#: src/readelf.c:584 +#: src/readelf.c:587 #, c-format msgid "cannot stat input file" msgstr "no sepudo stat archivo de entrada" -#: src/readelf.c:586 +#: src/readelf.c:589 #, c-format msgid "input file is empty" msgstr "archivo de entrada vacío" -#: src/readelf.c:588 +#: src/readelf.c:591 #, c-format msgid "failed reading '%s': %s" msgstr "Falló lectura de '%s': %s" -#: src/readelf.c:624 +#: src/readelf.c:627 #, c-format msgid "cannot read ELF header: %s" msgstr "no se pudo leer encabezamiento ELF: %s" -#: src/readelf.c:632 +#: src/readelf.c:635 #, c-format msgid "cannot create EBL handle" msgstr "no se puede crear EBL" -#: src/readelf.c:645 +#: src/readelf.c:648 #, c-format msgid "cannot determine number of program headers: %s" msgstr "no se pudo determinar la cantidad de encabezados de programa: %s" -#: src/readelf.c:731 +#: src/readelf.c:734 msgid "NONE (None)" msgstr "NONE (Ninguno)" -#: src/readelf.c:732 +#: src/readelf.c:735 msgid "REL (Relocatable file)" msgstr "REL (Fichero reubicable)" -#: src/readelf.c:733 +#: src/readelf.c:736 msgid "EXEC (Executable file)" msgstr "EXEC (Fichero ejecutable)" -#: src/readelf.c:734 +#: src/readelf.c:737 msgid "DYN (Shared object file)" msgstr "DYN (Fichero objeto compartido)" -#: src/readelf.c:735 +#: src/readelf.c:738 msgid "CORE (Core file)" msgstr "CORE (Fichero núcleo)" -#: src/readelf.c:740 +#: src/readelf.c:743 #, c-format msgid "OS Specific: (%x)\n" msgstr "OS Specific: (%x)\n" -#: src/readelf.c:742 +#: src/readelf.c:745 #, c-format msgid "Processor Specific: (%x)\n" msgstr "Específico del procesador: (%x)\n" -#: src/readelf.c:752 +#: src/readelf.c:755 msgid "" "ELF Header:\n" " Magic: " @@ -4348,7 +4352,7 @@ msgstr "" "Encabezamiento ELF:\n" " Mágico: " -#: src/readelf.c:756 +#: src/readelf.c:759 #, c-format msgid "" "\n" @@ -4357,119 +4361,119 @@ msgstr "" "\n" " Clase: %s\n" -#: src/readelf.c:761 +#: src/readelf.c:764 #, c-format msgid " Data: %s\n" msgstr " Datos: %s\n" -#: src/readelf.c:767 +#: src/readelf.c:770 #, c-format msgid " Ident Version: %hhd %s\n" msgstr " Versión ident: %hhd %s\n" -#: src/readelf.c:769 src/readelf.c:786 +#: src/readelf.c:772 src/readelf.c:789 msgid "(current)" msgstr "(actual)" -#: src/readelf.c:773 +#: src/readelf.c:776 #, c-format msgid " OS/ABI: %s\n" msgstr " OS/ABI: %s\n" -#: src/readelf.c:776 +#: src/readelf.c:779 #, c-format msgid " ABI Version: %hhd\n" msgstr " Versión ABI: %hhd\n" -#: src/readelf.c:779 +#: src/readelf.c:782 msgid " Type: " msgstr " Tipo: " -#: src/readelf.c:782 +#: src/readelf.c:785 #, c-format msgid " Machine: %s\n" msgstr " Máquina: %s\n" -#: src/readelf.c:784 +#: src/readelf.c:787 #, c-format msgid " Version: %d %s\n" msgstr " Versión: %d %s\n" -#: src/readelf.c:788 +#: src/readelf.c:791 #, c-format msgid " Entry point address: %#\n" msgstr " Dirección de punto de entrada: %#\n" -#: src/readelf.c:791 +#: src/readelf.c:794 #, c-format msgid " Start of program headers: % %s\n" msgstr " Inicio de encabezamientos de programa: % %s\n" -#: src/readelf.c:792 src/readelf.c:795 +#: src/readelf.c:795 src/readelf.c:798 msgid "(bytes into file)" msgstr " (bytes en el archivo)" -#: src/readelf.c:794 +#: src/readelf.c:797 #, c-format msgid " Start of section headers: % %s\n" msgstr " Inicio de encabezamientos de sección: % %s\n" -#: src/readelf.c:797 +#: src/readelf.c:800 #, c-format msgid " Flags: %s\n" msgstr " Indicadores: %s\n" -#: src/readelf.c:800 +#: src/readelf.c:803 #, c-format msgid " Size of this header: % %s\n" msgstr " Tamaño de este encabezamiento: % %s\n" -#: src/readelf.c:801 src/readelf.c:804 src/readelf.c:821 +#: src/readelf.c:804 src/readelf.c:807 src/readelf.c:824 msgid "(bytes)" msgstr "(bytes)" -#: src/readelf.c:803 +#: src/readelf.c:806 #, c-format msgid " Size of program header entries: % %s\n" msgstr "" " Tamaño de las entradas en encabezamiento del programa: % %s\n" -#: src/readelf.c:806 +#: src/readelf.c:809 #, c-format msgid " Number of program headers entries: %" msgstr " Cantidad de entradas de encabezados de programa: %" -#: src/readelf.c:813 +#: src/readelf.c:816 #, c-format msgid " (% in [0].sh_info)" msgstr " (% in [0].sh_info)" -#: src/readelf.c:816 src/readelf.c:833 src/readelf.c:847 +#: src/readelf.c:819 src/readelf.c:836 src/readelf.c:850 msgid " ([0] not available)" msgstr " ([0] no disponible)" -#: src/readelf.c:820 +#: src/readelf.c:823 #, c-format msgid " Size of section header entries: % %s\n" msgstr "" " Tamaño de las entradas en el encabezamiento de sección: % %s\n" -#: src/readelf.c:823 +#: src/readelf.c:826 #, c-format msgid " Number of section headers entries: %" msgstr " Cantidad de entradas en los encabezamientos de sección: %" -#: src/readelf.c:830 +#: src/readelf.c:833 #, c-format msgid " (% in [0].sh_size)" msgstr " (% en [0].sh_size)" -#: src/readelf.c:843 +#: src/readelf.c:846 #, c-format msgid " (% in [0].sh_link)" msgstr " (% en [0].sh_link)" -#: src/readelf.c:851 +#: src/readelf.c:854 #, c-format msgid "" " Section header string table index: XINDEX%s\n" @@ -4478,14 +4482,14 @@ msgstr "" " Índice de tabla de cadenas de sección de encabezamiento de : XINDEX%s\n" "\n" -#: src/readelf.c:855 +#: src/readelf.c:858 #, c-format msgid "" " Section header string table index: %\n" "\n" msgstr " Índice de tabla de cadenas de sección de encabezamiento: %\n" -#: src/readelf.c:887 +#: src/readelf.c:890 #, c-format msgid "" "There are %d section headers, starting at offset %#:\n" @@ -4494,11 +4498,11 @@ msgstr "" "Hay %d encabezamientos de sección, comenzando en compensación %#:\n" "\n" -#: src/readelf.c:897 +#: src/readelf.c:900 msgid "Section Headers:" msgstr "encabezamientos de sección:" -#: src/readelf.c:900 +#: src/readelf.c:903 msgid "" "[Nr] Name Type Addr Off Size ES Flags Lk " "Inf Al" @@ -4506,7 +4510,7 @@ msgstr "" "[Nr] Nombre Tipo Dirección Off Tamaño Inf Al " "Enlace banderas ES" -#: src/readelf.c:902 +#: src/readelf.c:905 msgid "" "[Nr] Name Type Addr Off Size ES " "Flags Lk Inf Al" @@ -4514,12 +4518,12 @@ msgstr "" "[Nr] Name Type Addr Off Size ES " "Flags Lk Inf Al" -#: src/readelf.c:909 src/readelf.c:1062 +#: src/readelf.c:912 src/readelf.c:1065 #, c-format msgid "cannot get section: %s" msgstr "No se puede encontrar la sección: %s" -#: src/readelf.c:916 src/readelf.c:1070 src/readelf.c:8375 src/unstrip.c:353 +#: src/readelf.c:919 src/readelf.c:1073 src/readelf.c:8378 src/unstrip.c:353 #: src/unstrip.c:384 src/unstrip.c:433 src/unstrip.c:541 src/unstrip.c:558 #: src/unstrip.c:594 src/unstrip.c:792 src/unstrip.c:1060 src/unstrip.c:1250 #: src/unstrip.c:1310 src/unstrip.c:1431 src/unstrip.c:1484 src/unstrip.c:1591 @@ -4528,18 +4532,18 @@ msgstr "No se puede encontrar la sección: %s" msgid "cannot get section header: %s" msgstr "No se puede obtener encabezamiento de sección: %s" -#: src/readelf.c:974 +#: src/readelf.c:977 msgid "Program Headers:" msgstr "encabezamientos de programa:" -#: src/readelf.c:976 +#: src/readelf.c:979 msgid "" " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" msgstr "" " Tipo Compensación Dirección Virtual Dirección " "Física Tamaño de Fichero Tamaño de Memoria Alineación de bandera" -#: src/readelf.c:979 +#: src/readelf.c:982 msgid "" " Type Offset VirtAddr PhysAddr FileSiz " "MemSiz Flg Align" @@ -4547,12 +4551,12 @@ msgstr "" " Tipo Compensación Dirección Virtual Dirección " "Física Tamaño de Fichero Tamaño de Memoria Alineación de bandera" -#: src/readelf.c:1019 +#: src/readelf.c:1022 #, c-format msgid "\t[Requesting program interpreter: %s]\n" msgstr "\t[Solicitando intérprete de programa: %s]\n" -#: src/readelf.c:1040 +#: src/readelf.c:1043 msgid "" "\n" " Section to Segment mapping:\n" @@ -4562,12 +4566,12 @@ msgstr "" " Sección para asignación de segmento:\n" " Secciones de segmento..." -#: src/readelf.c:1051 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 +#: src/readelf.c:1054 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 #, c-format msgid "cannot get program header: %s" msgstr "no se puede obtener memoria para encabezamiento del programa: %s" -#: src/readelf.c:1192 +#: src/readelf.c:1195 #, c-format msgid "" "\n" @@ -4582,7 +4586,7 @@ msgstr[1] "" "\n" "Grupo de sección COMDAT [%2zu] '%s' con firma '%s' contiene entradas %zu:\n" -#: src/readelf.c:1197 +#: src/readelf.c:1200 #, c-format msgid "" "\n" @@ -4597,15 +4601,15 @@ msgstr[1] "" "\n" "Grupo de sección [%2zu] '%s' con firma '%s' contiene entradas %zu:\n" -#: src/readelf.c:1205 +#: src/readelf.c:1208 msgid "" msgstr "" -#: src/readelf.c:1219 +#: src/readelf.c:1222 msgid "" msgstr "" -#: src/readelf.c:1370 +#: src/readelf.c:1373 #, c-format msgid "" "\n" @@ -4626,36 +4630,36 @@ msgstr[1] "" " Dirección: %#0* Compensación: %#08 Enlace a sección: " "[%2u] '%s'\n" -#: src/readelf.c:1382 +#: src/readelf.c:1385 msgid " Type Value\n" msgstr " Tipo Valor\n" -#: src/readelf.c:1406 +#: src/readelf.c:1409 #, c-format msgid "Shared library: [%s]\n" msgstr "Biblioteca compartida: [%s]\n" -#: src/readelf.c:1411 +#: src/readelf.c:1414 #, c-format msgid "Library soname: [%s]\n" msgstr "Nombre-so de la biblioteca: [%s]\n" -#: src/readelf.c:1416 +#: src/readelf.c:1419 #, c-format msgid "Library rpath: [%s]\n" msgstr "Rpath de la biblioteca: [%s]\n" -#: src/readelf.c:1421 +#: src/readelf.c:1424 #, c-format msgid "Library runpath: [%s]\n" msgstr "Ruta de ejecución de la biblioteca: [%s]\n" -#: src/readelf.c:1441 +#: src/readelf.c:1444 #, c-format msgid "% (bytes)\n" msgstr "% (bytes)\n" -#: src/readelf.c:1553 src/readelf.c:1739 +#: src/readelf.c:1556 src/readelf.c:1742 #, c-format msgid "" "\n" @@ -4664,7 +4668,7 @@ msgstr "" "\n" "Tabla de símbolos inválida en compensación %#0\n" -#: src/readelf.c:1571 src/readelf.c:1756 +#: src/readelf.c:1574 src/readelf.c:1759 #, c-format msgid "" "\n" @@ -4683,7 +4687,7 @@ msgstr[1] "" "Sección de reubicación [%2zu] '%s' para sección [%2u] '%s' en compensación " "%#0 contiene entradas %d:\n" -#: src/readelf.c:1586 +#: src/readelf.c:1589 #, c-format msgid "" "\n" @@ -4700,29 +4704,29 @@ msgstr[1] "" "Sección de reubicación [%2u] '%s' en compensación %#0 contiene " "entradas %d:\n" -#: src/readelf.c:1596 +#: src/readelf.c:1599 msgid " Offset Type Value Name\n" msgstr " Compensación Tipo Valor Nombre\n" -#: src/readelf.c:1598 +#: src/readelf.c:1601 msgid " Offset Type Value Name\n" msgstr " Compensación Tipo Valor Nombre\n" -#: src/readelf.c:1651 src/readelf.c:1662 src/readelf.c:1675 src/readelf.c:1693 -#: src/readelf.c:1705 src/readelf.c:1824 src/readelf.c:1836 src/readelf.c:1850 -#: src/readelf.c:1869 src/readelf.c:1882 +#: src/readelf.c:1654 src/readelf.c:1665 src/readelf.c:1678 src/readelf.c:1696 +#: src/readelf.c:1708 src/readelf.c:1827 src/readelf.c:1839 src/readelf.c:1853 +#: src/readelf.c:1872 src/readelf.c:1885 msgid "" msgstr "" -#: src/readelf.c:1768 +#: src/readelf.c:1771 msgid " Offset Type Value Addend Name\n" msgstr " Compensación Tipo Valor Nombre Adend\n" -#: src/readelf.c:1770 +#: src/readelf.c:1773 msgid " Offset Type Value Addend Name\n" msgstr " Compensación Tipo Valor Nombre Adend\n" -#: src/readelf.c:1971 +#: src/readelf.c:1974 #, c-format msgid "" "\n" @@ -4737,40 +4741,40 @@ msgstr[1] "" "\n" "La tabla de símbolos [%2u] '%s' contiene entradas %u:\n" -#: src/readelf.c:1977 +#: src/readelf.c:1980 #, c-format msgid " %lu local symbol String table: [%2u] '%s'\n" msgid_plural " %lu local symbols String table: [%2u] '%s'\n" msgstr[0] "símbolos locales %lu Tabla de cadena: [%2u] '%s'\n" msgstr[1] " Símbolos locales %lu Tabla de cadenas: [%2u] '%s'\n" -#: src/readelf.c:1987 +#: src/readelf.c:1990 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr " Núm: Valor Tamaño Tipo Unión Vis Nombre Ndx\n" -#: src/readelf.c:1989 +#: src/readelf.c:1992 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr " Num: Valor Tamaño Tipo Unión Vis Nombre Ndx\n" -#: src/readelf.c:2009 +#: src/readelf.c:2012 #, c-format msgid "%5u: %0* %6 %-7s %-6s %-9s %6s %s" msgstr "%5u: %0* %6 %-7s %-6s %-9s %6s %s" -#: src/readelf.c:2097 +#: src/readelf.c:2100 #, c-format msgid "bad dynamic symbol" msgstr "símbolo dinámico erróneo" -#: src/readelf.c:2179 +#: src/readelf.c:2182 msgid "none" msgstr "nada" -#: src/readelf.c:2196 +#: src/readelf.c:2199 msgid "| " msgstr "| " -#: src/readelf.c:2221 +#: src/readelf.c:2224 #, c-format msgid "" "\n" @@ -4791,17 +4795,17 @@ msgstr[1] "" " Dirección: %#0* Compensación: %#08 Enlace a sección: " "[%2u] '%s'\n" -#: src/readelf.c:2244 +#: src/readelf.c:2247 #, c-format msgid " %#06x: Version: %hu File: %s Cnt: %hu\n" msgstr " %#06x: Versión: %hu Fichero: %s Conteo: %hu\n" -#: src/readelf.c:2257 +#: src/readelf.c:2260 #, c-format msgid " %#06x: Name: %s Flags: %s Version: %hu\n" msgstr " %#06x: Nombre: %s Banderas: %s Versión: %hu\n" -#: src/readelf.c:2288 +#: src/readelf.c:2291 #, c-format msgid "" "\n" @@ -4822,18 +4826,18 @@ msgstr[1] "" " Dirección: %#0* Compensación: %#08 Enlace a sección: " "[%2u] '%s'\n" -#: src/readelf.c:2318 +#: src/readelf.c:2321 #, c-format msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n" msgstr "" " %#06x: Versión: %hd Banderas: %s Índice: %hd Conteo: %hd Nombre: %s\n" -#: src/readelf.c:2333 +#: src/readelf.c:2336 #, c-format msgid " %#06x: Parent %d: %s\n" msgstr " %#06x: Principal %d: %s\n" -#: src/readelf.c:2565 +#: src/readelf.c:2568 #, c-format msgid "" "\n" @@ -4854,15 +4858,15 @@ msgstr[1] "" " Dirección: %#0* Compensación: %#08 Enlace a sección: " "[%2u] '%s'" -#: src/readelf.c:2595 +#: src/readelf.c:2598 msgid " 0 *local* " msgstr " 0 *local* " -#: src/readelf.c:2600 +#: src/readelf.c:2603 msgid " 1 *global* " msgstr " 1 *global* " -#: src/readelf.c:2631 +#: src/readelf.c:2634 #, c-format msgid "" "\n" @@ -4887,22 +4891,22 @@ msgstr[1] "" " Dirección: %#0* Compensación: %#08 Enlace a sección: " "[%2u] '%s'\n" -#: src/readelf.c:2655 +#: src/readelf.c:2658 #, no-c-format msgid " Length Number % of total Coverage\n" msgstr " Longitud Número % of total Cobertura\n" -#: src/readelf.c:2657 +#: src/readelf.c:2660 #, c-format msgid " 0 %6 %5.1f%%\n" msgstr " 0 %6 %5.1f%%\n" -#: src/readelf.c:2664 +#: src/readelf.c:2667 #, c-format msgid "%7d %6 %5.1f%% %5.1f%%\n" msgstr "%7d %6 %5.1f%% %5.1f%%\n" -#: src/readelf.c:2677 +#: src/readelf.c:2680 #, c-format msgid "" " Average number of tests: successful lookup: %f\n" @@ -4911,12 +4915,12 @@ msgstr "" " Número promedio de pruebas: búsqueda exitosa: %f\n" " búsqueda sin éxito: %f\n" -#: src/readelf.c:2695 src/readelf.c:2737 src/readelf.c:2778 +#: src/readelf.c:2698 src/readelf.c:2740 src/readelf.c:2781 #, c-format msgid "cannot get data for section %d: %s" msgstr "No se pueden obtener datos para la sección %d: %s" -#: src/readelf.c:2832 +#: src/readelf.c:2835 #, c-format msgid "" " Symbol Bias: %u\n" @@ -4926,7 +4930,7 @@ msgstr "" " Tamaño de Bitmask: %zu bytes %%% bits establecen segundo " "cambio de dispersión: %u\n" -#: src/readelf.c:2906 +#: src/readelf.c:2909 #, c-format msgid "" "\n" @@ -4943,7 +4947,7 @@ msgstr[1] "" "Sección de lista de biblioteca [%2zu] '%s' en compensación %#0 " "contiene entradas %d:\n" -#: src/readelf.c:2920 +#: src/readelf.c:2923 msgid "" " Library Time Stamp Checksum Version " "Flags" @@ -4951,7 +4955,7 @@ msgstr "" " Biblioteca Marca de tiempo Indicadores " "de versión de suma de verificación" -#: src/readelf.c:2970 +#: src/readelf.c:2973 #, c-format msgid "" "\n" @@ -4962,160 +4966,160 @@ msgstr "" "Sección de atributos de objeto [%2zu] '%s' de % bytes con " "desplazamiento %#0:\n" -#: src/readelf.c:2986 +#: src/readelf.c:2989 msgid " Owner Size\n" msgstr " Propietario Tamaño\n" -#: src/readelf.c:3012 +#: src/readelf.c:3015 #, c-format msgid " %-13s %4\n" msgstr " %-13s %4\n" -#: src/readelf.c:3044 +#: src/readelf.c:3047 #, c-format msgid " %-4u %12\n" msgstr " %-4u %12\n" -#: src/readelf.c:3049 +#: src/readelf.c:3052 #, c-format msgid " File: %11\n" msgstr " File: %11\n" -#: src/readelf.c:3084 +#: src/readelf.c:3087 #, c-format msgid " %s: %, %s\n" msgstr " %s: %, %s\n" -#: src/readelf.c:3087 +#: src/readelf.c:3090 #, c-format msgid " %s: %\n" msgstr " %s: %\n" -#: src/readelf.c:3090 +#: src/readelf.c:3093 #, c-format msgid " %s: %s\n" msgstr " %s: %s\n" -#: src/readelf.c:3097 +#: src/readelf.c:3100 #, c-format msgid " %u: %\n" msgstr " %u: %\n" -#: src/readelf.c:3100 +#: src/readelf.c:3103 #, c-format msgid " %u: %s\n" msgstr " %u: %s\n" -#: src/readelf.c:3136 +#: src/readelf.c:3139 #, c-format msgid "%s+%# <%s+%#>" msgstr "%s+%# <%s+%#>" -#: src/readelf.c:3139 +#: src/readelf.c:3142 #, c-format msgid "%s+%#0* <%s+%#>" msgstr "%s+%#0* <%s+%#>" -#: src/readelf.c:3144 +#: src/readelf.c:3147 #, c-format msgid "%# <%s+%#>" msgstr "%# <%s+%#>" -#: src/readelf.c:3147 +#: src/readelf.c:3150 #, c-format msgid "%#0* <%s+%#>" msgstr "%#0* <%s+%#>" -#: src/readelf.c:3153 +#: src/readelf.c:3156 #, c-format msgid "%s+%# <%s>" msgstr "%s+%# <%s>" -#: src/readelf.c:3156 +#: src/readelf.c:3159 #, c-format msgid "%s+%#0* <%s>" msgstr "%s+%#0* <%s>" -#: src/readelf.c:3160 +#: src/readelf.c:3163 #, c-format msgid "%# <%s>" msgstr "%# <%s>" -#: src/readelf.c:3163 +#: src/readelf.c:3166 #, c-format msgid "%#0* <%s>" msgstr "%#0* <%s>" -#: src/readelf.c:3168 +#: src/readelf.c:3171 #, c-format msgid "%s+%#" msgstr "%s+%#" -#: src/readelf.c:3171 +#: src/readelf.c:3174 #, c-format msgid "%s+%#0*" msgstr "%s+%#0*" -#: src/readelf.c:3310 +#: src/readelf.c:3313 #, c-format msgid "unknown tag %hx" msgstr "etiqueta %hx desconocida" -#: src/readelf.c:3312 +#: src/readelf.c:3315 #, c-format msgid "unknown user tag %hx" msgstr "Usuario de etiqueta %hx desconocido " -#: src/readelf.c:3600 +#: src/readelf.c:3603 #, c-format msgid "unknown attribute %hx" msgstr "atributo de sección %hx desconocido" -#: src/readelf.c:3603 +#: src/readelf.c:3606 #, c-format msgid "unknown user attribute %hx" msgstr "Atributo de usuario desconocido %hx" -#: src/readelf.c:3654 +#: src/readelf.c:3657 #, fuzzy, c-format msgid "unknown form %#" msgstr "Forma % desconocida" -#: src/readelf.c:3890 +#: src/readelf.c:3893 msgid "empty block" msgstr "bloque vacío" -#: src/readelf.c:3893 +#: src/readelf.c:3896 #, c-format msgid "%zu byte block:" msgstr "bloque de byte %zu:" -#: src/readelf.c:4416 +#: src/readelf.c:4419 #, c-format msgid "%*s[%4] %s \n" msgstr "%*s[%4] %s \n" -#: src/readelf.c:4452 +#: src/readelf.c:4455 #, c-format msgid "%s %# used with different address sizes" msgstr "%s %# utilizado con direcciones de diferente tamaño" -#: src/readelf.c:4459 +#: src/readelf.c:4462 #, c-format msgid "%s %# used with different offset sizes" msgstr "%s %# utilizado con offsetr de diferente tamaño" -#: src/readelf.c:4539 +#: src/readelf.c:4542 #, c-format msgid " [%6tx] \n" msgstr " [%6tx] \n" -#: src/readelf.c:4547 +#: src/readelf.c:4550 #, c-format msgid " [%6tx] ... % bytes ...\n" msgstr " [%6tx] ... % bytes ...\n" -#: src/readelf.c:4566 +#: src/readelf.c:4569 #, c-format msgid "" "\n" @@ -5126,7 +5130,7 @@ msgstr "" "Sección DWARF [%2zu] '%s' en compensación %#:\n" " [ Código]\n" -#: src/readelf.c:4574 +#: src/readelf.c:4577 #, c-format msgid "" "\n" @@ -5135,30 +5139,30 @@ msgstr "" "\n" "Sección de abreviatura en compensación %:\n" -#: src/readelf.c:4587 +#: src/readelf.c:4590 #, c-format msgid " *** error while reading abbreviation: %s\n" msgstr " *** error en lectura de abreviatura: %s\n" -#: src/readelf.c:4603 +#: src/readelf.c:4606 #, c-format msgid " [%5u] offset: %, children: %s, tag: %s\n" msgstr " [%5u] compensación: %, hijos: %s, etiqueta: %s\n" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "yes" msgstr "sí" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "no" msgstr "no" -#: src/readelf.c:4641 +#: src/readelf.c:4644 #, c-format msgid "cannot get .debug_aranges content: %s" msgstr "no se ha podido obtener contenido de .debug_aranges: %s" -#: src/readelf.c:4646 +#: src/readelf.c:4649 #, c-format msgid "" "\n" @@ -5173,12 +5177,12 @@ msgstr[1] "" "\n" "Sección DWARF [%2zu] '%s' en compensación %# contiene entradas %zu:\n" -#: src/readelf.c:4677 +#: src/readelf.c:4680 #, c-format msgid " [%*zu] ???\n" msgstr " [%*zu] ???\n" -#: src/readelf.c:4679 +#: src/readelf.c:4682 #, c-format msgid "" " [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" @@ -5186,13 +5190,13 @@ msgstr "" " Inicio [%*zu]: %0#*, longitud: %5, compensación CU DIE: " "%6\n" -#: src/readelf.c:4698 +#: src/readelf.c:4701 #, c-format msgid "cannot get .debug_ranges content: %s" msgstr "no se ha podido obtener contenido de .debug_ranges: %s" -#: src/readelf.c:4703 src/readelf.c:5204 src/readelf.c:5982 src/readelf.c:6483 -#: src/readelf.c:6598 src/readelf.c:6770 +#: src/readelf.c:4706 src/readelf.c:5207 src/readelf.c:5985 src/readelf.c:6486 +#: src/readelf.c:6601 src/readelf.c:6773 #, c-format msgid "" "\n" @@ -5201,37 +5205,37 @@ msgstr "" "\n" "Sección DWARF [%2zu] '%s' en compensación %#:\n" -#: src/readelf.c:4727 src/readelf.c:6508 +#: src/readelf.c:4730 src/readelf.c:6511 #, c-format msgid " [%6tx] \n" msgstr " [%6tx] \n" -#: src/readelf.c:4749 src/readelf.c:6530 +#: src/readelf.c:4752 src/readelf.c:6533 #, c-format msgid " [%6tx] base address %s\n" msgstr " [%6tx] (dirección base) %s\n" -#: src/readelf.c:4755 src/readelf.c:6536 +#: src/readelf.c:4758 src/readelf.c:6539 #, c-format msgid " [%6tx] empty list\n" msgstr " [%6tx] lista vacía\n" -#: src/readelf.c:4764 +#: src/readelf.c:4767 #, c-format msgid " [%6tx] %s..%s\n" msgstr " [%6tx] %s..%s\n" -#: src/readelf.c:4766 +#: src/readelf.c:4769 #, c-format msgid " %s..%s\n" msgstr " %s..%s\n" -#: src/readelf.c:5193 src/readelf.c:6838 src/readelf.c:6940 src/readelf.c:7098 +#: src/readelf.c:5196 src/readelf.c:6841 src/readelf.c:6943 src/readelf.c:7101 #, c-format msgid "cannot get %s content: %s" msgstr "No se puede obtener el contenido %s: %s" -#: src/readelf.c:5200 +#: src/readelf.c:5203 #, c-format msgid "" "\n" @@ -5241,12 +5245,12 @@ msgstr "" "Sección de información de marco de llamada [%2zu] '%s' en compensación " "%#:\n" -#: src/readelf.c:5228 src/readelf.c:6017 +#: src/readelf.c:5231 src/readelf.c:6020 #, c-format msgid "invalid data in section [%zu] '%s'" msgstr "Datos inválidos en sección [%zu] '%s'" -#: src/readelf.c:5250 +#: src/readelf.c:5253 #, c-format msgid "" "\n" @@ -5255,50 +5259,50 @@ msgstr "" "\n" " [%6tx] Terminator cero\n" -#: src/readelf.c:5335 +#: src/readelf.c:5338 #, c-format msgid "invalid augmentation length" msgstr "longitud de aumento inválida" -#: src/readelf.c:5347 +#: src/readelf.c:5350 msgid "FDE address encoding: " msgstr "Codificación de dirección FDE:" -#: src/readelf.c:5353 +#: src/readelf.c:5356 msgid "LSDA pointer encoding: " msgstr "Codificación de puntero LSDA:" -#: src/readelf.c:5451 +#: src/readelf.c:5454 #, c-format msgid " (offset: %#)" msgstr " (compensación: %#)" -#: src/readelf.c:5458 +#: src/readelf.c:5461 #, c-format msgid " (end offset: %#)" msgstr " (fin de compensación: %#)" -#: src/readelf.c:5485 +#: src/readelf.c:5488 #, c-format msgid " %-26sLSDA pointer: %#\n" msgstr "Puntero %-26sLSDA: %#\n" -#: src/readelf.c:5536 +#: src/readelf.c:5539 #, c-format msgid "cannot get attribute code: %s" msgstr "No se puede obtener código de atributo: %s" -#: src/readelf.c:5545 +#: src/readelf.c:5548 #, c-format msgid "cannot get attribute form: %s" msgstr "No se puede obtener forma de atributo: %s" -#: src/readelf.c:5560 +#: src/readelf.c:5563 #, c-format msgid "cannot get attribute value: %s" msgstr "No se puede obtener valor: %s" -#: src/readelf.c:5819 +#: src/readelf.c:5822 #, c-format msgid "" "\n" @@ -5309,7 +5313,7 @@ msgstr "" "Sección DWARF [%2zu] '%s' en compensación %#:\n" " [Offset]\n" -#: src/readelf.c:5851 +#: src/readelf.c:5854 #, c-format msgid "" " Type unit at offset %:\n" @@ -5322,7 +5326,7 @@ msgstr "" "Tamaño de dirección: %, Tamaño de compensación: %\n" " Tipo de firma: %#, Tipo de compensación: %#\n" -#: src/readelf.c:5860 +#: src/readelf.c:5863 #, c-format msgid "" " Compilation unit at offset %:\n" @@ -5333,39 +5337,39 @@ msgstr "" " Versión: %, Compensación de sección de abreviatura: %, " "Tamaño de dirección: %, Tamaño de compensación: %\n" -#: src/readelf.c:5886 +#: src/readelf.c:5889 #, c-format msgid "cannot get DIE at offset % in section '%s': %s" msgstr "no se puede obtener DIE en compensación % en sección '%s': %s" -#: src/readelf.c:5898 +#: src/readelf.c:5901 #, c-format msgid "cannot get DIE offset: %s" msgstr "no se puede obtener DIE en compensación: %s" -#: src/readelf.c:5907 +#: src/readelf.c:5910 #, c-format msgid "cannot get tag of DIE at offset % in section '%s': %s" msgstr "" "no se ha podido obtener etiqueta de DIE en compensación% en sección " "'%s': %s" -#: src/readelf.c:5938 +#: src/readelf.c:5941 #, c-format msgid "cannot get next DIE: %s\n" msgstr "No se puede obtener próximo DIE: %s\n" -#: src/readelf.c:5946 +#: src/readelf.c:5949 #, c-format msgid "cannot get next DIE: %s" msgstr "No se puede obtener próximo DIE: %s" -#: src/readelf.c:5995 +#: src/readelf.c:5998 #, c-format msgid "cannot get line data section data: %s" msgstr "No se puede obtener sección de datos de línea: %s" -#: src/readelf.c:6008 +#: src/readelf.c:6011 #, c-format msgid "" "\n" @@ -5374,7 +5378,7 @@ msgstr "" "\n" "Tabla en compensación %Zu:\n" -#: src/readelf.c:6063 +#: src/readelf.c:6066 #, c-format msgid "" "\n" @@ -5403,19 +5407,19 @@ msgstr "" "\n" "Códigos operativos:\n" -#: src/readelf.c:6084 +#: src/readelf.c:6087 #, c-format msgid "invalid data at offset %tu in section [%zu] '%s'" msgstr "datos inválidos en compensación %tu en sección [%zu] '%s'" -#: src/readelf.c:6099 +#: src/readelf.c:6102 #, c-format msgid " [%*] %hhu argument\n" msgid_plural " [%*] %hhu arguments\n" msgstr[0] " [%*] argumento %hhu \n" msgstr[1] " [%*] argumento %hhu\n" -#: src/readelf.c:6107 +#: src/readelf.c:6110 msgid "" "\n" "Directory table:" @@ -5423,7 +5427,7 @@ msgstr "" "\n" "Tabla de Directorio:" -#: src/readelf.c:6123 +#: src/readelf.c:6126 msgid "" "\n" "File name table:\n" @@ -5433,7 +5437,7 @@ msgstr "" "Tabla de nombre de archivo:\n" " Directorio de entrada Tiempo Tamaño Nombre" -#: src/readelf.c:6152 +#: src/readelf.c:6155 msgid "" "\n" "Line number statements:" @@ -5441,159 +5445,159 @@ msgstr "" "\n" " Declaraciones de número de Línea:" -#: src/readelf.c:6228 +#: src/readelf.c:6231 #, c-format msgid " special opcode %u: address+%u = %s, op_index = %u, line%+d = %zu\n" msgstr "" " opcode especial %u: dirección+%u = %s, op_index = %u, línea%+d = %zu\n" -#: src/readelf.c:6233 +#: src/readelf.c:6236 #, c-format msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" msgstr " opcode especial %u: dirección+%u = %s, línea%+d = %zu\n" -#: src/readelf.c:6253 +#: src/readelf.c:6256 #, c-format msgid " extended opcode %u: " msgstr " Código operativo extendido %u: " -#: src/readelf.c:6258 +#: src/readelf.c:6261 #, fuzzy msgid " end of sequence" msgstr "Fin de secuencia" -#: src/readelf.c:6275 +#: src/readelf.c:6278 #, fuzzy, c-format msgid " set address to %s\n" msgstr "Establecer dirección a %s\n" -#: src/readelf.c:6296 +#: src/readelf.c:6299 #, fuzzy, c-format msgid " define new file: dir=%u, mtime=%, length=%, name=%s\n" msgstr "" "definir nuevo archivo: dir=%u, mtime=%, longitud=%, nombre=" "%s\n" -#: src/readelf.c:6309 +#: src/readelf.c:6312 #, c-format msgid " set discriminator to %u\n" msgstr " establecer discriminador a %u\n" -#: src/readelf.c:6314 +#: src/readelf.c:6317 #, fuzzy msgid " unknown opcode" msgstr "código operativo desconocido " -#: src/readelf.c:6326 +#: src/readelf.c:6329 msgid " copy" msgstr "Copiar" -#: src/readelf.c:6337 +#: src/readelf.c:6340 #, fuzzy, c-format msgid " advance address by %u to %s, op_index to %u\n" msgstr "dirección avanzada por %u a %s, op_index a %u\n" -#: src/readelf.c:6341 +#: src/readelf.c:6344 #, fuzzy, c-format msgid " advance address by %u to %s\n" msgstr "Dirección de avance por %u a %s\n" -#: src/readelf.c:6352 +#: src/readelf.c:6355 #, c-format msgid " advance line by constant %d to %\n" msgstr " línea de avance por la constante %d a %\n" -#: src/readelf.c:6360 +#: src/readelf.c:6363 #, c-format msgid " set file to %\n" msgstr " establecer archivo a %\n" -#: src/readelf.c:6370 +#: src/readelf.c:6373 #, c-format msgid " set column to %\n" msgstr " Establecer columna a %\n" -#: src/readelf.c:6377 +#: src/readelf.c:6380 #, c-format msgid " set '%s' to %\n" msgstr "Establecer '%s' a %\n" -#: src/readelf.c:6383 +#: src/readelf.c:6386 msgid " set basic block flag" msgstr "Establecer bandera de bloque básico" -#: src/readelf.c:6392 +#: src/readelf.c:6395 #, fuzzy, c-format msgid " advance address by constant %u to %s, op_index to %u\n" msgstr "dirección avanzada por constante %u a %s, op_index a %u\n" -#: src/readelf.c:6396 +#: src/readelf.c:6399 #, fuzzy, c-format msgid " advance address by constant %u to %s\n" msgstr "Dirección de avance por constante %u a %s\n" -#: src/readelf.c:6414 +#: src/readelf.c:6417 #, fuzzy, c-format msgid " advance address by fixed value %u to %s\n" msgstr "dirección de avance por valor corregido %u a %s\n" -#: src/readelf.c:6423 +#: src/readelf.c:6426 msgid " set prologue end flag" msgstr " Establecer bandera prologue_end" -#: src/readelf.c:6428 +#: src/readelf.c:6431 msgid " set epilogue begin flag" msgstr " Establecer bandera epilogue_begin" -#: src/readelf.c:6437 +#: src/readelf.c:6440 #, c-format msgid " set isa to %u\n" msgstr " establecer isa para %u\n" -#: src/readelf.c:6446 +#: src/readelf.c:6449 #, c-format msgid " unknown opcode with % parameter:" msgid_plural " unknown opcode with % parameters:" msgstr[0] " opcódigo con parámetro % desconocido:" msgstr[1] " opcódigo con parámetros % desconocido:" -#: src/readelf.c:6478 +#: src/readelf.c:6481 #, c-format msgid "cannot get .debug_loc content: %s" msgstr "no es posible obtener contenido de .debug_loc: %s" -#: src/readelf.c:6548 +#: src/readelf.c:6551 #, c-format msgid " [%6tx] %s..%s" msgstr " [%6tx] %s..%s" -#: src/readelf.c:6550 +#: src/readelf.c:6553 #, c-format msgid " %s..%s" msgstr " %s..%s" -#: src/readelf.c:6557 +#: src/readelf.c:6560 msgid " \n" msgstr " \n" -#: src/readelf.c:6609 +#: src/readelf.c:6612 #, c-format msgid "cannot get macro information section data: %s" msgstr "no es posible obtener datos de la sección de macro información: %s" -#: src/readelf.c:6688 +#: src/readelf.c:6691 #, c-format msgid "%*s*** non-terminated string at end of section" msgstr "%*s*** cadena no finalizada al final de la sección" -#: src/readelf.c:6756 +#: src/readelf.c:6759 #, c-format msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" msgstr "" " Compensación [%5d] DIE: %6, Compensación CU DIE: %6, " "nombre: %s\n" -#: src/readelf.c:6796 +#: src/readelf.c:6799 #, c-format msgid "" "\n" @@ -5604,12 +5608,12 @@ msgstr "" "Sección DWARF [%2zu] '%s' en compensación %#:\n" " %*s String\n" -#: src/readelf.c:6810 +#: src/readelf.c:6813 #, c-format msgid " *** error while reading strings: %s\n" msgstr " *** error en lectura de cadenas: %s\n" -#: src/readelf.c:6830 +#: src/readelf.c:6833 #, c-format msgid "" "\n" @@ -5618,7 +5622,7 @@ msgstr "" "\n" "Sección de tabla de búsqueda de marco de llamada [%2zu] '.eh_frame_hdr':\n" -#: src/readelf.c:6932 +#: src/readelf.c:6935 #, c-format msgid "" "\n" @@ -5627,22 +5631,22 @@ msgstr "" "\n" "Excepción en el manejo de la sección de tabla [%2zu] '.gcc_except_table':\n" -#: src/readelf.c:6955 +#: src/readelf.c:6958 #, c-format msgid " LPStart encoding: %#x " msgstr "Codificación LPStart: %#x " -#: src/readelf.c:6967 +#: src/readelf.c:6970 #, c-format msgid " TType encoding: %#x " msgstr "Codificación TType: %#x " -#: src/readelf.c:6981 +#: src/readelf.c:6984 #, c-format msgid " Call site encoding: %#x " msgstr "Codificación de sitio de llamada: %#x " -#: src/readelf.c:6994 +#: src/readelf.c:6997 msgid "" "\n" " Call site table:" @@ -5650,7 +5654,7 @@ msgstr "" "\n" " Tabla de sitio de llamada:" -#: src/readelf.c:7008 +#: src/readelf.c:7011 #, c-format msgid "" " [%4u] Call site start: %#\n" @@ -5663,12 +5667,12 @@ msgstr "" " Landing pad: %#\n" " Action: %u\n" -#: src/readelf.c:7068 +#: src/readelf.c:7071 #, c-format msgid "invalid TType encoding" msgstr "Codificación TType inválida" -#: src/readelf.c:7089 +#: src/readelf.c:7092 #, fuzzy, c-format msgid "" "\n" @@ -5677,42 +5681,42 @@ msgstr "" "\n" "Sección DWARF [%2zu] '%s' en compensación %# contiene entrada %zu:\n" -#: src/readelf.c:7118 +#: src/readelf.c:7121 #, fuzzy, c-format msgid " Version: %\n" msgstr " %s: %\n" -#: src/readelf.c:7124 +#: src/readelf.c:7127 #, c-format msgid " unknown version, cannot parse section\n" msgstr "" -#: src/readelf.c:7133 +#: src/readelf.c:7136 #, fuzzy, c-format msgid " CU offset: %#\n" msgstr " (compensación: %#)" -#: src/readelf.c:7140 +#: src/readelf.c:7143 #, fuzzy, c-format msgid " TU offset: %#\n" msgstr " (compensación: %#)" -#: src/readelf.c:7147 +#: src/readelf.c:7150 #, fuzzy, c-format msgid " address offset: %#\n" msgstr " (fin de compensación: %#)" -#: src/readelf.c:7154 +#: src/readelf.c:7157 #, fuzzy, c-format msgid " symbol offset: %#\n" msgstr " (compensación: %#)" -#: src/readelf.c:7161 +#: src/readelf.c:7164 #, fuzzy, c-format msgid " constant offset: %#\n" msgstr " (fin de compensación: %#)" -#: src/readelf.c:7168 +#: src/readelf.c:7171 #, fuzzy, c-format msgid "" "\n" @@ -5721,7 +5725,7 @@ msgstr "" "\n" "Sección DWARF [%2zu] '%s' en compensación %# contiene entrada %zu:\n" -#: src/readelf.c:7190 +#: src/readelf.c:7193 #, fuzzy, c-format msgid "" "\n" @@ -5730,7 +5734,7 @@ msgstr "" "\n" "Sección DWARF [%2zu] '%s' en compensación %# contiene entrada %zu:\n" -#: src/readelf.c:7216 +#: src/readelf.c:7219 #, fuzzy, c-format msgid "" "\n" @@ -5739,7 +5743,7 @@ msgstr "" "\n" "Sección DWARF [%2zu] '%s' en compensación %# contiene entrada %zu:\n" -#: src/readelf.c:7243 +#: src/readelf.c:7246 #, fuzzy, c-format msgid "" "\n" @@ -5748,17 +5752,17 @@ msgstr "" "\n" "Tabla de símbolos inválida en compensación %#0\n" -#: src/readelf.c:7292 +#: src/readelf.c:7295 #, c-format msgid "cannot get debug context descriptor: %s" msgstr "no se puede depurar descriptor de contexto: %s" -#: src/readelf.c:7441 src/readelf.c:8042 +#: src/readelf.c:7444 src/readelf.c:8045 #, c-format msgid "cannot convert core note data: %s" msgstr "no es posible convertir datos de la nota principal: %s" -#: src/readelf.c:7782 +#: src/readelf.c:7785 #, c-format msgid "" "\n" @@ -5767,21 +5771,21 @@ msgstr "" "\n" "%*s... ..." -#: src/readelf.c:8141 +#: src/readelf.c:8144 msgid " Owner Data size Type\n" msgstr " Owner Data size Type\n" -#: src/readelf.c:8159 +#: src/readelf.c:8162 #, c-format msgid " %-13.*s %9 %s\n" msgstr " %-13.*s %9 %s\n" -#: src/readelf.c:8193 +#: src/readelf.c:8196 #, c-format msgid "cannot get content of note section: %s" msgstr "no se puede obtener el contenido de sección de nota: %s" -#: src/readelf.c:8220 +#: src/readelf.c:8223 #, c-format msgid "" "\n" @@ -5790,7 +5794,7 @@ msgstr "" "\n" "Sección de nota [%2zu] '%s' de % bytes en compensación %#0:\n" -#: src/readelf.c:8243 +#: src/readelf.c:8246 #, c-format msgid "" "\n" @@ -5799,7 +5803,7 @@ msgstr "" "\n" "Segmento de nota de % bytes en compensación %#0:\n" -#: src/readelf.c:8289 +#: src/readelf.c:8292 #, c-format msgid "" "\n" @@ -5808,12 +5812,12 @@ msgstr "" "\n" "Sección [%Zu] '%s' no tiene datos para volcar.\n" -#: src/readelf.c:8295 src/readelf.c:8318 +#: src/readelf.c:8298 src/readelf.c:8321 #, c-format msgid "cannot get data for section [%Zu] '%s': %s" msgstr "no se pueden obtener datos para sección [%Zu] '%s': %s" -#: src/readelf.c:8299 +#: src/readelf.c:8302 #, c-format msgid "" "\n" @@ -5823,7 +5827,7 @@ msgstr "" "Volcado Hex de sección [%Zu] '%s', % bytes en compensación " "%#0:\n" -#: src/readelf.c:8312 +#: src/readelf.c:8315 #, c-format msgid "" "\n" @@ -5832,7 +5836,7 @@ msgstr "" "\n" "Sección [%Zu] '%s' no tiene datos para volcar.\n" -#: src/readelf.c:8322 +#: src/readelf.c:8325 #, c-format msgid "" "\n" @@ -5842,7 +5846,7 @@ msgstr "" "Sección de cadena [%Zu] '%s' contiene % bytes en compensación " "%#0:\n" -#: src/readelf.c:8370 +#: src/readelf.c:8373 #, c-format msgid "" "\n" @@ -5851,7 +5855,7 @@ msgstr "" "\n" "sección [%lu] no existe" -#: src/readelf.c:8399 +#: src/readelf.c:8402 #, c-format msgid "" "\n" @@ -5860,12 +5864,12 @@ msgstr "" "\n" "sección '%s' no existe" -#: src/readelf.c:8456 +#: src/readelf.c:8459 #, c-format msgid "cannot get symbol index of archive '%s': %s" msgstr "no se puede obtener el índice de símbolo de archivo '%s': %s" -#: src/readelf.c:8459 +#: src/readelf.c:8462 #, c-format msgid "" "\n" @@ -5874,7 +5878,7 @@ msgstr "" "\n" "Archivo '%s' no tiene índice de símbolo\n" -#: src/readelf.c:8463 +#: src/readelf.c:8466 #, c-format msgid "" "\n" @@ -5883,12 +5887,12 @@ msgstr "" "\n" "Índice de archivo '%s' tiene %Zu entradas:\n" -#: src/readelf.c:8481 +#: src/readelf.c:8484 #, c-format msgid "cannot extract member at offset %Zu in '%s': %s" msgstr "no es posible extraer miembro en compensación %Zu en '%s': %s" -#: src/readelf.c:8486 +#: src/readelf.c:8489 #, c-format msgid "Archive member '%s' contains:\n" msgstr "Miembro de archivo contiene '%s':\n" diff --git a/po/ja.po b/po/ja.po index 6bc46aefd..e0bf9403a 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ja\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" -"POT-Creation-Date: 2011-07-09 02:32-0700\n" +"POT-Creation-Date: 2011-09-29 15:40-0400\n" "PO-Revision-Date: 2009-09-20 15:32+0900\n" "Last-Translator: Hyu_gabaru Ryu_ichi \n" "Language-Team: Japanese \n" @@ -19,8 +19,8 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2841 -#: src/readelf.c:3180 src/unstrip.c:2098 src/unstrip.c:2306 +#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2844 +#: src/readelf.c:3183 src/unstrip.c:2098 src/unstrip.c:2306 #, c-format msgid "memory exhausted" msgstr "メモリー消費済み" @@ -470,7 +470,7 @@ msgstr "ソース演算子の大きさが無効" msgid "invalid size of destination operand" msgstr "宛先演算子の大きさが無効" -#: libelf/elf_error.c:108 src/readelf.c:5173 +#: libelf/elf_error.c:108 src/readelf.c:5176 #, c-format msgid "invalid encoding" msgstr "無効なエンコード" @@ -552,8 +552,8 @@ msgstr "データ/scnが不整合です" msgid "invalid section header" msgstr "不当なセクションヘッダー" -#: libelf/elf_error.c:208 src/readelf.c:6850 src/readelf.c:6951 -#: src/readelf.c:7113 +#: libelf/elf_error.c:208 src/readelf.c:6853 src/readelf.c:6954 +#: src/readelf.c:7116 #, c-format msgid "invalid data" msgstr "不当なデータ" @@ -641,7 +641,7 @@ msgstr "" #: src/addr2line.c:189 src/ar.c:289 src/elfcmp.c:670 src/elflint.c:239 #: src/findtextrel.c:170 src/ld.c:957 src/nm.c:253 src/objdump.c:181 -#: src/ranlib.c:136 src/readelf.c:459 src/size.c:219 src/strings.c:227 +#: src/ranlib.c:136 src/readelf.c:462 src/size.c:219 src/strings.c:227 #: src/strip.c:221 src/unstrip.c:234 #, c-format msgid "" @@ -655,7 +655,7 @@ msgstr "" #: src/addr2line.c:194 src/ar.c:294 src/elfcmp.c:675 src/elflint.c:244 #: src/findtextrel.c:175 src/ld.c:962 src/nm.c:258 src/objdump.c:186 -#: src/ranlib.c:141 src/readelf.c:464 src/size.c:224 src/strings.c:232 +#: src/ranlib.c:141 src/readelf.c:467 src/size.c:224 src/strings.c:232 #: src/strip.c:226 src/unstrip.c:239 #, c-format msgid "Written by %s.\n" @@ -813,112 +813,112 @@ msgstr "アーカイブ名が必要です" msgid "More than one operation specified" msgstr "1つを越える操作が指定されました" -#: src/ar.c:404 +#: src/ar.c:408 #, c-format msgid "cannot open archive '%s'" msgstr "アーカイブ '%s' を開くことができません" -#: src/ar.c:414 +#: src/ar.c:418 #, c-format msgid "cannot open archive '%s': %s" msgstr "アーカイブ '%s' を開けません: %s" -#: src/ar.c:418 +#: src/ar.c:422 #, c-format msgid "%s: not an archive file" msgstr "%s: アーカイブファイルではありません" -#: src/ar.c:422 +#: src/ar.c:426 #, c-format msgid "cannot stat archive '%s'" msgstr "アーカイブに stat できません: '%s'" -#: src/ar.c:434 +#: src/ar.c:438 #, c-format msgid "no entry %s in archive\n" msgstr "アーカイブに項目 %s がありません\n" -#: src/ar.c:487 src/ar.c:929 src/ar.c:1129 +#: src/ar.c:491 src/ar.c:933 src/ar.c:1133 #, c-format msgid "cannot create hash table" msgstr "ハッシュテーブルを生成できません" -#: src/ar.c:494 src/ar.c:936 src/ar.c:1138 +#: src/ar.c:498 src/ar.c:940 src/ar.c:1142 #, c-format msgid "cannot insert into hash table" msgstr "ハッシュに挿入できません" -#: src/ar.c:502 src/ranlib.c:176 +#: src/ar.c:506 src/ranlib.c:176 #, c-format msgid "cannot stat '%s'" msgstr "'%s' に stat できません" -#: src/ar.c:598 +#: src/ar.c:602 #, c-format msgid "cannot read content of %s: %s" msgstr "%s の内容を読むことができません: %s" -#: src/ar.c:641 +#: src/ar.c:645 #, c-format msgid "cannot open %.*s" msgstr "%.*s を開けません" -#: src/ar.c:663 +#: src/ar.c:667 #, c-format msgid "failed to write %s" msgstr "%s への書込みに失敗しました" -#: src/ar.c:675 +#: src/ar.c:679 #, c-format msgid "cannot change mode of %s" msgstr "%s のモードを変更できません" -#: src/ar.c:691 +#: src/ar.c:695 #, c-format msgid "cannot change modification time of %s" msgstr "%s の更新時間を変更できません" -#: src/ar.c:737 +#: src/ar.c:741 #, c-format msgid "cannot rename temporary file to %.*s" msgstr "一時ファイルを %.*s に名前変更できません" -#: src/ar.c:773 src/ar.c:1021 src/ar.c:1419 src/ranlib.c:250 +#: src/ar.c:777 src/ar.c:1025 src/ar.c:1423 src/ranlib.c:250 #, c-format msgid "cannot create new file" msgstr "新しいファイルを生成できません" -#: src/ar.c:1220 +#: src/ar.c:1224 #, c-format msgid "position member %s not found" msgstr "位置メンバー %s が見つかりません" -#: src/ar.c:1230 +#: src/ar.c:1234 #, c-format msgid "%s: no entry %s in archive!\n" msgstr "%s: 項目 %s がアーカイブにありません!\n" -#: src/ar.c:1259 src/ldgeneric.c:517 src/objdump.c:257 +#: src/ar.c:1263 src/ldgeneric.c:517 src/objdump.c:257 #, c-format msgid "cannot open %s" msgstr "%s を開けません" -#: src/ar.c:1264 +#: src/ar.c:1268 #, c-format msgid "cannot stat %s" msgstr "%s を stat できません" -#: src/ar.c:1270 +#: src/ar.c:1274 #, c-format msgid "%s is no regular file" msgstr "%s は一般ファイルではありません" -#: src/ar.c:1283 +#: src/ar.c:1287 #, c-format msgid "cannot get ELF descriptor for %s: %s\n" msgstr "%s の ELF 記述子を得られません: %s\n" -#: src/ar.c:1302 +#: src/ar.c:1306 #, c-format msgid "cannot read %s: %s" msgstr "%s を読みません: %s" @@ -1162,11 +1162,11 @@ msgstr "" msgid "Pedantic checking of ELF files compliance with gABI/psABI spec." msgstr "ELF ファイルが gABI/psABI 仕様へ準拠しているかの厳密なチェック。" -#: src/elflint.c:86 src/readelf.c:118 +#: src/elflint.c:86 src/readelf.c:119 msgid "FILE..." msgstr "ふぁいる..." -#: src/elflint.c:159 src/readelf.c:274 +#: src/elflint.c:159 src/readelf.c:275 #, c-format msgid "cannot open input file" msgstr "入力ファイルを開けません" @@ -1185,7 +1185,7 @@ msgstr "Elf 記述子を閉じている時にエラー: %s\n" msgid "No errors" msgstr "エラーはありません" -#: src/elflint.c:223 src/readelf.c:435 +#: src/elflint.c:223 src/readelf.c:436 msgid "Missing file name.\n" msgstr "ファイル名がありません。\n" @@ -3338,7 +3338,7 @@ msgstr "" "警告: `%1$s の大きさが %3$s の %2$ から %5$s の %4$ に変更さ" "れました" -#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:639 src/strip.c:570 +#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:642 src/strip.c:570 #, c-format msgid "cannot determine number of sections: %s" msgstr "セクション数を決定できません: %s" @@ -3776,11 +3776,11 @@ msgstr "%s%s%s: ファイル形式を認識できません" msgid "cannot create search tree" msgstr "検索ツリーを生成できません" -#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:895 -#: src/readelf.c:1038 src/readelf.c:1186 src/readelf.c:1368 src/readelf.c:1568 -#: src/readelf.c:1754 src/readelf.c:1964 src/readelf.c:2218 src/readelf.c:2284 -#: src/readelf.c:2362 src/readelf.c:2860 src/readelf.c:2896 src/readelf.c:2958 -#: src/readelf.c:7303 src/readelf.c:8208 src/readelf.c:8355 src/readelf.c:8423 +#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:898 +#: src/readelf.c:1041 src/readelf.c:1189 src/readelf.c:1371 src/readelf.c:1571 +#: src/readelf.c:1757 src/readelf.c:1967 src/readelf.c:2221 src/readelf.c:2287 +#: src/readelf.c:2365 src/readelf.c:2863 src/readelf.c:2899 src/readelf.c:2961 +#: src/readelf.c:7306 src/readelf.c:8211 src/readelf.c:8358 src/readelf.c:8426 #: src/size.c:425 src/size.c:499 src/strip.c:510 #, c-format msgid "cannot get section header string table index" @@ -3856,7 +3856,7 @@ msgstr "" msgid "Show information from FILEs (a.out by default)." msgstr "" -#: src/objdump.c:236 src/readelf.c:440 +#: src/objdump.c:236 src/readelf.c:441 msgid "No operation specified.\n" msgstr "操作が指定されていません。\n" @@ -3865,11 +3865,11 @@ msgstr "操作が指定されていません。\n" msgid "while close `%s'" msgstr "" -#: src/objdump.c:379 src/readelf.c:1663 src/readelf.c:1837 +#: src/objdump.c:379 src/readelf.c:1666 src/readelf.c:1840 msgid "INVALID SYMBOL" msgstr "不当なシンボル" -#: src/objdump.c:394 src/readelf.c:1694 src/readelf.c:1870 +#: src/objdump.c:394 src/readelf.c:1697 src/readelf.c:1873 msgid "INVALID SECTION" msgstr "不当なセクション" @@ -4009,91 +4009,95 @@ msgstr "出力制御:" msgid "Do not find symbol names for addresses in DWARF data" msgstr "DWARFデータ中のアドレスのためのシンボル名を探さない" -#: src/readelf.c:114 +#: src/readelf.c:110 +msgid "Ignored for compatibility (lines always wide)" +msgstr "" + +#: src/readelf.c:115 msgid "Print information from ELF file in human-readable form." msgstr "ELF ファイルから人間が読める形で情報を印刷する。" -#: src/readelf.c:411 +#: src/readelf.c:412 #, c-format msgid "Unknown DWARF debug section `%s'.\n" msgstr "不明な DWARF デバッグセクション `%s'.\n" -#: src/readelf.c:475 +#: src/readelf.c:478 #, c-format msgid "cannot generate Elf descriptor: %s" msgstr "Elf 記述子を生成できません: %s" -#: src/readelf.c:487 +#: src/readelf.c:490 #, c-format msgid "'%s' is not an archive, cannot print archive index" msgstr "'%s' はアーカイブではなく、アーカイブ索引を印刷できません" -#: src/readelf.c:492 +#: src/readelf.c:495 #, c-format msgid "error while closing Elf descriptor: %s" msgstr "Elf 記述子を閉じている時にエラー: %s" -#: src/readelf.c:584 +#: src/readelf.c:587 #, c-format msgid "cannot stat input file" msgstr "入力ファイルを stat できません" -#: src/readelf.c:586 +#: src/readelf.c:589 #, c-format msgid "input file is empty" msgstr "入力ファイルが空です" -#: src/readelf.c:588 +#: src/readelf.c:591 #, c-format msgid "failed reading '%s': %s" msgstr "'%s' の読込みに失敗: %s" -#: src/readelf.c:624 +#: src/readelf.c:627 #, c-format msgid "cannot read ELF header: %s" msgstr "ELF ヘッダーが読めません: %s" -#: src/readelf.c:632 +#: src/readelf.c:635 #, c-format msgid "cannot create EBL handle" msgstr "EBL ヘッダーを生成できません" -#: src/readelf.c:645 +#: src/readelf.c:648 #, fuzzy, c-format msgid "cannot determine number of program headers: %s" msgstr "セクション数を決定できません: %s" -#: src/readelf.c:731 +#: src/readelf.c:734 msgid "NONE (None)" msgstr "なし (なし)" -#: src/readelf.c:732 +#: src/readelf.c:735 msgid "REL (Relocatable file)" msgstr "REL (リロケータブルファイル)" -#: src/readelf.c:733 +#: src/readelf.c:736 msgid "EXEC (Executable file)" msgstr "(EXEC (実行ファイル)" -#: src/readelf.c:734 +#: src/readelf.c:737 msgid "DYN (Shared object file)" msgstr "DYN (共用オブジェクトファイル)" -#: src/readelf.c:735 +#: src/readelf.c:738 msgid "CORE (Core file)" msgstr "CORE (コアファイル)" -#: src/readelf.c:740 +#: src/readelf.c:743 #, c-format msgid "OS Specific: (%x)\n" msgstr "OS 固有: (%x)\n" -#: src/readelf.c:742 +#: src/readelf.c:745 #, c-format msgid "Processor Specific: (%x)\n" msgstr "プロセッサー固有: (%x)\n" -#: src/readelf.c:752 +#: src/readelf.c:755 msgid "" "ELF Header:\n" " Magic: " @@ -4101,7 +4105,7 @@ msgstr "" "ELF ヘッダー:\n" " マジック: " -#: src/readelf.c:756 +#: src/readelf.c:759 #, c-format msgid "" "\n" @@ -4110,117 +4114,117 @@ msgstr "" "\n" " クラス: %s\n" -#: src/readelf.c:761 +#: src/readelf.c:764 #, c-format msgid " Data: %s\n" msgstr " データ: %s\n" -#: src/readelf.c:767 +#: src/readelf.c:770 #, c-format msgid " Ident Version: %hhd %s\n" msgstr " 識別バージョン: %hhd %s\n" -#: src/readelf.c:769 src/readelf.c:786 +#: src/readelf.c:772 src/readelf.c:789 msgid "(current)" msgstr "(現在)" -#: src/readelf.c:773 +#: src/readelf.c:776 #, c-format msgid " OS/ABI: %s\n" msgstr " OS/ABI: %s\n" -#: src/readelf.c:776 +#: src/readelf.c:779 #, c-format msgid " ABI Version: %hhd\n" msgstr " ABI バージョン: %hhd\n" -#: src/readelf.c:779 +#: src/readelf.c:782 msgid " Type: " msgstr " タイプ: " -#: src/readelf.c:782 +#: src/readelf.c:785 #, c-format msgid " Machine: %s\n" msgstr " マシン : %s\n" -#: src/readelf.c:784 +#: src/readelf.c:787 #, c-format msgid " Version: %d %s\n" msgstr " バージョン: %d %s\n" -#: src/readelf.c:788 +#: src/readelf.c:791 #, c-format msgid " Entry point address: %#\n" msgstr " 入口点アドレス : %#\n" -#: src/readelf.c:791 +#: src/readelf.c:794 #, c-format msgid " Start of program headers: % %s\n" msgstr " プログラムヘッダーの開始: % %s\n" -#: src/readelf.c:792 src/readelf.c:795 +#: src/readelf.c:795 src/readelf.c:798 msgid "(bytes into file)" msgstr "(ファイルへのバイト数)" -#: src/readelf.c:794 +#: src/readelf.c:797 #, c-format msgid " Start of section headers: % %s\n" msgstr " セクションヘッダーの開始: % %s\n" -#: src/readelf.c:797 +#: src/readelf.c:800 #, c-format msgid " Flags: %s\n" msgstr " フラグ: %s\n" -#: src/readelf.c:800 +#: src/readelf.c:803 #, c-format msgid " Size of this header: % %s\n" msgstr " このヘッダーの大きさ: % %s\n" -#: src/readelf.c:801 src/readelf.c:804 src/readelf.c:821 +#: src/readelf.c:804 src/readelf.c:807 src/readelf.c:824 msgid "(bytes)" msgstr "(バイト)" -#: src/readelf.c:803 +#: src/readelf.c:806 #, c-format msgid " Size of program header entries: % %s\n" msgstr " プログラムヘッダー項目の大きさ:% %s\n" -#: src/readelf.c:806 +#: src/readelf.c:809 #, fuzzy, c-format msgid " Number of program headers entries: %" msgstr " プログラムヘッダー項目の数 : %\n" -#: src/readelf.c:813 +#: src/readelf.c:816 #, fuzzy, c-format msgid " (% in [0].sh_info)" msgstr "([0].sh_link の %)" -#: src/readelf.c:816 src/readelf.c:833 src/readelf.c:847 +#: src/readelf.c:819 src/readelf.c:836 src/readelf.c:850 msgid " ([0] not available)" msgstr "([0]は使えません)" -#: src/readelf.c:820 +#: src/readelf.c:823 #, c-format msgid " Size of section header entries: % %s\n" msgstr " セクションヘッダー項目の大きさ:% %s\n" -#: src/readelf.c:823 +#: src/readelf.c:826 #, c-format msgid " Number of section headers entries: %" msgstr " セクションヘッダー項目の数 : %" -#: src/readelf.c:830 +#: src/readelf.c:833 #, c-format msgid " (% in [0].sh_size)" msgstr " ([0].sh_size の %)" -#: src/readelf.c:843 +#: src/readelf.c:846 #, c-format msgid " (% in [0].sh_link)" msgstr "([0].sh_link の %)" -#: src/readelf.c:851 +#: src/readelf.c:854 #, c-format msgid "" " Section header string table index: XINDEX%s\n" @@ -4229,7 +4233,7 @@ msgstr "" " セクションヘッダー文字列テーブル索引: XINDEX%s\n" "\n" -#: src/readelf.c:855 +#: src/readelf.c:858 #, c-format msgid "" " Section header string table index: %\n" @@ -4238,7 +4242,7 @@ msgstr "" " セクションヘッダー文字列テーブル索引: %\n" "\n" -#: src/readelf.c:887 +#: src/readelf.c:890 #, c-format msgid "" "There are %d section headers, starting at offset %#:\n" @@ -4247,11 +4251,11 @@ msgstr "" "オフセット %2$# から始まる %1$d 個のセクションヘッダーがあります:\n" "\n" -#: src/readelf.c:897 +#: src/readelf.c:900 msgid "Section Headers:" msgstr "セクションヘッダー:" -#: src/readelf.c:900 +#: src/readelf.c:903 msgid "" "[Nr] Name Type Addr Off Size ES Flags Lk " "Inf Al" @@ -4259,7 +4263,7 @@ msgstr "" "[番] 名前 タイプ アドレス オフセ 大きさ ES フラグLk " "Inf Al" -#: src/readelf.c:902 +#: src/readelf.c:905 msgid "" "[Nr] Name Type Addr Off Size ES " "Flags Lk Inf Al" @@ -4267,12 +4271,12 @@ msgstr "" "[番] 名前 タイプ アドレス オフセ 大きさ ES " "フラグLk Inf Al" -#: src/readelf.c:909 src/readelf.c:1062 +#: src/readelf.c:912 src/readelf.c:1065 #, c-format msgid "cannot get section: %s" msgstr "セクションを得られません: %s" -#: src/readelf.c:916 src/readelf.c:1070 src/readelf.c:8375 src/unstrip.c:353 +#: src/readelf.c:919 src/readelf.c:1073 src/readelf.c:8378 src/unstrip.c:353 #: src/unstrip.c:384 src/unstrip.c:433 src/unstrip.c:541 src/unstrip.c:558 #: src/unstrip.c:594 src/unstrip.c:792 src/unstrip.c:1060 src/unstrip.c:1250 #: src/unstrip.c:1310 src/unstrip.c:1431 src/unstrip.c:1484 src/unstrip.c:1591 @@ -4281,17 +4285,17 @@ msgstr "セクションを得られません: %s" msgid "cannot get section header: %s" msgstr "セクションヘッダーを得られません: %s" -#: src/readelf.c:974 +#: src/readelf.c:977 msgid "Program Headers:" msgstr "プログラムヘッダー:" -#: src/readelf.c:976 +#: src/readelf.c:979 msgid "" " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" msgstr "" " タイプ オフセ 仮アドレス 物アドレス ファイ量 メモ量 Flg 調整 " -#: src/readelf.c:979 +#: src/readelf.c:982 msgid "" " Type Offset VirtAddr PhysAddr FileSiz " "MemSiz Flg Align" @@ -4299,12 +4303,12 @@ msgstr "" " タイプ オフセ 仮想アドレス 物理アドレス ファイル量メモ" "量 Flg 調整 " -#: src/readelf.c:1019 +#: src/readelf.c:1022 #, c-format msgid "\t[Requesting program interpreter: %s]\n" msgstr "\t[プログラム割込みを要求: %s]\n" -#: src/readelf.c:1040 +#: src/readelf.c:1043 msgid "" "\n" " Section to Segment mapping:\n" @@ -4314,12 +4318,12 @@ msgstr "" " セクションからセグメントへのマッビング:\n" " セグメント セクション..." -#: src/readelf.c:1051 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 +#: src/readelf.c:1054 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 #, c-format msgid "cannot get program header: %s" msgstr "プログラムヘッダーを得られません: %s" -#: src/readelf.c:1192 +#: src/readelf.c:1195 #, c-format msgid "" "\n" @@ -4332,7 +4336,7 @@ msgstr[0] "" "署名 '%3$s' を持つ COMDAT セクショングループ [%1$2zu] '%2$s' には %4$zu 個の" "項目があります:\n" -#: src/readelf.c:1197 +#: src/readelf.c:1200 #, c-format msgid "" "\n" @@ -4345,15 +4349,15 @@ msgstr[0] "" "署名 '%3$s' を持つセクショングループ [%1$2zu] '%2$s' には %4$zu 個の項目があ" "ります:\n" -#: src/readelf.c:1205 +#: src/readelf.c:1208 msgid "" msgstr "<不当なシンボル>" -#: src/readelf.c:1219 +#: src/readelf.c:1222 msgid "" msgstr "<不当なセクション>" -#: src/readelf.c:1370 +#: src/readelf.c:1373 #, c-format msgid "" "\n" @@ -4369,36 +4373,36 @@ msgstr[0] "" " アドレス: %#0* オフセット: %#08 セクションへのリンク: " "[%2u] '%s'\n" -#: src/readelf.c:1382 +#: src/readelf.c:1385 msgid " Type Value\n" msgstr " タイプ 値\n" -#: src/readelf.c:1406 +#: src/readelf.c:1409 #, c-format msgid "Shared library: [%s]\n" msgstr "共用ライブラリー: [%s]\n" -#: src/readelf.c:1411 +#: src/readelf.c:1414 #, c-format msgid "Library soname: [%s]\n" msgstr "ライブラリー so 名: [%s]\n" -#: src/readelf.c:1416 +#: src/readelf.c:1419 #, c-format msgid "Library rpath: [%s]\n" msgstr "ライブラリー rパス: [%s]\n" -#: src/readelf.c:1421 +#: src/readelf.c:1424 #, c-format msgid "Library runpath: [%s]\n" msgstr "ライブラリー run パス: [%s]\n" -#: src/readelf.c:1441 +#: src/readelf.c:1444 #, c-format msgid "% (bytes)\n" msgstr "% (バイト)\n" -#: src/readelf.c:1553 src/readelf.c:1739 +#: src/readelf.c:1556 src/readelf.c:1742 #, c-format msgid "" "\n" @@ -4407,7 +4411,7 @@ msgstr "" "\n" "オフセット %#0 に不当なシンボルテーブル\n" -#: src/readelf.c:1571 src/readelf.c:1756 +#: src/readelf.c:1574 src/readelf.c:1759 #, c-format msgid "" "\n" @@ -4422,7 +4426,7 @@ msgstr[0] "" "オフセット %5$#0 のセクション [%3$2u] '%4$s' 用のリロケーションセク" "ション [%1$2zu] '%2$s' には %6$d 個の項目があります:\n" -#: src/readelf.c:1586 +#: src/readelf.c:1589 #, c-format msgid "" "\n" @@ -4435,29 +4439,29 @@ msgstr[0] "" "オフセット %3$#0 のリロケーションセクション [%1$2u] '%2$s' には %4$d " "個の項目があります:\n" -#: src/readelf.c:1596 +#: src/readelf.c:1599 msgid " Offset Type Value Name\n" msgstr " オフセット タイプ 値 名前\n" -#: src/readelf.c:1598 +#: src/readelf.c:1601 msgid " Offset Type Value Name\n" msgstr " オフセット タイプ 値 名前\n" -#: src/readelf.c:1651 src/readelf.c:1662 src/readelf.c:1675 src/readelf.c:1693 -#: src/readelf.c:1705 src/readelf.c:1824 src/readelf.c:1836 src/readelf.c:1850 -#: src/readelf.c:1869 src/readelf.c:1882 +#: src/readelf.c:1654 src/readelf.c:1665 src/readelf.c:1678 src/readelf.c:1696 +#: src/readelf.c:1708 src/readelf.c:1827 src/readelf.c:1839 src/readelf.c:1853 +#: src/readelf.c:1872 src/readelf.c:1885 msgid "" msgstr "<不当なRELOC>" -#: src/readelf.c:1768 +#: src/readelf.c:1771 msgid " Offset Type Value Addend Name\n" msgstr " オフセット タイプ 値 付加名\n" -#: src/readelf.c:1770 +#: src/readelf.c:1773 msgid " Offset Type Value Addend Name\n" msgstr " オフセット タイプ 値 付加名\n" -#: src/readelf.c:1971 +#: src/readelf.c:1974 #, c-format msgid "" "\n" @@ -4469,39 +4473,39 @@ msgstr[0] "" "\n" "シンボルテーブル [%2u] '%s' には %u 個の項目があります:\n" -#: src/readelf.c:1977 +#: src/readelf.c:1980 #, c-format msgid " %lu local symbol String table: [%2u] '%s'\n" msgid_plural " %lu local symbols String table: [%2u] '%s'\n" msgstr[0] " %lu ローカルシンボル文字列テーブル: [%2u] '%s'\n" -#: src/readelf.c:1987 +#: src/readelf.c:1990 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr " 数 : 値 大き タイプ Bind Vis Ndx 名前\n" -#: src/readelf.c:1989 +#: src/readelf.c:1992 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr " 数 : 値 大き タイプ Bind Vis Ndx 名前\n" -#: src/readelf.c:2009 +#: src/readelf.c:2012 #, c-format msgid "%5u: %0* %6 %-7s %-6s %-9s %6s %s" msgstr "%5u: %0* %6 %-7s %-6s %-9s %6s %s" -#: src/readelf.c:2097 +#: src/readelf.c:2100 #, c-format msgid "bad dynamic symbol" msgstr "不正な動的シンボル" -#: src/readelf.c:2179 +#: src/readelf.c:2182 msgid "none" msgstr "なし" -#: src/readelf.c:2196 +#: src/readelf.c:2199 msgid "| " msgstr "| <不明>" -#: src/readelf.c:2221 +#: src/readelf.c:2224 #, c-format msgid "" "\n" @@ -4517,17 +4521,17 @@ msgstr[0] "" " アドレス: %#0* オフセット: %#08 セクションへのリンク: " "[%2u] '%s'\n" -#: src/readelf.c:2244 +#: src/readelf.c:2247 #, c-format msgid " %#06x: Version: %hu File: %s Cnt: %hu\n" msgstr " %#06x: バージョン: %hu ファイル: %s 数: %hu\n" -#: src/readelf.c:2257 +#: src/readelf.c:2260 #, c-format msgid " %#06x: Name: %s Flags: %s Version: %hu\n" msgstr " %#06x: 名前: %s フラグ: %s バージョン: %hu\n" -#: src/readelf.c:2288 +#: src/readelf.c:2291 #, c-format msgid "" "\n" @@ -4543,17 +4547,17 @@ msgstr[0] "" " アドレス: %#0* オフセット: %#08 セクションへのリンク: " "[%2u] '%s'\n" -#: src/readelf.c:2318 +#: src/readelf.c:2321 #, c-format msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n" msgstr " %#06x: バージョン: %hd フラグ: %s 索引: %hd 数: %hd 名前: %s\n" -#: src/readelf.c:2333 +#: src/readelf.c:2336 #, c-format msgid " %#06x: Parent %d: %s\n" msgstr " %#06x: 親 %d: %s\n" -#: src/readelf.c:2565 +#: src/readelf.c:2568 #, c-format msgid "" "\n" @@ -4569,15 +4573,15 @@ msgstr[0] "" " アドレス: %#0* オフセット: %#08 セクションへのリンク: " "[%2u] '%s'" -#: src/readelf.c:2595 +#: src/readelf.c:2598 msgid " 0 *local* " msgstr " 0 *ローカル* " -#: src/readelf.c:2600 +#: src/readelf.c:2603 msgid " 1 *global* " msgstr " 1 *グローバル* " -#: src/readelf.c:2631 +#: src/readelf.c:2634 #, c-format msgid "" "\n" @@ -4595,22 +4599,22 @@ msgstr[0] "" " アドレス: %#0* オフセット: %#08 セクションへのリンク: " "[%2u] '%s'\n" -#: src/readelf.c:2655 +#: src/readelf.c:2658 #, fuzzy, no-c-format msgid " Length Number % of total Coverage\n" msgstr " 長さ 数 全体の% 範囲 \n" -#: src/readelf.c:2657 +#: src/readelf.c:2660 #, c-format msgid " 0 %6 %5.1f%%\n" msgstr " 0 %6 %5.1f%%\n" -#: src/readelf.c:2664 +#: src/readelf.c:2667 #, c-format msgid "%7d %6 %5.1f%% %5.1f%%\n" msgstr "%7d %6 %5.1f%% %5.1f%%\n" -#: src/readelf.c:2677 +#: src/readelf.c:2680 #, fuzzy, c-format msgid "" " Average number of tests: successful lookup: %f\n" @@ -4619,12 +4623,12 @@ msgstr "" " テストの平均数: 検索成功: %f\n" " 検索失敗: %f\n" -#: src/readelf.c:2695 src/readelf.c:2737 src/readelf.c:2778 +#: src/readelf.c:2698 src/readelf.c:2740 src/readelf.c:2781 #, c-format msgid "cannot get data for section %d: %s" msgstr "セクションからデータを得られません %d: %s" -#: src/readelf.c:2832 +#: src/readelf.c:2835 #, c-format msgid "" " Symbol Bias: %u\n" @@ -4634,7 +4638,7 @@ msgstr "" " ビットマスクの大きさ: %zu バイト %%% ビット設定 第2ハッシュシフ" "ト: %u\n" -#: src/readelf.c:2906 +#: src/readelf.c:2909 #, c-format msgid "" "\n" @@ -4647,7 +4651,7 @@ msgstr[0] "" "オフセット %3$#0 のライブラリー一覧セクション [%1$2zu] '%2$s' には " "%4$d 個の項目があります:\n" -#: src/readelf.c:2920 +#: src/readelf.c:2923 msgid "" " Library Time Stamp Checksum Version " "Flags" @@ -4655,7 +4659,7 @@ msgstr "" " ライブラリー タイムスタンプ チェックサム バー" "ジョン フラグ" -#: src/readelf.c:2970 +#: src/readelf.c:2973 #, c-format msgid "" "\n" @@ -4666,160 +4670,160 @@ msgstr "" "オフセット %4$#0 の %3$ バイトのオブジェクト属性セクション " "[%1$2zu] '%2$s':\n" -#: src/readelf.c:2986 +#: src/readelf.c:2989 msgid " Owner Size\n" msgstr " 所有者 大きさ\n" -#: src/readelf.c:3012 +#: src/readelf.c:3015 #, c-format msgid " %-13s %4\n" msgstr " %-13s %4\n" -#: src/readelf.c:3044 +#: src/readelf.c:3047 #, c-format msgid " %-4u %12\n" msgstr " %-4u %12\n" -#: src/readelf.c:3049 +#: src/readelf.c:3052 #, c-format msgid " File: %11\n" msgstr " ファイル: %11\n" -#: src/readelf.c:3084 +#: src/readelf.c:3087 #, c-format msgid " %s: %, %s\n" msgstr " %s: %、%s\n" -#: src/readelf.c:3087 +#: src/readelf.c:3090 #, c-format msgid " %s: %\n" msgstr " %s: %\n" -#: src/readelf.c:3090 +#: src/readelf.c:3093 #, c-format msgid " %s: %s\n" msgstr " %s: %s\n" -#: src/readelf.c:3097 +#: src/readelf.c:3100 #, c-format msgid " %u: %\n" msgstr " %u: %\n" -#: src/readelf.c:3100 +#: src/readelf.c:3103 #, c-format msgid " %u: %s\n" msgstr " %u: %s\n" -#: src/readelf.c:3136 +#: src/readelf.c:3139 #, c-format msgid "%s+%# <%s+%#>" msgstr "%s+%# <%s+%#>" -#: src/readelf.c:3139 +#: src/readelf.c:3142 #, c-format msgid "%s+%#0* <%s+%#>" msgstr "%s+%#0* <%s+%#>" -#: src/readelf.c:3144 +#: src/readelf.c:3147 #, c-format msgid "%# <%s+%#>" msgstr "%# <%s+%#>" -#: src/readelf.c:3147 +#: src/readelf.c:3150 #, c-format msgid "%#0* <%s+%#>" msgstr "%#0* <%s+%#>" -#: src/readelf.c:3153 +#: src/readelf.c:3156 #, c-format msgid "%s+%# <%s>" msgstr "%s+%# <%s>" -#: src/readelf.c:3156 +#: src/readelf.c:3159 #, c-format msgid "%s+%#0* <%s>" msgstr "%s+%#0* <%s>" -#: src/readelf.c:3160 +#: src/readelf.c:3163 #, c-format msgid "%# <%s>" msgstr "%# <%s>" -#: src/readelf.c:3163 +#: src/readelf.c:3166 #, c-format msgid "%#0* <%s>" msgstr "%#0* <%s>" -#: src/readelf.c:3168 +#: src/readelf.c:3171 #, c-format msgid "%s+%#" msgstr "%s+%#" -#: src/readelf.c:3171 +#: src/readelf.c:3174 #, c-format msgid "%s+%#0*" msgstr "%s+%#0*" -#: src/readelf.c:3310 +#: src/readelf.c:3313 #, c-format msgid "unknown tag %hx" msgstr "不明なタグ %hx" -#: src/readelf.c:3312 +#: src/readelf.c:3315 #, c-format msgid "unknown user tag %hx" msgstr "不明な利用者タグ %hx" -#: src/readelf.c:3600 +#: src/readelf.c:3603 #, c-format msgid "unknown attribute %hx" msgstr "不明な属性 %hx" -#: src/readelf.c:3603 +#: src/readelf.c:3606 #, c-format msgid "unknown user attribute %hx" msgstr "不明な利用者属性 %hx" -#: src/readelf.c:3654 +#: src/readelf.c:3657 #, fuzzy, c-format msgid "unknown form %#" msgstr "不明な様式 %" -#: src/readelf.c:3890 +#: src/readelf.c:3893 msgid "empty block" msgstr "空ブロック" -#: src/readelf.c:3893 +#: src/readelf.c:3896 #, c-format msgid "%zu byte block:" msgstr "%zu バイトのブロック:" -#: src/readelf.c:4416 +#: src/readelf.c:4419 #, c-format msgid "%*s[%4] %s \n" msgstr "%*s[%4] %s \n" -#: src/readelf.c:4452 +#: src/readelf.c:4455 #, c-format msgid "%s %# used with different address sizes" msgstr "" -#: src/readelf.c:4459 +#: src/readelf.c:4462 #, c-format msgid "%s %# used with different offset sizes" msgstr "" -#: src/readelf.c:4539 +#: src/readelf.c:4542 #, c-format msgid " [%6tx] \n" msgstr "" -#: src/readelf.c:4547 +#: src/readelf.c:4550 #, c-format msgid " [%6tx] ... % bytes ...\n" msgstr "" -#: src/readelf.c:4566 +#: src/readelf.c:4569 #, c-format msgid "" "\n" @@ -4830,7 +4834,7 @@ msgstr "" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s':\n" " [ コード]\n" -#: src/readelf.c:4574 +#: src/readelf.c:4577 #, c-format msgid "" "\n" @@ -4839,30 +4843,30 @@ msgstr "" "\n" "オフセット % の略語セクション:\n" -#: src/readelf.c:4587 +#: src/readelf.c:4590 #, c-format msgid " *** error while reading abbreviation: %s\n" msgstr " *** 略語を読んでいる間にエラー: %s\n" -#: src/readelf.c:4603 +#: src/readelf.c:4606 #, c-format msgid " [%5u] offset: %, children: %s, tag: %s\n" msgstr " [%5u] オフセット: %、子: %s、タグ: %s\n" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "yes" msgstr "はい" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "no" msgstr "いいえ" -#: src/readelf.c:4641 +#: src/readelf.c:4644 #, c-format msgid "cannot get .debug_aranges content: %s" msgstr ".debug_aragnes の内容を得られません: %s" -#: src/readelf.c:4646 +#: src/readelf.c:4649 #, c-format msgid "" "\n" @@ -4875,25 +4879,25 @@ msgstr[0] "" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s' には %4$zu 個の項" "目があります:\n" -#: src/readelf.c:4677 +#: src/readelf.c:4680 #, c-format msgid " [%*zu] ???\n" msgstr " [%*zu] ???\n" -#: src/readelf.c:4679 +#: src/readelf.c:4682 #, c-format msgid "" " [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" msgstr "" " [%*zu] 開始: %0#*、長さ: %5、CU DIE オフセット: %6\n" -#: src/readelf.c:4698 +#: src/readelf.c:4701 #, c-format msgid "cannot get .debug_ranges content: %s" msgstr ".degub_ranges の内容を得られません: %s" -#: src/readelf.c:4703 src/readelf.c:5204 src/readelf.c:5982 src/readelf.c:6483 -#: src/readelf.c:6598 src/readelf.c:6770 +#: src/readelf.c:4706 src/readelf.c:5207 src/readelf.c:5985 src/readelf.c:6486 +#: src/readelf.c:6601 src/readelf.c:6773 #, c-format msgid "" "\n" @@ -4902,39 +4906,39 @@ msgstr "" "\n" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s':\n" -#: src/readelf.c:4727 src/readelf.c:6508 +#: src/readelf.c:4730 src/readelf.c:6511 #, c-format msgid " [%6tx] \n" msgstr " [%6tx] <不当なデータ>\n" -#: src/readelf.c:4749 src/readelf.c:6530 +#: src/readelf.c:4752 src/readelf.c:6533 #, c-format msgid " [%6tx] base address %s\n" msgstr " [%6tx] ベースアドレス %s\n" -#: src/readelf.c:4755 src/readelf.c:6536 +#: src/readelf.c:4758 src/readelf.c:6539 #, fuzzy, c-format msgid " [%6tx] empty list\n" msgstr "" "\n" " [%6tx] ゼロ終端\n" -#: src/readelf.c:4764 +#: src/readelf.c:4767 #, c-format msgid " [%6tx] %s..%s\n" msgstr " [%6tx] %s..%s\n" -#: src/readelf.c:4766 +#: src/readelf.c:4769 #, c-format msgid " %s..%s\n" msgstr " %s..%s\n" -#: src/readelf.c:5193 src/readelf.c:6838 src/readelf.c:6940 src/readelf.c:7098 +#: src/readelf.c:5196 src/readelf.c:6841 src/readelf.c:6943 src/readelf.c:7101 #, c-format msgid "cannot get %s content: %s" msgstr "%s の内容を得られません: %s" -#: src/readelf.c:5200 +#: src/readelf.c:5203 #, c-format msgid "" "\n" @@ -4943,12 +4947,12 @@ msgstr "" "\n" "オフセット %3$# の フレーム情報呼出しセクション [%1$2zu] '%2$s':\n" -#: src/readelf.c:5228 src/readelf.c:6017 +#: src/readelf.c:5231 src/readelf.c:6020 #, c-format msgid "invalid data in section [%zu] '%s'" msgstr "セクション [%zu] '%s' の不当なデータ" -#: src/readelf.c:5250 +#: src/readelf.c:5253 #, c-format msgid "" "\n" @@ -4957,50 +4961,50 @@ msgstr "" "\n" " [%6tx] ゼロ終端\n" -#: src/readelf.c:5335 +#: src/readelf.c:5338 #, fuzzy, c-format msgid "invalid augmentation length" msgstr "不当な拡大エンコード" -#: src/readelf.c:5347 +#: src/readelf.c:5350 msgid "FDE address encoding: " msgstr "FDE アドレスエンコード" -#: src/readelf.c:5353 +#: src/readelf.c:5356 msgid "LSDA pointer encoding: " msgstr "LSDA ポインターエンコード:" -#: src/readelf.c:5451 +#: src/readelf.c:5454 #, c-format msgid " (offset: %#)" msgstr " (オフセット: %#)" -#: src/readelf.c:5458 +#: src/readelf.c:5461 #, c-format msgid " (end offset: %#)" msgstr " (終了オフセット: %#)" -#: src/readelf.c:5485 +#: src/readelf.c:5488 #, c-format msgid " %-26sLSDA pointer: %#\n" msgstr " %-26sLSDA ポインター: %#\n" -#: src/readelf.c:5536 +#: src/readelf.c:5539 #, c-format msgid "cannot get attribute code: %s" msgstr "属性コードを得られません: %s" -#: src/readelf.c:5545 +#: src/readelf.c:5548 #, c-format msgid "cannot get attribute form: %s" msgstr "属性様式を得られません: %s" -#: src/readelf.c:5560 +#: src/readelf.c:5563 #, c-format msgid "cannot get attribute value: %s" msgstr "属性値を得られません: %s" -#: src/readelf.c:5819 +#: src/readelf.c:5822 #, c-format msgid "" "\n" @@ -5011,7 +5015,7 @@ msgstr "" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s':\n" " [オフセット]\n" -#: src/readelf.c:5851 +#: src/readelf.c:5854 #, fuzzy, c-format msgid "" " Type unit at offset %:\n" @@ -5023,7 +5027,7 @@ msgstr "" " バージョン: %2$、略語セクションオフセット: %3$、アドレスの大" "きさ: %4$、オフセットの大きさ: %5$\n" -#: src/readelf.c:5860 +#: src/readelf.c:5863 #, c-format msgid "" " Compilation unit at offset %:\n" @@ -5034,40 +5038,40 @@ msgstr "" " バージョン: %2$、略語セクションオフセット: %3$、アドレスの大" "きさ: %4$、オフセットの大きさ: %5$\n" -#: src/readelf.c:5886 +#: src/readelf.c:5889 #, c-format msgid "cannot get DIE at offset % in section '%s': %s" msgstr "" "セクション '%2$s' の オフセット %1$ の DIE を得られません: %3$s" -#: src/readelf.c:5898 +#: src/readelf.c:5901 #, c-format msgid "cannot get DIE offset: %s" msgstr "DIE オフセットを得られません: %s" -#: src/readelf.c:5907 +#: src/readelf.c:5910 #, c-format msgid "cannot get tag of DIE at offset % in section '%s': %s" msgstr "" "セクション '%2$s' 中のオフセット %1$ の DIE のタグを得られません: " "%3$s" -#: src/readelf.c:5938 +#: src/readelf.c:5941 #, c-format msgid "cannot get next DIE: %s\n" msgstr "次の DIE を得られません: %s\n" -#: src/readelf.c:5946 +#: src/readelf.c:5949 #, c-format msgid "cannot get next DIE: %s" msgstr "次の DIE を得られません: %s" -#: src/readelf.c:5995 +#: src/readelf.c:5998 #, c-format msgid "cannot get line data section data: %s" msgstr "ラインデータセクションデータを得られません: %s" -#: src/readelf.c:6008 +#: src/readelf.c:6011 #, c-format msgid "" "\n" @@ -5076,7 +5080,7 @@ msgstr "" "\n" "オフセット %Zu のテーブル:\n" -#: src/readelf.c:6063 +#: src/readelf.c:6066 #, fuzzy, c-format msgid "" "\n" @@ -5104,18 +5108,18 @@ msgstr "" "\n" "命令コード:\n" -#: src/readelf.c:6084 +#: src/readelf.c:6087 #, c-format msgid "invalid data at offset %tu in section [%zu] '%s'" msgstr "セクション [%2$zu] '%3$s' 中のオフセット %1$tu に不当なデータ" -#: src/readelf.c:6099 +#: src/readelf.c:6102 #, c-format msgid " [%*] %hhu argument\n" msgid_plural " [%*] %hhu arguments\n" msgstr[0] " [%*] %hhu パラメーター\n" -#: src/readelf.c:6107 +#: src/readelf.c:6110 msgid "" "\n" "Directory table:" @@ -5123,7 +5127,7 @@ msgstr "" "\n" "ディレクトリーテーブル:" -#: src/readelf.c:6123 +#: src/readelf.c:6126 msgid "" "\n" "File name table:\n" @@ -5133,7 +5137,7 @@ msgstr "" "ファイル名テーブル:\n" " Entry Dir 時刻 大きさ 名前" -#: src/readelf.c:6152 +#: src/readelf.c:6155 msgid "" "\n" "Line number statements:" @@ -5141,150 +5145,150 @@ msgstr "" "\n" "行 番号 文:" -#: src/readelf.c:6228 +#: src/readelf.c:6231 #, fuzzy, c-format msgid " special opcode %u: address+%u = %s, op_index = %u, line%+d = %zu\n" msgstr " 特殊命令コード %u: アドレス+%u = %s, 行%+d = %zu\n" -#: src/readelf.c:6233 +#: src/readelf.c:6236 #, c-format msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" msgstr " 特殊命令コード %u: アドレス+%u = %s, 行%+d = %zu\n" -#: src/readelf.c:6253 +#: src/readelf.c:6256 #, c-format msgid " extended opcode %u: " msgstr " 拡張命令コード %u: " -#: src/readelf.c:6258 +#: src/readelf.c:6261 #, fuzzy msgid " end of sequence" msgstr "列の終わり" -#: src/readelf.c:6275 +#: src/readelf.c:6278 #, fuzzy, c-format msgid " set address to %s\n" msgstr "アドレスを %s に設定する\n" -#: src/readelf.c:6296 +#: src/readelf.c:6299 #, fuzzy, c-format msgid " define new file: dir=%u, mtime=%, length=%, name=%s\n" msgstr "" "新ファイルを定義する: dir=%u、mtime=%、長さh=%、名前=%s\n" -#: src/readelf.c:6309 +#: src/readelf.c:6312 #, fuzzy, c-format msgid " set discriminator to %u\n" msgstr "カラムを % に設定する\n" -#: src/readelf.c:6314 +#: src/readelf.c:6317 #, fuzzy msgid " unknown opcode" msgstr "不明な命令コード" -#: src/readelf.c:6326 +#: src/readelf.c:6329 msgid " copy" msgstr "複写" -#: src/readelf.c:6337 +#: src/readelf.c:6340 #, fuzzy, c-format msgid " advance address by %u to %s, op_index to %u\n" msgstr "アドレスを %u だけ進めて %s にする\n" -#: src/readelf.c:6341 +#: src/readelf.c:6344 #, fuzzy, c-format msgid " advance address by %u to %s\n" msgstr "アドレスを %u だけ進めて %s にする\n" -#: src/readelf.c:6352 +#: src/readelf.c:6355 #, c-format msgid " advance line by constant %d to %\n" msgstr "行を定数 %d だけ進めて % にする\n" -#: src/readelf.c:6360 +#: src/readelf.c:6363 #, c-format msgid " set file to %\n" msgstr " ファイルを % に設定する\n" -#: src/readelf.c:6370 +#: src/readelf.c:6373 #, c-format msgid " set column to %\n" msgstr "カラムを % に設定する\n" -#: src/readelf.c:6377 +#: src/readelf.c:6380 #, c-format msgid " set '%s' to %\n" msgstr " '%s' を % に設定する\n" -#: src/readelf.c:6383 +#: src/readelf.c:6386 msgid " set basic block flag" msgstr "基本ブロックフラグを設定する" -#: src/readelf.c:6392 +#: src/readelf.c:6395 #, fuzzy, c-format msgid " advance address by constant %u to %s, op_index to %u\n" msgstr "アドレスを定数 %u だけ済めて %s にする\n" -#: src/readelf.c:6396 +#: src/readelf.c:6399 #, fuzzy, c-format msgid " advance address by constant %u to %s\n" msgstr "アドレスを定数 %u だけ済めて %s にする\n" -#: src/readelf.c:6414 +#: src/readelf.c:6417 #, fuzzy, c-format msgid " advance address by fixed value %u to %s\n" msgstr "アドレスを固定値 %u だけ進めて %s にする\n" -#: src/readelf.c:6423 +#: src/readelf.c:6426 msgid " set prologue end flag" msgstr "プロローグ終了フラグを設定する" -#: src/readelf.c:6428 +#: src/readelf.c:6431 msgid " set epilogue begin flag" msgstr "エピローグ開始フラグを設定する" -#: src/readelf.c:6437 +#: src/readelf.c:6440 #, fuzzy, c-format msgid " set isa to %u\n" msgstr " ファイルを % に設定する\n" -#: src/readelf.c:6446 +#: src/readelf.c:6449 #, c-format msgid " unknown opcode with % parameter:" msgid_plural " unknown opcode with % parameters:" msgstr[0] " % 個のパラメーターのある不明な命令コード:" -#: src/readelf.c:6478 +#: src/readelf.c:6481 #, c-format msgid "cannot get .debug_loc content: %s" msgstr ".debug_loc の内容を得られません: %s" -#: src/readelf.c:6548 +#: src/readelf.c:6551 #, c-format msgid " [%6tx] %s..%s" msgstr " [%6tx] %s..%s" -#: src/readelf.c:6550 +#: src/readelf.c:6553 #, c-format msgid " %s..%s" msgstr " %s..%s" -#: src/readelf.c:6557 +#: src/readelf.c:6560 #, fuzzy msgid " \n" msgstr " [%6tx] <不当なデータ>\n" -#: src/readelf.c:6609 +#: src/readelf.c:6612 #, c-format msgid "cannot get macro information section data: %s" msgstr "マクロ情報セクションのデータを得られません: %s" -#: src/readelf.c:6688 +#: src/readelf.c:6691 #, c-format msgid "%*s*** non-terminated string at end of section" msgstr "%*s*** 最後のセクションの終端していない文字列" -#: src/readelf.c:6756 +#: src/readelf.c:6759 #, c-format msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" msgstr "" @@ -5292,7 +5296,7 @@ msgstr "" # # "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s':\n" # # " %4$*s 文字列\n" がエラーになるのは何故? 取り敢えず fuzzy扱い -#: src/readelf.c:6796 +#: src/readelf.c:6799 #, fuzzy, c-format msgid "" "\n" @@ -5303,12 +5307,12 @@ msgstr "" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s':\n" " %4$*s 文字列\n" -#: src/readelf.c:6810 +#: src/readelf.c:6813 #, c-format msgid " *** error while reading strings: %s\n" msgstr " *** 文字列の読込み中にエラー: %s\n" -#: src/readelf.c:6830 +#: src/readelf.c:6833 #, c-format msgid "" "\n" @@ -5317,7 +5321,7 @@ msgstr "" "\n" "呼出しフレーム検索テーブルセクション [%2zu] '.eh_frame_hdr':\n" -#: src/readelf.c:6932 +#: src/readelf.c:6935 #, c-format msgid "" "\n" @@ -5326,22 +5330,22 @@ msgstr "" "\n" "例外取扱いテーブルセクション [%2zu] '.gcc_except_table':\n" -#: src/readelf.c:6955 +#: src/readelf.c:6958 #, c-format msgid " LPStart encoding: %#x " msgstr " LPStart コード化: %#x " -#: src/readelf.c:6967 +#: src/readelf.c:6970 #, c-format msgid " TType encoding: %#x " msgstr "TType コード化: %#x " -#: src/readelf.c:6981 +#: src/readelf.c:6984 #, c-format msgid " Call site encoding: %#x " msgstr "呼出しサイトコード化: %#x " -#: src/readelf.c:6994 +#: src/readelf.c:6997 msgid "" "\n" " Call site table:" @@ -5349,7 +5353,7 @@ msgstr "" "\n" " 呼出しサイトテーブル:" -#: src/readelf.c:7008 +#: src/readelf.c:7011 #, c-format msgid "" " [%4u] Call site start: %#\n" @@ -5362,12 +5366,12 @@ msgstr "" " 離着陸場: %#\n" " 行動: %u\n" -#: src/readelf.c:7068 +#: src/readelf.c:7071 #, c-format msgid "invalid TType encoding" msgstr "不当な TType コード化" -#: src/readelf.c:7089 +#: src/readelf.c:7092 #, fuzzy, c-format msgid "" "\n" @@ -5377,42 +5381,42 @@ msgstr "" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s' には %4$zu 個の項" "目があります:\n" -#: src/readelf.c:7118 +#: src/readelf.c:7121 #, fuzzy, c-format msgid " Version: %\n" msgstr " %s: %\n" -#: src/readelf.c:7124 +#: src/readelf.c:7127 #, c-format msgid " unknown version, cannot parse section\n" msgstr "" -#: src/readelf.c:7133 +#: src/readelf.c:7136 #, fuzzy, c-format msgid " CU offset: %#\n" msgstr " (オフセット: %#)" -#: src/readelf.c:7140 +#: src/readelf.c:7143 #, fuzzy, c-format msgid " TU offset: %#\n" msgstr " (オフセット: %#)" -#: src/readelf.c:7147 +#: src/readelf.c:7150 #, fuzzy, c-format msgid " address offset: %#\n" msgstr " (終了オフセット: %#)" -#: src/readelf.c:7154 +#: src/readelf.c:7157 #, fuzzy, c-format msgid " symbol offset: %#\n" msgstr " (オフセット: %#)" -#: src/readelf.c:7161 +#: src/readelf.c:7164 #, fuzzy, c-format msgid " constant offset: %#\n" msgstr " (終了オフセット: %#)" -#: src/readelf.c:7168 +#: src/readelf.c:7171 #, fuzzy, c-format msgid "" "\n" @@ -5422,7 +5426,7 @@ msgstr "" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s' には %4$zu 個の項" "目があります:\n" -#: src/readelf.c:7190 +#: src/readelf.c:7193 #, fuzzy, c-format msgid "" "\n" @@ -5432,7 +5436,7 @@ msgstr "" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s' には %4$zu 個の項" "目があります:\n" -#: src/readelf.c:7216 +#: src/readelf.c:7219 #, fuzzy, c-format msgid "" "\n" @@ -5442,7 +5446,7 @@ msgstr "" "オフセット %3$# の DWARF セクション [%1$2zu] '%2$s' には %4$zu 個の項" "目があります:\n" -#: src/readelf.c:7243 +#: src/readelf.c:7246 #, fuzzy, c-format msgid "" "\n" @@ -5451,17 +5455,17 @@ msgstr "" "\n" "オフセット %#0 に不当なシンボルテーブル\n" -#: src/readelf.c:7292 +#: src/readelf.c:7295 #, c-format msgid "cannot get debug context descriptor: %s" msgstr "デバッグ内容記述子を得られません: %s" -#: src/readelf.c:7441 src/readelf.c:8042 +#: src/readelf.c:7444 src/readelf.c:8045 #, c-format msgid "cannot convert core note data: %s" msgstr "コアノートデータの変換ができません: %s" -#: src/readelf.c:7782 +#: src/readelf.c:7785 #, c-format msgid "" "\n" @@ -5470,21 +5474,21 @@ msgstr "" "\n" "%*s... < %u 回の繰返し> ..." -#: src/readelf.c:8141 +#: src/readelf.c:8144 msgid " Owner Data size Type\n" msgstr " 所有者 データ大きさタイプ\n" -#: src/readelf.c:8159 +#: src/readelf.c:8162 #, c-format msgid " %-13.*s %9 %s\n" msgstr " %-13.*s %9 %s\n" -#: src/readelf.c:8193 +#: src/readelf.c:8196 #, c-format msgid "cannot get content of note section: %s" msgstr "ノートセクションの内容を得られません: %s" -#: src/readelf.c:8220 +#: src/readelf.c:8223 #, c-format msgid "" "\n" @@ -5494,7 +5498,7 @@ msgstr "" "オフセット %4$#0 の %3$ バイトのノートセクション [%1$2zu] " "'%2$s':\n" -#: src/readelf.c:8243 +#: src/readelf.c:8246 #, c-format msgid "" "\n" @@ -5503,7 +5507,7 @@ msgstr "" "\n" "オフセット %2$#0 の %1$ バイトのノートセグメント:\n" -#: src/readelf.c:8289 +#: src/readelf.c:8292 #, c-format msgid "" "\n" @@ -5512,12 +5516,12 @@ msgstr "" "\n" "セクション [%Zu] '%s' にはダンプすべきデータがありません。\n" -#: src/readelf.c:8295 src/readelf.c:8318 +#: src/readelf.c:8298 src/readelf.c:8321 #, c-format msgid "cannot get data for section [%Zu] '%s': %s" msgstr "セクション [%Zu] '%s' からデータが得られません: %s" -#: src/readelf.c:8299 +#: src/readelf.c:8302 #, c-format msgid "" "\n" @@ -5527,7 +5531,7 @@ msgstr "" "オフセット %4$#0 のセクション [%1$Zu] '%2$s' の16進ダン" "プ、%3$ バイト:\n" -#: src/readelf.c:8312 +#: src/readelf.c:8315 #, fuzzy, c-format msgid "" "\n" @@ -5536,7 +5540,7 @@ msgstr "" "\n" "セクション [%Zu] '%s' にはダンプすべきデータがありません。\n" -#: src/readelf.c:8322 +#: src/readelf.c:8325 #, c-format msgid "" "\n" @@ -5546,7 +5550,7 @@ msgstr "" "オフセット %4$#0 文字列セクション [%1$Zu] '%2$s' には %3$ バ" "イトあります:\n" -#: src/readelf.c:8370 +#: src/readelf.c:8373 #, c-format msgid "" "\n" @@ -5555,7 +5559,7 @@ msgstr "" "\n" "セクション [%lu] がありません" -#: src/readelf.c:8399 +#: src/readelf.c:8402 #, c-format msgid "" "\n" @@ -5564,12 +5568,12 @@ msgstr "" "\n" "セクション '%s' がありません" -#: src/readelf.c:8456 +#: src/readelf.c:8459 #, c-format msgid "cannot get symbol index of archive '%s': %s" msgstr "アーカイブのシンボル索引 '%s' を得られません: %s" -#: src/readelf.c:8459 +#: src/readelf.c:8462 #, c-format msgid "" "\n" @@ -5578,7 +5582,7 @@ msgstr "" "\n" "アーカイブ '%s' にはシンボル索引がありません\n" -#: src/readelf.c:8463 +#: src/readelf.c:8466 #, c-format msgid "" "\n" @@ -5587,12 +5591,12 @@ msgstr "" "\n" "アーカイブ '%s' の索引には %Zu 項目あります:\n" -#: src/readelf.c:8481 +#: src/readelf.c:8484 #, c-format msgid "cannot extract member at offset %Zu in '%s': %s" msgstr "'%2$s' の オフセット %1$Zu のメンバーを抽出できません: %3$s" -#: src/readelf.c:8486 +#: src/readelf.c:8489 #, c-format msgid "Archive member '%s' contains:\n" msgstr "アーカイブメンバー '%s' には以下があります:\n" diff --git a/po/pl.po b/po/pl.po index c06da4f47..74ffb405e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: pl\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" -"POT-Creation-Date: 2011-07-09 02:32-0700\n" +"POT-Creation-Date: 2011-09-29 15:40-0400\n" "PO-Revision-Date: 2011-02-13 16:25+0100\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" @@ -17,8 +17,8 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2841 -#: src/readelf.c:3180 src/unstrip.c:2098 src/unstrip.c:2306 +#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2844 +#: src/readelf.c:3183 src/unstrip.c:2098 src/unstrip.c:2306 #, c-format msgid "memory exhausted" msgstr "pamięć wyczerpana" @@ -461,7 +461,7 @@ msgstr "nieprawidłowy rozmiar operanda źródłowego" msgid "invalid size of destination operand" msgstr "nieprawidłowy rozmiar operanda docelowego" -#: libelf/elf_error.c:108 src/readelf.c:5173 +#: libelf/elf_error.c:108 src/readelf.c:5176 #, c-format msgid "invalid encoding" msgstr "nieprawidłowe kodowanie" @@ -542,8 +542,8 @@ msgstr "dane/scn nie zgadzają się" msgid "invalid section header" msgstr "nieprawidłowy nagłówek sekcji" -#: libelf/elf_error.c:208 src/readelf.c:6850 src/readelf.c:6951 -#: src/readelf.c:7113 +#: libelf/elf_error.c:208 src/readelf.c:6853 src/readelf.c:6954 +#: src/readelf.c:7116 #, c-format msgid "invalid data" msgstr "nieprawidłowe dane" @@ -633,7 +633,7 @@ msgstr "[ADRES...]" #: src/addr2line.c:189 src/ar.c:289 src/elfcmp.c:670 src/elflint.c:239 #: src/findtextrel.c:170 src/ld.c:957 src/nm.c:253 src/objdump.c:181 -#: src/ranlib.c:136 src/readelf.c:459 src/size.c:219 src/strings.c:227 +#: src/ranlib.c:136 src/readelf.c:462 src/size.c:219 src/strings.c:227 #: src/strip.c:221 src/unstrip.c:234 #, c-format msgid "" @@ -649,7 +649,7 @@ msgstr "" #: src/addr2line.c:194 src/ar.c:294 src/elfcmp.c:675 src/elflint.c:244 #: src/findtextrel.c:175 src/ld.c:962 src/nm.c:258 src/objdump.c:186 -#: src/ranlib.c:141 src/readelf.c:464 src/size.c:224 src/strings.c:232 +#: src/ranlib.c:141 src/readelf.c:467 src/size.c:224 src/strings.c:232 #: src/strip.c:226 src/unstrip.c:239 #, c-format msgid "Written by %s.\n" @@ -807,112 +807,112 @@ msgstr "wymagana jest nazwa archiwum" msgid "More than one operation specified" msgstr "Podano więcej niż jedno działanie" -#: src/ar.c:404 +#: src/ar.c:408 #, c-format msgid "cannot open archive '%s'" msgstr "nie można otworzyć archiwum \"%s\"" -#: src/ar.c:414 +#: src/ar.c:418 #, c-format msgid "cannot open archive '%s': %s" msgstr "nie można otworzyć archiwum \"%s\": %s" -#: src/ar.c:418 +#: src/ar.c:422 #, c-format msgid "%s: not an archive file" msgstr "%s: nie jest plikiem archiwum" -#: src/ar.c:422 +#: src/ar.c:426 #, c-format msgid "cannot stat archive '%s'" msgstr "nie można wykonać stat na archiwum \"%s\"" -#: src/ar.c:434 +#: src/ar.c:438 #, c-format msgid "no entry %s in archive\n" msgstr "brak wpisu %s w archiwum\n" -#: src/ar.c:487 src/ar.c:929 src/ar.c:1129 +#: src/ar.c:491 src/ar.c:933 src/ar.c:1133 #, c-format msgid "cannot create hash table" msgstr "nie można utworzyć tabeli mieszającej" -#: src/ar.c:494 src/ar.c:936 src/ar.c:1138 +#: src/ar.c:498 src/ar.c:940 src/ar.c:1142 #, c-format msgid "cannot insert into hash table" msgstr "nie można umieścić w tabeli mieszającej" -#: src/ar.c:502 src/ranlib.c:176 +#: src/ar.c:506 src/ranlib.c:176 #, c-format msgid "cannot stat '%s'" msgstr "nie można wykonać stat na \"%s\"" -#: src/ar.c:598 +#: src/ar.c:602 #, c-format msgid "cannot read content of %s: %s" msgstr "nie można odczytać zawartości %s: %s" -#: src/ar.c:641 +#: src/ar.c:645 #, c-format msgid "cannot open %.*s" msgstr "nie można otworzyć %.*s" -#: src/ar.c:663 +#: src/ar.c:667 #, c-format msgid "failed to write %s" msgstr "zapisanie %s nie powiodło się" -#: src/ar.c:675 +#: src/ar.c:679 #, c-format msgid "cannot change mode of %s" msgstr "nie można zmienić trybu %s" -#: src/ar.c:691 +#: src/ar.c:695 #, c-format msgid "cannot change modification time of %s" msgstr "nie można zmienić czasu modyfikacji %s" -#: src/ar.c:737 +#: src/ar.c:741 #, c-format msgid "cannot rename temporary file to %.*s" msgstr "nie można zmienić nazwy pliku tymczasowego na %.*s" -#: src/ar.c:773 src/ar.c:1021 src/ar.c:1419 src/ranlib.c:250 +#: src/ar.c:777 src/ar.c:1025 src/ar.c:1423 src/ranlib.c:250 #, c-format msgid "cannot create new file" msgstr "nie można utworzyć nowego pliku" -#: src/ar.c:1220 +#: src/ar.c:1224 #, c-format msgid "position member %s not found" msgstr "nie odnaleziono położenia elementu %s" -#: src/ar.c:1230 +#: src/ar.c:1234 #, c-format msgid "%s: no entry %s in archive!\n" msgstr "%s: brak wpisu %s w archiwum.\n" -#: src/ar.c:1259 src/ldgeneric.c:517 src/objdump.c:257 +#: src/ar.c:1263 src/ldgeneric.c:517 src/objdump.c:257 #, c-format msgid "cannot open %s" msgstr "nie można otworzyć %s" -#: src/ar.c:1264 +#: src/ar.c:1268 #, c-format msgid "cannot stat %s" msgstr "nie można wykonać stat na %s" -#: src/ar.c:1270 +#: src/ar.c:1274 #, c-format msgid "%s is no regular file" msgstr "%s nie jest zwykłym plikiem" -#: src/ar.c:1283 +#: src/ar.c:1287 #, c-format msgid "cannot get ELF descriptor for %s: %s\n" msgstr "nie można uzyskać deskryptora ELF dla %s: %s\n" -#: src/ar.c:1302 +#: src/ar.c:1306 #, c-format msgid "cannot read %s: %s" msgstr "nie można odczytać %s: %s" @@ -1160,11 +1160,11 @@ msgid "Pedantic checking of ELF files compliance with gABI/psABI spec." msgstr "" "Szczegółowe sprawdzanie zgodności plików ELF ze specyfikacją gABI/psABI." -#: src/elflint.c:86 src/readelf.c:118 +#: src/elflint.c:86 src/readelf.c:119 msgid "FILE..." msgstr "PLIK..." -#: src/elflint.c:159 src/readelf.c:274 +#: src/elflint.c:159 src/readelf.c:275 #, c-format msgid "cannot open input file" msgstr "nie można otworzyć pliku wejściowego" @@ -1183,7 +1183,7 @@ msgstr "błąd podczas zamykania deskryptora ELF: %s\n" msgid "No errors" msgstr "Brak błędów" -#: src/elflint.c:223 src/readelf.c:435 +#: src/elflint.c:223 src/readelf.c:436 msgid "Missing file name.\n" msgstr "Brak nazwy pliku.\n" @@ -3499,7 +3499,7 @@ msgid "Warning: size of `%s' changed from % in %s to % in %s" msgstr "" "Ostrzeżenie: rozmiar \"%s\" zmienił się z % w %s na % w %s" -#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:639 src/strip.c:570 +#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:642 src/strip.c:570 #, c-format msgid "cannot determine number of sections: %s" msgstr "nie można określić liczby sekcji: %s" @@ -3943,11 +3943,11 @@ msgstr "%s%s%s: nie rozpoznano formatu pliku" msgid "cannot create search tree" msgstr "nie można utworzyć drzewa wyszukiwania" -#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:895 -#: src/readelf.c:1038 src/readelf.c:1186 src/readelf.c:1368 src/readelf.c:1568 -#: src/readelf.c:1754 src/readelf.c:1964 src/readelf.c:2218 src/readelf.c:2284 -#: src/readelf.c:2362 src/readelf.c:2860 src/readelf.c:2896 src/readelf.c:2958 -#: src/readelf.c:7303 src/readelf.c:8208 src/readelf.c:8355 src/readelf.c:8423 +#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:898 +#: src/readelf.c:1041 src/readelf.c:1189 src/readelf.c:1371 src/readelf.c:1571 +#: src/readelf.c:1757 src/readelf.c:1967 src/readelf.c:2221 src/readelf.c:2287 +#: src/readelf.c:2365 src/readelf.c:2863 src/readelf.c:2899 src/readelf.c:2961 +#: src/readelf.c:7306 src/readelf.c:8211 src/readelf.c:8358 src/readelf.c:8426 #: src/size.c:425 src/size.c:499 src/strip.c:510 #, c-format msgid "cannot get section header string table index" @@ -4023,7 +4023,7 @@ msgstr "Wyświetla tylko informacje o sekcji NAZWA." msgid "Show information from FILEs (a.out by default)." msgstr "Wyświetla informacje z PLIKÓW (domyślnie a.out)." -#: src/objdump.c:236 src/readelf.c:440 +#: src/objdump.c:236 src/readelf.c:441 msgid "No operation specified.\n" msgstr "Nie podano działania.\n" @@ -4032,11 +4032,11 @@ msgstr "Nie podano działania.\n" msgid "while close `%s'" msgstr "podczas zamykania \"%s\"" -#: src/objdump.c:379 src/readelf.c:1663 src/readelf.c:1837 +#: src/objdump.c:379 src/readelf.c:1666 src/readelf.c:1840 msgid "INVALID SYMBOL" msgstr "NIEPRAWIDŁOWY SYMBOL" -#: src/objdump.c:394 src/readelf.c:1694 src/readelf.c:1870 +#: src/objdump.c:394 src/readelf.c:1697 src/readelf.c:1873 msgid "INVALID SECTION" msgstr "NIEPRAWIDŁOWA SEKCJA" @@ -4174,91 +4174,95 @@ msgstr "Kontrola wyjścia:" msgid "Do not find symbol names for addresses in DWARF data" msgstr "Bez odnajdywania nazw symboli dla adresów w danych DWARF" -#: src/readelf.c:114 +#: src/readelf.c:110 +msgid "Ignored for compatibility (lines always wide)" +msgstr "" + +#: src/readelf.c:115 msgid "Print information from ELF file in human-readable form." msgstr "Wyświetla informacje z pliku ELF w postaci czytelnej dla człowieka." -#: src/readelf.c:411 +#: src/readelf.c:412 #, c-format msgid "Unknown DWARF debug section `%s'.\n" msgstr "Nieznana sekcja debugowania DWARF \"%s\".\n" -#: src/readelf.c:475 +#: src/readelf.c:478 #, c-format msgid "cannot generate Elf descriptor: %s" msgstr "nie można utworzyć deskryptora ELF: %s" -#: src/readelf.c:487 +#: src/readelf.c:490 #, c-format msgid "'%s' is not an archive, cannot print archive index" msgstr "\"%s\" nie jest archiwum, nie można wyświetlić indeksu archiwum" -#: src/readelf.c:492 +#: src/readelf.c:495 #, c-format msgid "error while closing Elf descriptor: %s" msgstr "błąd podczas zamykania deskryptora ELF: %s" -#: src/readelf.c:584 +#: src/readelf.c:587 #, c-format msgid "cannot stat input file" msgstr "nie można wykonać stat na pliku wejściowym" -#: src/readelf.c:586 +#: src/readelf.c:589 #, c-format msgid "input file is empty" msgstr "plik wejściowy jest pusty" -#: src/readelf.c:588 +#: src/readelf.c:591 #, c-format msgid "failed reading '%s': %s" msgstr "odczytanie \"%s\" nie powiodło się: %s" -#: src/readelf.c:624 +#: src/readelf.c:627 #, c-format msgid "cannot read ELF header: %s" msgstr "nie można odczytać nagłówka ELF: %s" -#: src/readelf.c:632 +#: src/readelf.c:635 #, c-format msgid "cannot create EBL handle" msgstr "nie można utworzyć uchwytu EBL" -#: src/readelf.c:645 +#: src/readelf.c:648 #, c-format msgid "cannot determine number of program headers: %s" msgstr "nie można określić liczby nagłówków programu: %s" -#: src/readelf.c:731 +#: src/readelf.c:734 msgid "NONE (None)" msgstr "NONE (żaden)" -#: src/readelf.c:732 +#: src/readelf.c:735 msgid "REL (Relocatable file)" msgstr "REL (plik relokowalny)" -#: src/readelf.c:733 +#: src/readelf.c:736 msgid "EXEC (Executable file)" msgstr "EXEC (plik wykonywalny)" -#: src/readelf.c:734 +#: src/readelf.c:737 msgid "DYN (Shared object file)" msgstr "DYN (plik obiektu współdzielonego)" -#: src/readelf.c:735 +#: src/readelf.c:738 msgid "CORE (Core file)" msgstr "CORE (plik core)" -#: src/readelf.c:740 +#: src/readelf.c:743 #, c-format msgid "OS Specific: (%x)\n" msgstr "Zależny od systemu: (%x)\n" -#: src/readelf.c:742 +#: src/readelf.c:745 #, c-format msgid "Processor Specific: (%x)\n" msgstr "Zależny od procesora: (%x)\n" -#: src/readelf.c:752 +#: src/readelf.c:755 msgid "" "ELF Header:\n" " Magic: " @@ -4266,7 +4270,7 @@ msgstr "" "Nagłówek ELF:\n" " Magic: " -#: src/readelf.c:756 +#: src/readelf.c:759 #, c-format msgid "" "\n" @@ -4275,117 +4279,117 @@ msgstr "" "\n" " Klasa: %s\n" -#: src/readelf.c:761 +#: src/readelf.c:764 #, c-format msgid " Data: %s\n" msgstr " Dane: %s\n" -#: src/readelf.c:767 +#: src/readelf.c:770 #, c-format msgid " Ident Version: %hhd %s\n" msgstr " Wersja Ident: %hhd %s\n" -#: src/readelf.c:769 src/readelf.c:786 +#: src/readelf.c:772 src/readelf.c:789 msgid "(current)" msgstr "(bieżąca)" -#: src/readelf.c:773 +#: src/readelf.c:776 #, c-format msgid " OS/ABI: %s\n" msgstr " System operacyjny/ABI: %s\n" -#: src/readelf.c:776 +#: src/readelf.c:779 #, c-format msgid " ABI Version: %hhd\n" msgstr " Wersja ABI: %hhd\n" -#: src/readelf.c:779 +#: src/readelf.c:782 msgid " Type: " msgstr " Typ: " -#: src/readelf.c:782 +#: src/readelf.c:785 #, c-format msgid " Machine: %s\n" msgstr " Komputer: %s\n" -#: src/readelf.c:784 +#: src/readelf.c:787 #, c-format msgid " Version: %d %s\n" msgstr " Wersja: %d %s\n" -#: src/readelf.c:788 +#: src/readelf.c:791 #, c-format msgid " Entry point address: %#\n" msgstr " Adres punktu wejściowego: %#\n" -#: src/readelf.c:791 +#: src/readelf.c:794 #, c-format msgid " Start of program headers: % %s\n" msgstr " Początek nagłówków programu: % %s\n" -#: src/readelf.c:792 src/readelf.c:795 +#: src/readelf.c:795 src/readelf.c:798 msgid "(bytes into file)" msgstr "(bajtów w pliku)" -#: src/readelf.c:794 +#: src/readelf.c:797 #, c-format msgid " Start of section headers: % %s\n" msgstr " Początek nagłówków sekcji: % %s\n" -#: src/readelf.c:797 +#: src/readelf.c:800 #, c-format msgid " Flags: %s\n" msgstr " Flagi: %s\n" -#: src/readelf.c:800 +#: src/readelf.c:803 #, c-format msgid " Size of this header: % %s\n" msgstr " Rozmiar tego nagłówka: % %s\n" -#: src/readelf.c:801 src/readelf.c:804 src/readelf.c:821 +#: src/readelf.c:804 src/readelf.c:807 src/readelf.c:824 msgid "(bytes)" msgstr "(bajtów)" -#: src/readelf.c:803 +#: src/readelf.c:806 #, c-format msgid " Size of program header entries: % %s\n" msgstr " Rozmiar wpisów nagłówka programu: % %s\n" -#: src/readelf.c:806 +#: src/readelf.c:809 #, c-format msgid " Number of program headers entries: %" msgstr " Liczba wpisów nagłówków programu: %" -#: src/readelf.c:813 +#: src/readelf.c:816 #, c-format msgid " (% in [0].sh_info)" msgstr " (% w [0].sh_info)" -#: src/readelf.c:816 src/readelf.c:833 src/readelf.c:847 +#: src/readelf.c:819 src/readelf.c:836 src/readelf.c:850 msgid " ([0] not available)" msgstr " ([0] niedostępny)" -#: src/readelf.c:820 +#: src/readelf.c:823 #, c-format msgid " Size of section header entries: % %s\n" msgstr " Rozmiar wpisów nagłówka sekcji: % %s\n" -#: src/readelf.c:823 +#: src/readelf.c:826 #, c-format msgid " Number of section headers entries: %" msgstr " Liczba wpisów nagłówków sekcji: %" -#: src/readelf.c:830 +#: src/readelf.c:833 #, c-format msgid " (% in [0].sh_size)" msgstr " (% w [0].sh_size)" -#: src/readelf.c:843 +#: src/readelf.c:846 #, c-format msgid " (% in [0].sh_link)" msgstr " (% w [0].sh_link)" -#: src/readelf.c:851 +#: src/readelf.c:854 #, c-format msgid "" " Section header string table index: XINDEX%s\n" @@ -4394,7 +4398,7 @@ msgstr "" " Indeks tabeli ciągów nagłówków sekcji: XINDEX%s\n" "\n" -#: src/readelf.c:855 +#: src/readelf.c:858 #, c-format msgid "" " Section header string table index: %\n" @@ -4403,7 +4407,7 @@ msgstr "" " Indeks tabeli ciągów nagłówków sekcji: %\n" "\n" -#: src/readelf.c:887 +#: src/readelf.c:890 #, c-format msgid "" "There are %d section headers, starting at offset %#:\n" @@ -4412,11 +4416,11 @@ msgstr "" "Jest %d nagłówków sekcji, rozpoczynających się od offsetu %#:\n" "\n" -#: src/readelf.c:897 +#: src/readelf.c:900 msgid "Section Headers:" msgstr "Nagłówki sekcji:" -#: src/readelf.c:900 +#: src/readelf.c:903 msgid "" "[Nr] Name Type Addr Off Size ES Flags Lk " "Inf Al" @@ -4424,7 +4428,7 @@ msgstr "" "[Nr] Nazwa Typ Adres Offset Rozm ES Flagi Lk " "Inf Al" -#: src/readelf.c:902 +#: src/readelf.c:905 msgid "" "[Nr] Name Type Addr Off Size ES " "Flags Lk Inf Al" @@ -4432,12 +4436,12 @@ msgstr "" "[Nr] Nazwa Typ Adres Offset Rozmiar ES " "Flagi Lk Inf Al" -#: src/readelf.c:909 src/readelf.c:1062 +#: src/readelf.c:912 src/readelf.c:1065 #, c-format msgid "cannot get section: %s" msgstr "nie można uzyskać sekcji: %s" -#: src/readelf.c:916 src/readelf.c:1070 src/readelf.c:8375 src/unstrip.c:353 +#: src/readelf.c:919 src/readelf.c:1073 src/readelf.c:8378 src/unstrip.c:353 #: src/unstrip.c:384 src/unstrip.c:433 src/unstrip.c:541 src/unstrip.c:558 #: src/unstrip.c:594 src/unstrip.c:792 src/unstrip.c:1060 src/unstrip.c:1250 #: src/unstrip.c:1310 src/unstrip.c:1431 src/unstrip.c:1484 src/unstrip.c:1591 @@ -4446,18 +4450,18 @@ msgstr "nie można uzyskać sekcji: %s" msgid "cannot get section header: %s" msgstr "nie można uzyskać nagłówka sekcji: %s" -#: src/readelf.c:974 +#: src/readelf.c:977 msgid "Program Headers:" msgstr "Nagłówki programu:" -#: src/readelf.c:976 +#: src/readelf.c:979 msgid "" " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" msgstr "" " Typ Offset AdresWirt AdresFiz RozmPlik RozmPam Flg " "Wyrównanie" -#: src/readelf.c:979 +#: src/readelf.c:982 msgid "" " Type Offset VirtAddr PhysAddr FileSiz " "MemSiz Flg Align" @@ -4465,12 +4469,12 @@ msgstr "" " Typ Offset AdresWirtualny AdresFizyczny RozmPlik " "RozmPam Flg Wyrównanie" -#: src/readelf.c:1019 +#: src/readelf.c:1022 #, c-format msgid "\t[Requesting program interpreter: %s]\n" msgstr "\t[Wywołanie interpretera programu: %s]\n" -#: src/readelf.c:1040 +#: src/readelf.c:1043 msgid "" "\n" " Section to Segment mapping:\n" @@ -4480,12 +4484,12 @@ msgstr "" " mapowanie sekcji do segmentów:\n" " Segment sekcji..." -#: src/readelf.c:1051 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 +#: src/readelf.c:1054 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 #, c-format msgid "cannot get program header: %s" msgstr "nie można uzyskać nagłówka programu: %s" -#: src/readelf.c:1192 +#: src/readelf.c:1195 #, c-format msgid "" "\n" @@ -4503,7 +4507,7 @@ msgstr[2] "" "\n" "Grupa sekcji COMDAT [%2zu] \"%s\" z podpisem \"%s\" zawiera %zu wpisów:\n" -#: src/readelf.c:1197 +#: src/readelf.c:1200 #, c-format msgid "" "\n" @@ -4521,15 +4525,15 @@ msgstr[2] "" "\n" "Grupa sekcji [%2zu] \"%s\" z podpisem \"%s\" zawiera %zu wpisów:\n" -#: src/readelf.c:1205 +#: src/readelf.c:1208 msgid "" msgstr "" -#: src/readelf.c:1219 +#: src/readelf.c:1222 msgid "" msgstr "" -#: src/readelf.c:1370 +#: src/readelf.c:1373 #, c-format msgid "" "\n" @@ -4555,36 +4559,36 @@ msgstr[2] "" " Adres: %#0* Offset: %#08 Dowiązanie do sekcji: [%2u] " "'%s'\n" -#: src/readelf.c:1382 +#: src/readelf.c:1385 msgid " Type Value\n" msgstr " Typ Wartość\n" -#: src/readelf.c:1406 +#: src/readelf.c:1409 #, c-format msgid "Shared library: [%s]\n" msgstr "Biblioteka współdzielona: [%s]\n" -#: src/readelf.c:1411 +#: src/readelf.c:1414 #, c-format msgid "Library soname: [%s]\n" msgstr "soname biblioteki: [%s]\n" -#: src/readelf.c:1416 +#: src/readelf.c:1419 #, c-format msgid "Library rpath: [%s]\n" msgstr "rpath biblioteki: [%s]\n" -#: src/readelf.c:1421 +#: src/readelf.c:1424 #, c-format msgid "Library runpath: [%s]\n" msgstr "runpath biblioteki: [%s]\n" -#: src/readelf.c:1441 +#: src/readelf.c:1444 #, c-format msgid "% (bytes)\n" msgstr "% (bajtów)\n" -#: src/readelf.c:1553 src/readelf.c:1739 +#: src/readelf.c:1556 src/readelf.c:1742 #, c-format msgid "" "\n" @@ -4593,7 +4597,7 @@ msgstr "" "\n" "Nieprawidłowa tabela symboli pod offsetem %#0\n" -#: src/readelf.c:1571 src/readelf.c:1756 +#: src/readelf.c:1574 src/readelf.c:1759 #, c-format msgid "" "\n" @@ -4616,7 +4620,7 @@ msgstr[2] "" "Sekcja relokacji [%2zu] \"%s\" dla sekcji [%2u] \"%s\" pod offsetem " "%#0 zawiera %d wpisów:\n" -#: src/readelf.c:1586 +#: src/readelf.c:1589 #, c-format msgid "" "\n" @@ -4634,30 +4638,30 @@ msgstr[2] "" "\n" "Sekcja relokacji [%2u] \"%s\" pod offsetem %#0 zawiera %d wpisów:\n" -#: src/readelf.c:1596 +#: src/readelf.c:1599 msgid " Offset Type Value Name\n" msgstr " Offset Typ Wartość Nazwa\n" -#: src/readelf.c:1598 +#: src/readelf.c:1601 msgid " Offset Type Value Name\n" msgstr " Offset Typ Wartość Nazwa\n" -#: src/readelf.c:1651 src/readelf.c:1662 src/readelf.c:1675 src/readelf.c:1693 -#: src/readelf.c:1705 src/readelf.c:1824 src/readelf.c:1836 src/readelf.c:1850 -#: src/readelf.c:1869 src/readelf.c:1882 +#: src/readelf.c:1654 src/readelf.c:1665 src/readelf.c:1678 src/readelf.c:1696 +#: src/readelf.c:1708 src/readelf.c:1827 src/readelf.c:1839 src/readelf.c:1853 +#: src/readelf.c:1872 src/readelf.c:1885 msgid "" msgstr "" -#: src/readelf.c:1768 +#: src/readelf.c:1771 msgid " Offset Type Value Addend Name\n" msgstr " Offset Typ Wartość Koniec Nazwa\n" -#: src/readelf.c:1770 +#: src/readelf.c:1773 msgid " Offset Type Value Addend Name\n" msgstr "" " Offset Typ Wartość Koniec Nazwa\n" -#: src/readelf.c:1971 +#: src/readelf.c:1974 #, c-format msgid "" "\n" @@ -4675,7 +4679,7 @@ msgstr[2] "" "\n" "Tabela symboli [%2u] \"%s\" zawiera %u wpisów:\n" -#: src/readelf.c:1977 +#: src/readelf.c:1980 #, c-format msgid " %lu local symbol String table: [%2u] '%s'\n" msgid_plural " %lu local symbols String table: [%2u] '%s'\n" @@ -4683,33 +4687,33 @@ msgstr[0] " %lu symbol lokalny Tabela ciągów: [%2u] \"%s\"\n" msgstr[1] " %lu symbole lokalne Tabela ciągów: [%2u] \"%s\"\n" msgstr[2] " %lu symboli lokalnych Tabela ciągów: [%2u] \"%s\"\n" -#: src/readelf.c:1987 +#: src/readelf.c:1990 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr " Numer: Wartość Rozm Typ Bind Widoczność Ndx Nazwa\n" -#: src/readelf.c:1989 +#: src/readelf.c:1992 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr " Numer: Wartość Rozm Typ Bind Widoczność Ndx Nazwa\n" -#: src/readelf.c:2009 +#: src/readelf.c:2012 #, c-format msgid "%5u: %0* %6 %-7s %-6s %-9s %6s %s" msgstr "%5u: %0* %6 %-7s %-6s %-9s %6s %s" -#: src/readelf.c:2097 +#: src/readelf.c:2100 #, c-format msgid "bad dynamic symbol" msgstr "błędny symbol dynamiczny" -#: src/readelf.c:2179 +#: src/readelf.c:2182 msgid "none" msgstr "brak" -#: src/readelf.c:2196 +#: src/readelf.c:2199 msgid "| " msgstr "| " -#: src/readelf.c:2221 +#: src/readelf.c:2224 #, c-format msgid "" "\n" @@ -4735,17 +4739,17 @@ msgstr[2] "" " Adres: %#0* Offset: %#08 Dowiązanie do sekcji: [%2u] \"%s" "\"\n" -#: src/readelf.c:2244 +#: src/readelf.c:2247 #, c-format msgid " %#06x: Version: %hu File: %s Cnt: %hu\n" msgstr " %#06x: Wersja: %hu Plik: %s Licznik: %hu\n" -#: src/readelf.c:2257 +#: src/readelf.c:2260 #, c-format msgid " %#06x: Name: %s Flags: %s Version: %hu\n" msgstr " %#06x: Nazwa: %s Flagi: %s Wersja: %hu\n" -#: src/readelf.c:2288 +#: src/readelf.c:2291 #, c-format msgid "" "\n" @@ -4771,18 +4775,18 @@ msgstr[2] "" " Adres: %#0* Offset: %#08 Dowiązanie do sekcji: [%2u] \"%s" "\"\n" -#: src/readelf.c:2318 +#: src/readelf.c:2321 #, c-format msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n" msgstr "" " %#06x: Wersja: %hd Flagi: %s Indeks: %hd Licznik: %hd Nazwa: %s\n" -#: src/readelf.c:2333 +#: src/readelf.c:2336 #, c-format msgid " %#06x: Parent %d: %s\n" msgstr " %#06x: Rodzic %d: %s\n" -#: src/readelf.c:2565 +#: src/readelf.c:2568 #, c-format msgid "" "\n" @@ -4808,15 +4812,15 @@ msgstr[2] "" " Adres: %#0* Offset: %#08 Dowiązanie do sekcji: [%2u] \"%s" "\"" -#: src/readelf.c:2595 +#: src/readelf.c:2598 msgid " 0 *local* " msgstr " 0 *lokalny* " -#: src/readelf.c:2600 +#: src/readelf.c:2603 msgid " 1 *global* " msgstr " 1 *globalny* " -#: src/readelf.c:2631 +#: src/readelf.c:2634 #, c-format msgid "" "\n" @@ -4847,22 +4851,22 @@ msgstr[2] "" " Adres: %#0* Offset: %#08 Dowiązanie do sekcji: [%2u] \"%s" "\"\n" -#: src/readelf.c:2655 +#: src/readelf.c:2658 #, no-c-format msgid " Length Number % of total Coverage\n" msgstr " Długość Liczba % całości Pokrycie\n" -#: src/readelf.c:2657 +#: src/readelf.c:2660 #, c-format msgid " 0 %6 %5.1f%%\n" msgstr " 0 %6 %5.1f%%\n" -#: src/readelf.c:2664 +#: src/readelf.c:2667 #, c-format msgid "%7d %6 %5.1f%% %5.1f%%\n" msgstr "%7d %6 %5.1f%% %5.1f%%\n" -#: src/readelf.c:2677 +#: src/readelf.c:2680 #, c-format msgid "" " Average number of tests: successful lookup: %f\n" @@ -4871,12 +4875,12 @@ msgstr "" " Średnia liczba testów: udane wyszukania: %f\n" "\t\t\t nieudane wyszukania: %f\n" -#: src/readelf.c:2695 src/readelf.c:2737 src/readelf.c:2778 +#: src/readelf.c:2698 src/readelf.c:2740 src/readelf.c:2781 #, c-format msgid "cannot get data for section %d: %s" msgstr "nie można uzyskać danych dla sekcji %d: %s" -#: src/readelf.c:2832 +#: src/readelf.c:2835 #, c-format msgid "" " Symbol Bias: %u\n" @@ -4886,7 +4890,7 @@ msgstr "" " Rozmiar maski bitowej: %zu bajtów %%% bitów ustawionych " "drugie przesunięcie skrótu: %u\n" -#: src/readelf.c:2906 +#: src/readelf.c:2909 #, c-format msgid "" "\n" @@ -4907,7 +4911,7 @@ msgstr[2] "" "Sekcja listy bibliotek [%2zu] \"%s\" pod offsetem %#0 zawiera %d " "wpisów:\n" -#: src/readelf.c:2920 +#: src/readelf.c:2923 msgid "" " Library Time Stamp Checksum Version " "Flags" @@ -4915,7 +4919,7 @@ msgstr "" " Biblioteka Oznaczenie czasu Suma k. Wersja " "Flagi" -#: src/readelf.c:2970 +#: src/readelf.c:2973 #, c-format msgid "" "\n" @@ -4926,160 +4930,160 @@ msgstr "" "Sekcja atrybutów obiektu [%2zu] \"%s\" % bajtów pod offsetem " "%#0:\n" -#: src/readelf.c:2986 +#: src/readelf.c:2989 msgid " Owner Size\n" msgstr " Właściciel Rozmiar\n" -#: src/readelf.c:3012 +#: src/readelf.c:3015 #, c-format msgid " %-13s %4\n" msgstr " %-13s %4\n" -#: src/readelf.c:3044 +#: src/readelf.c:3047 #, c-format msgid " %-4u %12\n" msgstr " %-4u %12\n" -#: src/readelf.c:3049 +#: src/readelf.c:3052 #, c-format msgid " File: %11\n" msgstr " Plik: %11\n" -#: src/readelf.c:3084 +#: src/readelf.c:3087 #, c-format msgid " %s: %, %s\n" msgstr " %s: %, %s\n" -#: src/readelf.c:3087 +#: src/readelf.c:3090 #, c-format msgid " %s: %\n" msgstr " %s: %\n" -#: src/readelf.c:3090 +#: src/readelf.c:3093 #, c-format msgid " %s: %s\n" msgstr " %s: %s\n" -#: src/readelf.c:3097 +#: src/readelf.c:3100 #, c-format msgid " %u: %\n" msgstr " %u: %\n" -#: src/readelf.c:3100 +#: src/readelf.c:3103 #, c-format msgid " %u: %s\n" msgstr " %u: %s\n" -#: src/readelf.c:3136 +#: src/readelf.c:3139 #, c-format msgid "%s+%# <%s+%#>" msgstr "%s+%# <%s+%#>" -#: src/readelf.c:3139 +#: src/readelf.c:3142 #, c-format msgid "%s+%#0* <%s+%#>" msgstr "%s+%#0* <%s+%#>" -#: src/readelf.c:3144 +#: src/readelf.c:3147 #, c-format msgid "%# <%s+%#>" msgstr "%# <%s+%#>" -#: src/readelf.c:3147 +#: src/readelf.c:3150 #, c-format msgid "%#0* <%s+%#>" msgstr "%#0* <%s+%#>" -#: src/readelf.c:3153 +#: src/readelf.c:3156 #, c-format msgid "%s+%# <%s>" msgstr "%s+%# <%s>" -#: src/readelf.c:3156 +#: src/readelf.c:3159 #, c-format msgid "%s+%#0* <%s>" msgstr "%s+%#0* <%s>" -#: src/readelf.c:3160 +#: src/readelf.c:3163 #, c-format msgid "%# <%s>" msgstr "%# <%s>" -#: src/readelf.c:3163 +#: src/readelf.c:3166 #, c-format msgid "%#0* <%s>" msgstr "%#0* <%s>" -#: src/readelf.c:3168 +#: src/readelf.c:3171 #, c-format msgid "%s+%#" msgstr "%s+%#" -#: src/readelf.c:3171 +#: src/readelf.c:3174 #, c-format msgid "%s+%#0*" msgstr "%s+%#0*" -#: src/readelf.c:3310 +#: src/readelf.c:3313 #, c-format msgid "unknown tag %hx" msgstr "nieznany znacznik %hx" -#: src/readelf.c:3312 +#: src/readelf.c:3315 #, c-format msgid "unknown user tag %hx" msgstr "nieznany znacznik użytkownika %hx" -#: src/readelf.c:3600 +#: src/readelf.c:3603 #, c-format msgid "unknown attribute %hx" msgstr "nieznany atrybut %hx" -#: src/readelf.c:3603 +#: src/readelf.c:3606 #, c-format msgid "unknown user attribute %hx" msgstr "nieznany atrybut użytkownika %hx" -#: src/readelf.c:3654 +#: src/readelf.c:3657 #, fuzzy, c-format msgid "unknown form %#" msgstr "nieznana forma %" -#: src/readelf.c:3890 +#: src/readelf.c:3893 msgid "empty block" msgstr "pusty blok" -#: src/readelf.c:3893 +#: src/readelf.c:3896 #, c-format msgid "%zu byte block:" msgstr "%zu bajtowy blok:" -#: src/readelf.c:4416 +#: src/readelf.c:4419 #, c-format msgid "%*s[%4] %s \n" msgstr "%*s[%4] %s \n" -#: src/readelf.c:4452 +#: src/readelf.c:4455 #, c-format msgid "%s %# used with different address sizes" msgstr "%s %# zostało użyte z różnymi rozmiarami adresu" -#: src/readelf.c:4459 +#: src/readelf.c:4462 #, c-format msgid "%s %# used with different offset sizes" msgstr "%s %# zostało użyte z różnymi rozmiarami offsetu" -#: src/readelf.c:4539 +#: src/readelf.c:4542 #, c-format msgid " [%6tx] \n" msgstr " [%6tx] \n" -#: src/readelf.c:4547 +#: src/readelf.c:4550 #, c-format msgid " [%6tx] ... % bytes ...\n" msgstr " [%6tx] ... % bajtów...\n" -#: src/readelf.c:4566 +#: src/readelf.c:4569 #, c-format msgid "" "\n" @@ -5090,7 +5094,7 @@ msgstr "" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %#:\n" " [ Kod]\n" -#: src/readelf.c:4574 +#: src/readelf.c:4577 #, c-format msgid "" "\n" @@ -5099,30 +5103,30 @@ msgstr "" "\n" "Sekcja skrótów pod offsetem %:\n" -#: src/readelf.c:4587 +#: src/readelf.c:4590 #, c-format msgid " *** error while reading abbreviation: %s\n" msgstr " *** błąd podczas odczytywania skrótu: %s\n" -#: src/readelf.c:4603 +#: src/readelf.c:4606 #, c-format msgid " [%5u] offset: %, children: %s, tag: %s\n" msgstr " [%5u] offset: %, potomek: %s, znacznik: %s\n" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "yes" msgstr "tak" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "no" msgstr "nie" -#: src/readelf.c:4641 +#: src/readelf.c:4644 #, c-format msgid "cannot get .debug_aranges content: %s" msgstr "nie można uzyskać zawartości .debug_aranges: %s" -#: src/readelf.c:4646 +#: src/readelf.c:4649 #, c-format msgid "" "\n" @@ -5140,12 +5144,12 @@ msgstr[2] "" "\n" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %# zawiera %zu wpisów:\n" -#: src/readelf.c:4677 +#: src/readelf.c:4680 #, c-format msgid " [%*zu] ???\n" msgstr " [%*zu] ???\n" -#: src/readelf.c:4679 +#: src/readelf.c:4682 #, c-format msgid "" " [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" @@ -5153,13 +5157,13 @@ msgstr "" " [%*zu] początek: %0#*, długość: %5, offset CU DIE: " "%6\n" -#: src/readelf.c:4698 +#: src/readelf.c:4701 #, c-format msgid "cannot get .debug_ranges content: %s" msgstr "nie można uzyskać zawartości .debug_ranges: %s" -#: src/readelf.c:4703 src/readelf.c:5204 src/readelf.c:5982 src/readelf.c:6483 -#: src/readelf.c:6598 src/readelf.c:6770 +#: src/readelf.c:4706 src/readelf.c:5207 src/readelf.c:5985 src/readelf.c:6486 +#: src/readelf.c:6601 src/readelf.c:6773 #, c-format msgid "" "\n" @@ -5168,37 +5172,37 @@ msgstr "" "\n" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %#:\n" -#: src/readelf.c:4727 src/readelf.c:6508 +#: src/readelf.c:4730 src/readelf.c:6511 #, c-format msgid " [%6tx] \n" msgstr " [%6tx] \n" -#: src/readelf.c:4749 src/readelf.c:6530 +#: src/readelf.c:4752 src/readelf.c:6533 #, c-format msgid " [%6tx] base address %s\n" msgstr " [%6tx] adres podstawowy %s\n" -#: src/readelf.c:4755 src/readelf.c:6536 +#: src/readelf.c:4758 src/readelf.c:6539 #, c-format msgid " [%6tx] empty list\n" msgstr " [%6tx] pusta lista\n" -#: src/readelf.c:4764 +#: src/readelf.c:4767 #, c-format msgid " [%6tx] %s..%s\n" msgstr " [%6tx] %s...%s\n" -#: src/readelf.c:4766 +#: src/readelf.c:4769 #, c-format msgid " %s..%s\n" msgstr " %s...%s\n" -#: src/readelf.c:5193 src/readelf.c:6838 src/readelf.c:6940 src/readelf.c:7098 +#: src/readelf.c:5196 src/readelf.c:6841 src/readelf.c:6943 src/readelf.c:7101 #, c-format msgid "cannot get %s content: %s" msgstr "nie można uzyskać zwartości %s: %s" -#: src/readelf.c:5200 +#: src/readelf.c:5203 #, c-format msgid "" "\n" @@ -5207,12 +5211,12 @@ msgstr "" "\n" "Sekcja informacji o ramce wywołania [%2zu] \"%s\" pod offsetem %#0:\n" -#: src/readelf.c:5228 src/readelf.c:6017 +#: src/readelf.c:5231 src/readelf.c:6020 #, c-format msgid "invalid data in section [%zu] '%s'" msgstr "nieprawidłowe dane w sekcji [%zu] \"%s\"" -#: src/readelf.c:5250 +#: src/readelf.c:5253 #, c-format msgid "" "\n" @@ -5221,50 +5225,50 @@ msgstr "" "\n" " [%6tx] Zerowy koniec\n" -#: src/readelf.c:5335 +#: src/readelf.c:5338 #, c-format msgid "invalid augmentation length" msgstr "nieprawidłowa długość powiększenia" -#: src/readelf.c:5347 +#: src/readelf.c:5350 msgid "FDE address encoding: " msgstr "Kodowanie adresu FDE: " -#: src/readelf.c:5353 +#: src/readelf.c:5356 msgid "LSDA pointer encoding: " msgstr "Kodowanie wskaźnika LSDA: " -#: src/readelf.c:5451 +#: src/readelf.c:5454 #, c-format msgid " (offset: %#)" msgstr " (offset: %#)" -#: src/readelf.c:5458 +#: src/readelf.c:5461 #, c-format msgid " (end offset: %#)" msgstr " (kończący offset: %#)" -#: src/readelf.c:5485 +#: src/readelf.c:5488 #, c-format msgid " %-26sLSDA pointer: %#\n" msgstr " %-26sWskaźnik LSDA: %#\n" -#: src/readelf.c:5536 +#: src/readelf.c:5539 #, c-format msgid "cannot get attribute code: %s" msgstr "nie można uzyskać kodu atrybutu: %s" -#: src/readelf.c:5545 +#: src/readelf.c:5548 #, c-format msgid "cannot get attribute form: %s" msgstr "nie można uzyskać formy atrybutu: %s" -#: src/readelf.c:5560 +#: src/readelf.c:5563 #, c-format msgid "cannot get attribute value: %s" msgstr "nie można uzyskać wartości atrybutu: %s" -#: src/readelf.c:5819 +#: src/readelf.c:5822 #, c-format msgid "" "\n" @@ -5275,7 +5279,7 @@ msgstr "" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %#:\n" " [Offset]\n" -#: src/readelf.c:5851 +#: src/readelf.c:5854 #, c-format msgid "" " Type unit at offset %:\n" @@ -5288,7 +5292,7 @@ msgstr "" "%, rozmiar offsetu: %\n" " Podpis typu: %#, offset typu: %#\n" -#: src/readelf.c:5860 +#: src/readelf.c:5863 #, c-format msgid "" " Compilation unit at offset %:\n" @@ -5299,38 +5303,38 @@ msgstr "" " Wersja: %, offset sekcji skrótów: %, rozmiar adresu: " "%, rozmiar offsetu: %\n" -#: src/readelf.c:5886 +#: src/readelf.c:5889 #, c-format msgid "cannot get DIE at offset % in section '%s': %s" msgstr "nie można uzyskać DIE pod offsetem % w sekcji \"%s\": %s" -#: src/readelf.c:5898 +#: src/readelf.c:5901 #, c-format msgid "cannot get DIE offset: %s" msgstr "nie można uzyskać offsetu DIE: %s" -#: src/readelf.c:5907 +#: src/readelf.c:5910 #, c-format msgid "cannot get tag of DIE at offset % in section '%s': %s" msgstr "" "nie można uzyskać znacznika DIE pod offsetem % w sekcji \"%s\": %s" -#: src/readelf.c:5938 +#: src/readelf.c:5941 #, c-format msgid "cannot get next DIE: %s\n" msgstr "nie można uzyskać następnego DIE: %s\n" -#: src/readelf.c:5946 +#: src/readelf.c:5949 #, c-format msgid "cannot get next DIE: %s" msgstr "nie można uzyskać następnego DIE: %s" -#: src/readelf.c:5995 +#: src/readelf.c:5998 #, c-format msgid "cannot get line data section data: %s" msgstr "nie można uzyskać danych sekcji danych wiersza: %s" -#: src/readelf.c:6008 +#: src/readelf.c:6011 #, c-format msgid "" "\n" @@ -5339,7 +5343,7 @@ msgstr "" "\n" "Tabela pod offsetem %Zu:\n" -#: src/readelf.c:6063 +#: src/readelf.c:6066 #, c-format msgid "" "\n" @@ -5368,12 +5372,12 @@ msgstr "" "\n" "Instrukcje:\n" -#: src/readelf.c:6084 +#: src/readelf.c:6087 #, c-format msgid "invalid data at offset %tu in section [%zu] '%s'" msgstr "nieprawidłowe dane pod offsetem %tu w sekcji [%zu] \"%s\"" -#: src/readelf.c:6099 +#: src/readelf.c:6102 #, c-format msgid " [%*] %hhu argument\n" msgid_plural " [%*] %hhu arguments\n" @@ -5381,7 +5385,7 @@ msgstr[0] " [%*] %hhu parametr\n" msgstr[1] " [%*] %hhu parametry\n" msgstr[2] " [%*] %hhu parametrów\n" -#: src/readelf.c:6107 +#: src/readelf.c:6110 msgid "" "\n" "Directory table:" @@ -5389,7 +5393,7 @@ msgstr "" "\n" "Tabela katalogu:" -#: src/readelf.c:6123 +#: src/readelf.c:6126 msgid "" "\n" "File name table:\n" @@ -5399,7 +5403,7 @@ msgstr "" "Tabela nazw plików:\n" " Wpis Kat Czas Rozmiar Nazwa" -#: src/readelf.c:6152 +#: src/readelf.c:6155 msgid "" "\n" "Line number statements:" @@ -5407,118 +5411,118 @@ msgstr "" "\n" "Instrukcje numerów wierszy:" -#: src/readelf.c:6228 +#: src/readelf.c:6231 #, c-format msgid " special opcode %u: address+%u = %s, op_index = %u, line%+d = %zu\n" msgstr "" " instrukcja specjalna %u: adres+%u = %s, op_index = %u, wiersz%+d = %zu\n" -#: src/readelf.c:6233 +#: src/readelf.c:6236 #, c-format msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" msgstr " instrukcja specjalna %u: adres+%u = %s, wiersz%+d = %zu\n" -#: src/readelf.c:6253 +#: src/readelf.c:6256 #, c-format msgid " extended opcode %u: " msgstr " instrukcja rozszerzona %u: " -#: src/readelf.c:6258 +#: src/readelf.c:6261 #, fuzzy msgid " end of sequence" msgstr "koniec sekwencji" -#: src/readelf.c:6275 +#: src/readelf.c:6278 #, fuzzy, c-format msgid " set address to %s\n" msgstr "ustawienie adresu na %s\n" -#: src/readelf.c:6296 +#: src/readelf.c:6299 #, fuzzy, c-format msgid " define new file: dir=%u, mtime=%, length=%, name=%s\n" msgstr "" "definicja nowego pliku: dir=%u, mtime=%, długość=%, nazwa=" "%s\n" -#: src/readelf.c:6309 +#: src/readelf.c:6312 #, c-format msgid " set discriminator to %u\n" msgstr " ustawienie dyskryminatora na %u\n" -#: src/readelf.c:6314 +#: src/readelf.c:6317 #, fuzzy msgid " unknown opcode" msgstr "nieznana instrukcja" -#: src/readelf.c:6326 +#: src/readelf.c:6329 msgid " copy" msgstr " kopiowanie" -#: src/readelf.c:6337 +#: src/readelf.c:6340 #, fuzzy, c-format msgid " advance address by %u to %s, op_index to %u\n" msgstr "" "zwiększenie adresu o %u do %s, op_index do %u\n" "\n" -#: src/readelf.c:6341 +#: src/readelf.c:6344 #, fuzzy, c-format msgid " advance address by %u to %s\n" msgstr "zwiększenie adresu o %u do %s\n" -#: src/readelf.c:6352 +#: src/readelf.c:6355 #, c-format msgid " advance line by constant %d to %\n" msgstr " zwiększenie wiersza o stałą %d do %\n" -#: src/readelf.c:6360 +#: src/readelf.c:6363 #, c-format msgid " set file to %\n" msgstr " ustawienie pliku na %\n" -#: src/readelf.c:6370 +#: src/readelf.c:6373 #, c-format msgid " set column to %\n" msgstr " ustawienie kolumny na %\n" -#: src/readelf.c:6377 +#: src/readelf.c:6380 #, c-format msgid " set '%s' to %\n" msgstr " ustawienie \"%s\" na %\n" -#: src/readelf.c:6383 +#: src/readelf.c:6386 msgid " set basic block flag" msgstr " ustawienie podstawowej flagi bloku" -#: src/readelf.c:6392 +#: src/readelf.c:6395 #, fuzzy, c-format msgid " advance address by constant %u to %s, op_index to %u\n" msgstr "zwiększenie adresu o stałą %u do %s, op_index do %u\n" -#: src/readelf.c:6396 +#: src/readelf.c:6399 #, fuzzy, c-format msgid " advance address by constant %u to %s\n" msgstr "zwiększenie adresu o stałą %u do %s\n" -#: src/readelf.c:6414 +#: src/readelf.c:6417 #, fuzzy, c-format msgid " advance address by fixed value %u to %s\n" msgstr "zwiększenie adresu o stałą wartość %u do %s\n" -#: src/readelf.c:6423 +#: src/readelf.c:6426 msgid " set prologue end flag" msgstr " ustawienie flagi końca prologu" -#: src/readelf.c:6428 +#: src/readelf.c:6431 msgid " set epilogue begin flag" msgstr " ustawienie flagi początku epilogu" -#: src/readelf.c:6437 +#: src/readelf.c:6440 #, c-format msgid " set isa to %u\n" msgstr " ustawienie isa na %u\n" -#: src/readelf.c:6446 +#: src/readelf.c:6449 #, c-format msgid " unknown opcode with % parameter:" msgid_plural " unknown opcode with % parameters:" @@ -5526,41 +5530,41 @@ msgstr[0] " nieznana instrukcja z % parametrem:" msgstr[1] " nieznana instrukcja z % parametrami:" msgstr[2] " nieznana instrukcja z % parametrami:" -#: src/readelf.c:6478 +#: src/readelf.c:6481 #, c-format msgid "cannot get .debug_loc content: %s" msgstr "nie można uzyskać zawartości .debug_log: %s" -#: src/readelf.c:6548 +#: src/readelf.c:6551 #, c-format msgid " [%6tx] %s..%s" msgstr " [%6tx] %s...%s" -#: src/readelf.c:6550 +#: src/readelf.c:6553 #, c-format msgid " %s..%s" msgstr " %s...%s" -#: src/readelf.c:6557 +#: src/readelf.c:6560 msgid " \n" msgstr " \n" -#: src/readelf.c:6609 +#: src/readelf.c:6612 #, c-format msgid "cannot get macro information section data: %s" msgstr "nie można uzyskać danych sekcji informacji o makrach: %s" -#: src/readelf.c:6688 +#: src/readelf.c:6691 #, c-format msgid "%*s*** non-terminated string at end of section" msgstr "%*s*** niezakończony ciąg na końcu sekcji" -#: src/readelf.c:6756 +#: src/readelf.c:6759 #, c-format msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" msgstr " [%5d] offset DIE: %6, offset CU DIE: %6, nazwa: %s\n" -#: src/readelf.c:6796 +#: src/readelf.c:6799 #, c-format msgid "" "\n" @@ -5571,12 +5575,12 @@ msgstr "" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %#:\n" " %*s Ciąg\n" -#: src/readelf.c:6810 +#: src/readelf.c:6813 #, c-format msgid " *** error while reading strings: %s\n" msgstr " *** błąd podczas odczytywania ciągów: %s\n" -#: src/readelf.c:6830 +#: src/readelf.c:6833 #, c-format msgid "" "\n" @@ -5585,7 +5589,7 @@ msgstr "" "\n" "Sekcja tabeli wyszukiwania ramki wywołania [%2zu] \".eh_frame_hdr\":\n" -#: src/readelf.c:6932 +#: src/readelf.c:6935 #, c-format msgid "" "\n" @@ -5594,22 +5598,22 @@ msgstr "" "\n" "Sekcja tabeli obsługiwania wyjątków [%2zu] \".gcc_except_table\":\n" -#: src/readelf.c:6955 +#: src/readelf.c:6958 #, c-format msgid " LPStart encoding: %#x " msgstr " Kodowanie LPStart: %#x " -#: src/readelf.c:6967 +#: src/readelf.c:6970 #, c-format msgid " TType encoding: %#x " msgstr " Kodowanie TType: %#x " -#: src/readelf.c:6981 +#: src/readelf.c:6984 #, c-format msgid " Call site encoding: %#x " msgstr " Kodowanie strony wywołania: %#x " -#: src/readelf.c:6994 +#: src/readelf.c:6997 msgid "" "\n" " Call site table:" @@ -5617,7 +5621,7 @@ msgstr "" "\n" " Tabela strony wywołania:" -#: src/readelf.c:7008 +#: src/readelf.c:7011 #, c-format msgid "" " [%4u] Call site start: %#\n" @@ -5630,12 +5634,12 @@ msgstr "" " Lądowisko: %#\n" " Działanie: %u\n" -#: src/readelf.c:7068 +#: src/readelf.c:7071 #, c-format msgid "invalid TType encoding" msgstr "nieprawidłowe kodowanie TType" -#: src/readelf.c:7089 +#: src/readelf.c:7092 #, fuzzy, c-format msgid "" "\n" @@ -5644,42 +5648,42 @@ msgstr "" "\n" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %# zawiera %zu wpis:\n" -#: src/readelf.c:7118 +#: src/readelf.c:7121 #, fuzzy, c-format msgid " Version: %\n" msgstr " %s: %\n" -#: src/readelf.c:7124 +#: src/readelf.c:7127 #, c-format msgid " unknown version, cannot parse section\n" msgstr "" -#: src/readelf.c:7133 +#: src/readelf.c:7136 #, fuzzy, c-format msgid " CU offset: %#\n" msgstr " (offset: %#)" -#: src/readelf.c:7140 +#: src/readelf.c:7143 #, fuzzy, c-format msgid " TU offset: %#\n" msgstr " (offset: %#)" -#: src/readelf.c:7147 +#: src/readelf.c:7150 #, fuzzy, c-format msgid " address offset: %#\n" msgstr " (kończący offset: %#)" -#: src/readelf.c:7154 +#: src/readelf.c:7157 #, fuzzy, c-format msgid " symbol offset: %#\n" msgstr " (offset: %#)" -#: src/readelf.c:7161 +#: src/readelf.c:7164 #, fuzzy, c-format msgid " constant offset: %#\n" msgstr " (kończący offset: %#)" -#: src/readelf.c:7168 +#: src/readelf.c:7171 #, fuzzy, c-format msgid "" "\n" @@ -5688,7 +5692,7 @@ msgstr "" "\n" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %# zawiera %zu wpis:\n" -#: src/readelf.c:7190 +#: src/readelf.c:7193 #, fuzzy, c-format msgid "" "\n" @@ -5697,7 +5701,7 @@ msgstr "" "\n" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %# zawiera %zu wpis:\n" -#: src/readelf.c:7216 +#: src/readelf.c:7219 #, fuzzy, c-format msgid "" "\n" @@ -5706,7 +5710,7 @@ msgstr "" "\n" "Sekcja DWARF [%2zu] \"%s\" pod offsetem %# zawiera %zu wpis:\n" -#: src/readelf.c:7243 +#: src/readelf.c:7246 #, fuzzy, c-format msgid "" "\n" @@ -5715,17 +5719,17 @@ msgstr "" "\n" "Nieprawidłowa tabela symboli pod offsetem %#0\n" -#: src/readelf.c:7292 +#: src/readelf.c:7295 #, c-format msgid "cannot get debug context descriptor: %s" msgstr "nie można uzyskać deskryptora kontekstu debugowania: %s" -#: src/readelf.c:7441 src/readelf.c:8042 +#: src/readelf.c:7444 src/readelf.c:8045 #, c-format msgid "cannot convert core note data: %s" msgstr "nie można przekonwertować danych notatki core: %s" -#: src/readelf.c:7782 +#: src/readelf.c:7785 #, c-format msgid "" "\n" @@ -5734,21 +5738,21 @@ msgstr "" "\n" "%*s... ..." -#: src/readelf.c:8141 +#: src/readelf.c:8144 msgid " Owner Data size Type\n" msgstr " Właściciel Rozmiar danych Typ\n" -#: src/readelf.c:8159 +#: src/readelf.c:8162 #, c-format msgid " %-13.*s %9 %s\n" msgstr " %-13.*s %9 %s\n" -#: src/readelf.c:8193 +#: src/readelf.c:8196 #, c-format msgid "cannot get content of note section: %s" msgstr "nie można uzyskać zawartości sekcji notatki: %s" -#: src/readelf.c:8220 +#: src/readelf.c:8223 #, c-format msgid "" "\n" @@ -5758,7 +5762,7 @@ msgstr "" "Segment notatki [%2zu] \"%s\" o długości % bajtów pod offsetem " "%#0:\n" -#: src/readelf.c:8243 +#: src/readelf.c:8246 #, c-format msgid "" "\n" @@ -5767,7 +5771,7 @@ msgstr "" "\n" "Segment notatki o długości % bajtów pod offsetem %#0:\n" -#: src/readelf.c:8289 +#: src/readelf.c:8292 #, c-format msgid "" "\n" @@ -5776,12 +5780,12 @@ msgstr "" "\n" "Sekcja [%Zu] \"%s\" nie posiada danych do zrzucenia.\n" -#: src/readelf.c:8295 src/readelf.c:8318 +#: src/readelf.c:8298 src/readelf.c:8321 #, c-format msgid "cannot get data for section [%Zu] '%s': %s" msgstr "nie można uzyskać danych dla sekcji [%Zu] \"%s\": %s" -#: src/readelf.c:8299 +#: src/readelf.c:8302 #, c-format msgid "" "\n" @@ -5791,7 +5795,7 @@ msgstr "" "Segment zrzutu szesnastkowego [%Zu] \"%s\", % bajtów pod offsetem " "%#0:\n" -#: src/readelf.c:8312 +#: src/readelf.c:8315 #, c-format msgid "" "\n" @@ -5800,7 +5804,7 @@ msgstr "" "\n" "Sekcja [%Zu] \"%s\" nie posiada ciągów do zrzucenia.\n" -#: src/readelf.c:8322 +#: src/readelf.c:8325 #, c-format msgid "" "\n" @@ -5810,7 +5814,7 @@ msgstr "" "Sekcja ciągów [%Zu] \"%s\" zawiera % bajtów pod offsetem " "%#0:\n" -#: src/readelf.c:8370 +#: src/readelf.c:8373 #, c-format msgid "" "\n" @@ -5819,7 +5823,7 @@ msgstr "" "\n" "sekcja [%lu] nie istnieje" -#: src/readelf.c:8399 +#: src/readelf.c:8402 #, c-format msgid "" "\n" @@ -5828,12 +5832,12 @@ msgstr "" "\n" "sekcja \"%s\" nie istnieje" -#: src/readelf.c:8456 +#: src/readelf.c:8459 #, c-format msgid "cannot get symbol index of archive '%s': %s" msgstr "nie można uzyskać indeksu symboli archiwum \"%s\": %s" -#: src/readelf.c:8459 +#: src/readelf.c:8462 #, c-format msgid "" "\n" @@ -5842,7 +5846,7 @@ msgstr "" "\n" "Archiwum \"%s\" nie posiada indeksu symboli\n" -#: src/readelf.c:8463 +#: src/readelf.c:8466 #, c-format msgid "" "\n" @@ -5851,12 +5855,12 @@ msgstr "" "\n" "Indeks archiwum \"%s\" posiada %Zu wpisów:\n" -#: src/readelf.c:8481 +#: src/readelf.c:8484 #, c-format msgid "cannot extract member at offset %Zu in '%s': %s" msgstr "nie można wydobyć elementów pod offsetem %Zu w \"%s\": %s" -#: src/readelf.c:8486 +#: src/readelf.c:8489 #, c-format msgid "Archive member '%s' contains:\n" msgstr "Element archiwum \"%s\" zawiera:\n" diff --git a/po/uk.po b/po/uk.po index 2052469ed..7872083c1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" -"POT-Creation-Date: 2011-07-09 02:32-0700\n" +"POT-Creation-Date: 2011-09-29 15:40-0400\n" "PO-Revision-Date: 2011-02-12 13:36+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -17,8 +17,8 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 1.2\n" -#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2841 -#: src/readelf.c:3180 src/unstrip.c:2098 src/unstrip.c:2306 +#: lib/xmalloc.c:51 lib/xmalloc.c:65 lib/xmalloc.c:79 src/readelf.c:2844 +#: src/readelf.c:3183 src/unstrip.c:2098 src/unstrip.c:2306 #, c-format msgid "memory exhausted" msgstr "пам’ять вичерпано" @@ -462,7 +462,7 @@ msgstr "некоректна розмірність вхідного парам msgid "invalid size of destination operand" msgstr "некоректна розмірність вихідного параметра" -#: libelf/elf_error.c:108 src/readelf.c:5173 +#: libelf/elf_error.c:108 src/readelf.c:5176 #, c-format msgid "invalid encoding" msgstr "некоректне кодування" @@ -543,8 +543,8 @@ msgstr "невідповідність полів data/scn" msgid "invalid section header" msgstr "некоректний заголовок розділу" -#: libelf/elf_error.c:208 src/readelf.c:6850 src/readelf.c:6951 -#: src/readelf.c:7113 +#: libelf/elf_error.c:208 src/readelf.c:6853 src/readelf.c:6954 +#: src/readelf.c:7116 #, c-format msgid "invalid data" msgstr "некоректні дані" @@ -632,7 +632,7 @@ msgstr "[АДРЕСА...]" #: src/addr2line.c:189 src/ar.c:289 src/elfcmp.c:670 src/elflint.c:239 #: src/findtextrel.c:170 src/ld.c:957 src/nm.c:253 src/objdump.c:181 -#: src/ranlib.c:136 src/readelf.c:459 src/size.c:219 src/strings.c:227 +#: src/ranlib.c:136 src/readelf.c:462 src/size.c:219 src/strings.c:227 #: src/strip.c:221 src/unstrip.c:234 #, c-format msgid "" @@ -647,7 +647,7 @@ msgstr "" #: src/addr2line.c:194 src/ar.c:294 src/elfcmp.c:675 src/elflint.c:244 #: src/findtextrel.c:175 src/ld.c:962 src/nm.c:258 src/objdump.c:186 -#: src/ranlib.c:141 src/readelf.c:464 src/size.c:224 src/strings.c:232 +#: src/ranlib.c:141 src/readelf.c:467 src/size.c:224 src/strings.c:232 #: src/strip.c:226 src/unstrip.c:239 #, c-format msgid "Written by %s.\n" @@ -808,112 +808,112 @@ msgstr "слід вказати назву архіву" msgid "More than one operation specified" msgstr "Вказано більше за одну дію" -#: src/ar.c:404 +#: src/ar.c:408 #, c-format msgid "cannot open archive '%s'" msgstr "не вдалося відкрити архів «%s»" -#: src/ar.c:414 +#: src/ar.c:418 #, c-format msgid "cannot open archive '%s': %s" msgstr "не вдалося відкрити архів «%s»: %s" -#: src/ar.c:418 +#: src/ar.c:422 #, c-format msgid "%s: not an archive file" msgstr "%s: не є файлом архіву" -#: src/ar.c:422 +#: src/ar.c:426 #, c-format msgid "cannot stat archive '%s'" msgstr "не вдалося отримати дані архіву «%s» за допомогою stat" -#: src/ar.c:434 +#: src/ar.c:438 #, c-format msgid "no entry %s in archive\n" msgstr "у архіві немає запису %s\n" -#: src/ar.c:487 src/ar.c:929 src/ar.c:1129 +#: src/ar.c:491 src/ar.c:933 src/ar.c:1133 #, c-format msgid "cannot create hash table" msgstr "не вдалося створити таблицю хешів" -#: src/ar.c:494 src/ar.c:936 src/ar.c:1138 +#: src/ar.c:498 src/ar.c:940 src/ar.c:1142 #, c-format msgid "cannot insert into hash table" msgstr "не вдалося вставити запис до таблиці хешів" -#: src/ar.c:502 src/ranlib.c:176 +#: src/ar.c:506 src/ranlib.c:176 #, c-format msgid "cannot stat '%s'" msgstr "не вдалося отримати дані з «%s» за допомогою stat" -#: src/ar.c:598 +#: src/ar.c:602 #, c-format msgid "cannot read content of %s: %s" msgstr "не вдалося прочитати вміст з %s: %s" -#: src/ar.c:641 +#: src/ar.c:645 #, c-format msgid "cannot open %.*s" msgstr "не вдалося відкрити %.*s" -#: src/ar.c:663 +#: src/ar.c:667 #, c-format msgid "failed to write %s" msgstr "не вдалося записати %s" -#: src/ar.c:675 +#: src/ar.c:679 #, c-format msgid "cannot change mode of %s" msgstr "не вдалося змінити права доступу до %s" -#: src/ar.c:691 +#: src/ar.c:695 #, c-format msgid "cannot change modification time of %s" msgstr "не вдалося змінити часову мітку зміни %s" -#: src/ar.c:737 +#: src/ar.c:741 #, c-format msgid "cannot rename temporary file to %.*s" msgstr "не вдалося перейменувати файл тимчасових даних на %.*s" -#: src/ar.c:773 src/ar.c:1021 src/ar.c:1419 src/ranlib.c:250 +#: src/ar.c:777 src/ar.c:1025 src/ar.c:1423 src/ranlib.c:250 #, c-format msgid "cannot create new file" msgstr "не вдалося створити файл" -#: src/ar.c:1220 +#: src/ar.c:1224 #, c-format msgid "position member %s not found" msgstr "не виявлено елемента позиції %s" -#: src/ar.c:1230 +#: src/ar.c:1234 #, c-format msgid "%s: no entry %s in archive!\n" msgstr "%s: у архіві немає запису %s!\n" -#: src/ar.c:1259 src/ldgeneric.c:517 src/objdump.c:257 +#: src/ar.c:1263 src/ldgeneric.c:517 src/objdump.c:257 #, c-format msgid "cannot open %s" msgstr "не вдалося відкрити %s" -#: src/ar.c:1264 +#: src/ar.c:1268 #, c-format msgid "cannot stat %s" msgstr "не вдалося отримати дані %s за допомогою stat" -#: src/ar.c:1270 +#: src/ar.c:1274 #, c-format msgid "%s is no regular file" msgstr "%s не є звичайним файлом" -#: src/ar.c:1283 +#: src/ar.c:1287 #, c-format msgid "cannot get ELF descriptor for %s: %s\n" msgstr "не вдалося отримати дескриптор ELF для %s: %s\n" -#: src/ar.c:1302 +#: src/ar.c:1306 #, c-format msgid "cannot read %s: %s" msgstr "не вдалося прочитати %s: %s" @@ -1162,11 +1162,11 @@ msgid "Pedantic checking of ELF files compliance with gABI/psABI spec." msgstr "" "Педантична перевірка файлів ELF на сумісність зі специфікаціями gABI/psABI." -#: src/elflint.c:86 src/readelf.c:118 +#: src/elflint.c:86 src/readelf.c:119 msgid "FILE..." msgstr "ФАЙЛ..." -#: src/elflint.c:159 src/readelf.c:274 +#: src/elflint.c:159 src/readelf.c:275 #, c-format msgid "cannot open input file" msgstr "не вдалося відкрити вхідний файл." @@ -1185,7 +1185,7 @@ msgstr "помилка під час спроби закриття дескри msgid "No errors" msgstr "Без помилок" -#: src/elflint.c:223 src/readelf.c:435 +#: src/elflint.c:223 src/readelf.c:436 msgid "Missing file name.\n" msgstr "Не вказано назви файла.\n" @@ -3526,7 +3526,7 @@ msgstr "Попередження: тип «%s» змінився з %s у %s н msgid "Warning: size of `%s' changed from % in %s to % in %s" msgstr "Попередження: розмір «%s» змінено з % у %s на % у %s" -#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:639 src/strip.c:570 +#: src/ldgeneric.c:659 src/ldgeneric.c:1120 src/readelf.c:642 src/strip.c:570 #, c-format msgid "cannot determine number of sections: %s" msgstr "не вдалося визначити кількість розділів: %s" @@ -3970,11 +3970,11 @@ msgstr "%s%s%s: не вдалося розпізнати формат файла msgid "cannot create search tree" msgstr "не вдалося створити дерево пошуку" -#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:895 -#: src/readelf.c:1038 src/readelf.c:1186 src/readelf.c:1368 src/readelf.c:1568 -#: src/readelf.c:1754 src/readelf.c:1964 src/readelf.c:2218 src/readelf.c:2284 -#: src/readelf.c:2362 src/readelf.c:2860 src/readelf.c:2896 src/readelf.c:2958 -#: src/readelf.c:7303 src/readelf.c:8208 src/readelf.c:8355 src/readelf.c:8423 +#: src/nm.c:739 src/nm.c:998 src/objdump.c:744 src/readelf.c:898 +#: src/readelf.c:1041 src/readelf.c:1189 src/readelf.c:1371 src/readelf.c:1571 +#: src/readelf.c:1757 src/readelf.c:1967 src/readelf.c:2221 src/readelf.c:2287 +#: src/readelf.c:2365 src/readelf.c:2863 src/readelf.c:2899 src/readelf.c:2961 +#: src/readelf.c:7306 src/readelf.c:8211 src/readelf.c:8358 src/readelf.c:8426 #: src/size.c:425 src/size.c:499 src/strip.c:510 #, c-format msgid "cannot get section header string table index" @@ -4050,7 +4050,7 @@ msgstr "Показати інформацію лише з розділу НАЗ msgid "Show information from FILEs (a.out by default)." msgstr "Показати інформацію з ФАЙЛів (типово a.out)." -#: src/objdump.c:236 src/readelf.c:440 +#: src/objdump.c:236 src/readelf.c:441 msgid "No operation specified.\n" msgstr "Не вказано дії.\n" @@ -4059,11 +4059,11 @@ msgstr "Не вказано дії.\n" msgid "while close `%s'" msgstr "під час закриття «%s»" -#: src/objdump.c:379 src/readelf.c:1663 src/readelf.c:1837 +#: src/objdump.c:379 src/readelf.c:1666 src/readelf.c:1840 msgid "INVALID SYMBOL" msgstr "НЕКОРЕКТНИЙ СИМВОЛ" -#: src/objdump.c:394 src/readelf.c:1694 src/readelf.c:1870 +#: src/objdump.c:394 src/readelf.c:1697 src/readelf.c:1873 msgid "INVALID SECTION" msgstr "НЕКОРЕКТНИЙ РОЗДІЛ" @@ -4203,91 +4203,95 @@ msgstr "Керування виводом:" msgid "Do not find symbol names for addresses in DWARF data" msgstr "Не шукати назви символів для адресу у даних DWARF" -#: src/readelf.c:114 +#: src/readelf.c:110 +msgid "Ignored for compatibility (lines always wide)" +msgstr "" + +#: src/readelf.c:115 msgid "Print information from ELF file in human-readable form." msgstr "Виводити відомості з файла ELF у придатному для читання форматі." -#: src/readelf.c:411 +#: src/readelf.c:412 #, c-format msgid "Unknown DWARF debug section `%s'.\n" msgstr "Невідомий діагностичний розділ DWARF «%s».\n" -#: src/readelf.c:475 +#: src/readelf.c:478 #, c-format msgid "cannot generate Elf descriptor: %s" msgstr "не вдалося створити дескриптор Elf: %s" -#: src/readelf.c:487 +#: src/readelf.c:490 #, c-format msgid "'%s' is not an archive, cannot print archive index" msgstr "«%s» не є архівом, виведення покажчика архіву неможливе" -#: src/readelf.c:492 +#: src/readelf.c:495 #, c-format msgid "error while closing Elf descriptor: %s" msgstr "помилка під час спроби закриття дескриптора Elf: %s" -#: src/readelf.c:584 +#: src/readelf.c:587 #, c-format msgid "cannot stat input file" msgstr "не вдалося отримати дані з вхідного файла за допомогою stat" -#: src/readelf.c:586 +#: src/readelf.c:589 #, c-format msgid "input file is empty" msgstr "вхідний файл є порожнім" -#: src/readelf.c:588 +#: src/readelf.c:591 #, c-format msgid "failed reading '%s': %s" msgstr "не вдалося прочитати «%s»: %s" -#: src/readelf.c:624 +#: src/readelf.c:627 #, c-format msgid "cannot read ELF header: %s" msgstr "не вдалося прочитати заголовок ELF: %s" -#: src/readelf.c:632 +#: src/readelf.c:635 #, c-format msgid "cannot create EBL handle" msgstr "не вдалося створити дескриптор EBL" -#: src/readelf.c:645 +#: src/readelf.c:648 #, c-format msgid "cannot determine number of program headers: %s" msgstr "не вдалося визначити кількість заголовків програми: %s" -#: src/readelf.c:731 +#: src/readelf.c:734 msgid "NONE (None)" msgstr "NONE (Немає)" -#: src/readelf.c:732 +#: src/readelf.c:735 msgid "REL (Relocatable file)" msgstr "REL (Придатний до переміщення файл)" -#: src/readelf.c:733 +#: src/readelf.c:736 msgid "EXEC (Executable file)" msgstr "EXEC (Виконуваний файл)" -#: src/readelf.c:734 +#: src/readelf.c:737 msgid "DYN (Shared object file)" msgstr "DYN (Файл об’єктів спільного використання)" -#: src/readelf.c:735 +#: src/readelf.c:738 msgid "CORE (Core file)" msgstr "CORE (Файл ядра)" -#: src/readelf.c:740 +#: src/readelf.c:743 #, c-format msgid "OS Specific: (%x)\n" msgstr "ОС-специфічне: (%x)\n" -#: src/readelf.c:742 +#: src/readelf.c:745 #, c-format msgid "Processor Specific: (%x)\n" msgstr "Специфічне для процесора: (%x)\n" -#: src/readelf.c:752 +#: src/readelf.c:755 msgid "" "ELF Header:\n" " Magic: " @@ -4295,7 +4299,7 @@ msgstr "" "Заголовок ELF:\n" " Magic: " -#: src/readelf.c:756 +#: src/readelf.c:759 #, c-format msgid "" "\n" @@ -4304,117 +4308,117 @@ msgstr "" "\n" " Клас: %s\n" -#: src/readelf.c:761 +#: src/readelf.c:764 #, c-format msgid " Data: %s\n" msgstr " Дані: %s\n" -#: src/readelf.c:767 +#: src/readelf.c:770 #, c-format msgid " Ident Version: %hhd %s\n" msgstr " Версія Ident: %hhd %s\n" -#: src/readelf.c:769 src/readelf.c:786 +#: src/readelf.c:772 src/readelf.c:789 msgid "(current)" msgstr "(поточний)" -#: src/readelf.c:773 +#: src/readelf.c:776 #, c-format msgid " OS/ABI: %s\n" msgstr " ОС/ABI: %s\n" -#: src/readelf.c:776 +#: src/readelf.c:779 #, c-format msgid " ABI Version: %hhd\n" msgstr " Версія ABI: %hhd\n" -#: src/readelf.c:779 +#: src/readelf.c:782 msgid " Type: " msgstr " Тип: " -#: src/readelf.c:782 +#: src/readelf.c:785 #, c-format msgid " Machine: %s\n" msgstr " Архітектура: %s\n" -#: src/readelf.c:784 +#: src/readelf.c:787 #, c-format msgid " Version: %d %s\n" msgstr " Версія: %d %s\n" -#: src/readelf.c:788 +#: src/readelf.c:791 #, c-format msgid " Entry point address: %#\n" msgstr " Адреса вхідної точки: %#\n" -#: src/readelf.c:791 +#: src/readelf.c:794 #, c-format msgid " Start of program headers: % %s\n" msgstr " Початок заголовків програм: % %s\n" -#: src/readelf.c:792 src/readelf.c:795 +#: src/readelf.c:795 src/readelf.c:798 msgid "(bytes into file)" msgstr "(байтів у файл)" -#: src/readelf.c:794 +#: src/readelf.c:797 #, c-format msgid " Start of section headers: % %s\n" msgstr " Початок заголовків розділів: % %s\n" -#: src/readelf.c:797 +#: src/readelf.c:800 #, c-format msgid " Flags: %s\n" msgstr " Прапорці: %s\n" -#: src/readelf.c:800 +#: src/readelf.c:803 #, c-format msgid " Size of this header: % %s\n" msgstr " Розмір цього заголовка: % %s\n" -#: src/readelf.c:801 src/readelf.c:804 src/readelf.c:821 +#: src/readelf.c:804 src/readelf.c:807 src/readelf.c:824 msgid "(bytes)" msgstr "(байтів)" -#: src/readelf.c:803 +#: src/readelf.c:806 #, c-format msgid " Size of program header entries: % %s\n" msgstr " Розмір записів заголовка програми: % %s\n" -#: src/readelf.c:806 +#: src/readelf.c:809 #, c-format msgid " Number of program headers entries: %" msgstr " Кількість записів заголовків програми: %" -#: src/readelf.c:813 +#: src/readelf.c:816 #, c-format msgid " (% in [0].sh_info)" msgstr " (% у [0].sh_info)" -#: src/readelf.c:816 src/readelf.c:833 src/readelf.c:847 +#: src/readelf.c:819 src/readelf.c:836 src/readelf.c:850 msgid " ([0] not available)" msgstr " ([0] недоступний)" -#: src/readelf.c:820 +#: src/readelf.c:823 #, c-format msgid " Size of section header entries: % %s\n" msgstr " Розмір записів заголовків розділів: % %s\n" -#: src/readelf.c:823 +#: src/readelf.c:826 #, c-format msgid " Number of section headers entries: %" msgstr " Кількість записів заголовків розділів: %" -#: src/readelf.c:830 +#: src/readelf.c:833 #, c-format msgid " (% in [0].sh_size)" msgstr " (% у [0].sh_size)" -#: src/readelf.c:843 +#: src/readelf.c:846 #, c-format msgid " (% in [0].sh_link)" msgstr " (% у [0].sh_link)" -#: src/readelf.c:851 +#: src/readelf.c:854 #, c-format msgid "" " Section header string table index: XINDEX%s\n" @@ -4423,7 +4427,7 @@ msgstr "" " Індекс заголовка розділу у таблиці рядків: XINDEX%s\n" "\n" -#: src/readelf.c:855 +#: src/readelf.c:858 #, c-format msgid "" " Section header string table index: %\n" @@ -4432,7 +4436,7 @@ msgstr "" " Індекс заголовка розділу у таблиці рядків: %\n" "\n" -#: src/readelf.c:887 +#: src/readelf.c:890 #, c-format msgid "" "There are %d section headers, starting at offset %#:\n" @@ -4441,11 +4445,11 @@ msgstr "" "Виявлено %d заголовків розділів, зміщення початку — %#:\n" "\n" -#: src/readelf.c:897 +#: src/readelf.c:900 msgid "Section Headers:" msgstr "Заголовки розділів:" -#: src/readelf.c:900 +#: src/readelf.c:903 msgid "" "[Nr] Name Type Addr Off Size ES Flags Lk " "Inf Al" @@ -4453,7 +4457,7 @@ msgstr "" "[№ ] Назва Тип Адр Змі Розмір ES Прап Lk " "Інф Al" -#: src/readelf.c:902 +#: src/readelf.c:905 msgid "" "[Nr] Name Type Addr Off Size ES " "Flags Lk Inf Al" @@ -4461,12 +4465,12 @@ msgstr "" "[№ ] Назва Тип Адр Змі Розмір ES " "Прап Lk Інф Al" -#: src/readelf.c:909 src/readelf.c:1062 +#: src/readelf.c:912 src/readelf.c:1065 #, c-format msgid "cannot get section: %s" msgstr "не вдалося отримати розділ: %s" -#: src/readelf.c:916 src/readelf.c:1070 src/readelf.c:8375 src/unstrip.c:353 +#: src/readelf.c:919 src/readelf.c:1073 src/readelf.c:8378 src/unstrip.c:353 #: src/unstrip.c:384 src/unstrip.c:433 src/unstrip.c:541 src/unstrip.c:558 #: src/unstrip.c:594 src/unstrip.c:792 src/unstrip.c:1060 src/unstrip.c:1250 #: src/unstrip.c:1310 src/unstrip.c:1431 src/unstrip.c:1484 src/unstrip.c:1591 @@ -4475,17 +4479,17 @@ msgstr "не вдалося отримати розділ: %s" msgid "cannot get section header: %s" msgstr "не вдалося отримати заголовок розділу: %s" -#: src/readelf.c:974 +#: src/readelf.c:977 msgid "Program Headers:" msgstr "Заголовки програми:" -#: src/readelf.c:976 +#: src/readelf.c:979 msgid "" " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" msgstr "" " Тип Зміщен ВіртАдр ФізАдр РозмФайл РозмПам Пра Вирів" -#: src/readelf.c:979 +#: src/readelf.c:982 msgid "" " Type Offset VirtAddr PhysAddr FileSiz " "MemSiz Flg Align" @@ -4493,12 +4497,12 @@ msgstr "" " Тип Зміщен ВіртАдр ФізАдр " "РозмФайлРозмПам Пра Вирів" -#: src/readelf.c:1019 +#: src/readelf.c:1022 #, c-format msgid "\t[Requesting program interpreter: %s]\n" msgstr "\t[Запит щодо інтерпретатора програми: %s]\n" -#: src/readelf.c:1040 +#: src/readelf.c:1043 msgid "" "\n" " Section to Segment mapping:\n" @@ -4508,12 +4512,12 @@ msgstr "" " Відображення розділів на сегмент:\n" " Розділи сегмента..." -#: src/readelf.c:1051 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 +#: src/readelf.c:1054 src/unstrip.c:1835 src/unstrip.c:1874 src/unstrip.c:1881 #, c-format msgid "cannot get program header: %s" msgstr "не вдалося отримати заголовок програми: %s" -#: src/readelf.c:1192 +#: src/readelf.c:1195 #, c-format msgid "" "\n" @@ -4531,7 +4535,7 @@ msgstr[2] "" "\n" "Група розділів COMDAT [%2zu] «%s» з підписом «%s» містить %zu записів:\n" -#: src/readelf.c:1197 +#: src/readelf.c:1200 #, c-format msgid "" "\n" @@ -4549,15 +4553,15 @@ msgstr[2] "" "\n" "Група розділів [%2zu] «%s» з підписом «%s» містить %zu записів:\n" -#: src/readelf.c:1205 +#: src/readelf.c:1208 msgid "" msgstr "<НЕКОРЕКТНИЙ СИМВОЛ>" -#: src/readelf.c:1219 +#: src/readelf.c:1222 msgid "" msgstr "<НЕКОРЕКТНИЙ РОЗДІЛ>" -#: src/readelf.c:1370 +#: src/readelf.c:1373 #, c-format msgid "" "\n" @@ -4580,36 +4584,36 @@ msgstr[2] "" "Динамічний сегмент містить %lu записів:\n" " Адр: %#0* Зміщення: %#08 Пос. на розділ: [%2u] '%s'\n" -#: src/readelf.c:1382 +#: src/readelf.c:1385 msgid " Type Value\n" msgstr " Тип Значення\n" -#: src/readelf.c:1406 +#: src/readelf.c:1409 #, c-format msgid "Shared library: [%s]\n" msgstr "Спільна бібліотека: [%s]\n" -#: src/readelf.c:1411 +#: src/readelf.c:1414 #, c-format msgid "Library soname: [%s]\n" msgstr "Назва so бібліотеки: [%s]\n" -#: src/readelf.c:1416 +#: src/readelf.c:1419 #, c-format msgid "Library rpath: [%s]\n" msgstr "Rpath бібліотеки: [%s]\n" -#: src/readelf.c:1421 +#: src/readelf.c:1424 #, c-format msgid "Library runpath: [%s]\n" msgstr "Runpath бібліотеки: [%s]\n" -#: src/readelf.c:1441 +#: src/readelf.c:1444 #, c-format msgid "% (bytes)\n" msgstr "% (байт)\n" -#: src/readelf.c:1553 src/readelf.c:1739 +#: src/readelf.c:1556 src/readelf.c:1742 #, c-format msgid "" "\n" @@ -4618,7 +4622,7 @@ msgstr "" "\n" "Некоректна таблиця символів за зміщенням %#0\n" -#: src/readelf.c:1571 src/readelf.c:1756 +#: src/readelf.c:1574 src/readelf.c:1759 #, c-format msgid "" "\n" @@ -4641,7 +4645,7 @@ msgstr[2] "" "Розділ переміщення [%2zu] «%s» для розділу [%2u] «%s» за зміщенням " "%#0 містить %d записів:\n" -#: src/readelf.c:1586 +#: src/readelf.c:1589 #, c-format msgid "" "\n" @@ -4659,30 +4663,30 @@ msgstr[2] "" "\n" "Розділ переміщення [%2u] «%s» за зміщенням %#0 містить %d записів:\n" -#: src/readelf.c:1596 +#: src/readelf.c:1599 msgid " Offset Type Value Name\n" msgstr " Зміщення Тип Значення Назва\n" -#: src/readelf.c:1598 +#: src/readelf.c:1601 msgid " Offset Type Value Name\n" msgstr " Зміщення Тип Значення Назва\n" -#: src/readelf.c:1651 src/readelf.c:1662 src/readelf.c:1675 src/readelf.c:1693 -#: src/readelf.c:1705 src/readelf.c:1824 src/readelf.c:1836 src/readelf.c:1850 -#: src/readelf.c:1869 src/readelf.c:1882 +#: src/readelf.c:1654 src/readelf.c:1665 src/readelf.c:1678 src/readelf.c:1696 +#: src/readelf.c:1708 src/readelf.c:1827 src/readelf.c:1839 src/readelf.c:1853 +#: src/readelf.c:1872 src/readelf.c:1885 msgid "" msgstr "<НЕКОРЕКТНЕ ПЕРЕМІЩЕННЯ>" -#: src/readelf.c:1768 +#: src/readelf.c:1771 msgid " Offset Type Value Addend Name\n" msgstr " Зміщення Тип Значення Назва додатка\n" -#: src/readelf.c:1770 +#: src/readelf.c:1773 msgid " Offset Type Value Addend Name\n" msgstr "" " Зміщення Тип Значення Назва додатка\n" -#: src/readelf.c:1971 +#: src/readelf.c:1974 #, c-format msgid "" "\n" @@ -4700,7 +4704,7 @@ msgstr[2] "" "\n" "Таблиця символів [%2u] «%s» містить %u записів:\n" -#: src/readelf.c:1977 +#: src/readelf.c:1980 #, c-format msgid " %lu local symbol String table: [%2u] '%s'\n" msgid_plural " %lu local symbols String table: [%2u] '%s'\n" @@ -4708,33 +4712,33 @@ msgstr[0] " %lu лок. символ Таблиця символів: [%2u] « msgstr[1] " %lu лок. символи Таблиця символів: [%2u] «%s»\n" msgstr[2] " %lu лок. символів Таблиця символів: [%2u] «%s»\n" -#: src/readelf.c:1987 +#: src/readelf.c:1990 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr " №№ Знач. Роз. Тип Зв’яз Вид. Інд Назва\n" -#: src/readelf.c:1989 +#: src/readelf.c:1992 msgid " Num: Value Size Type Bind Vis Ndx Name\n" msgstr " №№ Знач. Роз. Тип Зв’яз Вид. Інд Назва\n" -#: src/readelf.c:2009 +#: src/readelf.c:2012 #, c-format msgid "%5u: %0* %6 %-7s %-6s %-9s %6s %s" msgstr "%5u: %0* %6 %-7s %-6s %-9s %6s %s" -#: src/readelf.c:2097 +#: src/readelf.c:2100 #, c-format msgid "bad dynamic symbol" msgstr "помилковий динамічний символ" -#: src/readelf.c:2179 +#: src/readelf.c:2182 msgid "none" msgstr "немає" -#: src/readelf.c:2196 +#: src/readelf.c:2199 msgid "| " msgstr "| <невідомо>" -#: src/readelf.c:2221 +#: src/readelf.c:2224 #, c-format msgid "" "\n" @@ -4757,17 +4761,17 @@ msgstr[2] "" "Розділ потреби у версіях [%2u] «%s», що містить %d записів:\n" " Адр.: %#0* Зміщ.: %#08 Посилання на розділ: [%2u] «%s»\n" -#: src/readelf.c:2244 +#: src/readelf.c:2247 #, c-format msgid " %#06x: Version: %hu File: %s Cnt: %hu\n" msgstr " %#06x: Версія: %hu Файл: %s Кть: %hu\n" -#: src/readelf.c:2257 +#: src/readelf.c:2260 #, c-format msgid " %#06x: Name: %s Flags: %s Version: %hu\n" msgstr " %#06x: Назва: %s Прап: %s Версія: %hu\n" -#: src/readelf.c:2288 +#: src/readelf.c:2291 #, c-format msgid "" "\n" @@ -4790,17 +4794,17 @@ msgstr[2] "" "Розділ визначення версії [%2u] «%s», що містить %d записів:\n" " Адр.: %#0* Зміщ.: %#08 Посилання на розділ: [%2u] «%s»\n" -#: src/readelf.c:2318 +#: src/readelf.c:2321 #, c-format msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n" msgstr " %#06x: Версія: %hd Прап.: %s Індекс: %hd К-ть: %hd Назва: %s\n" -#: src/readelf.c:2333 +#: src/readelf.c:2336 #, c-format msgid " %#06x: Parent %d: %s\n" msgstr " %#06x: батьківський %d: %s\n" -#: src/readelf.c:2565 +#: src/readelf.c:2568 #, c-format msgid "" "\n" @@ -4823,15 +4827,15 @@ msgstr[2] "" "Розділ символів версій [%2u] «%s», що містить %d записів:\n" " Адр.: %#0* Зміщ.: %#08 Посилання на розділ: [%2u] «%s»" -#: src/readelf.c:2595 +#: src/readelf.c:2598 msgid " 0 *local* " msgstr " 0 *локальний* " -#: src/readelf.c:2600 +#: src/readelf.c:2603 msgid " 1 *global* " msgstr " 1 *загальний* " -#: src/readelf.c:2631 +#: src/readelf.c:2634 #, c-format msgid "" "\n" @@ -4859,22 +4863,22 @@ msgstr[2] "" "блоками):\n" " Адр.: %#0* Зміщ.: %#08 Посилання на розділ: [%2u] «%s»\n" -#: src/readelf.c:2655 +#: src/readelf.c:2658 #, no-c-format msgid " Length Number % of total Coverage\n" msgstr " Довжина Номер % від загал. Покриття\n" -#: src/readelf.c:2657 +#: src/readelf.c:2660 #, c-format msgid " 0 %6 %5.1f%%\n" msgstr " 0 %6 %5.1f%%\n" -#: src/readelf.c:2664 +#: src/readelf.c:2667 #, c-format msgid "%7d %6 %5.1f%% %5.1f%%\n" msgstr "%7d %6 %5.1f%% %5.1f%%\n" -#: src/readelf.c:2677 +#: src/readelf.c:2680 #, c-format msgid "" " Average number of tests: successful lookup: %f\n" @@ -4883,12 +4887,12 @@ msgstr "" " Середня кількість тестів: успішний пошук: %f\n" "\t\t\t неуспішний пошук: %f\n" -#: src/readelf.c:2695 src/readelf.c:2737 src/readelf.c:2778 +#: src/readelf.c:2698 src/readelf.c:2740 src/readelf.c:2781 #, c-format msgid "cannot get data for section %d: %s" msgstr "не вдалося отримати дані для розділу %d: %s" -#: src/readelf.c:2832 +#: src/readelf.c:2835 #, c-format msgid "" " Symbol Bias: %u\n" @@ -4898,7 +4902,7 @@ msgstr "" " Розмір бітової маски: %zu байтів %%% встановлених бітів зсув " "2-го хешу: %u\n" -#: src/readelf.c:2906 +#: src/readelf.c:2909 #, c-format msgid "" "\n" @@ -4919,7 +4923,7 @@ msgstr[2] "" "Розділ списку бібліотек [%2zu] «%s» за зміщенням %#0 містить %d " "записів:\n" -#: src/readelf.c:2920 +#: src/readelf.c:2923 msgid "" " Library Time Stamp Checksum Version " "Flags" @@ -4927,7 +4931,7 @@ msgstr "" " Бібліотека Часовий штамп Версія суми " "Прапорці" -#: src/readelf.c:2970 +#: src/readelf.c:2973 #, c-format msgid "" "\n" @@ -4938,160 +4942,160 @@ msgstr "" "Розділ атрибутів об’єктів [%2zu] «%s» з % байтів за зміщенням " "%#0:\n" -#: src/readelf.c:2986 +#: src/readelf.c:2989 msgid " Owner Size\n" msgstr " Власник Розмір\n" -#: src/readelf.c:3012 +#: src/readelf.c:3015 #, c-format msgid " %-13s %4\n" msgstr " %-13s %4\n" -#: src/readelf.c:3044 +#: src/readelf.c:3047 #, c-format msgid " %-4u %12\n" msgstr " %-4u %12\n" -#: src/readelf.c:3049 +#: src/readelf.c:3052 #, c-format msgid " File: %11\n" msgstr " Файл: %11\n" -#: src/readelf.c:3084 +#: src/readelf.c:3087 #, c-format msgid " %s: %, %s\n" msgstr " %s: %, %s\n" -#: src/readelf.c:3087 +#: src/readelf.c:3090 #, c-format msgid " %s: %\n" msgstr " %s: %\n" -#: src/readelf.c:3090 +#: src/readelf.c:3093 #, c-format msgid " %s: %s\n" msgstr " %s: %s\n" -#: src/readelf.c:3097 +#: src/readelf.c:3100 #, c-format msgid " %u: %\n" msgstr " %u: %\n" -#: src/readelf.c:3100 +#: src/readelf.c:3103 #, c-format msgid " %u: %s\n" msgstr " %u: %s\n" -#: src/readelf.c:3136 +#: src/readelf.c:3139 #, c-format msgid "%s+%# <%s+%#>" msgstr "%s+%# <%s+%#>" -#: src/readelf.c:3139 +#: src/readelf.c:3142 #, c-format msgid "%s+%#0* <%s+%#>" msgstr "%s+%#0* <%s+%#>" -#: src/readelf.c:3144 +#: src/readelf.c:3147 #, c-format msgid "%# <%s+%#>" msgstr "%# <%s+%#>" -#: src/readelf.c:3147 +#: src/readelf.c:3150 #, c-format msgid "%#0* <%s+%#>" msgstr "%#0* <%s+%#>" -#: src/readelf.c:3153 +#: src/readelf.c:3156 #, c-format msgid "%s+%# <%s>" msgstr "%s+%# <%s>" -#: src/readelf.c:3156 +#: src/readelf.c:3159 #, c-format msgid "%s+%#0* <%s>" msgstr "%s+%#0* <%s>" -#: src/readelf.c:3160 +#: src/readelf.c:3163 #, c-format msgid "%# <%s>" msgstr "%# <%s>" -#: src/readelf.c:3163 +#: src/readelf.c:3166 #, c-format msgid "%#0* <%s>" msgstr "%#0* <%s>" -#: src/readelf.c:3168 +#: src/readelf.c:3171 #, c-format msgid "%s+%#" msgstr "%s+%#" -#: src/readelf.c:3171 +#: src/readelf.c:3174 #, c-format msgid "%s+%#0*" msgstr "%s+%#0*" -#: src/readelf.c:3310 +#: src/readelf.c:3313 #, c-format msgid "unknown tag %hx" msgstr "невідомий теґ %hx" -#: src/readelf.c:3312 +#: src/readelf.c:3315 #, c-format msgid "unknown user tag %hx" msgstr "невідомий теґ користувача %hx" -#: src/readelf.c:3600 +#: src/readelf.c:3603 #, c-format msgid "unknown attribute %hx" msgstr "невідомий атрибут %hx" -#: src/readelf.c:3603 +#: src/readelf.c:3606 #, c-format msgid "unknown user attribute %hx" msgstr "невідомий атрибут користувача %hx" -#: src/readelf.c:3654 +#: src/readelf.c:3657 #, fuzzy, c-format msgid "unknown form %#" msgstr "невідома форма %" -#: src/readelf.c:3890 +#: src/readelf.c:3893 msgid "empty block" msgstr "порожній блок" -#: src/readelf.c:3893 +#: src/readelf.c:3896 #, c-format msgid "%zu byte block:" msgstr "%zu-байтовий блок:" -#: src/readelf.c:4416 +#: src/readelf.c:4419 #, c-format msgid "%*s[%4] %s \n" msgstr "%*s[%4] %s <ОБРІЗАНО>\n" -#: src/readelf.c:4452 +#: src/readelf.c:4455 #, c-format msgid "%s %# used with different address sizes" msgstr "%s %# використано з різними розмірами адрес" -#: src/readelf.c:4459 +#: src/readelf.c:4462 #, c-format msgid "%s %# used with different offset sizes" msgstr "%s %# використано з різними розмірами зміщень" -#: src/readelf.c:4539 +#: src/readelf.c:4542 #, c-format msgid " [%6tx] \n" msgstr " [%6tx] <НЕВИКОРИСТОВУВАНІ ДАНІ У РЕШТІ РОЗДІЛУ>\n" -#: src/readelf.c:4547 +#: src/readelf.c:4550 #, c-format msgid " [%6tx] ... % bytes ...\n" msgstr " [%6tx] <НЕВИКОРИСТОВУВАНІ ДАНІ> ... % байтів ...\n" -#: src/readelf.c:4566 +#: src/readelf.c:4569 #, c-format msgid "" "\n" @@ -5102,7 +5106,7 @@ msgstr "" "Розділ DWARF [%2zu] «%s» зі зміщенням %#:\n" " [ Код]\n" -#: src/readelf.c:4574 +#: src/readelf.c:4577 #, c-format msgid "" "\n" @@ -5111,30 +5115,30 @@ msgstr "" "\n" "Розділ скорочень за зміщенням %:\n" -#: src/readelf.c:4587 +#: src/readelf.c:4590 #, c-format msgid " *** error while reading abbreviation: %s\n" msgstr " *** помилка під час читання скорочення: %s\n" -#: src/readelf.c:4603 +#: src/readelf.c:4606 #, c-format msgid " [%5u] offset: %, children: %s, tag: %s\n" msgstr " [%5u] зміщення: %, дочірній: %s, мітка: %s\n" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "yes" msgstr "так" -#: src/readelf.c:4606 +#: src/readelf.c:4609 msgid "no" msgstr "ні" -#: src/readelf.c:4641 +#: src/readelf.c:4644 #, c-format msgid "cannot get .debug_aranges content: %s" msgstr "не вдалося отримати дані get .debug_aranges: %s" -#: src/readelf.c:4646 +#: src/readelf.c:4649 #, c-format msgid "" "\n" @@ -5152,12 +5156,12 @@ msgstr[2] "" "\n" "Розділ DWARF [%2zu] «%s» за зміщенням %# містить %zu записів:\n" -#: src/readelf.c:4677 +#: src/readelf.c:4680 #, c-format msgid " [%*zu] ???\n" msgstr " [%*zu] ???\n" -#: src/readelf.c:4679 +#: src/readelf.c:4682 #, c-format msgid "" " [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" @@ -5165,13 +5169,13 @@ msgstr "" " [%*zu] початок: %0#*, довжина: %5, зміщення CU DIE: " "%6\n" -#: src/readelf.c:4698 +#: src/readelf.c:4701 #, c-format msgid "cannot get .debug_ranges content: %s" msgstr "не вдалося отримати дані .debug_ranges: %s" -#: src/readelf.c:4703 src/readelf.c:5204 src/readelf.c:5982 src/readelf.c:6483 -#: src/readelf.c:6598 src/readelf.c:6770 +#: src/readelf.c:4706 src/readelf.c:5207 src/readelf.c:5985 src/readelf.c:6486 +#: src/readelf.c:6601 src/readelf.c:6773 #, c-format msgid "" "\n" @@ -5180,37 +5184,37 @@ msgstr "" "\n" "Розділ DWARF [%2zu] «%s» зі зміщенням %#:\n" -#: src/readelf.c:4727 src/readelf.c:6508 +#: src/readelf.c:4730 src/readelf.c:6511 #, c-format msgid " [%6tx] \n" msgstr " [%6tx] <НЕКОРЕКТНІ ДАНІ>\n" -#: src/readelf.c:4749 src/readelf.c:6530 +#: src/readelf.c:4752 src/readelf.c:6533 #, c-format msgid " [%6tx] base address %s\n" msgstr " [%6tx] базова адреса %s\n" -#: src/readelf.c:4755 src/readelf.c:6536 +#: src/readelf.c:4758 src/readelf.c:6539 #, c-format msgid " [%6tx] empty list\n" msgstr " [%6tx] порожній список\n" -#: src/readelf.c:4764 +#: src/readelf.c:4767 #, c-format msgid " [%6tx] %s..%s\n" msgstr " [%6tx] %s..%s\n" -#: src/readelf.c:4766 +#: src/readelf.c:4769 #, c-format msgid " %s..%s\n" msgstr " %s..%s\n" -#: src/readelf.c:5193 src/readelf.c:6838 src/readelf.c:6940 src/readelf.c:7098 +#: src/readelf.c:5196 src/readelf.c:6841 src/readelf.c:6943 src/readelf.c:7101 #, c-format msgid "cannot get %s content: %s" msgstr "не вдалося отримати дані %s: %s" -#: src/readelf.c:5200 +#: src/readelf.c:5203 #, c-format msgid "" "\n" @@ -5219,12 +5223,12 @@ msgstr "" "\n" "Розділ відомостей щодо вікна викликів [%2zu] «%s» за зміщенням %#:\n" -#: src/readelf.c:5228 src/readelf.c:6017 +#: src/readelf.c:5231 src/readelf.c:6020 #, c-format msgid "invalid data in section [%zu] '%s'" msgstr "некоректні дані у розділі [%zu] «%s»" -#: src/readelf.c:5250 +#: src/readelf.c:5253 #, c-format msgid "" "\n" @@ -5233,50 +5237,50 @@ msgstr "" "\n" " [%6tx] нульовий переривач\n" -#: src/readelf.c:5335 +#: src/readelf.c:5338 #, c-format msgid "invalid augmentation length" msgstr "некоректна довжина збільшення" -#: src/readelf.c:5347 +#: src/readelf.c:5350 msgid "FDE address encoding: " msgstr "Кодування адреси FDE: " -#: src/readelf.c:5353 +#: src/readelf.c:5356 msgid "LSDA pointer encoding: " msgstr "Кодування вказівника LSDA: " -#: src/readelf.c:5451 +#: src/readelf.c:5454 #, c-format msgid " (offset: %#)" msgstr " (зміщення: %#)" -#: src/readelf.c:5458 +#: src/readelf.c:5461 #, c-format msgid " (end offset: %#)" msgstr " (зміщення від кінця: %#)" -#: src/readelf.c:5485 +#: src/readelf.c:5488 #, c-format msgid " %-26sLSDA pointer: %#\n" msgstr " %-26sвказівник LSDA: %#\n" -#: src/readelf.c:5536 +#: src/readelf.c:5539 #, c-format msgid "cannot get attribute code: %s" msgstr "не вдалося отримати код атрибута: %s" -#: src/readelf.c:5545 +#: src/readelf.c:5548 #, c-format msgid "cannot get attribute form: %s" msgstr "не вдалося отримати форму атрибута: %s" -#: src/readelf.c:5560 +#: src/readelf.c:5563 #, c-format msgid "cannot get attribute value: %s" msgstr "не вдалося отримати значення атрибута: %s" -#: src/readelf.c:5819 +#: src/readelf.c:5822 #, c-format msgid "" "\n" @@ -5287,7 +5291,7 @@ msgstr "" "Розділ DWARF [%2zu] «%s» за зміщенням %#:\n" " [Зміщення]\n" -#: src/readelf.c:5851 +#: src/readelf.c:5854 #, c-format msgid "" " Type unit at offset %:\n" @@ -5300,7 +5304,7 @@ msgstr "" "Зміщення: %\n" " Підпис типу: %#, Зміщення типу: %#\n" -#: src/readelf.c:5860 +#: src/readelf.c:5863 #, c-format msgid "" " Compilation unit at offset %:\n" @@ -5311,38 +5315,38 @@ msgstr "" " Версія: %, Зміщення розділу скорочень: %, Адреса: %, " "Зміщення: %\n" -#: src/readelf.c:5886 +#: src/readelf.c:5889 #, c-format msgid "cannot get DIE at offset % in section '%s': %s" msgstr "не вдалося отримати DIE за зміщенням % у розділі «%s»: %s" -#: src/readelf.c:5898 +#: src/readelf.c:5901 #, c-format msgid "cannot get DIE offset: %s" msgstr "не вдалося отримати зміщення DIE: %s" -#: src/readelf.c:5907 +#: src/readelf.c:5910 #, c-format msgid "cannot get tag of DIE at offset % in section '%s': %s" msgstr "" "не вдалося отримати мітку DIE за зміщенням % у розділі «%s»: %s" -#: src/readelf.c:5938 +#: src/readelf.c:5941 #, c-format msgid "cannot get next DIE: %s\n" msgstr "не вдалося визначити наступний DIE: %s\n" -#: src/readelf.c:5946 +#: src/readelf.c:5949 #, c-format msgid "cannot get next DIE: %s" msgstr "не вдалося визначити наступний DIE: %s" -#: src/readelf.c:5995 +#: src/readelf.c:5998 #, c-format msgid "cannot get line data section data: %s" msgstr "не вдалося отримати дані розділу лінійних даних: %s" -#: src/readelf.c:6008 +#: src/readelf.c:6011 #, c-format msgid "" "\n" @@ -5351,7 +5355,7 @@ msgstr "" "\n" "Таблиця за зміщенням %Zu:\n" -#: src/readelf.c:6063 +#: src/readelf.c:6066 #, c-format msgid "" "\n" @@ -5380,12 +5384,12 @@ msgstr "" "\n" "Коди операцій:\n" -#: src/readelf.c:6084 +#: src/readelf.c:6087 #, c-format msgid "invalid data at offset %tu in section [%zu] '%s'" msgstr "некоректні дані зі зміщенням %tu у розділі [%zu] «%s»" -#: src/readelf.c:6099 +#: src/readelf.c:6102 #, c-format msgid " [%*] %hhu argument\n" msgid_plural " [%*] %hhu arguments\n" @@ -5393,7 +5397,7 @@ msgstr[0] " [%*] %hhu аргумент\n" msgstr[1] " [%*] %hhu аргументи\n" msgstr[2] " [%*] %hhu аргументів\n" -#: src/readelf.c:6107 +#: src/readelf.c:6110 msgid "" "\n" "Directory table:" @@ -5401,7 +5405,7 @@ msgstr "" "\n" "Таблиця каталогу:" -#: src/readelf.c:6123 +#: src/readelf.c:6126 msgid "" "\n" "File name table:\n" @@ -5411,7 +5415,7 @@ msgstr "" "Таблиця назв файлів:\n" " Запис Кат Час Розмір Назва" -#: src/readelf.c:6152 +#: src/readelf.c:6155 msgid "" "\n" "Line number statements:" @@ -5419,117 +5423,117 @@ msgstr "" "\n" "Оператори номерів рядків:" -#: src/readelf.c:6228 +#: src/readelf.c:6231 #, c-format msgid " special opcode %u: address+%u = %s, op_index = %u, line%+d = %zu\n" msgstr "" " спеціальний код операції %u: адреса+%u = %s, індекс_оп = %u, рядок%+d = " "%zu\n" -#: src/readelf.c:6233 +#: src/readelf.c:6236 #, c-format msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" msgstr " спеціальний код операції %u: адреса+%u = %s, рядок%+d = %zu\n" -#: src/readelf.c:6253 +#: src/readelf.c:6256 #, c-format msgid " extended opcode %u: " msgstr " розширений код операції %u: " -#: src/readelf.c:6258 +#: src/readelf.c:6261 #, fuzzy msgid " end of sequence" msgstr "кінець послідовності" -#: src/readelf.c:6275 +#: src/readelf.c:6278 #, fuzzy, c-format msgid " set address to %s\n" msgstr "встановити адресу у значення %s\n" -#: src/readelf.c:6296 +#: src/readelf.c:6299 #, fuzzy, c-format msgid " define new file: dir=%u, mtime=%, length=%, name=%s\n" msgstr "" "визначення нового файла: dir=%u, mtime=%, довжина=%, назва=" "%s\n" -#: src/readelf.c:6309 +#: src/readelf.c:6312 #, c-format msgid " set discriminator to %u\n" msgstr " встановити розрізнення для %u\n" -#: src/readelf.c:6314 +#: src/readelf.c:6317 #, fuzzy msgid " unknown opcode" msgstr "невідомий код операції" -#: src/readelf.c:6326 +#: src/readelf.c:6329 msgid " copy" msgstr " копія" -#: src/readelf.c:6337 +#: src/readelf.c:6340 #, fuzzy, c-format msgid " advance address by %u to %s, op_index to %u\n" msgstr "збільшення адреси на %u до %s, індекс_оп до %u\n" -#: src/readelf.c:6341 +#: src/readelf.c:6344 #, fuzzy, c-format msgid " advance address by %u to %s\n" msgstr "збільшення адреси на %u до %s\n" -#: src/readelf.c:6352 +#: src/readelf.c:6355 #, c-format msgid " advance line by constant %d to %\n" msgstr " просувати рядок на сталу %d до %\n" -#: src/readelf.c:6360 +#: src/readelf.c:6363 #, c-format msgid " set file to %\n" msgstr " встановити файл у %\n" -#: src/readelf.c:6370 +#: src/readelf.c:6373 #, c-format msgid " set column to %\n" msgstr " встановити значення стовпчика %\n" -#: src/readelf.c:6377 +#: src/readelf.c:6380 #, c-format msgid " set '%s' to %\n" msgstr " встановити «%s» у %\n" -#: src/readelf.c:6383 +#: src/readelf.c:6386 msgid " set basic block flag" msgstr " встановити прапорець базового блоку" -#: src/readelf.c:6392 +#: src/readelf.c:6395 #, fuzzy, c-format msgid " advance address by constant %u to %s, op_index to %u\n" msgstr "збільшити адресу на сталу величину %u до %s, індекс_оп до %u\n" -#: src/readelf.c:6396 +#: src/readelf.c:6399 #, fuzzy, c-format msgid " advance address by constant %u to %s\n" msgstr "збільшити адресу на сталу величину %u до %s\n" -#: src/readelf.c:6414 +#: src/readelf.c:6417 #, fuzzy, c-format msgid " advance address by fixed value %u to %s\n" msgstr "збільшити адресу на фіксовану величину %u до %s\n" -#: src/readelf.c:6423 +#: src/readelf.c:6426 msgid " set prologue end flag" msgstr " встановити прапорець кінця вступу" -#: src/readelf.c:6428 +#: src/readelf.c:6431 msgid " set epilogue begin flag" msgstr " встановити прапорець початку епілогу" -#: src/readelf.c:6437 +#: src/readelf.c:6440 #, c-format msgid " set isa to %u\n" msgstr " встановити isa у %u\n" -#: src/readelf.c:6446 +#: src/readelf.c:6449 #, c-format msgid " unknown opcode with % parameter:" msgid_plural " unknown opcode with % parameters:" @@ -5537,42 +5541,42 @@ msgstr[0] " невідомий код операції з % параме msgstr[1] " невідомий код операції з % параметрами:" msgstr[2] " невідомий код операції з % параметрами:" -#: src/readelf.c:6478 +#: src/readelf.c:6481 #, c-format msgid "cannot get .debug_loc content: %s" msgstr "не вдалося отримати вміст .debug_loc: %s" -#: src/readelf.c:6548 +#: src/readelf.c:6551 #, c-format msgid " [%6tx] %s..%s" msgstr " [%6tx] %s..%s" -#: src/readelf.c:6550 +#: src/readelf.c:6553 #, c-format msgid " %s..%s" msgstr " %s..%s" -#: src/readelf.c:6557 +#: src/readelf.c:6560 msgid " \n" msgstr " <НЕКОРЕКТНІ ДАНІ>\n" -#: src/readelf.c:6609 +#: src/readelf.c:6612 #, c-format msgid "cannot get macro information section data: %s" msgstr "не вдалося отримати дані розділу відомостей щодо макросів: %s" -#: src/readelf.c:6688 +#: src/readelf.c:6691 #, c-format msgid "%*s*** non-terminated string at end of section" msgstr "%*s*** незавершений рядок наприкінці розділу" -#: src/readelf.c:6756 +#: src/readelf.c:6759 #, c-format msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" msgstr "" " [%5d] зміщення DIE: %6, зміщення CU DIE: %6, назва: %s\n" -#: src/readelf.c:6796 +#: src/readelf.c:6799 #, c-format msgid "" "\n" @@ -5583,12 +5587,12 @@ msgstr "" "Розділ DWARF [%2zu] «%s» зі зміщенням %#:\n" " %*s Рядок\n" -#: src/readelf.c:6810 +#: src/readelf.c:6813 #, c-format msgid " *** error while reading strings: %s\n" msgstr " *** помилка під час читання рядків: %s\n" -#: src/readelf.c:6830 +#: src/readelf.c:6833 #, c-format msgid "" "\n" @@ -5597,7 +5601,7 @@ msgstr "" "\n" "Розділ таблиці пошуку вікон виклику [%2zu] '.eh_frame_hdr':\n" -#: src/readelf.c:6932 +#: src/readelf.c:6935 #, c-format msgid "" "\n" @@ -5606,22 +5610,22 @@ msgstr "" "\n" "Розділ таблиці обробки виключень [%2zu] '.gcc_except_table':\n" -#: src/readelf.c:6955 +#: src/readelf.c:6958 #, c-format msgid " LPStart encoding: %#x " msgstr " Кодування LPStart: %#x " -#: src/readelf.c:6967 +#: src/readelf.c:6970 #, c-format msgid " TType encoding: %#x " msgstr " Кодування TType: %#x " -#: src/readelf.c:6981 +#: src/readelf.c:6984 #, c-format msgid " Call site encoding: %#x " msgstr " Кодування місця виклику:%#x " -#: src/readelf.c:6994 +#: src/readelf.c:6997 msgid "" "\n" " Call site table:" @@ -5629,7 +5633,7 @@ msgstr "" "\n" " Таблиця місця виклику:" -#: src/readelf.c:7008 +#: src/readelf.c:7011 #, c-format msgid "" " [%4u] Call site start: %#\n" @@ -5642,12 +5646,12 @@ msgstr "" " Місце застосування: %#\n" " Дія: %u\n" -#: src/readelf.c:7068 +#: src/readelf.c:7071 #, c-format msgid "invalid TType encoding" msgstr "некоректне кодування TType" -#: src/readelf.c:7089 +#: src/readelf.c:7092 #, fuzzy, c-format msgid "" "\n" @@ -5656,42 +5660,42 @@ msgstr "" "\n" "Розділ DWARF [%2zu] «%s» за зміщенням %# містить %zu запис:\n" -#: src/readelf.c:7118 +#: src/readelf.c:7121 #, fuzzy, c-format msgid " Version: %\n" msgstr " %s: %\n" -#: src/readelf.c:7124 +#: src/readelf.c:7127 #, c-format msgid " unknown version, cannot parse section\n" msgstr "" -#: src/readelf.c:7133 +#: src/readelf.c:7136 #, fuzzy, c-format msgid " CU offset: %#\n" msgstr " (зміщення: %#)" -#: src/readelf.c:7140 +#: src/readelf.c:7143 #, fuzzy, c-format msgid " TU offset: %#\n" msgstr " (зміщення: %#)" -#: src/readelf.c:7147 +#: src/readelf.c:7150 #, fuzzy, c-format msgid " address offset: %#\n" msgstr " (зміщення від кінця: %#)" -#: src/readelf.c:7154 +#: src/readelf.c:7157 #, fuzzy, c-format msgid " symbol offset: %#\n" msgstr " (зміщення: %#)" -#: src/readelf.c:7161 +#: src/readelf.c:7164 #, fuzzy, c-format msgid " constant offset: %#\n" msgstr " (зміщення від кінця: %#)" -#: src/readelf.c:7168 +#: src/readelf.c:7171 #, fuzzy, c-format msgid "" "\n" @@ -5700,7 +5704,7 @@ msgstr "" "\n" "Розділ DWARF [%2zu] «%s» за зміщенням %# містить %zu запис:\n" -#: src/readelf.c:7190 +#: src/readelf.c:7193 #, fuzzy, c-format msgid "" "\n" @@ -5709,7 +5713,7 @@ msgstr "" "\n" "Розділ DWARF [%2zu] «%s» за зміщенням %# містить %zu запис:\n" -#: src/readelf.c:7216 +#: src/readelf.c:7219 #, fuzzy, c-format msgid "" "\n" @@ -5718,7 +5722,7 @@ msgstr "" "\n" "Розділ DWARF [%2zu] «%s» за зміщенням %# містить %zu запис:\n" -#: src/readelf.c:7243 +#: src/readelf.c:7246 #, fuzzy, c-format msgid "" "\n" @@ -5727,17 +5731,17 @@ msgstr "" "\n" "Некоректна таблиця символів за зміщенням %#0\n" -#: src/readelf.c:7292 +#: src/readelf.c:7295 #, c-format msgid "cannot get debug context descriptor: %s" msgstr "не вдалося отримати дескриптор контексту зневаджування: %s" -#: src/readelf.c:7441 src/readelf.c:8042 +#: src/readelf.c:7444 src/readelf.c:8045 #, c-format msgid "cannot convert core note data: %s" msgstr "не вдалося перетворити дані запису ядра: %s" -#: src/readelf.c:7782 +#: src/readelf.c:7785 #, c-format msgid "" "\n" @@ -5746,21 +5750,21 @@ msgstr "" "\n" "%*s... <повторюється %u разів> ..." -#: src/readelf.c:8141 +#: src/readelf.c:8144 msgid " Owner Data size Type\n" msgstr " Власник Розм. даних Тип\n" -#: src/readelf.c:8159 +#: src/readelf.c:8162 #, c-format msgid " %-13.*s %9 %s\n" msgstr " %-13.*s %9 %s\n" -#: src/readelf.c:8193 +#: src/readelf.c:8196 #, c-format msgid "cannot get content of note section: %s" msgstr "не вдалося отримати вміст розділу записів: %s" -#: src/readelf.c:8220 +#: src/readelf.c:8223 #, c-format msgid "" "\n" @@ -5770,7 +5774,7 @@ msgstr "" "Розділ записів (note) [%2zu] «%s» з % байтів за зміщенням " "%#0:\n" -#: src/readelf.c:8243 +#: src/readelf.c:8246 #, c-format msgid "" "\n" @@ -5779,7 +5783,7 @@ msgstr "" "\n" "Сегмент записів з % байтів за зміщенням %#0:\n" -#: src/readelf.c:8289 +#: src/readelf.c:8292 #, c-format msgid "" "\n" @@ -5788,12 +5792,12 @@ msgstr "" "\n" "У розділі [%Zu] «%s» не міститься даних для створення дампу.\n" -#: src/readelf.c:8295 src/readelf.c:8318 +#: src/readelf.c:8298 src/readelf.c:8321 #, c-format msgid "cannot get data for section [%Zu] '%s': %s" msgstr "не вдалося отримати дані для розділу [%Zu] «%s»: %s" -#: src/readelf.c:8299 +#: src/readelf.c:8302 #, c-format msgid "" "\n" @@ -5802,7 +5806,7 @@ msgstr "" "\n" "Шіст. дамп розділу [%Zu] «%s», % байтів за зміщенням %#0:\n" -#: src/readelf.c:8312 +#: src/readelf.c:8315 #, c-format msgid "" "\n" @@ -5811,7 +5815,7 @@ msgstr "" "\n" "У розділі [%Zu] «%s» не міститься рядків для створення дампу.\n" -#: src/readelf.c:8322 +#: src/readelf.c:8325 #, c-format msgid "" "\n" @@ -5820,7 +5824,7 @@ msgstr "" "\n" "Розділ рядків [%Zu] «%s» містить % байтів за зміщенням %#0:\n" -#: src/readelf.c:8370 +#: src/readelf.c:8373 #, c-format msgid "" "\n" @@ -5829,7 +5833,7 @@ msgstr "" "\n" "розділу [%lu] не існує" -#: src/readelf.c:8399 +#: src/readelf.c:8402 #, c-format msgid "" "\n" @@ -5838,12 +5842,12 @@ msgstr "" "\n" "розділу «%s» не існує" -#: src/readelf.c:8456 +#: src/readelf.c:8459 #, c-format msgid "cannot get symbol index of archive '%s': %s" msgstr "не вдалося отримати покажчик символів архіву «%s»: %s" -#: src/readelf.c:8459 +#: src/readelf.c:8462 #, c-format msgid "" "\n" @@ -5852,7 +5856,7 @@ msgstr "" "\n" "У архіві «%s» немає покажчика символів\n" -#: src/readelf.c:8463 +#: src/readelf.c:8466 #, c-format msgid "" "\n" @@ -5861,12 +5865,12 @@ msgstr "" "\n" "Покажчик архіву «%s» містить %Zu записів:\n" -#: src/readelf.c:8481 +#: src/readelf.c:8484 #, c-format msgid "cannot extract member at offset %Zu in '%s': %s" msgstr "не вдалося видобути елемент за зміщенням %Zu у «%s»: %s" -#: src/readelf.c:8486 +#: src/readelf.c:8489 #, c-format msgid "Archive member '%s' contains:\n" msgstr "Елемент архіву «%s» містить:\n" diff --git a/src/ChangeLog b/src/ChangeLog index 879331d48..ca8a93a7d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,15 @@ +2011-10-02 Ulrich Drepper + + * Makefile.am (demanglelib): Define. + (nm_LDADD): Add demanglelib. + * nm.c (options): Add -C option. + (demangle): Define as global variable. + (parse_opt): Recognize -C. + (show_symbols_sysv): Handle demangling. + (show_symbols_bad): Likewise. + (show_symbols_posix): Likewise. + (show_symbols): Likewise. + 2011-07-09 Roland McGrath * readelf.c (options, parse_opt): Grok -W/--wide and ignore it. diff --git a/src/Makefile.am b/src/Makefile.am index afd3bd3a6..4d1484c2c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to create Makefile.in ## -## Copyright (C) 1996-2010 Red Hat, Inc. +## Copyright (C) 1996-2011 Red Hat, Inc. ## This file is part of Red Hat elfutils. ## ## Red Hat elfutils is free software; you can redistribute it and/or modify @@ -92,6 +92,10 @@ endif libebl = ../libebl/libebl.a libeu = ../lib/libeu.a +if DEMANGLE +demanglelib = -lstdc++ +endif + nm_no_Wformat = yes size_no_Wformat = yes strings_no_Wformat = yes @@ -100,7 +104,8 @@ addr2line_no_Wformat = yes ldgeneric_no_Wunused = yes readelf_LDADD = $(libdw) $(libebl) $(libelf) $(libeu) $(libmudflap) -ldl -nm_LDADD = $(libdw) $(libebl) $(libelf) $(libeu) $(libmudflap) -ldl +nm_LDADD = $(libdw) $(libebl) $(libelf) $(libeu) $(libmudflap) -ldl \ + $(demanglelib) size_LDADD = $(libelf) $(libeu) $(libmudflap) strip_LDADD = $(libebl) $(libelf) $(libeu) $(libmudflap) -ldl ld_LDADD = $(libebl) $(libelf) $(libeu) $(libmudflap) -ldl @@ -154,8 +159,8 @@ installcheck-binPROGRAMS: $(bin_PROGRAMS) for opt in --help --version; do \ if LD_LIBRARY_PATH=$(DESTDIR)$(libdir) \ $(DESTDIR)$(bindir)/$$f $$opt > c$${pid}_.out 2> c$${pid}_.err \ - && test -n "`cat c$${pid}_.out`" \ - && test -z "`cat c$${pid}_.err`"; then :; \ + && test -n "`cat c$${pid}_.out`" \ + && test -z "`cat c$${pid}_.err`"; then :; \ else echo "$$f does not support $$opt" 1>&2; bad=1; fi; \ done; \ done; rm -f c$${pid}_.???; exit $$bad @@ -171,6 +176,6 @@ make-debug-archive: $(srcdir)/make-debug-archive.in sed -e "s,@UNSTRIP@,$$UNSTRIP,g" -e "s,@AR@,$$AR,g" \ -e "s%[@]PACKAGE_NAME[@]%$(PACKAGE_NAME)%g" \ -e "s%[@]PACKAGE_VERSION[@]%$(PACKAGE_VERSION)%g" \ - $(srcdir)/make-debug-archive.in > $@.new + $(srcdir)/make-debug-archive.in > $@.new chmod +x $@.new mv -f $@.new $@ diff --git a/src/nm.c b/src/nm.c index f78861ece..1d18e57a3 100644 --- a/src/nm.c +++ b/src/nm.c @@ -1,5 +1,5 @@ /* Print symbol information from ELF file in human-readable form. - Copyright (C) 2000-2008, 2009 Red Hat, Inc. + Copyright (C) 2000-2008, 2009, 2011 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper , 2000. @@ -100,6 +100,10 @@ static const struct argp_option options[] = 0 }, { "no-sort", 'p', NULL, 0, N_("Do not sort the symbols"), 0 }, { "reverse-sort", 'r', NULL, 0, N_("Reverse the sense of the sort"), 0 }, +#ifdef USE_DEMANGLE + { "demangle", 'C', NULL, 0, + N_("Decode low-level symbol names into source code names"), 0 }, +#endif { NULL, 0, NULL, 0, N_("Miscellaneous:"), 0 }, { NULL, 0, NULL, 0, NULL, 0 } }; @@ -175,6 +179,11 @@ static bool print_armap; /* If true reverse sorting. */ static bool reverse_sort; +#ifdef USE_DEMANGLE +/* If true demangle symbols. */ +static bool demangle; +#endif + /* Type of the section we are printing. */ static GElf_Word symsec_type = SHT_SYMTAB; @@ -270,6 +279,12 @@ parse_opt (int key, char *arg, /* XXX */ break; +#ifdef USE_DEMANGLE + case 'C': + demangle = true; + break; +#endif + case 'f': if (strcmp (arg, "bsd") == 0) format = format_bsd; @@ -783,6 +798,11 @@ show_symbols_sysv (Ebl *ebl, GElf_Word strndx, const char *fullname, else fmtstr = "%-*s|%0*" PRIo64 "|%-6s|%-8s|%*" PRIo64 "|%*s|%s\n"; +#ifdef USE_DEMANGLE + size_t demangle_buffer_len = 0; + char *demangle_buffer = NULL; +#endif + /* Iterate over all symbols. */ for (cnt = 0; cnt < nsyms; ++cnt) { @@ -790,6 +810,19 @@ show_symbols_sysv (Ebl *ebl, GElf_Word strndx, const char *fullname, const char *symstr = sym_name (ebl->elf, strndx, syms[cnt].sym.st_name, symstrbuf, sizeof symstrbuf); +#ifdef USE_DEMANGLE + /* Demangle if necessary. */ + if (demangle) + { + int status = -1; + char *dmsymstr = __cxa_demangle (symstr, demangle_buffer, + &demangle_buffer_len, &status); + + if (status == 0) + symstr = dmsymstr; + } +#endif + char symbindbuf[50]; char symtypebuf[50]; char secnamebuf[1024]; @@ -816,6 +849,10 @@ show_symbols_sysv (Ebl *ebl, GElf_Word strndx, const char *fullname, shnum)); } +#ifdef USE_DEMANGLE + free (demangle_buffer); +#endif + if (scnnames_malloced) free (scnnames); } @@ -863,6 +900,11 @@ show_symbols_bsd (Elf *elf, GElf_Word strndx, [radix_octal] = "%2$0*1$" PRIo64 " %7$0*6$" PRIo64 " %3$c%4$s %5$s\n" }; +#ifdef USE_DEMANGLE + size_t demangle_buffer_len = 0; + char *demangle_buffer = NULL; +#endif + /* Iterate over all symbols. */ for (size_t cnt = 0; cnt < nsyms; ++cnt) { @@ -876,6 +918,19 @@ show_symbols_bsd (Elf *elf, GElf_Word strndx, if (symstr[0] == '\0') continue; +#ifdef USE_DEMANGLE + /* Demangle if necessary. */ + if (demangle) + { + int status = -1; + char *dmsymstr = __cxa_demangle (symstr, demangle_buffer, + &demangle_buffer_len, &status); + + if (status == 0) + symstr = dmsymstr; + } +#endif + /* If we have to precede the line with the file name. */ if (print_file_name) { @@ -902,6 +957,10 @@ show_symbols_bsd (Elf *elf, GElf_Word strndx, symstr, digits, (uint64_t) syms[cnt].sym.st_size); } + +#ifdef USE_DEMANGLE + free (demangle_buffer); +#endif } @@ -922,6 +981,11 @@ show_symbols_posix (Elf *elf, GElf_Word strndx, const char *prefix, int digits = length_map[gelf_getclass (elf) - 1][radix]; +#ifdef USE_DEMANGLE + size_t demangle_buffer_len = 0; + char *demangle_buffer = NULL; +#endif + /* Iterate over all symbols. */ for (size_t cnt = 0; cnt < nsyms; ++cnt) { @@ -935,6 +999,19 @@ show_symbols_posix (Elf *elf, GElf_Word strndx, const char *prefix, if (symstr[0] == '\0') continue; +#ifdef USE_DEMANGLE + /* Demangle if necessary. */ + if (demangle) + { + int status = -1; + char *dmsymstr = __cxa_demangle (symstr, demangle_buffer, + &demangle_buffer_len, &status); + + if (status == 0) + symstr = dmsymstr; + } +#endif + /* If we have to precede the line with the file name. */ if (print_file_name) { @@ -952,6 +1029,10 @@ show_symbols_posix (Elf *elf, GElf_Word strndx, const char *prefix, digits, syms[cnt].sym.st_value, digits, syms[cnt].sym.st_size); } + +#ifdef USE_DEMANGLE + free (demangle_buffer); +#endif } @@ -1053,6 +1134,10 @@ show_symbols (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, Elf_Scn *xndxscn, INTERNAL_ERROR (fullname); /* Iterate over all symbols. */ +#ifdef USE_DEMANGLE + size_t demangle_buffer_len = 0; + char *demangle_buffer = NULL; +#endif int longest_name = 4; int longest_where = 4; size_t nentries_used = 0; @@ -1065,7 +1150,7 @@ show_symbols (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, Elf_Scn *xndxscn, INTERNAL_ERROR (fullname); /* Filter out administrative symbols without a name and those - deselected by ther user with command line options. */ + deselected by the user with command line options. */ if ((hide_undefined && sym->st_shndx == SHN_UNDEF) || (hide_defined && sym->st_shndx != SHN_UNDEF) || (hide_local && GELF_ST_BIND (sym->st_info) == STB_LOCAL)) @@ -1079,6 +1164,19 @@ show_symbols (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, Elf_Scn *xndxscn, if (symstr == NULL) continue; +#ifdef USE_DEMANGLE + /* Demangle if necessary. */ + if (demangle) + { + int status = -1; + char *dmsymstr = __cxa_demangle (symstr, demangle_buffer, + &demangle_buffer_len, &status); + + if (status == 0) + symstr = dmsymstr; + } +#endif + longest_name = MAX ((size_t) longest_name, strlen (symstr)); if (sym->st_shndx != SHN_UNDEF @@ -1133,7 +1231,7 @@ show_symbols (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, Elf_Scn *xndxscn, } } - /* Try to find the symol among the local symbols. */ + /* Try to find the symbol among the local symbols. */ if (sym_mem[nentries_used].where[0] == '\0') { struct local_name fake = @@ -1164,6 +1262,9 @@ show_symbols (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, Elf_Scn *xndxscn, /* We use this entry. */ ++nentries_used; } +#ifdef USE_DEMANGLE + free (demangle_buffer); +#endif /* Now we know the exact number. */ nentries = nentries_used;