diff options
author | Richard Henderson <rth@redhat.com> | 1999-05-03 07:29:11 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1999-05-03 07:29:11 +0000 |
commit | 252b5132c753830d5fd56823373aed85f2a0db63 (patch) | |
tree | 1af963bfd8d3e55167b81def4207f175eaff3a56 /binutils/po | |
download | gdb-252b5132c753830d5fd56823373aed85f2a0db63.zip gdb-252b5132c753830d5fd56823373aed85f2a0db63.tar.gz gdb-252b5132c753830d5fd56823373aed85f2a0db63.tar.bz2 |
19990502 sourceware importbinu_ss_19990502
Diffstat (limited to 'binutils/po')
-rw-r--r-- | binutils/po/Make-in | 251 | ||||
-rw-r--r-- | binutils/po/POTFILES.in | 52 | ||||
-rw-r--r-- | binutils/po/binutils.pot | 3443 |
3 files changed, 3746 insertions, 0 deletions
diff --git a/binutils/po/Make-in b/binutils/po/Make-in new file mode 100644 index 0000000..0552db1 --- /dev/null +++ b/binutils/po/Make-in @@ -0,0 +1,251 @@ +# Makefile for program source directory in GNU NLS utilities package. +# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu> +# +# This file file be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License +# but which still want to provide support for the GNU gettext functionality. +# Please note that the actual code is *not* freely available. + +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ + +SHELL = /bin/sh +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = $(prefix)/@DATADIRNAME@ +localedir = $(datadir)/locale +gnulocaledir = $(prefix)/share/locale +gettextsrcdir = $(prefix)/share/gettext/po +subdir = po + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +MKINSTALLDIRS = @MKINSTALLDIRS@ + +CC = @CC@ +GENCAT = @GENCAT@ +GMSGFMT = PATH=../src:$$PATH @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = PATH=../src:$$PATH @XGETTEXT@ +MSGMERGE = PATH=../src:$$PATH msgmerge + +DEFS = @DEFS@ +CFLAGS = @CFLAGS@ +CPPFLAGS = @CPPFLAGS@ + +INCLUDES = -I.. -I$(top_srcdir)/intl + +COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) + +SOURCES = cat-id-tbl.c +POFILES = @POFILES@ +GMOFILES = @GMOFILES@ +DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \ +stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES) + +POTFILES = \ + +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +INSTOBJEXT = @INSTOBJEXT@ + +.SUFFIXES: +.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat + +.c.o: + $(COMPILE) $< + +.po.pox: + $(MAKE) $(PACKAGE).pot + $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox + +.po.mo: + $(MSGFMT) -o $@ $< + +.po.gmo: + file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ + && rm -f $$file && $(GMSGFMT) -o $$file $< + +.po.cat: + sed -f ../intl/po2msg.sed < $< > $*.msg \ + && rm -f $@ && $(GENCAT) $@ $*.msg + + +all: all-@USE_NLS@ + +all-yes: $(CATALOGS) @MAINT@ $(PACKAGE).pot +all-no: + +$(srcdir)/$(PACKAGE).pot: $(POTFILES) + $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ + --add-comments --keyword=_ --keyword=N_ \ + --files-from=$(srcdir)/POTFILES.in + rm -f $(srcdir)/$(PACKAGE).pot + mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot + +$(srcdir)/cat-id-tbl.c: stamp-cat-id; @: +$(srcdir)/stamp-cat-id: $(PACKAGE).pot + rm -f cat-id-tbl.tmp + sed -f ../intl/po2tbl.sed $(srcdir)/$(PACKAGE).pot \ + | sed -e "s/@PACKAGE NAME@/$(PACKAGE)/" > cat-id-tbl.tmp + if cmp -s cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; then \ + rm cat-id-tbl.tmp; \ + else \ + echo cat-id-tbl.c changed; \ + rm -f $(srcdir)/cat-id-tbl.c; \ + mv cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; \ + fi + cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id + + +install: install-exec install-data +install-exec: +install-info: +install-data: install-data-@USE_NLS@ +install-data-no: all +install-data-yes: all + if test -r $(MKINSTALLDIRS); then \ + $(MKINSTALLDIRS) $(datadir); \ + else \ + $(top_srcdir)/mkinstalldirs $(datadir); \ + fi + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + case "$$cat" in \ + *.gmo) destdir=$(gnulocaledir);; \ + *) destdir=$(localedir);; \ + esac; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + dir=$$destdir/$$lang/LC_MESSAGES; \ + if test -r $(MKINSTALLDIRS); then \ + $(MKINSTALLDIRS) $$dir; \ + else \ + $(top_srcdir)/mkinstalldirs $$dir; \ + fi; \ + if test -r $$cat; then \ + $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ + echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \ + else \ + $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ + echo "installing $(srcdir)/$$cat as" \ + "$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ + fi; \ + if test -r $$cat.m; then \ + $(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ + echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ + else \ + if test -r $(srcdir)/$$cat.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$cat.m \ + $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ + echo "installing $(srcdir)/$$cat as" \ + "$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ + else \ + true; \ + fi; \ + fi; \ + done + if test "$(PACKAGE)" = "gettext"; then \ + if test -r $(MKINSTALLDIRS); then \ + $(MKINSTALLDIRS) $(gettextsrcdir); \ + else \ + $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \ + fi; \ + $(INSTALL_DATA) $(srcdir)/Makefile.in.in \ + $(gettextsrcdir)/Makefile.in.in; \ + else \ + : ; \ + fi + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \ + rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \ + rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \ + rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \ + done + rm -f $(gettextsrcdir)/po-Makefile.in.in + +check: all + +cat-id-tbl.o: ../intl/libgettext.h + +dvi info tags TAGS ID: + +mostlyclean: + rm -f core core.* *.pox $(PACKAGE).po *.old.po cat-id-tbl.tmp + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f $(GMOFILES) + +distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: update-po $(DISTFILES) + dists="$(DISTFILES)"; \ + for file in $$dists; do \ + ln $(srcdir)/$$file $(distdir) 2> /dev/null \ + || cp -p $(srcdir)/$$file $(distdir); \ + done + +update-po: Makefile + $(MAKE) $(PACKAGE).pot + PATH=`pwd`/../src:$$PATH; \ + cd $(srcdir); \ + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + mv $$lang.po $$lang.old.po; \ + echo "$$lang:"; \ + if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \ + rm -f $$lang.old.po; \ + else \ + echo "msgmerge for $$cat failed!"; \ + rm -f $$lang.po; \ + mv $$lang.old.po $$lang.po; \ + fi; \ + done + +POTFILES: POTFILES.in + ( if test 'x$(srcdir)' != 'x.'; then \ + posrcprefix='$(top_srcdir)/'; \ + else \ + posrcprefix="../"; \ + fi; \ + rm -f $@-t $@ \ + && (sed -e '/^#/d' -e '/^[ ]*$$/d' \ + -e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \ + | sed -e '$$s/\\$$//') > $@-t \ + && chmod a-w $@-t \ + && mv $@-t $@ ) + +POTFILES.in: @MAINT@ ../Makefile + cd .. && $(MAKE) po/POTFILES.in + +Makefile: Make-in ../config.status POTFILES + cd .. \ + && CONFIG_FILES=$(subdir)/Makefile.in:$(subdir)/Make-in \ + CONFIG_HEADERS= $(SHELL) ./config.status + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/binutils/po/POTFILES.in b/binutils/po/POTFILES.in new file mode 100644 index 0000000..47f3860 --- /dev/null +++ b/binutils/po/POTFILES.in @@ -0,0 +1,52 @@ +readelf.c +addr2line.c +ar.c +arsup.c +arsup.h +bucomm.c +bucomm.h +budbg.h +coffdump.c +coffgrok.c +coffgrok.h +debug.c +debug.h +dlltool.c +dlltool.h +dllwrap.c +dyn-string.c +dyn-string.h +filemode.c +ieee.c +is-ranlib.c +is-strip.c +maybe-ranlib.c +maybe-strip.c +nlmconv.c +nlmconv.h +nm.c +not-ranlib.c +not-strip.c +objcopy.c +objdump.c +prdbg.c +rdcoff.c +rddbg.c +rename.c +resbin.c +rescoff.c +resrc.c +resres.c +size.c +srconv.c +stabs.c +strings.c +sysdump.c +version.c +windres.c +windres.h +winduni.c +winduni.h +wrstabs.c +testsuite/binutils-all/readelf.h +testsuite/binutils-all/testprog.c diff --git a/binutils/po/binutils.pot b/binutils/po/binutils.pot new file mode 100644 index 0000000..beeb383 --- /dev/null +++ b/binutils/po/binutils.pot @@ -0,0 +1,3443 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 1999-04-26 10:11-0600\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING\n" + +#: addr2line.c:76 +#, c-format +msgid "" +"Usage: %s [-CfsHV] [-b bfdname] [--target=bfdname]\n" +" [-e executable] [--exe=executable] [--demangle]\n" +" [--basenames] [--functions] [addr addr ...]\n" +msgstr "" + +#: addr2line.c:83 ar.c:255 nlmconv.c:1141 nm.c:304 objcopy.c:318 objcopy.c:337 +#: objdump.c:236 readelf.c:1133 size.c:89 strings.c:512 windres.c:723 +msgid "Report bugs to bug-gnu-utils@gnu.org\n" +msgstr "" + +#: addr2line.c:243 +#, c-format +msgid "%s: can not get addresses from archive" +msgstr "" + +#: ar.c:207 +#, c-format +msgid "no entry %s in archive\n" +msgstr "" + +#: ar.c:224 +#, c-format +msgid "" +"Usage: %s [-]{dmpqrstx}[abcilosSuvV] [member-name] archive-file file...\n" +msgstr "" + +#: ar.c:226 +#, c-format +msgid " %s -M [<mri-script]\n" +msgstr "" + +#: ar.c:227 +msgid " commands:\n" +msgstr "" + +#: ar.c:228 +msgid " d - delete file(s) from the archive\n" +msgstr "" + +#: ar.c:229 +msgid " m[ab] - move file(s) in the archive\n" +msgstr "" + +#: ar.c:230 +msgid " p - print file(s) found in the archive\n" +msgstr "" + +#: ar.c:231 +msgid " q[f] - quick append file(s) to the archive\n" +msgstr "" + +#: ar.c:232 +msgid "" +" r[ab][f][u] - replace existing or insert new file(s) into the archive\n" +msgstr "" + +#: ar.c:233 +msgid " t - display contents of archive\n" +msgstr "" + +#: ar.c:234 +msgid " x[o] - extract file(s) from the archive\n" +msgstr "" + +#: ar.c:235 +msgid " command specific modifiers:\n" +msgstr "" + +#: ar.c:236 +msgid " [a] - put file(s) after [member-name]\n" +msgstr "" + +#: ar.c:237 +msgid " [b] - put file(s) before [member-name] (same as [i])\n" +msgstr "" + +#: ar.c:238 +msgid " [f] - truncate inserted file names\n" +msgstr "" + +#: ar.c:239 +msgid " [o] - preserve original dates\n" +msgstr "" + +#: ar.c:240 +msgid "" +" [u] - only replace files that are newer than current archive " +"contents\n" +msgstr "" + +#: ar.c:241 +msgid " generic modifiers:\n" +msgstr "" + +#: ar.c:242 +msgid " [c] - do not warn if the library had to be created\n" +msgstr "" + +#: ar.c:243 +msgid " [s] - create an archive index (cf. ranlib)\n" +msgstr "" + +#: ar.c:244 +msgid " [S] - do not build a symbol table\n" +msgstr "" + +#: ar.c:245 +msgid " [v] - be verbose\n" +msgstr "" + +#: ar.c:246 +msgid " [V] - display the version number\n" +msgstr "" + +#: ar.c:250 +#, c-format +msgid "Usage: %s [-vV] archive\n" +msgstr "" + +#: ar.c:431 +msgid "two different operation options specified" +msgstr "" + +#: ar.c:500 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "" + +#: ar.c:532 +msgid "no operation specified" +msgstr "" + +#: ar.c:535 +msgid "`u' is only meaningful with the `r' option." +msgstr "" + +#: ar.c:615 +#, c-format +msgid "%s: internal error -- this option not implemented\n" +msgstr "" + +#: ar.c:730 ar.c:782 ar.c:1212 +#, c-format +msgid "internal stat error on %s" +msgstr "" + +#: ar.c:734 +#, c-format +msgid "" +"\n" +"<member %s>\n" +"\n" +msgstr "" + +#: ar.c:751 ar.c:819 +#, c-format +msgid "%s is not a valid archive" +msgstr "" + +#: ar.c:787 +#, c-format +msgid "stat returns negative size for %s" +msgstr "" + +#: ar.c:908 +#, c-format +msgid "%s is not an archive" +msgstr "" + +#: ar.c:915 +#, c-format +msgid "%s: creating %s\n" +msgstr "" + +#: ar.c:1110 +#, c-format +msgid "No member named `%s'\n" +msgstr "" + +#: ar.c:1162 +#, c-format +msgid "%s: no entry %s in archive %s!\n" +msgstr "" + +#: ar.c:1322 +#, c-format +msgid "%s: no archive map to update" +msgstr "" + +#: arsup.c:86 +#, c-format +msgid "No entry %s in archive.\n" +msgstr "" + +#: arsup.c:118 +#, c-format +msgid "Can't open file %s\n" +msgstr "" + +#: arsup.c:166 +#, c-format +msgid "%s: Can't open output archive %s\n" +msgstr "" + +#: arsup.c:178 +#, c-format +msgid "%s: Can't open input archive %s\n" +msgstr "" + +#: arsup.c:184 +#, c-format +msgid "%s: file %s is not an archive\n" +msgstr "" + +#: arsup.c:225 +#, c-format +msgid "%s: no output archive specified yet\n" +msgstr "" + +#: arsup.c:245 arsup.c:280 arsup.c:316 arsup.c:336 arsup.c:394 +#, c-format +msgid "%s: no open output archive\n" +msgstr "" + +#: arsup.c:253 arsup.c:354 arsup.c:374 +#, c-format +msgid "%s: can't open file %s\n" +msgstr "" + +#: arsup.c:301 arsup.c:370 arsup.c:449 +#, c-format +msgid "%s: can't find module file %s\n" +msgstr "" + +#: arsup.c:401 +#, c-format +msgid "Current open archive is %s\n" +msgstr "" + +#: arsup.c:428 +#, c-format +msgid "%s: no open archive\n" +msgstr "" + +#: bucomm.c:139 +#, c-format +msgid "can't set BFD default target to `%s': %s" +msgstr "" + +#: bucomm.c:151 +#, c-format +msgid "%s: Matching formats:" +msgstr "" + +#: bucomm.c:168 +msgid "Supported targets:" +msgstr "" + +#: bucomm.c:170 +#, c-format +msgid "%s: supported targets:" +msgstr "" + +#: bucomm.c:263 +#, c-format +msgid "%s: bad number: %s" +msgstr "" + +#: coffdump.c:94 +#, c-format +msgid "#lines %d " +msgstr "" + +#: coffdump.c:456 sysdump.c:719 +#, c-format +msgid "%s: Print a human readable interpretation of a SYSROFF object file\n" +msgstr "" + +#: coffdump.c:498 srconv.c:1940 sysdump.c:755 +#, c-format +msgid "GNU %s version %s\n" +msgstr "" + +#: coffdump.c:516 srconv.c:1977 sysdump.c:775 +#, c-format +msgid "%s: no input file specified\n" +msgstr "" + +#: debug.c:653 +msgid "debug_add_to_current_namespace: no current file" +msgstr "" + +#: debug.c:736 +msgid "debug_start_source: no debug_set_filename call" +msgstr "" + +#: debug.c:795 +msgid "debug_record_function: no debug_set_filename call" +msgstr "" + +#: debug.c:851 +msgid "debug_record_parameter: no current function" +msgstr "" + +#: debug.c:885 +msgid "debug_end_function: no current function" +msgstr "" + +#: debug.c:891 +msgid "debug_end_function: some blocks were not closed" +msgstr "" + +#: debug.c:921 +msgid "debug_start_block: no current block" +msgstr "" + +#: debug.c:959 +msgid "debug_end_block: no current block" +msgstr "" + +#: debug.c:966 +msgid "debug_end_block: attempt to close top level block" +msgstr "" + +#: debug.c:992 +msgid "debug_record_line: no current unit" +msgstr "" + +#. FIXME +#: debug.c:1046 +msgid "debug_start_common_block: not implemented" +msgstr "" + +#. FIXME +#: debug.c:1058 +msgid "debug_end_common_block: not implemented" +msgstr "" + +#. FIXME. +#: debug.c:1152 +msgid "debug_record_label not implemented" +msgstr "" + +#: debug.c:1178 +msgid "debug_record_variable: no current file" +msgstr "" + +#: debug.c:1194 +msgid "debug_record_variable: no current block" +msgstr "" + +#: debug.c:1764 +msgid "debug_make_undefined_type: unsupported kind" +msgstr "" + +#: debug.c:1970 +msgid "debug_name_type: no current file" +msgstr "" + +#: debug.c:2018 +msgid "debug_tag_type: no current file" +msgstr "" + +#: debug.c:2026 +msgid "debug_tag_type: extra tag attempted" +msgstr "" + +#: debug.c:2066 +#, c-format +msgid "Warning: changing type size from %d to %d\n" +msgstr "" + +#: debug.c:2090 +msgid "debug_find_named_type: no current compilation unit" +msgstr "" + +#: debug.c:2197 +#, c-format +msgid "debug_get_real_type: circular debug information for %s\n" +msgstr "" + +#: debug.c:2663 +msgid "debug_write_type: illegal type encountered" +msgstr "" + +#: dlltool.c:627 dlltool.c:646 dlltool.c:666 +#, c-format +msgid "Internal error: Unknown machine type: %d\n" +msgstr "" + +#: dlltool.c:700 +#, c-format +msgid "Can't open def file: %s" +msgstr "" + +#: dlltool.c:705 +#, c-format +msgid "Processing def file: %s" +msgstr "" + +#: dlltool.c:709 +msgid "Processed def file" +msgstr "" + +#: dlltool.c:734 +#, c-format +msgid "Syntax error in def file %s:%d\n" +msgstr "" + +#: dlltool.c:767 +#, c-format +msgid "NAME: %s base: %x" +msgstr "" + +#: dlltool.c:770 +msgid "Can't have LIBRARY and NAME\n" +msgstr "" + +#: dlltool.c:786 +#, c-format +msgid "LIBRARY: %s base: %x" +msgstr "" + +#: dlltool.c:789 +#, c-format +msgid "%s: Can't have LIBRARY and NAME\n" +msgstr "" + +#: dlltool.c:1044 +#, c-format +msgid "wait: %s" +msgstr "" + +#: dlltool.c:1049 +#, c-format +msgid "subprocess got fatal signal %d" +msgstr "" + +#: dlltool.c:1055 +#, c-format +msgid "%s exited with status %d\n" +msgstr "" + +#: dlltool.c:1087 +#, c-format +msgid "Sucking in info from .drective section in %s\n" +msgstr "" + +#: dlltool.c:1197 +#, c-format +msgid "Excluding symbol: %s\n" +msgstr "" + +#: dlltool.c:1292 dlltool.c:1303 nm.c:902 nm.c:913 objdump.c:379 objdump.c:396 +#, c-format +msgid "%s: no symbols\n" +msgstr "" + +#. FIXME: we ought to read in and block out the base relocations +#: dlltool.c:1330 +#, c-format +msgid "%s: Done reading %s\n" +msgstr "" + +#: dlltool.c:1341 +#, c-format +msgid "Unable to open object file: %s" +msgstr "" + +#: dlltool.c:1344 +#, c-format +msgid "Scanning object file %s" +msgstr "" + +#: dlltool.c:1434 +msgid "Adding exports to output file" +msgstr "" + +#: dlltool.c:1479 +msgid "Added exports to output file" +msgstr "" + +#: dlltool.c:1587 +#, c-format +msgid "Generating export file: %s\n" +msgstr "" + +#: dlltool.c:1592 +#, c-format +msgid "Unable to open temporary assembler file: %s" +msgstr "" + +#: dlltool.c:1595 +#, c-format +msgid "Opened temporary file: %s" +msgstr "" + +#: dlltool.c:1828 +msgid "Generated exports file" +msgstr "" + +#: dlltool.c:2081 +#, c-format +msgid "bfd_open failed open stub file: %s" +msgstr "" + +#: dlltool.c:2084 +#, c-format +msgid "Creating stub file: %s" +msgstr "" + +#: dlltool.c:2593 +#, c-format +msgid "Can't open .lib file: %s" +msgstr "" + +#: dlltool.c:2596 +#, c-format +msgid "Creating library file: %s\n" +msgstr "" + +#: dlltool.c:2652 +#, c-format +msgid "cannot delete %s: %s\n" +msgstr "" + +#: dlltool.c:2656 +msgid "Created lib file" +msgstr "" + +#: dlltool.c:2757 +#, c-format +msgid "Warning, ignoring duplicate EXPORT %s %d,%d\n" +msgstr "" + +#: dlltool.c:2763 +#, c-format +msgid "Error, duplicate EXPORT with oridinals: %s" +msgstr "" + +#: dlltool.c:2890 +msgid "Processing definitions" +msgstr "" + +#: dlltool.c:2928 +msgid "Processed definitions" +msgstr "" + +#. xgetext:c-format +#: dlltool.c:2939 +#, c-format +msgid "Usage %s <options> <object-files>\n" +msgstr "" + +#. xgetext:c-format +#: dlltool.c:2941 +#, c-format +msgid "" +" -m --machine <machine> Create {arm, i386, ppc, thumb} DLL. [default: " +"%s]\n" +msgstr "" + +#: dlltool.c:2942 +msgid " -e --output-exp <outname> Generate an export file.\n" +msgstr "" + +#: dlltool.c:2943 +msgid " -l --output-lib <outname> Generate an interface library.\n" +msgstr "" + +#: dlltool.c:2944 +msgid " -a --add-indirect Add dll indirects to export file.\n" +msgstr "" + +#: dlltool.c:2945 +msgid "" +" -D --dllname <name> Name of input dll to put into interface lib.\n" +msgstr "" + +#: dlltool.c:2946 +msgid " -d --input-def <deffile> Name of .def file to be read in.\n" +msgstr "" + +#: dlltool.c:2947 +msgid " -z --output-def <deffile> Name of .def file to be created.\n" +msgstr "" + +#: dlltool.c:2948 +msgid " --export-all-symbols Export all symbols to .def\n" +msgstr "" + +#: dlltool.c:2949 +msgid " --no-export-all-symbols Only export listed symbols\n" +msgstr "" + +#: dlltool.c:2950 +msgid " --exclude-symbols <list> Don't export <list>\n" +msgstr "" + +#: dlltool.c:2951 +msgid " --no-default-excludes Clear default exclude symbols\n" +msgstr "" + +#: dlltool.c:2952 +msgid " -b --base-file <basefile> Read linker generated base file.\n" +msgstr "" + +#: dlltool.c:2953 +msgid " -x --no-idata4 Don't generate idata$4 section.\n" +msgstr "" + +#: dlltool.c:2954 +msgid " -c --no-idata5 Don't generate idata$5 section.\n" +msgstr "" + +#: dlltool.c:2955 +msgid "" +" -U --add-underscore Add underscores to symbols in interface " +"library.\n" +msgstr "" + +#: dlltool.c:2956 +msgid " -k --kill-at Kill @<n> from exported names.\n" +msgstr "" + +#: dlltool.c:2957 +msgid " -A --add-stdcall-alias Add aliases without @<n>.\n" +msgstr "" + +#: dlltool.c:2958 +msgid " -S --as <name> Use <name> for assembler.\n" +msgstr "" + +#: dlltool.c:2959 +msgid " -f --as-flags <flags> Pass <flags> to the assembler.\n" +msgstr "" + +#: dlltool.c:2961 +msgid " -i --interwork Support ARM/Thumb interworking.\n" +msgstr "" + +#: dlltool.c:2963 +msgid "" +" -n --no-delete Keep temp files (repeat for extra " +"preservation).\n" +msgstr "" + +#: dlltool.c:2964 +msgid " -v --verbose Be verbose.\n" +msgstr "" + +#: dlltool.c:2965 +msgid " -V --version Display the program version.\n" +msgstr "" + +#: dlltool.c:2966 +msgid " -h --help Display this information.\n" +msgstr "" + +#: dlltool.c:3120 +#, c-format +msgid "Unable to open base-file: %s" +msgstr "" + +#: dlltool.c:3137 +#, c-format +msgid "Machine '%s' not supported" +msgstr "" + +#: ieee.c:316 +msgid "unexpected end of debugging information" +msgstr "" + +#: ieee.c:411 +msgid "invalid number" +msgstr "" + +#: ieee.c:470 +msgid "invalid string length" +msgstr "" + +#: ieee.c:527 ieee.c:568 +msgid "expression stack overflow" +msgstr "" + +#: ieee.c:547 +msgid "unsupported IEEE expression operator" +msgstr "" + +#: ieee.c:562 +msgid "unknown section" +msgstr "" + +#: ieee.c:583 +msgid "expression stack underflow" +msgstr "" + +#: ieee.c:597 +msgid "expression stack mismatch" +msgstr "" + +#: ieee.c:636 +msgid "unknown builtin type" +msgstr "" + +#: ieee.c:781 +msgid "BCD float type not supported" +msgstr "" + +#: ieee.c:927 +msgid "unexpected number" +msgstr "" + +#: ieee.c:934 +msgid "unexpected record type" +msgstr "" + +#: ieee.c:967 +msgid "blocks left on stack at end" +msgstr "" + +#: ieee.c:1232 +msgid "unknown BB type" +msgstr "" + +#: ieee.c:1241 +msgid "stack overflow" +msgstr "" + +#: ieee.c:1266 +msgid "stack underflow" +msgstr "" + +#: ieee.c:1380 ieee.c:1452 ieee.c:2151 +msgid "illegal variable index" +msgstr "" + +#: ieee.c:1430 +msgid "illegal type index" +msgstr "" + +#: ieee.c:1440 ieee.c:1477 +msgid "unknown TY code" +msgstr "" + +#: ieee.c:1459 +msgid "undefined variable in TY" +msgstr "" + +#. Pascal file name. FIXME. +#: ieee.c:1870 +msgid "Pascal file name not supported" +msgstr "" + +#: ieee.c:1918 +msgid "unsupported qualifer" +msgstr "" + +#: ieee.c:2189 +msgid "undefined variable in ATN" +msgstr "" + +#: ieee.c:2232 +msgid "unknown ATN type" +msgstr "" + +#. Reserved for FORTRAN common. +#: ieee.c:2354 +msgid "unsupported ATN11" +msgstr "" + +#. We have no way to record this information. FIXME. +#: ieee.c:2381 +msgid "unsupported ATN12" +msgstr "" + +#: ieee.c:2441 +msgid "unexpected string in C++ misc" +msgstr "" + +#: ieee.c:2454 +msgid "bad misc record" +msgstr "" + +#: ieee.c:2497 +msgid "unrecognized C++ misc record" +msgstr "" + +#: ieee.c:2614 +msgid "undefined C++ object" +msgstr "" + +#: ieee.c:2648 +msgid "unrecognized C++ object spec" +msgstr "" + +#: ieee.c:2684 +msgid "unsupported C++ object type" +msgstr "" + +#: ieee.c:2694 +msgid "C++ base class not defined" +msgstr "" + +#: ieee.c:2706 ieee.c:2811 +msgid "C++ object has no fields" +msgstr "" + +#: ieee.c:2725 +msgid "C++ base class not found in container" +msgstr "" + +#: ieee.c:2832 +msgid "C++ data member not found in container" +msgstr "" + +#: ieee.c:2873 ieee.c:3023 +msgid "unknown C++ visibility" +msgstr "" + +#: ieee.c:2907 +msgid "bad C++ field bit pos or size" +msgstr "" + +#: ieee.c:2999 +msgid "bad type for C++ method function" +msgstr "" + +#: ieee.c:3009 +msgid "no type information for C++ method function" +msgstr "" + +#: ieee.c:3048 +msgid "C++ static virtual method" +msgstr "" + +#: ieee.c:3143 +msgid "unrecognized C++ object overhead spec" +msgstr "" + +#: ieee.c:3182 +msgid "undefined C++ vtable" +msgstr "" + +#: ieee.c:3253 +msgid "C++ default values not in a function" +msgstr "" + +#: ieee.c:3293 +msgid "unrecognized C++ default type" +msgstr "" + +#: ieee.c:3324 +msgid "reference parameter is not a pointer" +msgstr "" + +#: ieee.c:3409 +msgid "unrecognized C++ reference type" +msgstr "" + +#: ieee.c:3491 +msgid "C++ reference not found" +msgstr "" + +#: ieee.c:3499 +msgid "C++ reference is not pointer" +msgstr "" + +#: ieee.c:3528 ieee.c:3536 +msgid "missing required ASN" +msgstr "" + +#: ieee.c:3566 ieee.c:3574 +msgid "missing required ATN65" +msgstr "" + +#: ieee.c:3588 +msgid "bad ATN65 record" +msgstr "" + +#: ieee.c:4235 +msgid "IEEE numeric overflow: 0x" +msgstr "" + +#: ieee.c:4281 +#, c-format +msgid "IEEE string length overflow: %u\n" +msgstr "" + +#: ieee.c:5315 +#, c-format +msgid "IEEE unsupported integer type size %u\n" +msgstr "" + +#: ieee.c:5351 +#, c-format +msgid "IEEE unsupported float type size %u\n" +msgstr "" + +#: ieee.c:5387 +#, c-format +msgid "IEEE unsupported complex type size %u\n" +msgstr "" + +#: nlmconv.c:275 srconv.c:1966 +#, c-format +msgid "%s: input and output files must be different\n" +msgstr "" + +#: nlmconv.c:325 +#, c-format +msgid "%s: input file named both on command line and with INPUT\n" +msgstr "" + +#: nlmconv.c:336 +#, c-format +msgid "%s: no input file\n" +msgstr "" + +#: nlmconv.c:366 +#, c-format +msgid "%s: no name for output file\n" +msgstr "" + +#: nlmconv.c:381 +#, c-format +msgid "%s: warning:input and output formats are not compatible\n" +msgstr "" + +#: nlmconv.c:411 +msgid "make .bss section" +msgstr "" + +#: nlmconv.c:420 +msgid "make .nlmsections section" +msgstr "" + +#: nlmconv.c:422 +msgid "set .nlmsections flags" +msgstr "" + +#: nlmconv.c:450 +msgid "set .bss vma" +msgstr "" + +#: nlmconv.c:457 +msgid "set .data size" +msgstr "" + +#: nlmconv.c:638 +#, c-format +msgid "%s: warning: symbol %s imported but not in import list\n" +msgstr "" + +#: nlmconv.c:658 +msgid "set start address" +msgstr "" + +#: nlmconv.c:707 +#, c-format +msgid "%s: warning: START procedure %s not defined\n" +msgstr "" + +#: nlmconv.c:710 +#, c-format +msgid "%s: warning: EXIT procedure %s not defined\n" +msgstr "" + +#: nlmconv.c:714 +#, c-format +msgid "%s: warning: CHECK procedure %s not defined\n" +msgstr "" + +#: nlmconv.c:736 nlmconv.c:928 +msgid "custom section" +msgstr "" + +#: nlmconv.c:757 nlmconv.c:960 +msgid "help section" +msgstr "" + +#: nlmconv.c:779 nlmconv.c:979 +msgid "message section" +msgstr "" + +#: nlmconv.c:795 nlmconv.c:1012 +msgid "module section" +msgstr "" + +#: nlmconv.c:815 nlmconv.c:1029 +msgid "rpc section" +msgstr "" + +#: nlmconv.c:852 +#, c-format +msgid "%s:%s: warning: shared libraries can not have uninitialized data\n" +msgstr "" + +#: nlmconv.c:873 nlmconv.c:1049 +msgid "shared section" +msgstr "" + +#: nlmconv.c:881 +#, c-format +msgid "%s: warning: No version number given\n" +msgstr "" + +#: nlmconv.c:922 nlmconv.c:954 nlmconv.c:973 nlmconv.c:1023 nlmconv.c:1043 +#, c-format +msgid "%s:%s: read: %s\n" +msgstr "" + +#: nlmconv.c:946 +#, c-format +msgid "%s: warning: MAP and FULLMAP are not supported; try ld -M\n" +msgstr "" + +#: nlmconv.c:1121 +#, c-format +msgid "%s: Convert an object file into a NetWare Loadable Module\n" +msgstr "" + +#: nlmconv.c:1133 +#, c-format +msgid "" +"Usage: %s [-dhV] [-I bfdname] [-O bfdname] [-T header-file] [-l linker]\n" +" [--input-target=bfdname] [--output-target=bfdname]\n" +" [--header-file=file] [--linker=linker] [--debug]\n" +" [--help] [--version]\n" +" [in-file [out-file]]\n" +msgstr "" + +#: nlmconv.c:1173 +#, c-format +msgid "%s: support not compiled in for %s\n" +msgstr "" + +#: nlmconv.c:1216 +msgid "make section" +msgstr "" + +#: nlmconv.c:1230 +msgid "set section size" +msgstr "" + +#: nlmconv.c:1236 +msgid "set section alignment" +msgstr "" + +#: nlmconv.c:1240 +msgid "set section flags" +msgstr "" + +#: nlmconv.c:1251 +msgid "set .nlmsections size" +msgstr "" + +#: nlmconv.c:1339 nlmconv.c:1347 nlmconv.c:1356 nlmconv.c:1361 +msgid "set .nlmsection contents" +msgstr "" + +#: nlmconv.c:1864 +msgid "stub section sizes" +msgstr "" + +#: nlmconv.c:1913 +msgid "writing stub" +msgstr "" + +#: nlmconv.c:2003 +#, c-format +msgid "%s: unresolved PC relative reloc against %s\n" +msgstr "" + +#: nlmconv.c:2068 +#, c-format +msgid "%s: overflow when adjusting relocation against %s\n" +msgstr "" + +#: nlmconv.c:2191 +#, c-format +msgid "%s: execution of %s failed: " +msgstr "" + +#: nlmconv.c:2206 +#, c-format +msgid "%s: Execution of %s failed\n" +msgstr "" + +#: nm.c:292 +#, c-format +msgid "" +"Usage: %s [-aABCDglnopPrsuvV] [-t radix] [--radix=radix] [--target=bfdname]\n" +" [--debug-syms] [--extern-only] [--print-armap] [--print-file-name]\n" +" [--numeric-sort] [--no-sort] [--reverse-sort] [--size-sort]\n" +" [--undefined-only] [--portability] [-f {bsd,sysv,posix}]\n" +" [--format={bsd,sysv,posix}] [--demangle] [--no-demangle] [--dynamic]\n" +" [--defined-only] [--line-numbers]\n" +" [--version] [--help]\n" +" [file...]\n" +msgstr "" + +#: nm.c:337 +#, c-format +msgid "%s: %s: invalid radix\n" +msgstr "" + +#: nm.c:363 +#, c-format +msgid "%s: %s: invalid output format\n" +msgstr "" + +#: nm.c:490 +#, c-format +msgid "%s: data size %ld\n" +msgstr "" + +#: nm.c:1281 +#, c-format +msgid "" +"\n" +"\n" +"Undefined symbols from %s:\n" +"\n" +msgstr "" + +#: nm.c:1283 +#, c-format +msgid "" +"\n" +"\n" +"Symbols from %s:\n" +"\n" +msgstr "" + +#: nm.c:1284 nm.c:1338 +msgid "" +"Name Value Class Type Size Line " +"Section\n" +"\n" +msgstr "" + +#: nm.c:1335 +#, c-format +msgid "" +"\n" +"\n" +"Undefined symbols from %s[%s]:\n" +"\n" +msgstr "" + +#: nm.c:1337 +#, c-format +msgid "" +"\n" +"\n" +"Symbols from %s[%s]:\n" +"\n" +msgstr "" + +#: nm.c:1508 +msgid "" +"\n" +"Archive index:\n" +msgstr "" + +#: objcopy.c:293 +#, c-format +msgid "" +"Usage: %s [-vVSpgxX] [-I bfdname] [-O bfdname] [-F bfdname] [-b byte]\n" +" [-R section] [-i interleave] [--interleave=interleave] [--byte=byte]\n" +" [--input-target=bfdname] [--output-target=bfdname] " +"[--target=bfdname]\n" +" [--strip-all] [--strip-debug] [--strip-unneeded] [--discard-all]\n" +" [--discard-locals] [--debugging] [--remove-section=section]\n" +msgstr "" + +#: objcopy.c:300 +msgid "" +" [--gap-fill=val] [--pad-to=address] [--preserve-dates]\n" +" [--set-start=val] \n" +" [--change-start=incr] [--change-addresses=incr] \n" +" (--adjust-start and --adjust-vma are aliases for these two) \n" +" [--change-section-address=section{=,+,-}val]\n" +" (--adjust-section-vma is an alias for --change-section-address)\n" +" [--change-section-lma=section{=,+,-}val]\n" +" [--change-section-vma=section{=,+,-}val]\n" +" [--adjust-warnings] [--no-adjust-warnings]\n" +" [--change-warnings] [--no-change-warnings]\n" +" [--set-section-flags=section=flags] " +"[--add-section=sectionname=filename]\n" +" [--keep-symbol symbol] [-K symbol] [--strip-symbol symbol] [-N " +"symbol]\n" +" [--localize-symbol symbol] [-L symbol] [--weaken-symbol symbol]\n" +" [-W symbol] [--change-leading-char] [--remove-leading-char] " +"[--weaken]\n" +" [--verbose] [--version] [--help] in-file [out-file]\n" +msgstr "" + +#: objcopy.c:327 +#, c-format +msgid "" +"Usage: %s [-vVsSpgxX] [-I bfdname] [-O bfdname] [-F bfdname] [-R section]\n" +" [--input-target=bfdname] [--output-target=bfdname] " +"[--target=bfdname]\n" +" [--strip-all] [--strip-debug] [--strip-unneeded] [--discard-all]\n" +" [--discard-locals] [--keep-symbol symbol] [-K symbol]\n" +" [--strip-symbol symbol] [-N symbol] [--remove-section=section]\n" +" [-o file] [--preserve-dates] [--verbose] [--version] [--help] " +"file...\n" +msgstr "" + +#: objcopy.c:383 +#, c-format +msgid "unrecognized section flag `%s'" +msgstr "" + +#: objcopy.c:384 +msgid "supported flags: alloc, load, readonly, code, data, rom, contents" +msgstr "" + +#: objcopy.c:623 +#, c-format +msgid "copy from %s(%s) to %s(%s)\n" +msgstr "" + +#: objcopy.c:642 +#, c-format +msgid "Warning: Output file cannot represent architecture %s" +msgstr "" + +#: objcopy.c:669 +#, c-format +msgid "can't create section `%s': %s" +msgstr "" + +#: objcopy.c:755 +#, c-format +msgid "Can't fill gap after %s: %s" +msgstr "" + +#: objcopy.c:780 +#, c-format +msgid "Can't add padding to %s: %s" +msgstr "" + +#: objcopy.c:916 +#, c-format +msgid "%s: error copying private BFD data: %s" +msgstr "" + +#: objcopy.c:950 +#, c-format +msgid "cannot mkdir %s for archive copying (error: %s)" +msgstr "" + +#: objcopy.c:1204 +#, c-format +msgid "%s: section `%s': error in %s: %s" +msgstr "" + +#: objcopy.c:1476 +#, c-format +msgid "%s: can't create debugging section: %s" +msgstr "" + +#: objcopy.c:1491 +#, c-format +msgid "%s: can't set debugging section contents: %s" +msgstr "" + +#: objcopy.c:1500 +#, c-format +msgid "%s: don't know how to write debugging information for %s" +msgstr "" + +#: objcopy.c:1605 +#, c-format +msgid "%s: cannot stat: %s" +msgstr "" + +#: objcopy.c:1655 +msgid "byte number must be non-negative" +msgstr "" + +#: objcopy.c:1660 +msgid "interleave must be positive" +msgstr "" + +#: objcopy.c:1729 +msgid "bad format for --add-section NAME=FILENAME" +msgstr "" + +#: objcopy.c:1732 +#, c-format +msgid "cannot stat: %s: %s" +msgstr "" + +#: objcopy.c:1750 +#, c-format +msgid "cannot open: %s: %s" +msgstr "" + +#: objcopy.c:1754 +#, c-format +msgid "%s: fread failed" +msgstr "" + +#: objcopy.c:1791 +#, c-format +msgid "bad format for %s" +msgstr "" + +#: objcopy.c:1855 +#, c-format +msgid "Warning: truncating gap-fill from 0x%s to 0x%x" +msgstr "" + +#: objcopy.c:1879 +msgid "bad format for --set-section-flags" +msgstr "" + +#: objcopy.c:1909 +msgid "byte number must be less than interleave" +msgstr "" + +#: objcopy.c:1928 +#, c-format +msgid "Cannot stat: %s: %s" +msgstr "" + +#: objcopy.c:1968 +#, c-format +msgid "Warning: --change-section-vma %s%c0x%s never used" +msgstr "" + +#: objcopy.c:1981 +#, c-format +msgid "Warning: --change-section-lma %s%c0x%s never used" +msgstr "" + +#: objdump.c:219 +#, c-format +msgid "" +"Usage: %s [-ahifCdDprRtTxsSlw] [-b bfdname] [-m machine] [-j section-name]\n" +" [--archive-headers] [--target=bfdname] [--debugging] [--disassemble]\n" +" [--disassemble-all] [--disassemble-zeroes] [--file-headers]\n" +" [--section-headers] [--headers]\n" +" [--info] [--section=section-name] [--line-numbers] [--source]\n" +msgstr "" + +#: objdump.c:226 +msgid "" +" [--architecture=machine] [--reloc] [--full-contents] [--stabs]\n" +" [--syms] [--all-headers] [--dynamic-syms] [--dynamic-reloc]\n" +" [--wide] [--version] [--help] [--private-headers]\n" +" [--start-address=addr] [--stop-address=addr]\n" +" [--prefix-addresses] [--[no-]show-raw-insn] [--demangle]\n" +" [--adjust-vma=offset] [-EB|-EL] [--endian={big|little}] objfile...\n" +"at least one option besides -l (--line-numbers) must be given\n" +msgstr "" + +#: objdump.c:361 +msgid "Sections:\n" +msgstr "" + +#: objdump.c:363 +msgid "Idx Name Size VMA LMA File off Algn\n" +msgstr "" + +#: objdump.c:365 +msgid "" +"Idx Name Size VMA LMA File off " +"Algn\n" +msgstr "" + +#: objdump.c:414 +#, c-format +msgid "%s: %s: not a dynamic object\n" +msgstr "" + +#: objdump.c:431 +#, c-format +msgid "%s: %s: No dynamic symbols\n" +msgstr "" + +#: objdump.c:1131 +msgid "Out of virtual memory\n" +msgstr "" + +#: objdump.c:1532 +#, c-format +msgid "%s: Can't use supplied machine %s\n" +msgstr "" + +#: objdump.c:1553 +#, c-format +msgid "%s: Can't disassemble for architecture %s\n" +msgstr "" + +#: objdump.c:1627 +#, c-format +msgid "Disassembly of section %s:\n" +msgstr "" + +#: objdump.c:1798 +#, c-format +msgid "" +"No %s section present\n" +"\n" +msgstr "" + +#: objdump.c:1805 +#, c-format +msgid "%s: %s has no %s section\n" +msgstr "" + +#: objdump.c:1818 objdump.c:1829 +#, c-format +msgid "%s: Reading %s section of %s failed: %s\n" +msgstr "" + +#: objdump.c:1871 +#, c-format +msgid "" +"Contents of %s section:\n" +"\n" +msgstr "" + +#: objdump.c:1971 +#, c-format +msgid "architecture: %s, " +msgstr "" + +#: objdump.c:1974 +#, c-format +msgid "flags 0x%08x:\n" +msgstr "" + +#: objdump.c:1987 +msgid "" +"\n" +"start address 0x" +msgstr "" + +#: objdump.c:2030 +#, c-format +msgid "" +"\n" +"%s: file format %s\n" +msgstr "" + +#: objdump.c:2071 +#, c-format +msgid "%s: printing debugging information failed\n" +msgstr "" + +#: objdump.c:2105 +#, c-format +msgid "In archive %s:\n" +msgstr "" + +#: objdump.c:2158 +#, c-format +msgid "Contents of section %s:\n" +msgstr "" + +#: objdump.c:2661 +#, c-format +msgid "BFD header file version %s\n" +msgstr "" + +#: objdump.c:2786 +#, c-format +msgid "%s: unrecognized -E option\n" +msgstr "" + +#: objdump.c:2797 +#, c-format +msgid "%s: unrecognized --endian type `%s'\n" +msgstr "" + +#: rdcoff.c:204 +#, c-format +msgid "%s: parse_coff_type: Bad type code 0x%x\n" +msgstr "" + +#: rdcoff.c:423 rdcoff.c:531 rdcoff.c:712 +#, c-format +msgid "%s: bfd_coff_get_syment failed: %s\n" +msgstr "" + +#: rdcoff.c:439 rdcoff.c:732 +#, c-format +msgid "%s: bfd_coff_get_auxent failed: %s\n" +msgstr "" + +#: rdcoff.c:798 +#, c-format +msgid "%s: %ld: .bf without preceding function\n" +msgstr "" + +#: rdcoff.c:848 +#, c-format +msgid "%s: %ld: unexpected .ef\n" +msgstr "" + +#: rddbg.c:87 +#, c-format +msgid "%s: no recognized debugging information\n" +msgstr "" + +#: rddbg.c:400 +msgid "Last stabs entries before error:\n" +msgstr "" + +#: readelf.c:229 readelf.c:255 +#, c-format +msgid "%s: Error: " +msgstr "" + +#: readelf.c:241 readelf.c:270 +#, c-format +msgid "%s: Warning: " +msgstr "" + +#: readelf.c:300 readelf.c:325 +#, c-format +msgid "Unhandled data length: %d\n" +msgstr "" + +#: readelf.c:420 +msgid "Don't know about relocations on this machine architecture\n" +msgstr "" + +#: readelf.c:426 +msgid "" +" Offset Info Type Symbol's Value Symbol's Name " +"Addend\n" +msgstr "" + +#: readelf.c:429 +msgid " Offset Info Type Symbol's Value Symbol's Name\n" +msgstr "" + +#: readelf.c:533 +#, c-format +msgid "unrecognised: %-7lx" +msgstr "" + +#: readelf.c:551 +#, c-format +msgid "<string table index %3ld>" +msgstr "" + +#: readelf.c:703 +#, c-format +msgid "Processor Specific: %lx" +msgstr "" + +#: readelf.c:706 +#, c-format +msgid "Operating System specific: %lx" +msgstr "" + +#: readelf.c:708 readelf.c:961 +#, c-format +msgid "<unknown>: %lx" +msgstr "" + +#: readelf.c:722 +msgid "NONE (None)" +msgstr "" + +#: readelf.c:723 +msgid "REL (Relocatable file)" +msgstr "" + +#: readelf.c:724 +msgid "EXEC (Executable file)" +msgstr "" + +#: readelf.c:725 +msgid "DYN (Shared object file)" +msgstr "" + +#: readelf.c:726 +msgid "CORE (Core file)" +msgstr "" + +#: readelf.c:730 +#, c-format +msgid "Processor Specific: (%x)" +msgstr "" + +#: readelf.c:732 +#, c-format +msgid "OS Specific: (%x)" +msgstr "" + +#: readelf.c:734 readelf.c:793 readelf.c:897 readelf.c:1072 +#, c-format +msgid "<unknown>: %x" +msgstr "" + +#: readelf.c:747 +msgid "None" +msgstr "" + +#: readelf.c:894 +msgid "ELFDATA2LSB (little endian)" +msgstr "" + +#: readelf.c:895 +msgid "ELFDATA2MSB (big endian)" +msgstr "" + +#: readelf.c:1108 +msgid "Usage: readelf {options} elf-file(s)\n" +msgstr "" + +#: readelf.c:1109 +msgid " Options are:\n" +msgstr "" + +#: readelf.c:1110 +msgid "" +" -a or --all Equivalent to: -h -l -S -s -r -d -V --histogram\n" +msgstr "" + +#: readelf.c:1111 +msgid " -h or --file-header Display the ELF file header\n" +msgstr "" + +#: readelf.c:1112 +msgid " -l or --program-headers or --segments\n" +msgstr "" + +#: readelf.c:1113 +msgid " Display the program headers\n" +msgstr "" + +#: readelf.c:1114 +msgid " -S or --section-headers or --sections\n" +msgstr "" + +#: readelf.c:1115 +msgid " Display the sections' header\n" +msgstr "" + +#: readelf.c:1116 +msgid " -e or --headers Equivalent to: -h -l -S\n" +msgstr "" + +#: readelf.c:1117 +msgid " -s or --syms or --symbols Display the symbol table\n" +msgstr "" + +#: readelf.c:1118 +msgid " -r or --relocs Display the relocations (if present)\n" +msgstr "" + +#: readelf.c:1119 +msgid " -d or --dynamic Display the dynamic segment (if present)\n" +msgstr "" + +#: readelf.c:1120 +msgid " -V or --version-info Display the version sections (if present)\n" +msgstr "" + +#: readelf.c:1121 +msgid "" +" -D or --use-dynamic Use the dynamic section info when displaying " +"symbols\n" +msgstr "" + +#: readelf.c:1122 +msgid " -x <number> or --hex-dump=<number>\n" +msgstr "" + +#: readelf.c:1123 +msgid " Dump the contents of section <number>\n" +msgstr "" + +#: readelf.c:1124 +msgid " -w[liapr] or --debug-dump[=line,=info,=abbrev,=pubnames,=ranges]\n" +msgstr "" + +#: readelf.c:1125 +msgid "" +" Display the contents of DWARF2 debug sections\n" +msgstr "" + +#: readelf.c:1127 +msgid " -i <number> or --instruction-dump=<number>\n" +msgstr "" + +#: readelf.c:1128 +msgid "" +" Disassemble the contents of section <number>\n" +msgstr "" + +#: readelf.c:1130 +msgid " --histogram Display histogram of bucket list lengths\n" +msgstr "" + +#: readelf.c:1131 +msgid " -v or --version Display the version number of readelf\n" +msgstr "" + +#: readelf.c:1132 +msgid " -H or --help Display this information\n" +msgstr "" + +#: readelf.c:1150 +msgid "Out of memory allocating dump request table." +msgstr "" + +#: readelf.c:1274 +#, c-format +msgid "Unrecognised debug option '%s'\n" +msgstr "" + +#: readelf.c:1299 +#, c-format +msgid "Invalid option '-%c'\n" +msgstr "" + +#: readelf.c:1312 +msgid "Nothing to do.\n" +msgstr "" + +#: readelf.c:1323 readelf.c:1336 readelf.c:2459 +msgid "none" +msgstr "" + +#: readelf.c:1324 +msgid "ELF32" +msgstr "" + +#: readelf.c:1325 +msgid "ELF64" +msgstr "" + +#: readelf.c:1326 readelf.c:1339 readelf.c:1352 +msgid "<unknown>" +msgstr "" + +#: readelf.c:1337 +msgid "2's compilment, little endian" +msgstr "" + +#: readelf.c:1338 +msgid "2's compilment, big endian" +msgstr "" + +#: readelf.c:1349 +msgid "UNIX - System V" +msgstr "" + +#: readelf.c:1350 +msgid "UNIX - HP-UX" +msgstr "" + +#: readelf.c:1351 +msgid "Standalone App" +msgstr "" + +#: readelf.c:1366 +msgid "Not an ELF file - it has the wrong magic bytes at the start\n" +msgstr "" + +#: readelf.c:1374 +msgid "ELF Header:\n" +msgstr "" + +#: readelf.c:1375 +msgid " Magic: " +msgstr "" + +#: readelf.c:1379 +#, c-format +msgid " Class: %s\n" +msgstr "" + +#: readelf.c:1381 readelf.c:1397 +#, c-format +msgid " Data: %s\n" +msgstr "" + +#: readelf.c:1383 +#, c-format +msgid " Version: %d %s\n" +msgstr "" + +#: readelf.c:1387 +#, c-format +msgid " OS/ABI: %s\n" +msgstr "" + +#: readelf.c:1389 +#, c-format +msgid " ABI Version: %d\n" +msgstr "" + +#: readelf.c:1391 +#, c-format +msgid " Type: %s\n" +msgstr "" + +#: readelf.c:1393 +#, c-format +msgid " Machine: %s\n" +msgstr "" + +#: readelf.c:1395 +#, c-format +msgid " Version: 0x%lx\n" +msgstr "" + +#: readelf.c:1399 +#, c-format +msgid " Entry point address: 0x%lx\n" +msgstr "" + +#: readelf.c:1401 +#, c-format +msgid " Start of program headers: %ld (bytes into file)\n" +msgstr "" + +#: readelf.c:1403 +#, c-format +msgid " Start of section headers: %ld (bytes into file)\n" +msgstr "" + +#: readelf.c:1405 +#, c-format +msgid " Flags: 0x%lx%s\n" +msgstr "" + +#: readelf.c:1408 +#, c-format +msgid " Size of this header: %ld (bytes)\n" +msgstr "" + +#: readelf.c:1410 +#, c-format +msgid " Size of program headers: %ld (bytes)\n" +msgstr "" + +#: readelf.c:1412 +#, c-format +msgid " Number of program headers: %ld\n" +msgstr "" + +#: readelf.c:1414 +#, c-format +msgid " Size of section headers: %ld (bytes)\n" +msgstr "" + +#: readelf.c:1416 +#, c-format +msgid " Number of section headers: %ld\n" +msgstr "" + +#: readelf.c:1418 +#, c-format +msgid " Section header string table index: %ld\n" +msgstr "" + +#: readelf.c:1428 +msgid "Not a 32 bit ELF file\n" +msgstr "" + +#: readelf.c:1448 +msgid "" +"\n" +"There are no program headers in this file.\n" +msgstr "" + +#: readelf.c:1454 +#, c-format +msgid "" +"\n" +"Elf file is %s\n" +msgstr "" + +#: readelf.c:1455 +#, c-format +msgid "Entry point 0x%lx\n" +msgstr "" + +#: readelf.c:1456 +#, c-format +msgid "There are %d program headers, starting at offset %lx:\n" +msgstr "" + +#: readelf.c:1469 readelf.c:1619 readelf.c:1662 readelf.c:2018 readelf.c:2142 +#: readelf.c:3043 readelf.c:3057 +msgid "Out of memory\n" +msgstr "" + +#: readelf.c:1492 +#, c-format +msgid "" +"\n" +"Program Header%s:\n" +msgstr "" + +#: readelf.c:1494 +msgid "" +" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n" +msgstr "" + +#: readelf.c:1529 +msgid "more than one dynamic segment\n" +msgstr "" + +#: readelf.c:1537 +msgid "Unable to find program interpreter name\n" +msgstr "" + +#: readelf.c:1544 +#, c-format +msgid "" +"\n" +" [Requesting program interpreter: %s]" +msgstr "" + +#: readelf.c:1562 +msgid "" +"\n" +" Section to Segment mapping:\n" +msgstr "" + +#: readelf.c:1563 +msgid " Segment Sections...\n" +msgstr "" + +#: readelf.c:1697 +msgid "" +"\n" +"There are no sections in this file.\n" +msgstr "" + +#: readelf.c:1703 +#, c-format +msgid "There are %d section headers, starting at offset %lx:\n" +msgstr "" + +#: readelf.c:1737 +msgid "File contains multiple dynamic symbol tables\n" +msgstr "" + +#: readelf.c:1750 +msgid "File contains multiple dynamic string tables\n" +msgstr "" + +#: readelf.c:1777 +#, c-format +msgid "" +"\n" +"Section Header%s:\n" +msgstr "" + +#: readelf.c:1779 +msgid "" +" [Nr] Name Type Addr Off Size ES Flg Lk " +"Inf Al\n" +msgstr "" + +#: readelf.c:1844 +#, c-format +msgid "" +"\n" +"Relocation section at offset 0x%lx contains %ld bytes:\n" +msgstr "" + +#: readelf.c:1851 +msgid "" +"\n" +"There are no dynamic relocations in this file.\n" +msgstr "" + +#: readelf.c:1877 +msgid "" +"\n" +"Relocation section " +msgstr "" + +#: readelf.c:1884 +#, c-format +msgid " at offset 0x%lx contains %lu entries:\n" +msgstr "" + +#: readelf.c:1910 +msgid "" +"\n" +"There are no relocations in this file.\n" +msgstr "" + +#: readelf.c:1998 +msgid "" +"\n" +"There is no dynamic segment in this file.\n" +msgstr "" + +#: readelf.c:2056 +msgid "Unable to seek to end of file!" +msgstr "" + +#: readelf.c:2062 +msgid "Unable to determine the number of symbols to load\n" +msgstr "" + +#: readelf.c:2092 +msgid "Unable to seek to end of file\n" +msgstr "" + +#: readelf.c:2098 +msgid "Unable to determine the length of the dynamic string table\n" +msgstr "" + +#: readelf.c:2159 +#, c-format +msgid "" +"\n" +"Dynamic segment at offset 0x%x contains %d entries:\n" +msgstr "" + +#: readelf.c:2162 +msgid " Tag Type Name/Value\n" +msgstr "" + +#: readelf.c:2169 +#, c-format +msgid " 0x%-8.8lx (%s)%*s" +msgstr "" + +#: readelf.c:2182 +msgid "Auxiliary library" +msgstr "" + +#: readelf.c:2184 +msgid "Filter library" +msgstr "" + +#: readelf.c:2196 readelf.c:2217 readelf.c:2243 +msgid "Flags:" +msgstr "" + +#: readelf.c:2198 readelf.c:2219 readelf.c:2245 +msgid " None\n" +msgstr "" + +#: readelf.c:2348 +#, c-format +msgid "Shared library: [%s]" +msgstr "" + +#: readelf.c:2353 +msgid " program interpreter\n" +msgstr "" + +#: readelf.c:2357 +#, c-format +msgid "Library soname: [%s]\n" +msgstr "" + +#: readelf.c:2361 +#, c-format +msgid "Library rpath: [%s]\n" +msgstr "" + +#: readelf.c:2413 +#, c-format +msgid "Not needed object: [%s]\n" +msgstr "" + +#: readelf.c:2505 +#, c-format +msgid "" +"\n" +"Version definition section '%s' contains %ld entries:\n" +msgstr "" + +#: readelf.c:2508 +msgid " Addr: 0x" +msgstr "" + +#: readelf.c:2510 readelf.c:2699 +#, c-format +msgid " Offset: %#08lx Link: %lx (%s)\n" +msgstr "" + +#: readelf.c:2540 +#, c-format +msgid " %#06x: Rev: %d Flags: %s" +msgstr "" + +#: readelf.c:2543 +#, c-format +msgid " Index: %d Cnt: %d " +msgstr "" + +#: readelf.c:2554 +#, c-format +msgid "Name: %s\n" +msgstr "" + +#: readelf.c:2556 +#, c-format +msgid "Name index: %ld\n" +msgstr "" + +#: readelf.c:2571 +#, c-format +msgid " %#06x: Parent %d: %s\n" +msgstr "" + +#: readelf.c:2574 +#, c-format +msgid " %#06x: Parent %d, name index: %ld\n" +msgstr "" + +#: readelf.c:2593 +#, c-format +msgid "" +"\n" +"Version needs section '%s' contains %ld entries:\n" +msgstr "" + +#: readelf.c:2596 +msgid " Addr: 0x" +msgstr "" + +#: readelf.c:2598 +#, c-format +msgid " Offset: %#08lx Link to section: %ld (%s)\n" +msgstr "" + +#: readelf.c:2624 +#, c-format +msgid " %#06x: Version: %d" +msgstr "" + +#: readelf.c:2627 +#, c-format +msgid " File: %s" +msgstr "" + +#: readelf.c:2629 +#, c-format +msgid " File: %lx" +msgstr "" + +#: readelf.c:2631 +#, c-format +msgid " Cnt: %d\n" +msgstr "" + +#: readelf.c:2649 +#, c-format +msgid " %#06x: Name: %s" +msgstr "" + +#: readelf.c:2652 +#, c-format +msgid " %#06x: Name index: %lx" +msgstr "" + +#: readelf.c:2655 +#, c-format +msgid " Flags: %s Version: %d\n" +msgstr "" + +#: readelf.c:2694 +#, c-format +msgid "" +"\n" +"Version symbols section '%s' contains %d entries:\n" +msgstr "" + +#: readelf.c:2697 +msgid " Addr: " +msgstr "" + +#: readelf.c:2726 +msgid " 0 (*local*) " +msgstr "" + +#: readelf.c:2730 +msgid " 1 (*global*) " +msgstr "" + +#: readelf.c:2953 +msgid "" +"\n" +"No version information found in this file.\n" +msgstr "" + +#: readelf.c:2966 +msgid "LOCAL" +msgstr "" + +#: readelf.c:2967 +msgid "GLOBAL" +msgstr "" + +#: readelf.c:2968 +msgid "WEAK" +msgstr "" + +#: readelf.c:2971 readelf.c:2995 +#, c-format +msgid "<processor specific>: %d" +msgstr "" + +#: readelf.c:2973 readelf.c:2997 +#, c-format +msgid "<OS specific>: %d" +msgstr "" + +#: readelf.c:2975 readelf.c:2999 +#, c-format +msgid "<unknown>: %d" +msgstr "" + +#: readelf.c:2988 +msgid "NOTYPE" +msgstr "" + +#: readelf.c:2989 +msgid "OBJECT" +msgstr "" + +#: readelf.c:2990 +msgid "FUNC" +msgstr "" + +#: readelf.c:2991 +msgid "SECTION" +msgstr "" + +#: readelf.c:2992 +msgid "FILE" +msgstr "" + +#: readelf.c:3049 +msgid "Unable to read in dynamic data\n" +msgstr "" + +#: readelf.c:3091 +msgid "Unable to seek to start of dynamic information" +msgstr "" + +#: readelf.c:3097 +msgid "Failed to read in number of buckets\n" +msgstr "" + +#: readelf.c:3103 +msgid "Failed to read in number of chains\n" +msgstr "" + +#: readelf.c:3123 +msgid "" +"\n" +"Symbol table for image:\n" +msgstr "" + +#: readelf.c:3124 +msgid " Num Buc: Value Size Type Bind Ot Ndx Name\n" +msgstr "" + +#: readelf.c:3169 +#, c-format +msgid "" +"\n" +"Symbol table '%s' contains %lu entries:\n" +msgstr "" + +#: readelf.c:3172 +msgid " Num: Value Size Type Bind Ot Ndx Name\n" +msgstr "" + +#: readelf.c:3291 +msgid "bad dynamic symbol" +msgstr "" + +#: readelf.c:3350 +msgid "" +"\n" +"Dynamic symbol information is not available for displaying symbols.\n" +msgstr "" + +#: readelf.c:3362 +#, c-format +msgid "" +"\n" +"Histogram for bucket list length (total of %d buckets):\n" +msgstr "" + +#: readelf.c:3364 +msgid " Length Number %% of total Coverage\n" +msgstr "" + +#: readelf.c:3369 readelf.c:3388 readelf.c:5271 readelf.c:5461 +msgid "Out of memory" +msgstr "" + +#: readelf.c:3434 +#, c-format +msgid "" +"\n" +"Dynamic info segment at offset 0x%lx contains %d entries:\n" +msgstr "" + +#: readelf.c:3437 +msgid " Num: Name BoundTo Flags\n" +msgstr "" + +#: readelf.c:3485 +#, c-format +msgid "" +"\n" +"Assembly dump of section %s\n" +msgstr "" + +#: readelf.c:3508 +#, c-format +msgid "" +"\n" +"Section '%s' has no data to dump.\n" +msgstr "" + +#: readelf.c:3513 +#, c-format +msgid "" +"\n" +"Hex dump of section '%s':\n" +msgstr "" + +#: readelf.c:3663 +msgid "badly formed extended line op encountered!" +msgstr "" + +#: readelf.c:3670 +#, c-format +msgid " Extended opcode %d: " +msgstr "" + +#: readelf.c:3675 +msgid "" +"End of Sequence\n" +"\n" +msgstr "" + +#: readelf.c:3682 +#, c-format +msgid "set Address to 0x%lx\n" +msgstr "" + +#: readelf.c:3687 +msgid " define new File Table entry\n" +msgstr "" + +#: readelf.c:3688 readelf.c:3806 +msgid " Entry\tDir\tTime\tSize\tName\n" +msgstr "" + +#: readelf.c:3690 +#, c-format +msgid " %d\t" +msgstr "" + +#: readelf.c:3693 readelf.c:3695 readelf.c:3697 readelf.c:3818 readelf.c:3820 +#: readelf.c:3822 +#, c-format +msgid "%lu\t" +msgstr "" + +#: readelf.c:3698 +#, c-format +msgid "" +"%s\n" +"\n" +msgstr "" + +#: readelf.c:3702 +#, c-format +msgid "UNKNOWN: length %d\n" +msgstr "" + +#: readelf.c:3724 +#, c-format +msgid "" +"\n" +"Dump of debug contents of section %s:\n" +"\n" +msgstr "" + +#: readelf.c:3736 +msgid "The line info appears to be corrupt - the section is too small\n" +msgstr "" + +#: readelf.c:3744 +msgid "Only DWARF version 2 line info is currently supported.\n" +msgstr "" + +#: readelf.c:3759 +#, c-format +msgid " Length: %ld\n" +msgstr "" + +#: readelf.c:3760 +#, c-format +msgid " DWARF Version: %d\n" +msgstr "" + +#: readelf.c:3761 +#, c-format +msgid " Prolgue Length: %d\n" +msgstr "" + +#: readelf.c:3762 +#, c-format +msgid " Minimum Instruction Length: %d\n" +msgstr "" + +#: readelf.c:3763 +#, c-format +msgid " Initial value of 'is_stmt': %d\n" +msgstr "" + +#: readelf.c:3764 +#, c-format +msgid " Line Base: %d\n" +msgstr "" + +#: readelf.c:3765 +#, c-format +msgid " Line Range: %d\n" +msgstr "" + +#: readelf.c:3766 +#, c-format +msgid " Opcode Base: %d\n" +msgstr "" + +#: readelf.c:3775 +msgid "" +"\n" +" Opcodes:\n" +msgstr "" + +#: readelf.c:3778 +#, c-format +msgid " Opcode %d has %d args\n" +msgstr "" + +#: readelf.c:3784 +msgid "" +"\n" +" The Directory Table is empty.\n" +msgstr "" + +#: readelf.c:3787 +msgid "" +"\n" +" The Directory Table:\n" +msgstr "" + +#: readelf.c:3791 +#, c-format +msgid " %s\n" +msgstr "" + +#: readelf.c:3802 +msgid "" +"\n" +" The File Name Table is empty.\n" +msgstr "" + +#: readelf.c:3805 +msgid "" +"\n" +" The File Name Table:\n" +msgstr "" + +#: readelf.c:3813 +#, c-format +msgid " %d\t" +msgstr "" + +#: readelf.c:3824 +#, c-format +msgid "%s\n" +msgstr "" + +#. Now display the statements. +#: readelf.c:3832 +msgid "" +"\n" +" Line Number Statements:\n" +msgstr "" + +#: readelf.c:3850 +msgid " Copy\n" +msgstr "" + +#: readelf.c:3857 +#, c-format +msgid " Advance PC by %d to %lx\n" +msgstr "" + +#: readelf.c:3865 +#, c-format +msgid " Advance Line by %d to %d\n" +msgstr "" + +#: readelf.c:3872 +#, c-format +msgid " Set File Name to entry %d in the File Name Table\n" +msgstr "" + +#: readelf.c:3880 +#, c-format +msgid " Set column to %d\n" +msgstr "" + +#: readelf.c:3887 +#, c-format +msgid " Set is_stmt to %d\n" +msgstr "" + +#: readelf.c:3892 +msgid " Set basic block\n" +msgstr "" + +#: readelf.c:3899 +#, c-format +msgid " Advance PC by constant %d to 0x%lx\n" +msgstr "" + +#: readelf.c:3907 +#, c-format +msgid " Advance PC by fixed size amount %d to 0x%lx\n" +msgstr "" + +#: readelf.c:3915 +#, c-format +msgid " Special opcode %d: advance Address by %d to 0x%lx" +msgstr "" + +#: readelf.c:3919 +#, c-format +msgid " and Line by %d to %d\n" +msgstr "" + +#: readelf.c:3942 readelf.c:4361 +#, c-format +msgid "" +"Contents of the %s section:\n" +"\n" +msgstr "" + +#: readelf.c:3961 +msgid "Only DWARF 2 pubnames are currently supported" +msgstr "" + +#: readelf.c:3965 +#, c-format +msgid " Length: %ld\n" +msgstr "" + +#: readelf.c:3967 +#, c-format +msgid " Version: %d\n" +msgstr "" + +#: readelf.c:3969 +#, c-format +msgid " Offset into .debug_info section: %ld\n" +msgstr "" + +#: readelf.c:3971 +#, c-format +msgid " Size of area in .debug_info section: %ld\n" +msgstr "" + +#: readelf.c:3974 +msgid "" +"\n" +" Offset\tName\n" +msgstr "" + +#: readelf.c:4056 +#, c-format +msgid "Unknown TAG value: %lx" +msgstr "" + +#: readelf.c:4151 +#, c-format +msgid "Unknown AT value: %lx" +msgstr "" + +#: readelf.c:4188 +#, c-format +msgid "Unknown FORM value: %lx" +msgstr "" + +#: readelf.c:4367 +msgid " Number TAG\n" +msgstr "" + +#: readelf.c:4373 +#, c-format +msgid " %ld %s [%s]\n" +msgstr "" + +#: readelf.c:4376 +msgid "has children" +msgstr "" + +#: readelf.c:4376 +msgid "no children" +msgstr "" + +#: readelf.c:4380 +#, c-format +msgid " %-18s %s\n" +msgstr "" + +#: readelf.c:4399 +#, c-format +msgid " %lu byte block: " +msgstr "" + +#: readelf.c:4568 +msgid "(User defined location op)" +msgstr "" + +#: readelf.c:4570 +msgid "(Unknown location op)" +msgstr "" + +#: readelf.c:4687 +#, c-format +msgid "Unable to handle FORM: %d" +msgstr "" + +#: readelf.c:4691 +#, c-format +msgid "Unrecognised form: %d" +msgstr "" + +#: readelf.c:4704 +msgid "(not inlined)" +msgstr "" + +#: readelf.c:4705 +msgid "(inlined)" +msgstr "" + +#: readelf.c:4706 +msgid "(declared as inline but ignored)" +msgstr "" + +#: readelf.c:4707 +msgid "(declared as inline and inlined)" +msgstr "" + +#: readelf.c:4708 +#, c-format +msgid " (Unknown inline attribute value: %lx)" +msgstr "" + +#: readelf.c:4838 readelf.c:4962 +#, c-format +msgid "" +"The section %s contains:\n" +"\n" +msgstr "" + +#: readelf.c:4860 +msgid "Only version 2 DWARF debug information is currently supported.\n" +msgstr "" + +#: readelf.c:4864 +msgid " Compilation Unit:\n" +msgstr "" + +#: readelf.c:4865 +#, c-format +msgid " Length: %ld\n" +msgstr "" + +#: readelf.c:4866 +#, c-format +msgid " Version: %d\n" +msgstr "" + +#: readelf.c:4867 +#, c-format +msgid " Abbrev Offset: %ld\n" +msgstr "" + +#: readelf.c:4868 +#, c-format +msgid " Pointer Size: %d\n" +msgstr "" + +#: readelf.c:4888 +msgid "Unable to locate .debug_abbrev section!\n" +msgstr "" + +#: readelf.c:4928 +#, c-format +msgid "Unable to locate entry %d in the abbreviation table\n" +msgstr "" + +#: readelf.c:4933 +#, c-format +msgid " <%d><%x>: Abbrev Number: %d (%s)\n" +msgstr "" + +#: readelf.c:4980 +#, c-format +msgid " Length: %ld\n" +msgstr "" + +#: readelf.c:4981 +#, c-format +msgid " Version: %d\n" +msgstr "" + +#: readelf.c:4982 +#, c-format +msgid " Offset into .debug_info: %lx\n" +msgstr "" + +#: readelf.c:4983 +#, c-format +msgid " Pointer Size: %d\n" +msgstr "" + +#: readelf.c:4984 +#, c-format +msgid " Segment Size: %d\n" +msgstr "" + +#: readelf.c:4986 +msgid "" +"\n" +" Address Length\n" +msgstr "" + +#: readelf.c:5021 +#, c-format +msgid "Displaying the debug contents of section %s is not yet supported.\n" +msgstr "" + +#: readelf.c:5063 +#, c-format +msgid "" +"\n" +"Section '%s' has no debugging data.\n" +msgstr "" + +#: readelf.c:5079 +#, c-format +msgid "Unrecognised debug section: %s\n" +msgstr "" + +#: readelf.c:5118 +msgid "Some sections were not dumped because they do not exist!\n" +msgstr "" + +#: readelf.c:5293 +#, c-format +msgid "" +"\n" +"Section '%s' contains %d entries:\n" +msgstr "" + +#: readelf.c:5454 +msgid "conflict list with without table" +msgstr "" + +#: readelf.c:5482 +#, c-format +msgid "" +"\n" +"Section '.conflict' contains %d entries:\n" +msgstr "" + +#: readelf.c:5483 +msgid " Num: Index Value Name" +msgstr "" + +#: readelf.c:5560 +#, c-format +msgid "Cannot stat input file %s.\n" +msgstr "" + +#: readelf.c:5567 +#, c-format +msgid "Input file %s not found.\n" +msgstr "" + +#: readelf.c:5573 +#, c-format +msgid "%s: Failed to read file header\n" +msgstr "" + +#: readelf.c:5587 +#, c-format +msgid "" +"\n" +"File: %s\n" +msgstr "" + +#: rename.c:121 +#, c-format +msgid "%s: cannot set time: %s" +msgstr "" + +#. We have to clean up here. +#: rename.c:160 rename.c:193 +#, c-format +msgid "%s: rename: %s" +msgstr "" + +#: rename.c:201 +#, c-format +msgid "%s: simple_copy: %s" +msgstr "" + +#: resbin.c:130 +#, c-format +msgid "%s: not enough binary data" +msgstr "" + +#: resbin.c:149 +msgid "null terminated unicode string" +msgstr "" + +#: resbin.c:179 resbin.c:185 +msgid "resource ID" +msgstr "" + +#: resbin.c:229 +msgid "cursor" +msgstr "" + +#: resbin.c:263 resbin.c:270 +msgid "menu header" +msgstr "" + +#: resbin.c:280 +msgid "menuex header" +msgstr "" + +#: resbin.c:284 +msgid "menuex offset" +msgstr "" + +#: resbin.c:291 +#, c-format +msgid "unsupported menu version %d" +msgstr "" + +#: resbin.c:319 resbin.c:334 resbin.c:400 +msgid "menuitem header" +msgstr "" + +#: resbin.c:430 +msgid "menuitem" +msgstr "" + +#: resbin.c:471 resbin.c:499 +msgid "dialog header" +msgstr "" + +#: resbin.c:489 +#, c-format +msgid "unexpected dialog signature %d" +msgstr "" + +#: resbin.c:531 +msgid "dialog font point size" +msgstr "" + +#: resbin.c:539 +msgid "dialogex font information" +msgstr "" + +#: resbin.c:564 resbin.c:582 +msgid "dialog control" +msgstr "" + +#: resbin.c:574 +msgid "dialogex control" +msgstr "" + +#: resbin.c:603 +msgid "dialog control end" +msgstr "" + +#: resbin.c:615 +msgid "dialog control data" +msgstr "" + +#: resbin.c:658 +msgid "stringtable string length" +msgstr "" + +#: resbin.c:668 +msgid "stringtable string" +msgstr "" + +#: resbin.c:701 +msgid "fontdir header" +msgstr "" + +#: resbin.c:714 +msgid "fontdir" +msgstr "" + +#: resbin.c:730 +msgid "fontdir device name" +msgstr "" + +#: resbin.c:736 +msgid "fontdir face name" +msgstr "" + +#: resbin.c:779 +msgid "accelerator" +msgstr "" + +#: resbin.c:843 +msgid "group cursor header" +msgstr "" + +#: resbin.c:847 +#, c-format +msgid "unexpected group cursor type %d" +msgstr "" + +#: resbin.c:862 +msgid "group cursor" +msgstr "" + +#: resbin.c:901 +msgid "group icon header" +msgstr "" + +#: resbin.c:905 +#, c-format +msgid "unexpected group icon type %d" +msgstr "" + +#: resbin.c:920 +msgid "group icon" +msgstr "" + +#: resbin.c:991 resbin.c:1210 +msgid "unexpected version string" +msgstr "" + +#: resbin.c:1025 +#, c-format +msgid "version length %d does not match resource length %lu" +msgstr "" + +#: resbin.c:1029 +#, c-format +msgid "unexpected version type %d" +msgstr "" + +#: resbin.c:1041 +#, c-format +msgid "unexpected fixed version information length %d" +msgstr "" + +#: resbin.c:1044 +msgid "fixed version info" +msgstr "" + +#: resbin.c:1048 +#, c-format +msgid "unexpected fixed version signature %lu" +msgstr "" + +#: resbin.c:1052 +#, c-format +msgid "unexpected fixed version info version %lu" +msgstr "" + +#: resbin.c:1081 +msgid "version var info" +msgstr "" + +#: resbin.c:1098 +#, c-format +msgid "unexpected stringfileinfo value length %d" +msgstr "" + +#: resbin.c:1108 +#, c-format +msgid "unexpected version stringtable value length %d" +msgstr "" + +#: resbin.c:1142 +#, c-format +msgid "unexpected version string length %d != %d + %d" +msgstr "" + +#: resbin.c:1153 +#, c-format +msgid "unexpected version string length %d < %d" +msgstr "" + +#: resbin.c:1170 +#, c-format +msgid "unexpected varfileinfo value length %d" +msgstr "" + +#: resbin.c:1189 +msgid "version varfileinfo" +msgstr "" + +#: resbin.c:1204 +#, c-format +msgid "unexpected version value length %d" +msgstr "" + +#: rescoff.c:128 +msgid "filename required for COFF input" +msgstr "" + +#: rescoff.c:145 +#, c-format +msgid "%s: %s: no resource section\n" +msgstr "" + +#: rescoff.c:154 +msgid "can't read resource section" +msgstr "" + +#: rescoff.c:180 +#, c-format +msgid "%s: %s: address out of bounds" +msgstr "" + +#: rescoff.c:199 +msgid "directory" +msgstr "" + +#: rescoff.c:227 +msgid "named directory entry" +msgstr "" + +#: rescoff.c:236 +msgid "directory entry name" +msgstr "" + +#: rescoff.c:256 +msgid "named subdirectory" +msgstr "" + +#: rescoff.c:264 +msgid "named resource" +msgstr "" + +#: rescoff.c:279 +msgid "ID directory entry" +msgstr "" + +#: rescoff.c:296 +msgid "ID subdirectory" +msgstr "" + +#: rescoff.c:304 +msgid "ID resource" +msgstr "" + +#: rescoff.c:330 +msgid "resource type unknown" +msgstr "" + +#: rescoff.c:333 +msgid "data entry" +msgstr "" + +#: rescoff.c:341 +msgid "resource data" +msgstr "" + +#: rescoff.c:346 +msgid "resource data size" +msgstr "" + +#: rescoff.c:441 +msgid "filename required for COFF output" +msgstr "" + +#: rescoff.c:729 +msgid "can't get BFD_RELOC_RVA relocation type" +msgstr "" + +#: resrc.c:150 +#, c-format +msgid "can't popen `%s': %s" +msgstr "" + +#: resrc.c:163 +#, c-format +msgid "%s: warning: preprocessor failed\n" +msgstr "" + +#: resrc.c:208 +#, c-format +msgid "%s: unexpected EOF" +msgstr "" + +#: resrc.c:265 +#, c-format +msgid "%s: read of %lu returned %lu" +msgstr "" + +#: resrc.c:307 resrc.c:538 resrc.c:811 resrc.c:965 +#, c-format +msgid "stat failed on bitmap file `%s': %s" +msgstr "" + +#: resrc.c:360 +#, c-format +msgid "cursor file `%s' does not contain cursor data" +msgstr "" + +#: resrc.c:392 resrc.c:682 +#, c-format +msgid "%s: fseek to %lu failed: %s" +msgstr "" + +#: resrc.c:651 +#, c-format +msgid "icon file `%s' does not contain icon data" +msgstr "" + +#: resrc.c:1170 +#, c-format +msgid "can't open `%s' for output: %s" +msgstr "" + +#: size.c:79 +#, c-format +msgid "" +"Usage: %s [-ABdoxV] [--format=berkeley|sysv] [--radix=8|10|16]\n" +" [--target=bfdname] [--version] [--help] [file...]\n" +msgstr "" + +#: size.c:83 +msgid "default is --format=berkeley\n" +msgstr "" + +#: size.c:85 +msgid "default is --format=sysv\n" +msgstr "" + +#: size.c:139 +#, c-format +msgid "invalid argument to --format: %s\n" +msgstr "" + +#: size.c:166 +#, c-format +msgid "Invalid radix: %s\n" +msgstr "" + +#: srconv.c:1879 +#, c-format +msgid "Usage: %s [-dhVq] in-file [out-file]\n" +msgstr "" + +#: srconv.c:1886 +#, c-format +msgid "%s: Convert a COFF object file into a SYSROFF object file\n" +msgstr "" + +#: srconv.c:2024 +#, c-format +msgid "%s: unable to open output file %s\n" +msgstr "" + +#: stabs.c:349 stabs.c:1762 +msgid "numeric overflow" +msgstr "" + +#: stabs.c:360 +#, c-format +msgid "Bad stab: %s\n" +msgstr "" + +#: stabs.c:370 +#, c-format +msgid "Warning: %s: %s\n" +msgstr "" + +#: stabs.c:492 +msgid "N_LBRAC not within function\n" +msgstr "" + +#: stabs.c:531 +msgid "Too many N_RBRACs\n" +msgstr "" + +#: stabs.c:780 +msgid "unknown C++ encoded name" +msgstr "" + +#. Complain and keep going, so compilers can invent new +#. cross-reference types. +#: stabs.c:1306 +msgid "unrecognized cross reference type" +msgstr "" + +#. Does this actually ever happen? Is that why we are worrying +#. about dealing with it rather than just calling error_type? +#: stabs.c:1854 +msgid "missing index type" +msgstr "" + +#: stabs.c:2181 +msgid "unknown virtual character for baseclass" +msgstr "" + +#: stabs.c:2199 +msgid "unknown visibility character for baseclass" +msgstr "" + +#: stabs.c:2391 +msgid "unnamed $vb type" +msgstr "" + +#: stabs.c:2397 +msgid "unrecognized C++ abbreviation" +msgstr "" + +#: stabs.c:2477 +msgid "unknown visibility character for field" +msgstr "" + +#: stabs.c:2733 +msgid "const/volatile indicator missing" +msgstr "" + +#: stabs.c:2973 +#, c-format +msgid "No mangling for \"%s\"\n" +msgstr "" + +#: stabs.c:3286 +msgid "Undefined N_EXCL" +msgstr "" + +#: stabs.c:3374 +#, c-format +msgid "Type file number %d out of range\n" +msgstr "" + +#: stabs.c:3379 +#, c-format +msgid "Type index number %d out of range\n" +msgstr "" + +#: stabs.c:3466 +#, c-format +msgid "Unrecognized XCOFF type %d\n" +msgstr "" + +#: stabs.c:3765 +#, c-format +msgid "bad mangled name `%s'\n" +msgstr "" + +#: stabs.c:3861 +msgid "no argument types in mangled string\n" +msgstr "" + +#: strings.c:159 +#, c-format +msgid "%s: invalid number %s\n" +msgstr "" + +#: strings.c:494 +#, c-format +msgid "%s: invalid integer argument %s\n" +msgstr "" + +#: strings.c:505 +#, c-format +msgid "" +"Usage: %s [-afov] [-n min-len] [-min-len] [-t {o,x,d}] [-]\n" +" [--all] [--print-file-name] [--bytes=min-len] [--radix={o,x,d}]\n" +" [--target=bfdname] [--help] [--version] file...\n" +msgstr "" + +#: sysdump.c:712 +#, c-format +msgid "Usage: %s [-hV] in-file\n" +msgstr "" + +#: sysdump.c:783 +#, c-format +msgid "%s: cannot open input file %s\n" +msgstr "" + +#: version.c:39 +msgid "Copyright 1997, 1998, 1999 Free Software Foundation, Inc.\n" +msgstr "" + +#: version.c:40 +msgid "" +"This program is free software; you may redistribute it under the terms of\n" +"the GNU General Public License. This program has absolutely no warranty.\n" +msgstr "" + +#: windres.c:228 +#, c-format +msgid "can't open %s `%s': %s" +msgstr "" + +#: windres.c:407 +msgid ": expected to be a directory\n" +msgstr "" + +#: windres.c:419 +msgid ": expected to be a leaf\n" +msgstr "" + +#: windres.c:428 +#, c-format +msgid "%s: warning: " +msgstr "" + +#: windres.c:430 +msgid ": duplicate value\n" +msgstr "" + +#: windres.c:593 +#, c-format +msgid "%s: unknown format type `%s'\n" +msgstr "" + +#: windres.c:594 +#, c-format +msgid "%s: supported formats:" +msgstr "" + +#. Otherwise, we give up. +#: windres.c:681 +#, c-format +msgid "can not determine type of file `%s'; use the -I option" +msgstr "" + +#: windres.c:695 +#, c-format +msgid "Usage: %s [options] [input-file] [output-file]\n" +msgstr "" + +#: windres.c:697 +msgid "" +"Options:\n" +" -i FILE, --input FILE Name input file\n" +" -o FILE, --output FILE Name output file\n" +" -I FORMAT, --input-format FORMAT\n" +" Specify input format\n" +" -O FORMAT, --output-format FORMAT\n" +" Specify output format\n" +" -F TARGET, --target TARGET Specify COFF target\n" +" --preprocessor PROGRAM Program to use to preprocess rc file\n" +" --include-dir DIR Include directory when preprocessing rc file\n" +" --define SYM[=VAL] Define SYM when preprocessing rc file\n" +" --language VAL Set language when reading rc file\n" +msgstr "" + +#: windres.c:711 +msgid " --yydebug Turn on parser debugging\n" +msgstr "" + +#: windres.c:714 +msgid "" +" --help Print this help message\n" +" --version Print version information\n" +msgstr "" + +#: windres.c:717 +msgid "" +"FORMAT is one of rc, res, or coff, and is deduced from the file name\n" +"extension if not specified. A single file name is an input file.\n" +"No input-file is stdin, default rc. No output-file is stdout, default rc.\n" +msgstr "" + +#: windres.c:918 +msgid "no resources" +msgstr "" + +#: wrstabs.c:366 wrstabs.c:2028 +#, c-format +msgid "string_hash_lookup failed: %s\n" +msgstr "" + +#: wrstabs.c:666 +#, c-format +msgid "stab_int_type: bad size %u\n" +msgstr "" + +#: wrstabs.c:1468 +#, c-format +msgid "%s: warning: unknown size for field `%s' in struct\n" +msgstr "" |