diff options
author | obrien <obrien@FreeBSD.org> | 2000-11-13 09:14:15 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-11-13 09:14:15 +0000 |
commit | 2ad87765c08f40fa05cc8283b5eb2930376736d5 (patch) | |
tree | f67c22678e31448b73ac6ed19308429256727aae /contrib | |
parent | 813b11648e223be167ed3d9c1b234eb99ab9006e (diff) | |
download | FreeBSD-src-2ad87765c08f40fa05cc8283b5eb2930376736d5.zip FreeBSD-src-2ad87765c08f40fa05cc8283b5eb2930376736d5.tar.gz |
Upgrade to Binutils 2.10.0.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/binutils/include/elf/po/Make-in | 251 | ||||
-rw-r--r-- | contrib/binutils/include/elf/po/POTFILES.in | 55 | ||||
-rw-r--r-- | contrib/binutils/include/elf/po/binutils.pot | 3756 |
3 files changed, 4062 insertions, 0 deletions
diff --git a/contrib/binutils/include/elf/po/Make-in b/contrib/binutils/include/elf/po/Make-in new file mode 100644 index 0000000..0552db1 --- /dev/null +++ b/contrib/binutils/include/elf/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/contrib/binutils/include/elf/po/POTFILES.in b/contrib/binutils/include/elf/po/POTFILES.in new file mode 100644 index 0000000..a3a0586 --- /dev/null +++ b/contrib/binutils/include/elf/po/POTFILES.in @@ -0,0 +1,55 @@ +addr2line.c +ar.c +arsup.c +arsup.h +bucomm.c +bucomm.h +budbg.h +coffdump.c +coffgrok.c +coffgrok.h +debug.c +debug.c +debug.h +dlltool.c +dlltool.h +dllwrap.c +dyn-string.c +dyn-string.h +filemode.c +ieee.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 +rdcoff.c +rddbg.c +rddbg.c +readelf.c +rename.c +resbin.c +rescoff.c +resrc.c +resres.c +size.c +srconv.c +stabs.c +stabs.c +strings.c +sysdump.c +version.c +windres.c +windres.h +winduni.c +winduni.h +wrstabs.c diff --git a/contrib/binutils/include/elf/po/binutils.pot b/contrib/binutils/include/elf/po/binutils.pot new file mode 100644 index 0000000..ed7ba0c --- /dev/null +++ b/contrib/binutils/include/elf/po/binutils.pot @@ -0,0 +1,3756 @@ +# 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: 2000-04-05 14:09+0930\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:286 nlmconv.c:1141 nm.c:306 objcopy.c:358 objcopy.c:390 +#: objdump.c:277 readelf.c:1703 size.c:89 strings.c:512 windres.c:737 +#, c-format +msgid "Report bugs to %s\n" +msgstr "" + +#: addr2line.c:243 +#, c-format +msgid "%s: can not get addresses from archive" +msgstr "" + +#: ar.c:235 +#, c-format +msgid "no entry %s in archive\n" +msgstr "" + +#: ar.c:252 +#, c-format +msgid "" +"Usage: %s [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file " +"file...\n" +msgstr "" + +#: ar.c:255 +#, c-format +msgid " %s -M [<mri-script]\n" +msgstr "" + +#: ar.c:256 +msgid " commands:\n" +msgstr "" + +#: ar.c:257 +msgid " d - delete file(s) from the archive\n" +msgstr "" + +#: ar.c:258 +msgid " m[ab] - move file(s) in the archive\n" +msgstr "" + +#: ar.c:259 +msgid " p - print file(s) found in the archive\n" +msgstr "" + +#: ar.c:260 +msgid " q[f] - quick append file(s) to the archive\n" +msgstr "" + +#: ar.c:261 +msgid "" +" r[ab][f][u] - replace existing or insert new file(s) into the archive\n" +msgstr "" + +#: ar.c:262 +msgid " t - display contents of archive\n" +msgstr "" + +#: ar.c:263 +msgid " x[o] - extract file(s) from the archive\n" +msgstr "" + +#: ar.c:264 +msgid " command specific modifiers:\n" +msgstr "" + +#: ar.c:265 +msgid " [a] - put file(s) after [member-name]\n" +msgstr "" + +#: ar.c:266 +msgid " [b] - put file(s) before [member-name] (same as [i])\n" +msgstr "" + +#: ar.c:267 +msgid " [N] - use instance [count] of name\n" +msgstr "" + +#: ar.c:268 +msgid " [f] - truncate inserted file names\n" +msgstr "" + +#: ar.c:269 +msgid " [P] - use full path names when matching\n" +msgstr "" + +#: ar.c:270 +msgid " [o] - preserve original dates\n" +msgstr "" + +#: ar.c:271 +msgid "" +" [u] - only replace files that are newer than current archive " +"contents\n" +msgstr "" + +#: ar.c:272 +msgid " generic modifiers:\n" +msgstr "" + +#: ar.c:273 +msgid " [c] - do not warn if the library had to be created\n" +msgstr "" + +#: ar.c:274 +msgid " [s] - create an archive index (cf. ranlib)\n" +msgstr "" + +#: ar.c:275 +msgid " [S] - do not build a symbol table\n" +msgstr "" + +#: ar.c:276 +msgid " [v] - be verbose\n" +msgstr "" + +#: ar.c:277 +msgid " [V] - display the version number\n" +msgstr "" + +#: ar.c:281 +#, c-format +msgid "Usage: %s [-vV] archive\n" +msgstr "" + +#: ar.c:466 +msgid "two different operation options specified" +msgstr "" + +#: ar.c:541 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "" + +#: ar.c:573 +msgid "no operation specified" +msgstr "" + +#: ar.c:576 +msgid "`u' is only meaningful with the `r' option." +msgstr "" + +#: ar.c:586 +msgid "`N' is only meaningful with the `x' and 'd' options." +msgstr "" + +#: ar.c:589 +msgid "Value for `N' must be positive." +msgstr "" + +#: ar.c:672 +#, c-format +msgid "%s: internal error -- this option not implemented\n" +msgstr "" + +#: ar.c:790 ar.c:841 ar.c:1283 objcopy.c:1104 +#, c-format +msgid "internal stat error on %s" +msgstr "" + +#: ar.c:810 ar.c:878 +#, c-format +msgid "%s is not a valid archive" +msgstr "" + +#: ar.c:846 +#, c-format +msgid "stat returns negative size for %s" +msgstr "" + +#: ar.c:967 +#, c-format +msgid "%s is not an archive" +msgstr "" + +#: ar.c:974 +#, c-format +msgid "%s: creating %s\n" +msgstr "" + +#: ar.c:1181 +#, c-format +msgid "No member named `%s'\n" +msgstr "" + +#: ar.c:1233 +#, c-format +msgid "%s: no entry %s in archive %s!\n" +msgstr "" + +#: ar.c:1395 +#, c-format +msgid "%s: no archive map to update" +msgstr "" + +#: arsup.c:87 +#, c-format +msgid "No entry %s in archive.\n" +msgstr "" + +#: arsup.c:119 +#, c-format +msgid "Can't open file %s\n" +msgstr "" + +#: arsup.c:167 +#, c-format +msgid "%s: Can't open output archive %s\n" +msgstr "" + +#: arsup.c:179 +#, c-format +msgid "%s: Can't open input archive %s\n" +msgstr "" + +#: arsup.c:185 +#, c-format +msgid "%s: file %s is not an archive\n" +msgstr "" + +#: arsup.c:226 +#, c-format +msgid "%s: no output archive specified yet\n" +msgstr "" + +#: arsup.c:246 arsup.c:281 arsup.c:317 arsup.c:337 arsup.c:395 +#, c-format +msgid "%s: no open output archive\n" +msgstr "" + +#: arsup.c:254 arsup.c:355 arsup.c:375 +#, c-format +msgid "%s: can't open file %s\n" +msgstr "" + +#: arsup.c:302 arsup.c:371 arsup.c:450 +#, c-format +msgid "%s: can't find module file %s\n" +msgstr "" + +#: arsup.c:402 +#, c-format +msgid "Current open archive is %s\n" +msgstr "" + +#: arsup.c:429 +#, 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:2662 +msgid "debug_write_type: illegal type encountered" +msgstr "" + +#: dlltool.c:770 dlltool.c:794 dlltool.c:819 +#, c-format +msgid "Internal error: Unknown machine type: %d\n" +msgstr "" + +#: dlltool.c:856 +#, c-format +msgid "Can't open def file: %s" +msgstr "" + +#: dlltool.c:861 +#, c-format +msgid "Processing def file: %s" +msgstr "" + +#: dlltool.c:865 +msgid "Processed def file" +msgstr "" + +#: dlltool.c:890 +#, c-format +msgid "Syntax error in def file %s:%d\n" +msgstr "" + +#: dlltool.c:923 +#, c-format +msgid "NAME: %s base: %x" +msgstr "" + +#: dlltool.c:926 +msgid "Can't have LIBRARY and NAME\n" +msgstr "" + +#: dlltool.c:942 +#, c-format +msgid "LIBRARY: %s base: %x" +msgstr "" + +#: dlltool.c:945 +#, c-format +msgid "%s: Can't have LIBRARY and NAME\n" +msgstr "" + +#: dlltool.c:1200 resrc.c:271 +#, c-format +msgid "wait: %s" +msgstr "" + +#: dlltool.c:1205 resrc.c:276 +#, c-format +msgid "subprocess got fatal signal %d" +msgstr "" + +#: dlltool.c:1211 +#, c-format +msgid "%s exited with status %d\n" +msgstr "" + +#: dlltool.c:1243 +#, c-format +msgid "Sucking in info from %s section in %s\n" +msgstr "" + +#: dlltool.c:1367 +#, c-format +msgid "Excluding symbol: %s\n" +msgstr "" + +#: dlltool.c:1462 dlltool.c:1473 nm.c:904 nm.c:915 objdump.c:444 objdump.c:461 +#, c-format +msgid "%s: no symbols\n" +msgstr "" + +#. FIXME: we ought to read in and block out the base relocations +#: dlltool.c:1500 +#, c-format +msgid "Done reading %s\n" +msgstr "" + +#: dlltool.c:1511 +#, c-format +msgid "Unable to open object file: %s" +msgstr "" + +#: dlltool.c:1514 +#, c-format +msgid "Scanning object file %s" +msgstr "" + +#: dlltool.c:1529 +#, c-format +msgid "Cannot produce mcore-elf dll from archive file: %s" +msgstr "" + +#: dlltool.c:1621 +msgid "Adding exports to output file" +msgstr "" + +#: dlltool.c:1666 +msgid "Added exports to output file" +msgstr "" + +#: dlltool.c:1790 +#, c-format +msgid "Generating export file: %s\n" +msgstr "" + +#: dlltool.c:1795 +#, c-format +msgid "Unable to open temporary assembler file: %s" +msgstr "" + +#: dlltool.c:1798 +#, c-format +msgid "Opened temporary file: %s" +msgstr "" + +#: dlltool.c:2012 +msgid "Generated exports file" +msgstr "" + +#: dlltool.c:2267 +#, c-format +msgid "bfd_open failed open stub file: %s" +msgstr "" + +#: dlltool.c:2270 +#, c-format +msgid "Creating stub file: %s" +msgstr "" + +#: dlltool.c:2657 +#, c-format +msgid "failed to open temporary head file: %s" +msgstr "" + +#: dlltool.c:2716 +#, c-format +msgid "failed to open temporary tail file: %s" +msgstr "" + +#: dlltool.c:2784 +#, c-format +msgid "Can't open .lib file: %s" +msgstr "" + +#: dlltool.c:2787 +#, c-format +msgid "Creating library file: %s\n" +msgstr "" + +#: dlltool.c:2846 +#, c-format +msgid "cannot delete %s: %s\n" +msgstr "" + +#: dlltool.c:2850 +msgid "Created lib file" +msgstr "" + +#: dlltool.c:2955 +#, c-format +msgid "Warning, ignoring duplicate EXPORT %s %d,%d\n" +msgstr "" + +#: dlltool.c:2961 +#, c-format +msgid "Error, duplicate EXPORT with oridinals: %s" +msgstr "" + +#: dlltool.c:3088 +msgid "Processing definitions" +msgstr "" + +#: dlltool.c:3126 +msgid "Processed definitions" +msgstr "" + +#. xgetext:c-format +#: dlltool.c:3137 +#, c-format +msgid "Usage %s <options> <object-files>\n" +msgstr "" + +#. xgetext:c-format +#: dlltool.c:3139 +#, c-format +msgid "" +" -m --machine <machine> Create as DLL for <machine>. [default: %s]\n" +msgstr "" + +#: dlltool.c:3140 +msgid "" +" possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, " +"ppc, thumb\n" +msgstr "" + +#: dlltool.c:3141 +msgid " -e --output-exp <outname> Generate an export file.\n" +msgstr "" + +#: dlltool.c:3142 +msgid " -l --output-lib <outname> Generate an interface library.\n" +msgstr "" + +#: dlltool.c:3143 +msgid " -a --add-indirect Add dll indirects to export file.\n" +msgstr "" + +#: dlltool.c:3144 +msgid "" +" -D --dllname <name> Name of input dll to put into interface lib.\n" +msgstr "" + +#: dlltool.c:3145 +msgid " -d --input-def <deffile> Name of .def file to be read in.\n" +msgstr "" + +#: dlltool.c:3146 +msgid " -z --output-def <deffile> Name of .def file to be created.\n" +msgstr "" + +#: dlltool.c:3147 +msgid " --export-all-symbols Export all symbols to .def\n" +msgstr "" + +#: dlltool.c:3148 +msgid " --no-export-all-symbols Only export listed symbols\n" +msgstr "" + +#: dlltool.c:3149 +msgid " --exclude-symbols <list> Don't export <list>\n" +msgstr "" + +#: dlltool.c:3150 +msgid " --no-default-excludes Clear default exclude symbols\n" +msgstr "" + +#: dlltool.c:3151 +msgid " -b --base-file <basefile> Read linker generated base file.\n" +msgstr "" + +#: dlltool.c:3152 +msgid " -x --no-idata4 Don't generate idata$4 section.\n" +msgstr "" + +#: dlltool.c:3153 +msgid " -c --no-idata5 Don't generate idata$5 section.\n" +msgstr "" + +#: dlltool.c:3154 +msgid "" +" -U --add-underscore Add underscores to symbols in interface " +"library.\n" +msgstr "" + +#: dlltool.c:3155 +msgid " -k --kill-at Kill @<n> from exported names.\n" +msgstr "" + +#: dlltool.c:3156 +msgid " -A --add-stdcall-alias Add aliases without @<n>.\n" +msgstr "" + +#: dlltool.c:3157 +msgid " -S --as <name> Use <name> for assembler.\n" +msgstr "" + +#: dlltool.c:3158 +msgid " -f --as-flags <flags> Pass <flags> to the assembler.\n" +msgstr "" + +#: dlltool.c:3159 +msgid "" +" -C --compat-implib Create backward compatible import library.\n" +msgstr "" + +#: dlltool.c:3160 +msgid "" +" -n --no-delete Keep temp files (repeat for extra " +"preservation).\n" +msgstr "" + +#: dlltool.c:3161 +msgid " -v --verbose Be verbose.\n" +msgstr "" + +#: dlltool.c:3162 +msgid " -V --version Display the program version.\n" +msgstr "" + +#: dlltool.c:3163 +msgid " -h --help Display this information.\n" +msgstr "" + +#: dlltool.c:3165 +msgid "" +" -M --mcore-elf <outname> Process mcore-elf object files into <outname>.\n" +msgstr "" + +#: dlltool.c:3166 +msgid " -L --linker <name> Use <name> as the linker.\n" +msgstr "" + +#: dlltool.c:3167 +msgid " -F --linker-flags <flags> Pass <flags> to the linker.\n" +msgstr "" + +#: dlltool.c:3311 +#, c-format +msgid "Unable to open base-file: %s" +msgstr "" + +#: dlltool.c:3340 +#, c-format +msgid "Machine '%s' not supported" +msgstr "" + +#: dlltool.c:3443 dllwrap.c:215 +#, c-format +msgid "Tried file: %s" +msgstr "" + +#: dlltool.c:3450 dllwrap.c:222 +#, c-format +msgid "Using file: %s" +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:294 +#, 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:339 +#, c-format +msgid "%s: %s: invalid radix\n" +msgstr "" + +#: nm.c:365 +#, c-format +msgid "%s: %s: invalid output format\n" +msgstr "" + +#: nm.c:492 +#, c-format +msgid "%s: data size %ld\n" +msgstr "" + +#: nm.c:1283 +#, c-format +msgid "" +"\n" +"\n" +"Undefined symbols from %s:\n" +"\n" +msgstr "" + +#: nm.c:1285 +#, c-format +msgid "" +"\n" +"\n" +"Symbols from %s:\n" +"\n" +msgstr "" + +#: nm.c:1286 nm.c:1340 +msgid "" +"Name Value Class Type Size Line " +"Section\n" +"\n" +msgstr "" + +#: nm.c:1337 +#, c-format +msgid "" +"\n" +"\n" +"Undefined symbols from %s[%s]:\n" +"\n" +msgstr "" + +#: nm.c:1339 +#, c-format +msgid "" +"\n" +"\n" +"Symbols from %s[%s]:\n" +"\n" +msgstr "" + +#: nm.c:1510 +msgid "" +"\n" +"Archive index:\n" +msgstr "" + +#: objcopy.c:309 +#, c-format +msgid "Usage: %s <switches> in-file [out-file]\n" +msgstr "" + +#: objcopy.c:310 objcopy.c:368 +msgid " The switches are:\n" +msgstr "" + +#: objcopy.c:311 +msgid "" +" -I --input-target <bfdname> Assume input file is in format <bfdname>\n" +" -O --output-target <bfdname> Create an output file in format " +"<bfdname>\n" +" -F --target <bfdname> Set both input and output format to " +"<bfdname>\n" +" --debugging Convert debugging information, if " +"possible\n" +" -p --preserve-dates Copy modified/access timestamps to the " +"output\n" +" -j --only-section <name> Only copy section <name> into the output\n" +" -R --remove-section <name> Remove section <name> from the output\n" +" -S --strip-all Remove all symbol and relocation " +"information\n" +" -g --strip-debug Remove all debugging symbols\n" +" --strip-unneeded Remove all symbols not needed by " +"relocations\n" +" -N --strip-symbol <name> Do not copy symbol <name>\n" +" -K --keep-symbol <name> Only copy symbol <name>\n" +" -L --localize-symbol <name> Force symbol <name> to be marked as a " +"local\n" +" -W --weaken-symbol <name> Force symbol <name> to be marked as a " +"weak\n" +" --weaken Force all global symbols to be marked as " +"weak\n" +" -x --discard-all Remove all non-global symbols\n" +" -X --discard-locals Remove any compiler-generated symbols\n" +" -i --interleave <number> Only copy one out of every <number> " +"bytes\n" +" -b --byte <num> Select byte <num> in every interleaved " +"block\n" +" --gap-fill <val> Fill gaps between sections with <val>\n" +" --pad-to <addr> Pad the last section up to address " +"<addr>\n" +" --set-start <addr> Set the start address to <addr>\n" +" {--change-start|--adjust-start} <incr>\n" +" Add <incr> to the start address\n" +" {--change-addresses|--adjust-vma} <incr>\n" +" Add <incr> to LMA, VMA and start " +"addresses\n" +" {--change-section-address|--adjust-section-vma} <name>{=|+|-}<val>\n" +" Change LMA and VMA of section <name> by " +"<val>\n" +" --change-section-lma <name>{=|+|-}<val>\n" +" Change the LMA of section <name> by " +"<val>\n" +" --change-section-vma <name>{=|+|-}<val>\n" +" Change the VMA of section <name> by " +"<val>\n" +" {--[no-]change-warnings|--[no-]adjust-warnings}\n" +" Warn if a named section does not exist\n" +" --set-section-flags <name>=<flags>\n" +" Set section <name>'s properties to " +"<flags>\n" +" --add-section <name>=<file> Add section <name> found in <file> to " +"output\n" +" --change-leading-char Force output format's leading character " +"style\n" +" --remove-leading-char Remove leading character from global " +"symbols\n" +" --redefine-sym <old>=<new> Redefine symbol name <old> to <new>\n" +" -v --verbose List all object files modified\n" +" -V --version Display this program's version number\n" +" -h --help Display this output\n" +msgstr "" + +#: objcopy.c:367 +#, c-format +msgid "Usage: %s <switches> in-file(s)\n" +msgstr "" + +#: objcopy.c:369 +msgid "" +" -I --input-target <bfdname> Assume input file is in format <bfdname>\n" +" -O --output-target <bfdname> Create an output file in format " +"<bfdname>\n" +" -F --target <bfdname> Set both input and output format to " +"<bfdname>\n" +" -p --preserve-dates Copy modified/access timestamps to the " +"output\n" +" -R --remove-section <name> Remove section <name> from the output\n" +" -s --strip-all Remove all symbol and relocation " +"information\n" +" -g -S --strip-debug Remove all debugging symbols\n" +" --strip-unneeded Remove all symbols not needed by " +"relocations\n" +" -N --strip-symbol <name> Do not copy symbol <name>\n" +" -K --keep-symbol <name> Only copy symbol <name>\n" +" -x --discard-all Remove all non-global symbols\n" +" -X --discard-locals Remove any compiler-generated symbols\n" +" -v --verbose List all object files modified\n" +" -V --version Display this program's version number\n" +" -h --help Display this output\n" +" -o <file> Place stripped output into <file>\n" +msgstr "" + +#: objcopy.c:439 +#, c-format +msgid "unrecognized section flag `%s'" +msgstr "" + +#: objcopy.c:440 +#, c-format +msgid "supported flags: %s" +msgstr "" + +#: objcopy.c:692 +#, c-format +msgid "%s: Multiple redefinition of symbol \"%s\"" +msgstr "" + +#: objcopy.c:699 +#, c-format +msgid "%s: Symbol \"%s\" is target of more than one redefinition" +msgstr "" + +#: objcopy.c:753 +#, c-format +msgid "copy from %s(%s) to %s(%s)\n" +msgstr "" + +#: objcopy.c:772 +#, c-format +msgid "Warning: Output file cannot represent architecture %s" +msgstr "" + +#: objcopy.c:799 +#, c-format +msgid "can't create section `%s': %s" +msgstr "" + +#: objcopy.c:885 +#, c-format +msgid "Can't fill gap after %s: %s" +msgstr "" + +#: objcopy.c:910 +#, c-format +msgid "Can't add padding to %s: %s" +msgstr "" + +#: objcopy.c:1048 +#, c-format +msgid "%s: error copying private BFD data: %s" +msgstr "" + +#: objcopy.c:1082 +#, c-format +msgid "cannot mkdir %s for archive copying (error: %s)" +msgstr "" + +#: objcopy.c:1351 +#, c-format +msgid "%s: section `%s': error in %s: %s" +msgstr "" + +#: objcopy.c:1625 +#, c-format +msgid "%s: can't create debugging section: %s" +msgstr "" + +#: objcopy.c:1640 +#, c-format +msgid "%s: can't set debugging section contents: %s" +msgstr "" + +#: objcopy.c:1649 +#, c-format +msgid "%s: don't know how to write debugging information for %s" +msgstr "" + +#: objcopy.c:1754 +#, c-format +msgid "%s: cannot stat: %s" +msgstr "" + +#: objcopy.c:1804 +msgid "byte number must be non-negative" +msgstr "" + +#: objcopy.c:1810 +msgid "interleave must be positive" +msgstr "" + +#: objcopy.c:1830 objcopy.c:1838 +#, c-format +msgid "%s both copied and removed" +msgstr "" + +#: objcopy.c:1907 objcopy.c:1977 objcopy.c:2078 objcopy.c:2106 +#, c-format +msgid "bad format for %s" +msgstr "" + +#: objcopy.c:1910 +#, c-format +msgid "cannot stat: %s: %s" +msgstr "" + +#: objcopy.c:1928 +#, c-format +msgid "cannot open: %s: %s" +msgstr "" + +#: objcopy.c:1932 +#, c-format +msgid "%s: fread failed" +msgstr "" + +#: objcopy.c:2046 +#, c-format +msgid "Warning: truncating gap-fill from 0x%s to 0x%x" +msgstr "" + +#: objcopy.c:2140 +msgid "byte number must be less than interleave" +msgstr "" + +#: objcopy.c:2159 +#, c-format +msgid "Cannot stat: %s: %s" +msgstr "" + +#: objcopy.c:2199 objcopy.c:2213 +#, c-format +msgid "%s %s%c0x%s never used" +msgstr "" + +#: objdump.c:229 +#, c-format +msgid "Usage: %s <switches> file(s)\n" +msgstr "" + +#: objdump.c:230 +msgid " At least one of the following switches must be given:\n" +msgstr "" + +#: objdump.c:231 +msgid "" +" -a --archive-headers Display archive header information\n" +" -f --file-headers Display the contents of the overall file header\n" +" -p --private-headers Display object format specific file header " +"contents\n" +" -h --[section-]headers Display the contents of the section headers\n" +" -x --all-headers Display the contents of all headers\n" +" -d --disassemble Display assembler contents of executable " +"sections\n" +" -D --disassemble-all Display assembler contents of all sections\n" +" -S --source Intermix source code with disassembly\n" +" -s --full-contents Display the full contents of all sections " +"requested\n" +" -g --debugging Display debug information in object file\n" +" -G --stabs Display the STABS contents of an ELF format file\n" +" -t --syms Display the contents of the symbol table(s)\n" +" -T --dynamic-syms Display the contents of the dynamic symbol table\n" +" -r --reloc Display the relocation entries in the file\n" +" -R --dynamic-reloc Display the dynamic relocation entries in the " +"file\n" +" -V --version Display this program's version number\n" +" -i --info List object formats and architectures supported\n" +" -H --help Display this information\n" +msgstr "" + +#: objdump.c:253 +msgid "" +"\n" +" The following switches are optional:\n" +msgstr "" + +#: objdump.c:254 +msgid "" +" -b --target <bfdname> Specify the target object format as " +"<bfdname>\n" +" -m --architecture <machine> Specify the target architecture as " +"<machine>\n" +" -j --section <name> Only display information for section " +"<name>\n" +" -M --disassembler-options <o> Pass text <o> on to the disassembler\n" +" -EB --endian=big Assume big endian format when " +"disassembling\n" +" -EL --endian=little Assume little endian format when " +"disassembling\n" +" --file-start-context Include context from start of file (with " +"-S)\n" +" -l --line-numbers Include line numbers and filenames in " +"output\n" +" -C --demangle Decode mangled/processed symbol names\n" +" -w --wide Format output for more than 80 columns\n" +" -z --disassemble-zeroes Do not skip blocks of zeroes when " +"disassembling\n" +" --start-address <addr> Only process data whoes address is >= " +"<addr>\n" +" --stop-address <addr> Only process data whoes address is <= " +"<addr>\n" +" --prefix-addresses Print complete address alongside " +"disassembly\n" +" --[no-]show-raw-insn Display hex alongside symbolic disassembly\n" +" --adjust-vma <offset> Add <offset> to all displayed section " +"addresses\n" +"\n" +msgstr "" + +#: objdump.c:420 +msgid "Sections:\n" +msgstr "" + +#: objdump.c:423 +msgid "Idx Name Size VMA LMA File off Algn" +msgstr "" + +#: objdump.c:425 +msgid "" +"Idx Name Size VMA LMA File off " +"Algn" +msgstr "" + +#: objdump.c:429 +msgid " Flags" +msgstr "" + +#: objdump.c:479 +#, c-format +msgid "%s: %s: not a dynamic object\n" +msgstr "" + +#: objdump.c:496 +#, c-format +msgid "%s: %s: No dynamic symbols\n" +msgstr "" + +#: objdump.c:1200 +msgid "Out of virtual memory\n" +msgstr "" + +#: objdump.c:1611 +#, c-format +msgid "%s: Can't use supplied machine %s\n" +msgstr "" + +#: objdump.c:1632 +#, c-format +msgid "%s: Can't disassemble for architecture %s\n" +msgstr "" + +#: objdump.c:1709 +#, c-format +msgid "Disassembly of section %s:\n" +msgstr "" + +#: objdump.c:1883 +#, c-format +msgid "" +"No %s section present\n" +"\n" +msgstr "" + +#: objdump.c:1890 +#, c-format +msgid "%s: %s has no %s section\n" +msgstr "" + +#: objdump.c:1904 objdump.c:1916 +#, c-format +msgid "%s: Reading %s section of %s failed: %s\n" +msgstr "" + +#: objdump.c:1959 +#, c-format +msgid "" +"Contents of %s section:\n" +"\n" +msgstr "" + +#: objdump.c:2059 +#, c-format +msgid "architecture: %s, " +msgstr "" + +#: objdump.c:2062 +#, c-format +msgid "flags 0x%08x:\n" +msgstr "" + +#: objdump.c:2075 +msgid "" +"\n" +"start address 0x" +msgstr "" + +#: objdump.c:2107 +#, c-format +msgid "" +"\n" +"%s: file format %s\n" +msgstr "" + +#: objdump.c:2150 +#, c-format +msgid "%s: printing debugging information failed\n" +msgstr "" + +#: objdump.c:2227 +#, c-format +msgid "In archive %s:\n" +msgstr "" + +#: objdump.c:2279 +#, c-format +msgid "Contents of section %s:\n" +msgstr "" + +#: objdump.c:2788 +#, c-format +msgid "BFD header file version %s\n" +msgstr "" + +#: objdump.c:2861 +#, c-format +msgid "%s: unrecognized -E option\n" +msgstr "" + +#: objdump.c:2873 +#, 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:410 +msgid "Last stabs entries before error:\n" +msgstr "" + +#: readelf.c:303 readelf.c:329 +#, c-format +msgid "%s: Error: " +msgstr "" + +#: readelf.c:315 readelf.c:344 +#, c-format +msgid "%s: Warning: " +msgstr "" + +#: readelf.c:394 readelf.c:532 +#, c-format +msgid "Unhandled data length: %d\n" +msgstr "" + +#: readelf.c:591 +msgid "Don't know about relocations on this machine architecture\n" +msgstr "" + +#: readelf.c:631 readelf.c:660 readelf.c:692 readelf.c:720 +msgid "out of memory parsing relocs" +msgstr "" + +#: readelf.c:738 +msgid "" +" Offset Info Type Symbol's Value Symbol's Name " +"Addend\n" +msgstr "" + +#: readelf.c:741 +msgid " Offset Info Type Symbol's Value Symbol's Name\n" +msgstr "" + +#: readelf.c:885 readelf.c:887 +#, c-format +msgid "unrecognised: %-7lx" +msgstr "" + +#: readelf.c:912 +#, c-format +msgid "<string table index %3ld>" +msgstr "" + +#: readelf.c:1119 +#, c-format +msgid "Processor Specific: %lx" +msgstr "" + +#: readelf.c:1138 +#, c-format +msgid "Operating System specific: %lx" +msgstr "" + +#: readelf.c:1141 readelf.c:1506 +#, c-format +msgid "<unknown>: %lx" +msgstr "" + +#: readelf.c:1155 +msgid "NONE (None)" +msgstr "" + +#: readelf.c:1156 +msgid "REL (Relocatable file)" +msgstr "" + +#: readelf.c:1157 +msgid "EXEC (Executable file)" +msgstr "" + +#: readelf.c:1158 +msgid "DYN (Shared object file)" +msgstr "" + +#: readelf.c:1159 +msgid "CORE (Core file)" +msgstr "" + +#: readelf.c:1163 +#, c-format +msgid "Processor Specific: (%x)" +msgstr "" + +#: readelf.c:1165 +#, c-format +msgid "OS Specific: (%x)" +msgstr "" + +#: readelf.c:1167 readelf.c:1244 readelf.c:1638 +#, c-format +msgid "<unknown>: %x" +msgstr "" + +#: readelf.c:1180 +msgid "None" +msgstr "" + +#: readelf.c:1676 +msgid "Usage: readelf {options} elf-file(s)\n" +msgstr "" + +#: readelf.c:1677 +msgid " Options are:\n" +msgstr "" + +#: readelf.c:1678 +msgid " -a or --all Equivalent to: -h -l -S -s -r -d -V -A -I\n" +msgstr "" + +#: readelf.c:1679 +msgid " -h or --file-header Display the ELF file header\n" +msgstr "" + +#: readelf.c:1680 +msgid " -l or --program-headers or --segments\n" +msgstr "" + +#: readelf.c:1681 +msgid " Display the program headers\n" +msgstr "" + +#: readelf.c:1682 +msgid " -S or --section-headers or --sections\n" +msgstr "" + +#: readelf.c:1683 +msgid " Display the sections' header\n" +msgstr "" + +#: readelf.c:1684 +msgid " -e or --headers Equivalent to: -h -l -S\n" +msgstr "" + +#: readelf.c:1685 +msgid " -s or --syms or --symbols Display the symbol table\n" +msgstr "" + +#: readelf.c:1686 +msgid " -n or --notes Display the core notes (if present)\n" +msgstr "" + +#: readelf.c:1687 +msgid " -r or --relocs Display the relocations (if present)\n" +msgstr "" + +#: readelf.c:1688 +msgid " -d or --dynamic Display the dynamic segment (if present)\n" +msgstr "" + +#: readelf.c:1689 +msgid " -V or --version-info Display the version sections (if present)\n" +msgstr "" + +#: readelf.c:1690 +msgid "" +" -A or --arch-specific Display architecture specific information (if " +"any).\n" +msgstr "" + +#: readelf.c:1691 +msgid "" +" -D or --use-dynamic Use the dynamic section info when displaying " +"symbols\n" +msgstr "" + +#: readelf.c:1692 +msgid " -x <number> or --hex-dump=<number>\n" +msgstr "" + +#: readelf.c:1693 +msgid " Dump the contents of section <number>\n" +msgstr "" + +#: readelf.c:1694 +msgid " -w[liapr] or --debug-dump[=line,=info,=abbrev,=pubnames,=ranges]\n" +msgstr "" + +#: readelf.c:1695 +msgid "" +" Display the contents of DWARF2 debug sections\n" +msgstr "" + +#: readelf.c:1697 +msgid " -i <number> or --instruction-dump=<number>\n" +msgstr "" + +#: readelf.c:1698 +msgid "" +" Disassemble the contents of section <number>\n" +msgstr "" + +#: readelf.c:1700 +msgid " -I or --histogram Display histogram of bucket list lengths\n" +msgstr "" + +#: readelf.c:1701 +msgid " -v or --version Display the version number of readelf\n" +msgstr "" + +#: readelf.c:1702 +msgid " -H or --help Display this information\n" +msgstr "" + +#: readelf.c:1720 +msgid "Out of memory allocating dump request table." +msgstr "" + +#: readelf.c:1855 +#, c-format +msgid "Unrecognised debug option '%s'\n" +msgstr "" + +#: readelf.c:1880 +#, c-format +msgid "Invalid option '-%c'\n" +msgstr "" + +#: readelf.c:1893 +msgid "Nothing to do.\n" +msgstr "" + +#: readelf.c:1906 readelf.c:1923 readelf.c:3493 +msgid "none" +msgstr "" + +#: readelf.c:1907 +msgid "ELF32" +msgstr "" + +#: readelf.c:1908 +msgid "ELF64" +msgstr "" + +#: readelf.c:1910 readelf.c:1927 readelf.c:1946 +#, c-format +msgid "<unknown: %x>" +msgstr "" + +#: readelf.c:1924 +msgid "2's complement, little endian" +msgstr "" + +#: readelf.c:1925 +msgid "2's complement, big endian" +msgstr "" + +#: readelf.c:1940 +msgid "UNIX - System V" +msgstr "" + +#: readelf.c:1941 +msgid "UNIX - HP-UX" +msgstr "" + +#: readelf.c:1942 +msgid "UNIX - Linux" +msgstr "" + +#: readelf.c:1943 +msgid "Standalone App" +msgstr "" + +#: readelf.c:1944 +msgid "ARM" +msgstr "" + +#: readelf.c:1961 +msgid "Not an ELF file - it has the wrong magic bytes at the start\n" +msgstr "" + +#: readelf.c:1969 +msgid "ELF Header:\n" +msgstr "" + +#: readelf.c:1970 +msgid " Magic: " +msgstr "" + +#: readelf.c:1974 +#, c-format +msgid " Class: %s\n" +msgstr "" + +#: readelf.c:1976 +#, c-format +msgid " Data: %s\n" +msgstr "" + +#: readelf.c:1978 +#, c-format +msgid " Version: %d %s\n" +msgstr "" + +#: readelf.c:1985 +#, c-format +msgid " OS/ABI: %s\n" +msgstr "" + +#: readelf.c:1987 +#, c-format +msgid " ABI Version: %d\n" +msgstr "" + +#: readelf.c:1989 +#, c-format +msgid " Type: %s\n" +msgstr "" + +#: readelf.c:1991 +#, c-format +msgid " Machine: %s\n" +msgstr "" + +#: readelf.c:1993 +#, c-format +msgid " Version: 0x%lx\n" +msgstr "" + +#: readelf.c:1996 +msgid " Entry point address: " +msgstr "" + +#: readelf.c:1998 +msgid "" +"\n" +" Start of program headers: " +msgstr "" + +#: readelf.c:2000 +msgid "" +" (bytes into file)\n" +" Start of section headers: " +msgstr "" + +#: readelf.c:2002 +msgid " (bytes into file)\n" +msgstr "" + +#: readelf.c:2004 +#, c-format +msgid " Flags: 0x%lx%s\n" +msgstr "" + +#: readelf.c:2007 +#, c-format +msgid " Size of this header: %ld (bytes)\n" +msgstr "" + +#: readelf.c:2009 +#, c-format +msgid " Size of program headers: %ld (bytes)\n" +msgstr "" + +#: readelf.c:2011 +#, c-format +msgid " Number of program headers: %ld\n" +msgstr "" + +#: readelf.c:2013 +#, c-format +msgid " Size of section headers: %ld (bytes)\n" +msgstr "" + +#: readelf.c:2015 +#, c-format +msgid " Number of section headers: %ld\n" +msgstr "" + +#: readelf.c:2017 +#, c-format +msgid " Section header string table index: %ld\n" +msgstr "" + +#: readelf.c:2102 +msgid "" +"\n" +"There are no program headers in this file.\n" +msgstr "" + +#: readelf.c:2108 +#, c-format +msgid "" +"\n" +"Elf file type is %s\n" +msgstr "" + +#: readelf.c:2109 +msgid "Entry point " +msgstr "" + +#: readelf.c:2111 +#, c-format +msgid "" +"\n" +"There are %d program headers, starting at offset " +msgstr "" + +#: readelf.c:2122 readelf.c:2298 readelf.c:2340 readelf.c:2383 readelf.c:2424 +#: readelf.c:2932 readelf.c:2973 readelf.c:3149 readelf.c:4111 readelf.c:4125 +#: readelf.c:7023 readelf.c:7063 +msgid "Out of memory\n" +msgstr "" + +#: readelf.c:2140 +#, c-format +msgid "" +"\n" +"Program Header%s:\n" +msgstr "" + +#: readelf.c:2144 +msgid "" +" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n" +msgstr "" + +#: readelf.c:2148 +msgid " Type Offset VirtAddr PhysAddr\n" +msgstr "" + +#: readelf.c:2150 +msgid " FileSiz MemSiz Flags Align\n" +msgstr "" + +#: readelf.c:2208 +msgid "more than one dynamic segment\n" +msgstr "" + +#: readelf.c:2216 +msgid "Unable to find program interpreter name\n" +msgstr "" + +#: readelf.c:2223 +#, c-format +msgid "" +"\n" +" [Requesting program interpreter: %s]" +msgstr "" + +#: readelf.c:2241 +msgid "" +"\n" +" Section to Segment mapping:\n" +msgstr "" + +#: readelf.c:2242 +msgid " Segment Sections...\n" +msgstr "" + +#: readelf.c:2505 +msgid "" +"\n" +"There are no sections in this file.\n" +msgstr "" + +#: readelf.c:2511 +#, c-format +msgid "There are %d section headers, starting at offset 0x%lx:\n" +msgstr "" + +#: readelf.c:2551 +msgid "File contains multiple dynamic symbol tables\n" +msgstr "" + +#: readelf.c:2564 +msgid "File contains multiple dynamic string tables\n" +msgstr "" + +#: readelf.c:2591 +#, c-format +msgid "" +"\n" +"Section Header%s:\n" +msgstr "" + +#: readelf.c:2595 +msgid "" +" [Nr] Name Type Addr Off Size ES Flg Lk " +"Inf Al\n" +msgstr "" + +#: readelf.c:2598 +msgid " [Nr] Name Type Address Offset\n" +msgstr "" + +#: readelf.c:2599 +msgid " Size EntSize Flags Link Info Align\n" +msgstr "" + +#: readelf.c:2646 +msgid "" +"Key to Flags: W (write), A (alloc), X (execute), M (merge), S (strings)\n" +msgstr "" + +#: readelf.c:2647 +msgid "" +" I (info), L (link order), O (extra OS processing required)\n" +msgstr "" + +#: readelf.c:2648 +msgid " o (os specific), p (processor specific) x (unknown)\n" +msgstr "" + +#: readelf.c:2706 +#, c-format +msgid "" +"\n" +"Relocation section at offset 0x%lx contains %ld bytes:\n" +msgstr "" + +#: readelf.c:2713 +msgid "" +"\n" +"There are no dynamic relocations in this file.\n" +msgstr "" + +#: readelf.c:2741 +msgid "" +"\n" +"Relocation section " +msgstr "" + +#: readelf.c:2748 +#, c-format +msgid " at offset 0x%lx contains %lu entries:\n" +msgstr "" + +#: readelf.c:2776 +msgid "" +"\n" +"There are no relocations in this file.\n" +msgstr "" + +#: readelf.c:3026 +msgid "" +"\n" +"There is no dynamic segment in this file.\n" +msgstr "" + +#: readelf.c:3060 +msgid "Unable to seek to end of file!" +msgstr "" + +#: readelf.c:3069 +msgid "Unable to determine the number of symbols to load\n" +msgstr "" + +#: readelf.c:3099 +msgid "Unable to seek to end of file\n" +msgstr "" + +#: readelf.c:3105 +msgid "Unable to determine the length of the dynamic string table\n" +msgstr "" + +#: readelf.c:3166 +#, c-format +msgid "" +"\n" +"Dynamic segment at offset 0x%x contains %ld entries:\n" +msgstr "" + +#: readelf.c:3169 +msgid " Tag Type Name/Value\n" +msgstr "" + +#: readelf.c:3200 +msgid "Auxiliary library" +msgstr "" + +#: readelf.c:3202 +msgid "Filter library" +msgstr "" + +#: readelf.c:3218 readelf.c:3239 readelf.c:3265 +msgid "Flags:" +msgstr "" + +#: readelf.c:3220 readelf.c:3241 readelf.c:3267 +msgid " None\n" +msgstr "" + +#: readelf.c:3370 +#, c-format +msgid "Shared library: [%s]" +msgstr "" + +#: readelf.c:3373 +msgid " program interpreter" +msgstr "" + +#: readelf.c:3377 +#, c-format +msgid "Library soname: [%s]" +msgstr "" + +#: readelf.c:3381 +#, c-format +msgid "Library rpath: [%s]" +msgstr "" + +#: readelf.c:3442 +#, c-format +msgid "Not needed object: [%s]\n" +msgstr "" + +#: readelf.c:3539 +#, c-format +msgid "" +"\n" +"Version definition section '%s' contains %ld entries:\n" +msgstr "" + +#: readelf.c:3542 +msgid " Addr: 0x" +msgstr "" + +#: readelf.c:3544 readelf.c:3732 +#, c-format +msgid " Offset: %#08lx Link: %lx (%s)\n" +msgstr "" + +#: readelf.c:3574 +#, c-format +msgid " %#06x: Rev: %d Flags: %s" +msgstr "" + +#: readelf.c:3577 +#, c-format +msgid " Index: %d Cnt: %d " +msgstr "" + +#: readelf.c:3588 +#, c-format +msgid "Name: %s\n" +msgstr "" + +#: readelf.c:3590 +#, c-format +msgid "Name index: %ld\n" +msgstr "" + +#: readelf.c:3605 +#, c-format +msgid " %#06x: Parent %d: %s\n" +msgstr "" + +#: readelf.c:3608 +#, c-format +msgid " %#06x: Parent %d, name index: %ld\n" +msgstr "" + +#: readelf.c:3627 +#, c-format +msgid "" +"\n" +"Version needs section '%s' contains %ld entries:\n" +msgstr "" + +#: readelf.c:3630 +msgid " Addr: 0x" +msgstr "" + +#: readelf.c:3632 +#, c-format +msgid " Offset: %#08lx Link to section: %ld (%s)\n" +msgstr "" + +#: readelf.c:3658 +#, c-format +msgid " %#06x: Version: %d" +msgstr "" + +#: readelf.c:3661 +#, c-format +msgid " File: %s" +msgstr "" + +#: readelf.c:3663 +#, c-format +msgid " File: %lx" +msgstr "" + +#: readelf.c:3665 +#, c-format +msgid " Cnt: %d\n" +msgstr "" + +#: readelf.c:3683 +#, c-format +msgid " %#06x: Name: %s" +msgstr "" + +#: readelf.c:3686 +#, c-format +msgid " %#06x: Name index: %lx" +msgstr "" + +#: readelf.c:3689 +#, c-format +msgid " Flags: %s Version: %d\n" +msgstr "" + +#: readelf.c:3727 +#, c-format +msgid "" +"\n" +"Version symbols section '%s' contains %d entries:\n" +msgstr "" + +#: readelf.c:3730 +msgid " Addr: " +msgstr "" + +#: readelf.c:3760 +msgid " 0 (*local*) " +msgstr "" + +#: readelf.c:3764 +msgid " 1 (*global*) " +msgstr "" + +#: readelf.c:3986 +msgid "" +"\n" +"No version information found in this file.\n" +msgstr "" + +#: readelf.c:4004 readelf.c:4039 +#, c-format +msgid "<processor specific>: %d" +msgstr "" + +#: readelf.c:4006 readelf.c:4051 +#, c-format +msgid "<OS specific>: %d" +msgstr "" + +#: readelf.c:4008 readelf.c:4054 +#, c-format +msgid "<unknown>: %d" +msgstr "" + +#: readelf.c:4117 +msgid "Unable to read in dynamic data\n" +msgstr "" + +#: readelf.c:4159 +msgid "Unable to seek to start of dynamic information" +msgstr "" + +#: readelf.c:4165 +msgid "Failed to read in number of buckets\n" +msgstr "" + +#: readelf.c:4171 +msgid "Failed to read in number of chains\n" +msgstr "" + +#: readelf.c:4191 +msgid "" +"\n" +"Symbol table for image:\n" +msgstr "" + +#: readelf.c:4193 +msgid " Num Buc: Value Size Type Bind Vis Ndx Name\n" +msgstr "" + +#: readelf.c:4195 +msgid " Num Buc: Value Size Type Bind Vis Ndx Name\n" +msgstr "" + +#: readelf.c:4239 +#, c-format +msgid "" +"\n" +"Symbol table '%s' contains %lu entries:\n" +msgstr "" + +#: readelf.c:4243 +msgid " Num: Value Size Type Bind Vis Ndx Name\n" +msgstr "" + +#: readelf.c:4245 +msgid " Num: Value Size Type Bind Vis Ndx Name\n" +msgstr "" + +#: readelf.c:4354 +msgid "bad dynamic symbol" +msgstr "" + +#: readelf.c:4413 +msgid "" +"\n" +"Dynamic symbol information is not available for displaying symbols.\n" +msgstr "" + +#: readelf.c:4425 +#, c-format +msgid "" +"\n" +"Histogram for bucket list length (total of %d buckets):\n" +msgstr "" + +#: readelf.c:4427 +msgid " Length Number %% of total Coverage\n" +msgstr "" + +#: readelf.c:4432 readelf.c:4451 readelf.c:6704 readelf.c:6897 +msgid "Out of memory" +msgstr "" + +#: readelf.c:4500 +#, c-format +msgid "" +"\n" +"Dynamic info segment at offset 0x%lx contains %d entries:\n" +msgstr "" + +#: readelf.c:4503 +msgid " Num: Name BoundTo Flags\n" +msgstr "" + +#: readelf.c:4551 +#, c-format +msgid "" +"\n" +"Assembly dump of section %s\n" +msgstr "" + +#: readelf.c:4574 +#, c-format +msgid "" +"\n" +"Section '%s' has no data to dump.\n" +msgstr "" + +#: readelf.c:4579 +#, c-format +msgid "" +"\n" +"Hex dump of section '%s':\n" +msgstr "" + +#: readelf.c:4731 +msgid "badly formed extended line op encountered!" +msgstr "" + +#: readelf.c:4738 +#, c-format +msgid " Extended opcode %d: " +msgstr "" + +#: readelf.c:4743 +msgid "" +"End of Sequence\n" +"\n" +msgstr "" + +#: readelf.c:4749 +#, c-format +msgid "set Address to 0x%lx\n" +msgstr "" + +#: readelf.c:4754 +msgid " define new File Table entry\n" +msgstr "" + +#: readelf.c:4755 readelf.c:4877 +msgid " Entry\tDir\tTime\tSize\tName\n" +msgstr "" + +#: readelf.c:4757 +#, c-format +msgid " %d\t" +msgstr "" + +#: readelf.c:4760 readelf.c:4762 readelf.c:4764 readelf.c:4889 readelf.c:4891 +#: readelf.c:4893 +#, c-format +msgid "%lu\t" +msgstr "" + +#: readelf.c:4765 +#, c-format +msgid "" +"%s\n" +"\n" +msgstr "" + +#: readelf.c:4769 +#, c-format +msgid "UNKNOWN: length %d\n" +msgstr "" + +#: readelf.c:4795 +#, c-format +msgid "" +"\n" +"Dump of debug contents of section %s:\n" +"\n" +msgstr "" + +#: readelf.c:4807 +msgid "The line info appears to be corrupt - the section is too small\n" +msgstr "" + +#: readelf.c:4815 +msgid "Only DWARF version 2 line info is currently supported.\n" +msgstr "" + +#: readelf.c:4830 +#, c-format +msgid " Length: %ld\n" +msgstr "" + +#: readelf.c:4831 +#, c-format +msgid " DWARF Version: %d\n" +msgstr "" + +#: readelf.c:4832 +#, c-format +msgid " Prolgue Length: %d\n" +msgstr "" + +#: readelf.c:4833 +#, c-format +msgid " Minimum Instruction Length: %d\n" +msgstr "" + +#: readelf.c:4834 +#, c-format +msgid " Initial value of 'is_stmt': %d\n" +msgstr "" + +#: readelf.c:4835 +#, c-format +msgid " Line Base: %d\n" +msgstr "" + +#: readelf.c:4836 +#, c-format +msgid " Line Range: %d\n" +msgstr "" + +#: readelf.c:4837 +#, c-format +msgid " Opcode Base: %d\n" +msgstr "" + +#: readelf.c:4846 +msgid "" +"\n" +" Opcodes:\n" +msgstr "" + +#: readelf.c:4849 +#, c-format +msgid " Opcode %d has %d args\n" +msgstr "" + +#: readelf.c:4855 +msgid "" +"\n" +" The Directory Table is empty.\n" +msgstr "" + +#: readelf.c:4858 +msgid "" +"\n" +" The Directory Table:\n" +msgstr "" + +#: readelf.c:4862 +#, c-format +msgid " %s\n" +msgstr "" + +#: readelf.c:4873 +msgid "" +"\n" +" The File Name Table is empty.\n" +msgstr "" + +#: readelf.c:4876 +msgid "" +"\n" +" The File Name Table:\n" +msgstr "" + +#: readelf.c:4884 +#, c-format +msgid " %d\t" +msgstr "" + +#: readelf.c:4895 +#, c-format +msgid "%s\n" +msgstr "" + +#. Now display the statements. +#: readelf.c:4903 +msgid "" +"\n" +" Line Number Statements:\n" +msgstr "" + +#: readelf.c:4922 +msgid " Copy\n" +msgstr "" + +#: readelf.c:4929 +#, c-format +msgid " Advance PC by %d to %lx\n" +msgstr "" + +#: readelf.c:4937 +#, c-format +msgid " Advance Line by %d to %d\n" +msgstr "" + +#: readelf.c:4944 +#, c-format +msgid " Set File Name to entry %d in the File Name Table\n" +msgstr "" + +#: readelf.c:4952 +#, c-format +msgid " Set column to %d\n" +msgstr "" + +#: readelf.c:4959 +#, c-format +msgid " Set is_stmt to %d\n" +msgstr "" + +#: readelf.c:4964 +msgid " Set basic block\n" +msgstr "" + +#: readelf.c:4972 +#, c-format +msgid " Advance PC by constant %d to 0x%lx\n" +msgstr "" + +#: readelf.c:4980 +#, c-format +msgid " Advance PC by fixed size amount %d to 0x%lx\n" +msgstr "" + +#: readelf.c:4988 +#, c-format +msgid " Special opcode %d: advance Address by %d to 0x%lx" +msgstr "" + +#: readelf.c:4992 +#, c-format +msgid " and Line by %d to %d\n" +msgstr "" + +#: readelf.c:5015 readelf.c:5437 +#, c-format +msgid "" +"Contents of the %s section:\n" +"\n" +msgstr "" + +#: readelf.c:5034 +msgid "Only DWARF 2 pubnames are currently supported" +msgstr "" + +#: readelf.c:5038 +#, c-format +msgid " Length: %ld\n" +msgstr "" + +#: readelf.c:5040 +#, c-format +msgid " Version: %d\n" +msgstr "" + +#: readelf.c:5042 +#, c-format +msgid " Offset into .debug_info section: %ld\n" +msgstr "" + +#: readelf.c:5044 +#, c-format +msgid " Size of area in .debug_info section: %ld\n" +msgstr "" + +#: readelf.c:5047 +msgid "" +"\n" +" Offset\tName\n" +msgstr "" + +#: readelf.c:5129 +#, c-format +msgid "Unknown TAG value: %lx" +msgstr "" + +#: readelf.c:5224 +#, c-format +msgid "Unknown AT value: %lx" +msgstr "" + +#: readelf.c:5261 +#, c-format +msgid "Unknown FORM value: %lx" +msgstr "" + +#: readelf.c:5443 +msgid " Number TAG\n" +msgstr "" + +#: readelf.c:5449 +#, c-format +msgid " %ld %s [%s]\n" +msgstr "" + +#: readelf.c:5452 +msgid "has children" +msgstr "" + +#: readelf.c:5452 +msgid "no children" +msgstr "" + +#: readelf.c:5456 +#, c-format +msgid " %-18s %s\n" +msgstr "" + +#: readelf.c:5475 +#, c-format +msgid " %lu byte block: " +msgstr "" + +#: readelf.c:5939 +msgid "(User defined location op)" +msgstr "" + +#: readelf.c:5941 +msgid "(Unknown location op)" +msgstr "" + +#: readelf.c:6058 +#, c-format +msgid "Unable to handle FORM: %d" +msgstr "" + +#: readelf.c:6062 +#, c-format +msgid "Unrecognised form: %d" +msgstr "" + +#: readelf.c:6075 +msgid "(not inlined)" +msgstr "" + +#: readelf.c:6076 +msgid "(inlined)" +msgstr "" + +#: readelf.c:6077 +msgid "(declared as inline but ignored)" +msgstr "" + +#: readelf.c:6078 +msgid "(declared as inline and inlined)" +msgstr "" + +#: readelf.c:6079 +#, c-format +msgid " (Unknown inline attribute value: %lx)" +msgstr "" + +#: readelf.c:6209 readelf.c:6333 +#, c-format +msgid "" +"The section %s contains:\n" +"\n" +msgstr "" + +#: readelf.c:6231 +msgid "Only version 2 DWARF debug information is currently supported.\n" +msgstr "" + +#: readelf.c:6235 +msgid " Compilation Unit:\n" +msgstr "" + +#: readelf.c:6236 +#, c-format +msgid " Length: %ld\n" +msgstr "" + +#: readelf.c:6237 +#, c-format +msgid " Version: %d\n" +msgstr "" + +#: readelf.c:6238 +#, c-format +msgid " Abbrev Offset: %ld\n" +msgstr "" + +#: readelf.c:6239 +#, c-format +msgid " Pointer Size: %d\n" +msgstr "" + +#: readelf.c:6259 +msgid "Unable to locate .debug_abbrev section!\n" +msgstr "" + +#: readelf.c:6299 +#, c-format +msgid "Unable to locate entry %lu in the abbreviation table\n" +msgstr "" + +#: readelf.c:6304 +#, c-format +msgid " <%d><%x>: Abbrev Number: %lu (%s)\n" +msgstr "" + +#: readelf.c:6352 +#, c-format +msgid " Length: %ld\n" +msgstr "" + +#: readelf.c:6353 +#, c-format +msgid " Version: %d\n" +msgstr "" + +#: readelf.c:6354 +#, c-format +msgid " Offset into .debug_info: %lx\n" +msgstr "" + +#: readelf.c:6355 +#, c-format +msgid " Pointer Size: %d\n" +msgstr "" + +#: readelf.c:6356 +#, c-format +msgid " Segment Size: %d\n" +msgstr "" + +#: readelf.c:6358 +msgid "" +"\n" +" Address Length\n" +msgstr "" + +#: readelf.c:6399 +#, c-format +msgid "Displaying the debug contents of section %s is not yet supported.\n" +msgstr "" + +#: readelf.c:6461 +#, c-format +msgid "" +"\n" +"Section '%s' has no debugging data.\n" +msgstr "" + +#: readelf.c:6477 +#, c-format +msgid "Unrecognised debug section: %s\n" +msgstr "" + +#: readelf.c:6549 +msgid "Some sections were not dumped because they do not exist!\n" +msgstr "" + +#: readelf.c:6728 +#, c-format +msgid "" +"\n" +"Section '%s' contains %d entries:\n" +msgstr "" + +#: readelf.c:6890 +msgid "conflict list with without table" +msgstr "" + +#: readelf.c:6918 +#, c-format +msgid "" +"\n" +"Section '.conflict' contains %d entries:\n" +msgstr "" + +#: readelf.c:6919 +msgid " Num: Index Value Name" +msgstr "" + +#: readelf.c:6944 +msgid "NT_PRSTATUS (prstatus structure)" +msgstr "" + +#: readelf.c:6945 +msgid "NT_FPREGSET (floating point registers)" +msgstr "" + +#: readelf.c:6946 +msgid "NT_PRPSINFO (prpsinfo structure)" +msgstr "" + +#: readelf.c:6947 +msgid "NT_TASKSTRUCT (task structure)" +msgstr "" + +#: readelf.c:6948 +msgid "NT_PRXFPREG (user_xfpregs structure)" +msgstr "" + +#: readelf.c:6949 +msgid "NT_PSTATUS (pstatus structure)" +msgstr "" + +#: readelf.c:6950 +msgid "NT_FPREGS (floating point registers)" +msgstr "" + +#: readelf.c:6951 +msgid "NT_PSINFO (psinfo structure)" +msgstr "" + +#: readelf.c:6952 +msgid "NT_LWPSTATUS (lwpstatus_t structure)" +msgstr "" + +#: readelf.c:6953 +msgid "NT_LWPSINFO (lwpsinfo_t structure)" +msgstr "" + +#: readelf.c:6954 +msgid "NT_WIN32PSTATUS (win32_pstatus strcuture)" +msgstr "" + +#: readelf.c:6956 +#, c-format +msgid "Unknown note type: (0x%08x)" +msgstr "" + +#: readelf.c:6994 +#, c-format +msgid "" +"\n" +"Notes at offset 0x%08lx with length 0x%08lx:\n" +msgstr "" + +#: readelf.c:6997 +msgid " Owner\t\tData size\tDescription\n" +msgstr "" + +#: readelf.c:7108 +msgid "No note segments present in the core file.\n" +msgstr "" + +#: readelf.c:7186 +msgid "This instance of readelf has been built without support for a\n" +msgstr "" + +#: readelf.c:7187 +msgid "64 bit data type and so it cannot read 64 bit ELF files.\n" +msgstr "" + +#: readelf.c:7222 +#, c-format +msgid "Cannot stat input file %s.\n" +msgstr "" + +#: readelf.c:7229 +#, c-format +msgid "Input file %s not found.\n" +msgstr "" + +#: readelf.c:7235 +#, c-format +msgid "%s: Failed to read file header\n" +msgstr "" + +#: readelf.c:7249 +#, c-format +msgid "" +"\n" +"File: %s\n" +msgstr "" + +#: rename.c:131 +#, c-format +msgid "%s: cannot set time: %s" +msgstr "" + +#. We have to clean up here. +#: rename.c:170 rename.c:203 +#, c-format +msgid "%s: rename: %s" +msgstr "" + +#: rename.c:211 +#, 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:740 +msgid "can't get BFD_RELOC_RVA relocation type" +msgstr "" + +#: resrc.c:240 resrc.c:312 +#, c-format +msgid "can't open temporary file `%s': %s" +msgstr "" + +#: resrc.c:246 +#, c-format +msgid "can't redirect stdout: `%s': %s" +msgstr "" + +#: resrc.c:262 +#, c-format +msgid "%s %s: %s" +msgstr "" + +#: resrc.c:283 +#, c-format +msgid "%s exited with status %d" +msgstr "" + +#: resrc.c:308 +#, c-format +msgid "can't execute `%s': %s" +msgstr "" + +#: resrc.c:317 +#, c-format +msgid "Using temporary file `%s' to read preprocessor output\n" +msgstr "" + +#: resrc.c:324 +#, c-format +msgid "can't popen `%s': %s" +msgstr "" + +#: resrc.c:326 +msgid "Using popen to read preprocessor output\n" +msgstr "" + +#: resrc.c:369 +#, c-format +msgid "Tried `%s'\n" +msgstr "" + +#: resrc.c:380 +#, c-format +msgid "Using `%s'\n" +msgstr "" + +#: resrc.c:544 +#, c-format +msgid "%s:%d: %s\n" +msgstr "" + +#: resrc.c:553 +#, c-format +msgid "%s: unexpected EOF" +msgstr "" + +#: resrc.c:610 +#, c-format +msgid "%s: read of %lu returned %lu" +msgstr "" + +#: resrc.c:652 resrc.c:883 resrc.c:1156 resrc.c:1310 +#, c-format +msgid "stat failed on bitmap file `%s': %s" +msgstr "" + +#: resrc.c:705 +#, c-format +msgid "cursor file `%s' does not contain cursor data" +msgstr "" + +#: resrc.c:737 resrc.c:1027 +#, c-format +msgid "%s: fseek to %lu failed: %s" +msgstr "" + +#: resrc.c:996 +#, c-format +msgid "icon file `%s' does not contain icon data" +msgstr "" + +#: resrc.c:1515 +#, 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:1769 +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:1861 +msgid "missing index type" +msgstr "" + +#: stabs.c:2188 +msgid "unknown virtual character for baseclass" +msgstr "" + +#: stabs.c:2206 +msgid "unknown visibility character for baseclass" +msgstr "" + +#: stabs.c:2398 +msgid "unnamed $vb type" +msgstr "" + +#: stabs.c:2404 +msgid "unrecognized C++ abbreviation" +msgstr "" + +#: stabs.c:2484 +msgid "unknown visibility character for field" +msgstr "" + +#: stabs.c:2740 +msgid "const/volatile indicator missing" +msgstr "" + +#: stabs.c:2980 +#, c-format +msgid "No mangling for \"%s\"\n" +msgstr "" + +#: stabs.c:3293 +msgid "Undefined N_EXCL" +msgstr "" + +#: stabs.c:3381 +#, c-format +msgid "Type file number %d out of range\n" +msgstr "" + +#: stabs.c:3386 +#, c-format +msgid "Type index number %d out of range\n" +msgstr "" + +#: stabs.c:3473 +#, c-format +msgid "Unrecognized XCOFF type %d\n" +msgstr "" + +#: stabs.c:3772 +#, c-format +msgid "bad mangled name `%s'\n" +msgstr "" + +#: stabs.c:3868 +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:237 +#, c-format +msgid "can't open %s `%s': %s" +msgstr "" + +#: windres.c:416 +msgid ": expected to be a directory\n" +msgstr "" + +#: windres.c:428 +msgid ": expected to be a leaf\n" +msgstr "" + +#: windres.c:437 +#, c-format +msgid "%s: warning: " +msgstr "" + +#: windres.c:439 +msgid ": duplicate value\n" +msgstr "" + +#: windres.c:602 +#, c-format +msgid "%s: unknown format type `%s'\n" +msgstr "" + +#: windres.c:603 +#, c-format +msgid "%s: supported formats:" +msgstr "" + +#. Otherwise, we give up. +#: windres.c:690 +#, c-format +msgid "can not determine type of file `%s'; use the -I option" +msgstr "" + +#: windres.c:704 +#, c-format +msgid "Usage: %s [options] [input-file] [output-file]\n" +msgstr "" + +#: windres.c:706 +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" +" -DSYM[=VAL], --define SYM[=VAL]\n" +" Define SYM when preprocessing rc file\n" +" -v Verbose - tells you what it's doing\n" +" --language VAL Set language when reading rc file\n" +" --use-temp-file Use a temporary file instead of popen to read\n" +" the preprocessor output\n" +" --no-use-temp-file Use popen (default)\n" +msgstr "" + +#: windres.c:725 +msgid " --yydebug Turn on parser debugging\n" +msgstr "" + +#: windres.c:728 +msgid "" +" --help Print this help message\n" +" --version Print version information\n" +msgstr "" + +#: windres.c:731 +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:980 +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 "" |