OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /or1k/trunk/insight/bfd/po
    from Rev 578 to Rev 1765
    Reverse comparison

Rev 578 → Rev 1765

/Make-in
0,0 → 1,290
# 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 SRC-POTFILES.in BLD-POTFILES.in $(PACKAGE).pot \
stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)
 
# Note - the following line gets processed by bfd/configure and amended
# to contain the full list of source dir POTFILES.
SRC-POTFILES = \
 
# Note - the following line gets processed by bfd/configure and amended
# to contain the full list of build dir POTFILES.
BLD-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: $(SRC-POTFILES) $(BLD-POTFILES)
$(XGETTEXT) --default-domain=$(PACKAGE) \
--directory=$(top_srcdir) \
--add-comments --keyword=_ --keyword=N_ \
--files-from=$(srcdir)/SRC-POTFILES.in
$(XGETTEXT) --default-domain=$(PACKAGE) \
--directory=.. \
--directory=. \
--add-comments --keyword=_ --keyword=N_ \
--join-existing \
--files-from=$(srcdir)/BLD-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 *.mo *.msg *.cat *.cat.m
rm -f SRC-POTFILES BLD-POTFILES SRC-POTFILES.in BLD-POTFILES.in
 
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
 
SRC-POTFILES: SRC-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 $@ )
 
BLD-POTFILES: BLD-POTFILES.in
( rm -f $@-t $@ \
&& (sed -e '/^#/d' \
-e '/^[ ]*$$/d' \
-e "s@.*@ ../& \\\\@" < $(srcdir)/$@.in \
| sed -e '$$s/\\$$//') > $@-t \
&& chmod a-w $@-t \
&& mv $@-t $@ )
 
SRC-POTFILES.in: @MAINT@ ../Makefile
cd .. && $(MAKE) po/SRC-POTFILES.in
 
BLD-POTFILES.in: @MAINT@ ../Makefile
cd .. && $(MAKE) po/BLD-POTFILES.in
 
# Note - The presence of SRC-POTFILES and BLD-POTFILES as dependencies
# here breaks the implementation of the 'distclean' rule for maintainers.
# This is because if 'make distclean' is run in the BFD directory, the
# Makefile there will be deleted before 'distclean' is made here, and so
# the dependency SRC-POTFILES -> SRC-POTFILES.in -> ../Makefile cannot
# be satisfied.
#
# The SRC-POTFILES and BLD-POTFILES dependencies cannot be removed,
# however since it is necessary that these files be built during
# *configure* time, so that configure can insert them into the
# po/Makefile that it is creating, so that the Makefile will have
# the correct dependencies.
Makefile: Make-in ../config.status SRC-POTFILES BLD-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:
Make-in Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: bfd.pot =================================================================== --- bfd.pot (nonexistent) +++ bfd.pot (revision 1765) @@ -0,0 +1,2412 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2001-06-13 12:48+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING\n" + +#: aout-adobe.c:189 +#, c-format +msgid "%s: Unknown section type in a.out.adobe file: %x\n" +msgstr "" + +#: aout-cris.c:207 +#, c-format +msgid "%s: Invalid relocation type exported: %d" +msgstr "" + +#: aout-cris.c:251 +#, c-format +msgid "%s: Invalid relocation type imported: %d" +msgstr "" + +#: aout-cris.c:262 +#, c-format +msgid "%s: Bad relocation record imported: %d" +msgstr "" + +#: aoutx.h:1265 aoutx.h:1679 +#, c-format +msgid "%s: can not represent section `%s' in a.out object file format" +msgstr "" + +#: aoutx.h:1649 +#, c-format +msgid "" +"%s: can not represent section for symbol `%s' in a.out object file format" +msgstr "" + +#: aoutx.h:1651 +msgid "*unknown*" +msgstr "" + +#: aoutx.h:3688 +#, c-format +msgid "%s: relocateable link from %s to %s not supported" +msgstr "" + +#: archive.c:1821 +msgid "Warning: writing archive was slow: rewriting timestamp\n" +msgstr "" + +#: archive.c:2087 +msgid "Reading archive file mod timestamp" +msgstr "" + +#. FIXME: bfd can't call perror. +#: archive.c:2114 +msgid "Writing updated armap timestamp" +msgstr "" + +#: bfd.c:273 +msgid "No error" +msgstr "" + +#: bfd.c:274 +msgid "System call error" +msgstr "" + +#: bfd.c:275 +msgid "Invalid bfd target" +msgstr "" + +#: bfd.c:276 +msgid "File in wrong format" +msgstr "" + +#: bfd.c:277 +msgid "Invalid operation" +msgstr "" + +#: bfd.c:278 +msgid "Memory exhausted" +msgstr "" + +#: bfd.c:279 +msgid "No symbols" +msgstr "" + +#: bfd.c:280 +msgid "Archive has no index; run ranlib to add one" +msgstr "" + +#: bfd.c:281 +msgid "No more archived files" +msgstr "" + +#: bfd.c:282 +msgid "Malformed archive" +msgstr "" + +#: bfd.c:283 +msgid "File format not recognized" +msgstr "" + +#: bfd.c:284 +msgid "File format is ambiguous" +msgstr "" + +#: bfd.c:285 +msgid "Section has no contents" +msgstr "" + +#: bfd.c:286 +msgid "Nonrepresentable section on output" +msgstr "" + +#: bfd.c:287 +msgid "Symbol needs debug section which does not exist" +msgstr "" + +#: bfd.c:288 +msgid "Bad value" +msgstr "" + +#: bfd.c:289 +msgid "File truncated" +msgstr "" + +#: bfd.c:290 +msgid "File too big" +msgstr "" + +#: bfd.c:291 +msgid "#" +msgstr "" + +#: bfd.c:675 +#, c-format +msgid "bfd assertion fail %s:%d" +msgstr "" + +#: bfd.c:693 +#, c-format +msgid "BFD internal error, aborting at %s line %d in %s\n" +msgstr "" + +#: bfd.c:697 +#, c-format +msgid "BFD internal error, aborting at %s line %d\n" +msgstr "" + +#: bfd.c:699 +msgid "Please report this bug.\n" +msgstr "" + +#: binary.c:315 +#, c-format +msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx." +msgstr "" + +#: coff-rs6000.c:2517 coff64-rs6000.c:1074 +#, c-format +msgid "%s: unsupported relocation type 0x%02x" +msgstr "" + +#: coff-rs6000.c:2563 coff64-rs6000.c:1120 +#, c-format +msgid "%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry" +msgstr "" + +#: coff-rs6000.c:2809 coff64-rs6000.c:1955 +#, c-format +msgid "%s: symbol `%s' has unrecognized smclas %d" +msgstr "" + +#: coff-a29k.c:123 +msgid "Missing IHCONST" +msgstr "" + +#: coff-a29k.c:183 +msgid "Missing IHIHALF" +msgstr "" + +#: coff-a29k.c:215 +msgid "Unrecognized reloc" +msgstr "" + +#: coff-a29k.c:427 +msgid "missing IHCONST reloc" +msgstr "" + +#: coff-a29k.c:518 +msgid "missing IHIHALF reloc" +msgstr "" + +#: coff-alpha.c:881 coff-alpha.c:918 +msgid "GP relative relocation used when GP not defined" +msgstr "" + +#: coff-alpha.c:1487 elf64-alpha.c:4045 +msgid "using multiple gp values" +msgstr "" + +#: coff-alpha.c:1993 coff-mips.c:1434 +msgid "GP relative relocation when GP not defined" +msgstr "" + +#: coff-arm.c:1019 elf32-arm.h:246 +#, c-format +msgid "%s: unable to find THUMB glue '%s' for `%s'" +msgstr "" + +#: coff-arm.c:1048 elf32-arm.h:281 +#, c-format +msgid "%s: unable to find ARM glue '%s' for `%s'" +msgstr "" + +#: coff-arm.c:1342 coff-arm.c:1437 elf32-arm.h:841 elf32-arm.h:946 +#, c-format +msgid "%s(%s): warning: interworking not enabled." +msgstr "" + +#: coff-arm.c:1346 elf32-arm.h:949 +#, c-format +msgid " first occurrence: %s: arm call to thumb" +msgstr "" + +#: coff-arm.c:1441 elf32-arm.h:844 +#, c-format +msgid " first occurrence: %s: thumb call to arm" +msgstr "" + +#: coff-arm.c:1444 +msgid " consider relinking with --support-old-code enabled" +msgstr "" + +#: coff-arm.c:1732 coff-tic80.c:682 cofflink.c:2992 +#, c-format +msgid "%s: bad reloc address 0x%lx in section `%s'" +msgstr "" + +#: coff-arm.c:2069 +#, c-format +msgid "%s: illegal symbol index in reloc: %d" +msgstr "" + +#: coff-arm.c:2197 +#, c-format +msgid "%s: ERROR: compiled for APCS-%d whereas target %s uses APCS-%d" +msgstr "" + +#: coff-arm.c:2212 +#, c-format +msgid "" +"%s: ERROR: passes floats in float registers whereas target %s uses integer " +"registers" +msgstr "" + +#: coff-arm.c:2215 +#, c-format +msgid "" +"%s: ERROR: passes floats in integer registers whereas target %s uses float " +"registers" +msgstr "" + +#: coff-arm.c:2230 +#, c-format +msgid "" +"%s: ERROR: compiled as position independent code, whereas target %s is " +"absolute position" +msgstr "" + +#: coff-arm.c:2233 +#, c-format +msgid "" +"%s: ERROR: compiled as absolute position code, whereas target %s is position " +"independent" +msgstr "" + +#: coff-arm.c:2262 +#, c-format +msgid "Warning: input file %s supports interworking, whereas %s does not." +msgstr "" + +#: coff-arm.c:2265 +#, c-format +msgid "Warning: input file %s does not support interworking, whereas %s does." +msgstr "" + +#: coff-arm.c:2292 +#, c-format +msgid "private flags = %x:" +msgstr "" + +#: coff-arm.c:2300 elf32-arm.h:2234 +msgid " [floats passed in float registers]" +msgstr "" + +#: coff-arm.c:2302 +msgid " [floats passed in integer registers]" +msgstr "" + +#: coff-arm.c:2305 elf32-arm.h:2237 +msgid " [position independent]" +msgstr "" + +#: coff-arm.c:2307 +msgid " [absolute position]" +msgstr "" + +#: coff-arm.c:2311 +msgid " [interworking flag not initialised]" +msgstr "" + +#: coff-arm.c:2313 +msgid " [interworking supported]" +msgstr "" + +#: coff-arm.c:2315 +msgid " [interworking not supported]" +msgstr "" + +#: coff-arm.c:2363 +#, c-format +msgid "" +"Warning: Not setting interworking flag of %s, since it has already been " +"specified as non-interworking" +msgstr "" + +#: coff-arm.c:2367 +#, c-format +msgid "Warning: Clearing the interworking flag of %s due to outside request" +msgstr "" + +#: coffcode.h:1073 +#, c-format +msgid "%s (%s): Section flag %s (0x%x) ignored" +msgstr "" + +#: coffcode.h:2180 +#, c-format +msgid "Unrecognized TI COFF target id '0x%x'" +msgstr "" + +#: coffcode.h:4252 +#, c-format +msgid "%s: warning: illegal symbol index %ld in line numbers" +msgstr "" + +#: coffcode.h:4266 +#, c-format +msgid "%s: warning: duplicate line number information for `%s'" +msgstr "" + +#: coffcode.h:4626 +#, c-format +msgid "%s: Unrecognized storage class %d for %s symbol `%s'" +msgstr "" + +#: coffcode.h:4757 +#, c-format +msgid "warning: %s: local symbol `%s' has no section" +msgstr "" + +#: coff-tic54x.c:376 coffcode.h:4868 +#, c-format +msgid "%s: warning: illegal symbol index %ld in relocs" +msgstr "" + +#: coffcode.h:4906 +#, c-format +msgid "%s: illegal relocation type %d at address 0x%lx" +msgstr "" + +#: coffgen.c:1640 +#, c-format +msgid "%s: bad string table size %lu" +msgstr "" + +#: coffgen.c:2110 +#, c-format +msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" +msgstr "" + +#: coff-i960.c:136 coff-i960.c:485 +msgid "uncertain calling convention for non-COFF symbol" +msgstr "" + +#: cofflink.c:527 elflink.h:1651 +#, c-format +msgid "Warning: type of symbol `%s' changed from %d to %d in %s" +msgstr "" + +#: cofflink.c:2290 +#, c-format +msgid "%s: relocs in section `%s', but it has no contents" +msgstr "" + +#: cofflink.c:2629 coffswap.h:895 +#, c-format +msgid "%s: %s: reloc overflow: 0x%lx > 0xffff" +msgstr "" + +#: cofflink.c:2638 coffswap.h:881 +#, c-format +msgid "%s: warning: %s: line number overflow: 0x%lx > 0xffff" +msgstr "" + +#: coff-m68k.c:475 coff-mips.c:2432 elf32-m68k.c:2272 +msgid "unsupported reloc type" +msgstr "" + +#: coff-mips.c:875 elf32-mips.c:1435 +msgid "GP relative relocation when _gp not defined" +msgstr "" + +#. No other sections should appear in -membedded-pic +#. code. +#: coff-mips.c:2469 +msgid "reloc against unsupported section" +msgstr "" + +#: coff-mips.c:2477 +msgid "reloc not properly aligned" +msgstr "" + +#: coff-tic54x.c:263 coff-tic80.c:445 +#, c-format +msgid "Unrecognized reloc type 0x%x" +msgstr "" + +#: coff-w65.c:369 +#, c-format +msgid "ignoring reloc %s\n" +msgstr "" + +#: dwarf2.c:424 +msgid "Dwarf Error: Can't find .debug_abbrev section." +msgstr "" + +#: dwarf2.c:442 +#, c-format +msgid "" +"Dwarf Error: Abbrev offset (%u) greater than or equal to abbrev size (%u)." +msgstr "" + +#: dwarf2.c:625 +#, c-format +msgid "Dwarf Error: Invalid or unhandled FORM value: %d." +msgstr "" + +#: dwarf2.c:698 +msgid "Dwarf Error: mangled line number section (bad file number)." +msgstr "" + +#: dwarf2.c:783 +msgid "Dwarf Error: Can't find .debug_line section." +msgstr "" + +#: dwarf2.c:807 +#, c-format +msgid "Dwarf Error: Line offset (%u) greater than or equal to line size (%u)." +msgstr "" + +#: dwarf2.c:974 +msgid "Dwarf Error: mangled line number section." +msgstr "" + +#: dwarf2.c:1153 dwarf2.c:1307 +#, c-format +msgid "Dwarf Error: Could not find abbrev number %d." +msgstr "" + +#: dwarf2.c:1268 +#, c-format +msgid "" +"Dwarf Error: found dwarf version '%hu', this reader only handles version 2 " +"information." +msgstr "" + +#: dwarf2.c:1275 +#, c-format +msgid "" +"Dwarf Error: found address size '%u', this reader can not handle sizes " +"greater than '%u'." +msgstr "" + +#: dwarf2.c:1298 +#, c-format +msgid "Dwarf Error: Bad abbrev number: %d." +msgstr "" + +#: ecoff.c:1323 +#, c-format +msgid "Unknown basic type %d" +msgstr "" + +#: ecoff.c:1592 +#, c-format +msgid "" +"\n" +" End+1 symbol: %ld" +msgstr "" + +#: ecoff.c:1599 ecoff.c:1602 +#, c-format +msgid "" +"\n" +" First symbol: %ld" +msgstr "" + +#: ecoff.c:1614 +#, c-format +msgid "" +"\n" +" End+1 symbol: %-7ld Type: %s" +msgstr "" + +#: ecoff.c:1621 +#, c-format +msgid "" +"\n" +" Local symbol: %ld" +msgstr "" + +#: ecoff.c:1629 +#, c-format +msgid "" +"\n" +" struct; End+1 symbol: %ld" +msgstr "" + +#: ecoff.c:1634 +#, c-format +msgid "" +"\n" +" union; End+1 symbol: %ld" +msgstr "" + +#: ecoff.c:1639 +#, c-format +msgid "" +"\n" +" enum; End+1 symbol: %ld" +msgstr "" + +#: ecoff.c:1645 +#, c-format +msgid "" +"\n" +" Type: %s" +msgstr "" + +#: elf32-arm.h:1191 +#, c-format +msgid "%s: Warning: Arm BLX instruction targets Arm function '%s'." +msgstr "" + +#: elf32-arm.h:1387 +#, c-format +msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." +msgstr "" + +#: elf-hppa.h:1369 elf-hppa.h:1402 elf32-arm.h:1877 elf32-ppc.c:3093 +#: elf32-s390.c:1442 elf32-sh.c:3107 elf64-s390.c:1431 elf64-x86-64.c:1296 +#, c-format +msgid "" +"%s: warning: unresolvable relocation against symbol `%s' from %s section" +msgstr "" + +#: elf-m10200.c:451 elf-m10300.c:663 elf32-arm.h:1951 elf32-avr.c:842 +#: elf32-cris.c:1335 elf32-d10v.c:478 elf32-fr30.c:648 elf32-i860.c:1049 +#: elf32-m32r.c:1266 elf32-openrisc.c:449 elf32-v850.c:1681 +msgid "internal error: out of range error" +msgstr "" + +#: elf-m10200.c:455 elf-m10300.c:667 elf32-arm.h:1955 elf32-avr.c:846 +#: elf32-cris.c:1339 elf32-d10v.c:482 elf32-fr30.c:652 elf32-i860.c:1053 +#: elf32-m32r.c:1270 elf32-mips.c:7049 elf32-openrisc.c:453 elf32-v850.c:1685 +msgid "internal error: unsupported relocation error" +msgstr "" + +#: elf-m10200.c:459 elf-m10300.c:671 elf32-arm.h:1959 elf32-d10v.c:486 +#: elf32-m32r.c:1274 +msgid "internal error: dangerous error" +msgstr "" + +#: elf-m10200.c:463 elf-m10300.c:675 elf32-arm.h:1963 elf32-avr.c:854 +#: elf32-cris.c:1347 elf32-d10v.c:490 elf32-fr30.c:660 elf32-i860.c:1061 +#: elf32-m32r.c:1278 elf32-openrisc.c:461 elf32-v850.c:1705 +msgid "internal error: unknown error" +msgstr "" + +#: elf32-arm.h:1991 +#, c-format +msgid "" +"Warning: Not setting interwork flag of %s since it has already been " +"specified as non-interworking" +msgstr "" + +#: elf32-arm.h:1995 +#, c-format +msgid "Warning: Clearing the interwork flag of %s due to outside request" +msgstr "" + +#: elf32-arm.h:2043 +#, c-format +msgid "" +"Warning: Clearing the interwork flag in %s because non-interworking code in " +"%s has been linked with it" +msgstr "" + +#: elf32-arm.h:2137 +#, c-format +msgid "" +"Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" +msgstr "" + +#: elf32-arm.h:2151 +#, c-format +msgid "Error: %s compiled for APCS-%d, whereas %s is compiled for APCS-%d" +msgstr "" + +#: elf32-arm.h:2162 +#, c-format +msgid "" +"Error: %s passes floats in %s registers, whereas %s passes them in %s " +"registers" +msgstr "" + +#: elf32-arm.h:2165 elf32-arm.h:2167 +msgid "float" +msgstr "" + +#: elf32-arm.h:2165 elf32-arm.h:2167 +msgid "integer" +msgstr "" + +#: elf32-arm.h:2174 +#, c-format +msgid "Error: %s uses %s floating point, whereas %s uses %s floating point" +msgstr "" + +#: elf32-arm.h:2177 elf32-arm.h:2179 +msgid "soft" +msgstr "" + +#: elf32-arm.h:2177 elf32-arm.h:2179 +msgid "hard" +msgstr "" + +#: elf32-arm.h:2186 +#, c-format +msgid "Warning: %s %s interworking, whereas %s %s" +msgstr "" + +#: elf32-arm.h:2189 +msgid "supports" +msgstr "" + +#: elf32-arm.h:2189 +msgid "does not support" +msgstr "" + +#: elf32-arm.h:2191 +msgid "does" +msgstr "" + +#: elf32-arm.h:2191 +msgid "does not" +msgstr "" + +#. Ignore init flag - it may not be set, despite the flags field +#. containing valid data. +#: elf32-arm.h:2217 elf32-cris.c:2968 elf32-m68k.c:430 elf32-mips.c:2721 +#, c-format +msgid "private flags = %lx:" +msgstr "" + +#: elf32-arm.h:2226 +msgid " [interworking enabled]" +msgstr "" + +#: elf32-arm.h:2229 +msgid " [APCS-26]" +msgstr "" + +#: elf32-arm.h:2231 +msgid " [APCS-32]" +msgstr "" + +#: elf32-arm.h:2240 +msgid " [new ABI]" +msgstr "" + +#: elf32-arm.h:2243 +msgid " [old ABI]" +msgstr "" + +#: elf32-arm.h:2246 +msgid " [software FP]" +msgstr "" + +#: elf32-arm.h:2253 +msgid " [Version1 EABI]" +msgstr "" + +#: elf32-arm.h:2256 elf32-arm.h:2267 +msgid " [sorted symbol table]" +msgstr "" + +#: elf32-arm.h:2258 elf32-arm.h:2269 +msgid " [unsorted symbol table]" +msgstr "" + +#: elf32-arm.h:2264 +msgid " [Version2 EABI]" +msgstr "" + +#: elf32-arm.h:2272 +msgid " [dynamic symbols use segment index]" +msgstr "" + +#: elf32-arm.h:2275 +msgid " [mapping symbols precede others]" +msgstr "" + +#: elf32-arm.h:2282 +msgid " " +msgstr "" + +#: elf32-arm.h:2289 +msgid " [relocatable executable]" +msgstr "" + +#: elf32-arm.h:2292 +msgid " [has entry point]" +msgstr "" + +#: elf32-arm.h:2297 +msgid "" +msgstr "" + +#: elf32-avr.c:850 elf32-cris.c:1343 elf32-fr30.c:656 elf32-i860.c:1057 +#: elf32-openrisc.c:457 elf32-v850.c:1689 +msgid "internal error: dangerous relocation" +msgstr "" + +#: elf32-cris.c:874 +#, c-format +msgid "%s(%s): unresolvable relocation %s against symbol `%s' from %s section" +msgstr "" + +#: elf32-cris.c:882 +#, c-format +msgid "%s: unresolvable relocation %s against symbol `%s' from %s section" +msgstr "" + +#: elf32-cris.c:945 +#, c-format +msgid "" +"%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" +msgstr "" + +#: elf32-cris.c:948 elf32-cris.c:1075 +msgid "[whose name is lost]" +msgstr "" + +#: elf32-cris.c:1064 +#, c-format +msgid "" +"%s: relocation %s with non-zero addend %d against local symbol from %s " +"section" +msgstr "" + +#: elf32-cris.c:1071 +#, c-format +msgid "" +"%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" +msgstr "" + +#: elf32-cris.c:1089 +#, c-format +msgid "" +"%s: relocation %s is not allowed for global symbol: `%s' from %s section" +msgstr "" + +#: elf32-cris.c:1207 +#, c-format +msgid "%s: Internal inconsistency; no relocation section %s" +msgstr "" + +#: elf32-cris.c:2469 +#, c-format +msgid "" +"%s(%s), section %s:\n" +" relocation %s should not be used in a shared object; recompile with -fPIC" +msgstr "" + +#: elf32-cris.c:2476 +#, c-format +msgid "" +"%s, section %s:\n" +" relocation %s should not be used in a shared object; recompile with -fPIC" +msgstr "" + +#: elf32-cris.c:2971 +msgid " [symbols have a _ prefix]" +msgstr "" + +#: elf32-cris.c:3010 +#, c-format +msgid "%s: uses _-prefixed symbols, but writing file with non-prefixed symbols" +msgstr "" + +#: elf32-cris.c:3011 +#, c-format +msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols" +msgstr "" + +#: elf32-gen.c:76 elf64-gen.c:76 +#, c-format +msgid "%s(%s): Relocations in generic ELF (EM: %d)" +msgstr "" + +#: elf32-gen.c:81 elf64-gen.c:81 +#, c-format +msgid "%s: Relocations in generic ELF (EM: %d)" +msgstr "" + +#: elf32-hppa.c:633 +#, c-format +msgid "%s(%s+0x%lx): cannot find stub entry %s" +msgstr "" + +#: elf32-hppa.c:694 +#, c-format +msgid "%s: cannot create stub entry %s" +msgstr "" + +#: elf32-hppa.c:888 +#, c-format +msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" +msgstr "" + +#: elf32-hppa.c:901 elf32-hppa.c:1615 +#, c-format +msgid "Could not find relocation section for %s" +msgstr "" + +#: elf32-hppa.c:1046 elf32-hppa.c:3510 +#, c-format +msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" +msgstr "" + +#: elf32-hppa.c:1386 +#, c-format +msgid "" +"%s: relocation %s can not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" + +#: elf32-hppa.c:1406 +#, c-format +msgid "" +"%s: relocation %s should not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" + +#: elf32-hppa.c:2811 +#, c-format +msgid "%s: duplicate export stub %s" +msgstr "" + +#: elf32-hppa.c:3394 +#, c-format +msgid "%s(%s+0x%lx): fixing %s" +msgstr "" + +#: elf32-hppa.c:4032 +#, c-format +msgid "%s(%s+0x%lx): cannot handle %s for %s" +msgstr "" + +#: elf32-hppa.c:4355 +msgid ".got section not immediately after .plt section" +msgstr "" + +#: elf32-i386.c:280 +#, c-format +msgid "%s: invalid relocation type %d" +msgstr "" + +#: elf32-i386.c:577 +#, c-format +msgid "%s(%s): bad symbol index: %d" +msgstr "" + +#: elf32-i386.c:582 +#, c-format +msgid "%s: bad symbol index: %d" +msgstr "" + +#: elf32-i386.c:735 elf32-i386.c:1759 +#, c-format +msgid "%s(%s): bad relocation section name `%s'" +msgstr "" + +#: elf32-i386.c:740 elf32-i386.c:1764 +#, c-format +msgid "%s: bad relocation section name `%s'" +msgstr "" + +#: elf32-i386.c:1562 +#, c-format +msgid "%s(%s+0x%lx): unresolvable relocation against symbol `%s'" +msgstr "" + +#: elf32-m32r.c:917 +msgid "SDA relocation when _SDA_BASE_ not defined" +msgstr "" + +#: elf32-ia64.c:3416 elf32-m32r.c:1001 elf32-ppc.c:2960 elf64-ia64.c:3416 +#, c-format +msgid "%s: unknown relocation type %d" +msgstr "" + +#: elf32-m32r.c:1209 +#, c-format +msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)" +msgstr "" + +#: elf32-m32r.c:2011 +#, c-format +msgid "%s: Instruction set mismatch with previous modules" +msgstr "" + +#: elf32-m32r.c:2034 +#, c-format +msgid "private flags = %lx" +msgstr "" + +#: elf32-m32r.c:2039 +msgid ": m32r instructions" +msgstr "" + +#: elf32-m32r.c:2040 +msgid ": m32rx instructions" +msgstr "" + +#: elf32-m68k.c:433 +msgid " [cpu32]" +msgstr "" + +#: elf32-mcore.c:364 elf32-mcore.c:490 +#, c-format +msgid "%s: Relocation %s (%d) is not currently supported.\n" +msgstr "" + +#: elf32-mcore.c:449 +#, c-format +msgid "%s: Unknown relocation type %d\n" +msgstr "" + +#: elf32-mips.c:1594 +msgid "32bits gp relative relocation occurs for an external symbol" +msgstr "" + +#: elf32-mips.c:1743 +#, c-format +msgid "Linking mips16 objects into %s format is not supported" +msgstr "" + +#: elf32-mips.c:2608 +#, c-format +msgid "%s: linking PIC files with non-PIC files" +msgstr "" + +#: elf32-mips.c:2618 +#, c-format +msgid "%s: linking abicalls files with non-abicalls files" +msgstr "" + +#: elf32-mips.c:2647 +#, c-format +msgid "%s: ISA mismatch (-mips%d) with previous modules (-mips%d)" +msgstr "" + +#: elf32-mips.c:2656 +#, c-format +msgid "%s: ISA mismatch (%d) with previous modules (%d)" +msgstr "" + +#: elf32-mips.c:2679 +#, c-format +msgid "%s: ABI mismatch: linking %s module with previous %s modules" +msgstr "" + +#: elf32-mips.c:2693 elf32-ppc.c:1478 elf64-sparc.c:2997 +#, c-format +msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)" +msgstr "" + +#: elf32-mips.c:2724 +msgid " [abi=O32]" +msgstr "" + +#: elf32-mips.c:2726 +msgid " [abi=O64]" +msgstr "" + +#: elf32-mips.c:2728 +msgid " [abi=EABI32]" +msgstr "" + +#: elf32-mips.c:2730 +msgid " [abi=EABI64]" +msgstr "" + +#: elf32-mips.c:2732 +msgid " [abi unknown]" +msgstr "" + +#: elf32-mips.c:2734 +msgid " [abi=N32]" +msgstr "" + +#: elf32-mips.c:2736 +msgid " [abi=64]" +msgstr "" + +#: elf32-mips.c:2738 +msgid " [no abi set]" +msgstr "" + +#: elf32-mips.c:2741 +msgid " [mips1]" +msgstr "" + +#: elf32-mips.c:2743 +msgid " [mips2]" +msgstr "" + +#: elf32-mips.c:2745 +msgid " [mips3]" +msgstr "" + +#: elf32-mips.c:2747 +msgid " [mips4]" +msgstr "" + +#: elf32-mips.c:2749 +msgid " [mips5]" +msgstr "" + +#: elf32-mips.c:2751 +msgid " [mips32]" +msgstr "" + +#: elf32-mips.c:2753 +msgid " [mips64]" +msgstr "" + +#: elf32-mips.c:2755 +msgid " [unknown ISA]" +msgstr "" + +#: elf32-mips.c:2758 +msgid " [32bitmode]" +msgstr "" + +#: elf32-mips.c:2760 +msgid " [not 32bitmode]" +msgstr "" + +#: elf32-mips.c:4428 +msgid "static procedure (no name)" +msgstr "" + +#: elf32-mips.c:5045 elf64-alpha.c:4418 +#, c-format +msgid "%s: illegal section name `%s'" +msgstr "" + +#: elf32-mips.c:5610 +msgid "not enough GOT space for local GOT entries" +msgstr "" + +#: elf32-mips.c:6726 +#, c-format +msgid "%s: %s+0x%lx: jump to stub routine which is not jal" +msgstr "" + +#: elf32-mips.c:7715 +#, c-format +msgid "Malformed reloc detected for section %s" +msgstr "" + +#: elf32-mips.c:7792 +#, c-format +msgid "%s: CALL16 reloc at 0x%lx not against global symbol" +msgstr "" + +#: elf32-ppc.c:1444 +#, c-format +msgid "" +"%s: compiled with -mrelocatable and linked with modules compiled normally" +msgstr "" + +#: elf32-ppc.c:1452 +#, c-format +msgid "" +"%s: compiled normally and linked with modules compiled with -mrelocatable" +msgstr "" + +#: elf32-ppc.c:1576 +#, c-format +msgid "%s: Unknown special linker type %d" +msgstr "" + +#: elf32-ppc.c:2242 elf32-ppc.c:2276 elf32-ppc.c:2311 +#, c-format +msgid "%s: relocation %s cannot be used when making a shared object" +msgstr "" + +#: elf32-ppc.c:3126 +#, c-format +msgid "%s: unknown relocation type %d for symbol %s" +msgstr "" + +#: elf32-ppc.c:3490 elf32-ppc.c:3511 elf32-ppc.c:3561 +#, c-format +msgid "" +"%s: The target (%s) of a %s relocation is in the wrong output section (%s)" +msgstr "" + +#: elf32-ppc.c:3627 +#, c-format +msgid "%s: Relocation %s is not yet supported for symbol %s." +msgstr "" + +#: elf32-sh.c:1085 +#, c-format +msgid "%s: 0x%lx: warning: bad R_SH_USES offset" +msgstr "" + +#: elf32-sh.c:1097 +#, c-format +msgid "%s: 0x%lx: warning: R_SH_USES points to unrecognized insn 0x%x" +msgstr "" + +#: elf32-sh.c:1114 +#, c-format +msgid "%s: 0x%lx: warning: bad R_SH_USES load offset" +msgstr "" + +#: elf32-sh.c:1129 +#, c-format +msgid "%s: 0x%lx: warning: could not find expected reloc" +msgstr "" + +#: elf32-sh.c:1166 +#, c-format +msgid "%s: 0x%lx: warning: symbol in unexpected section" +msgstr "" + +#: elf32-sh.c:1288 +#, c-format +msgid "%s: 0x%lx: warning: could not find expected COUNT reloc" +msgstr "" + +#: elf32-sh.c:1297 +#, c-format +msgid "%s: 0x%lx: warning: bad count" +msgstr "" + +#: elf32-sh.c:1690 elf32-sh.c:2077 +#, c-format +msgid "%s: 0x%lx: fatal: reloc overflow while relaxing" +msgstr "" + +#: elf32-sh.c:3171 +#, c-format +msgid "%s: 0x%lx: fatal: unaligned branch target for relax-support relocation" +msgstr "" + +#: elf32-sparc.c:1519 elf64-sparc.c:2263 +#, c-format +msgid "%s: probably compiled without -fPIC?" +msgstr "" + +#: elf32-sparc.c:1976 +#, c-format +msgid "%s: compiled for a 64 bit system and target is 32 bit" +msgstr "" + +#: elf32-sparc.c:1990 +#, c-format +msgid "%s: linking little endian files with big endian files" +msgstr "" + +#: elf32-v850.c:675 +#, c-format +msgid "Variable `%s' cannot occupy in multiple small data regions" +msgstr "" + +#: elf32-v850.c:678 +#, c-format +msgid "" +"Variable `%s' can only be in one of the small, zero, and tiny data regions" +msgstr "" + +#: elf32-v850.c:681 +#, c-format +msgid "" +"Variable `%s' cannot be in both small and zero data regions simultaneously" +msgstr "" + +#: elf32-v850.c:684 +#, c-format +msgid "" +"Variable `%s' cannot be in both small and tiny data regions simultaneously" +msgstr "" + +#: elf32-v850.c:687 +#, c-format +msgid "" +"Variable `%s' cannot be in both zero and tiny data regions simultaneously" +msgstr "" + +#: elf32-v850.c:1064 +msgid "FAILED to find previous HI16 reloc\n" +msgstr "" + +#: elf32-v850.c:1693 +msgid "could not locate special linker symbol __gp" +msgstr "" + +#: elf32-v850.c:1697 +msgid "could not locate special linker symbol __ep" +msgstr "" + +#: elf32-v850.c:1701 +msgid "could not locate special linker symbol __ctbp" +msgstr "" + +#: elf32-v850.c:1890 +#, c-format +msgid "%s: Architecture mismatch with previous modules" +msgstr "" + +#: elf32-v850.c:1909 +#, c-format +msgid "private flags = %lx: " +msgstr "" + +#: elf32-v850.c:1914 +msgid "v850 architecture" +msgstr "" + +#: elf32-v850.c:1915 +msgid "v850e architecture" +msgstr "" + +#: elf32-v850.c:1916 +msgid "v850ea architecture" +msgstr "" + +#: elf64-alpha.c:986 +msgid "GPDISP relocation did not find ldah and lda instructions" +msgstr "" + +#: elf64-alpha.c:3055 +#, c-format +msgid "%s: .got subsegment exceeds 64K (size %d)" +msgstr "" + +#: elf64-hppa.c:2032 +#, c-format +msgid "stub entry for %s cannot load .plt, dp offset = %ld" +msgstr "" + +#: elf64-sparc.c:1249 +#, c-format +msgid "%s: check_relocs: unhandled reloc type %d" +msgstr "" + +#: elf64-sparc.c:1286 +msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" +msgstr "" + +#: elf64-sparc.c:1306 +msgid "" +"Register %%g%d used incompatibly: previously declared in %s to %s, in %s " +"redefined to %s" +msgstr "" + +#: elf64-sparc.c:1329 +#, c-format +msgid "Symbol `%s' has differing types: previously %s, REGISTER in %s" +msgstr "" + +#: elf64-sparc.c:1375 +#, c-format +msgid "Symbol `%s' has differing types: REGISTER in %s, %s in %s" +msgstr "" + +#: elf64-sparc.c:2978 +#, c-format +msgid "%s: linking UltraSPARC specific with HAL specific code" +msgstr "" + +#: elf.c:330 +#, c-format +msgid "%s: invalid string offset %u >= %lu for section `%s'" +msgstr "" + +#: elf.c:590 +msgid "" +"\n" +"Program Header:\n" +msgstr "" + +#: elf.c:638 +msgid "" +"\n" +"Dynamic Section:\n" +msgstr "" + +#: elf.c:767 +msgid "" +"\n" +"Version definitions:\n" +msgstr "" + +#: elf.c:790 +msgid "" +"\n" +"Version References:\n" +msgstr "" + +#: elf.c:795 +#, c-format +msgid " required from %s:\n" +msgstr "" + +#: elf.c:1385 +#, c-format +msgid "%s: invalid link %lu for reloc section %s (index %u)" +msgstr "" + +#: elf.c:2146 +#, c-format +msgid "" +"creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = " +"0x%.8lx\n" +msgstr "" + +#: elf.c:2749 +#, c-format +msgid "%s: Not enough room for program headers (allocated %u, need %u)" +msgstr "" + +#: elf.c:2848 +#, c-format +msgid "%s: Not enough room for program headers, try linking with -N" +msgstr "" + +#: elf.c:2974 +#, c-format +msgid "Error: First section in segment (%s) starts at 0x%x" +msgstr "" + +#: elf.c:2977 +#, c-format +msgid " whereas segment starts at 0x%x" +msgstr "" + +#: elf.c:3250 +#, c-format +msgid "%s: warning: allocated section `%s' not in segment" +msgstr "" + +#: elf.c:3655 +#, c-format +msgid "%s: symbol `%s' required but not present" +msgstr "" + +#: elf.c:3664 +#, c-format +msgid "" +"elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = " +"0x%.8lx%s\n" +msgstr "" + +#: elf.c:3905 +#, c-format +msgid "%s: warning: Empty loadable segment detected\n" +msgstr "" + +#: elf.c:5290 +#, c-format +msgid "%s: unsupported relocation type %s" +msgstr "" + +#: elfcode.h:1085 +#, c-format +msgid "%s: version count (%ld) does not match symbol count (%ld)" +msgstr "" + +#: elflink.c:431 +#, c-format +msgid "%s: Section %s is already to large to put hole of %ld bytes in" +msgstr "" + +#: elflink.h:1468 +#, c-format +msgid "%s: %s: invalid version %u (max %d)" +msgstr "" + +#: elflink.h:1509 +#, c-format +msgid "%s: %s: invalid needed version %d" +msgstr "" + +#: elflink.h:1629 +#, c-format +msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s" +msgstr "" + +#: elflink.h:1875 +#, c-format +msgid "%s: warning: unexpected redefinition of `%s'" +msgstr "" + +#: elflink.h:3676 +#, c-format +msgid "warning: type and size of dynamic symbol `%s' are not defined" +msgstr "" + +#: elflink.h:3948 +#, c-format +msgid "%s: undefined versioned symbol name %s" +msgstr "" + +#: elflink.h:4169 elflink.h:4177 elflink.h:5480 elflink.h:6420 +msgid "Error: out of memory" +msgstr "" + +#: elflink.h:5258 +#, c-format +msgid "%s: could not find output section %s for input section %s" +msgstr "" + +#: elflink.h:5661 +#, c-format +msgid "%s: invalid section symbol index 0x%x (%s) ingored" +msgstr "" + +#: i386linux.c:450 m68klinux.c:454 sparclinux.c:452 +#, c-format +msgid "Output file requires shared library `%s'\n" +msgstr "" + +#: i386linux.c:458 m68klinux.c:462 sparclinux.c:460 +#, c-format +msgid "Output file requires shared library `%s.so.%s'\n" +msgstr "" + +#: i386linux.c:646 i386linux.c:696 m68klinux.c:653 m68klinux.c:701 +#: sparclinux.c:649 sparclinux.c:699 +#, c-format +msgid "Symbol %s not defined for fixups\n" +msgstr "" + +#: i386linux.c:720 m68klinux.c:725 sparclinux.c:723 +msgid "Warning: fixup count mismatch\n" +msgstr "" + +#: ieee.c:168 +#, c-format +msgid "%s: string too long (%d chars, max 65535)" +msgstr "" + +#: ieee.c:298 +#, c-format +msgid "%s: unrecognized symbol `%s' flags 0x%x" +msgstr "" + +#: ieee.c:794 +#, c-format +msgid "%s: unimplemented ATI record %u for symbol %u" +msgstr "" + +#: ieee.c:819 +#, c-format +msgid "%s: unexpected ATN type %d in external part" +msgstr "" + +#: ieee.c:841 +#, c-format +msgid "%s: unexpected type after ATN" +msgstr "" + +#: ihex.c:259 +#, c-format +msgid "%s:%d: unexpected character `%s' in Intel Hex file\n" +msgstr "" + +#: ihex.c:369 +#, c-format +msgid "%s:%d: bad checksum in Intel Hex file (expected %u, found %u)" +msgstr "" + +#: ihex.c:421 +#, c-format +msgid "%s:%d: bad extended address record length in Intel Hex file" +msgstr "" + +#: ihex.c:438 +#, c-format +msgid "%s:%d: bad extended start address length in Intel Hex file" +msgstr "" + +#: ihex.c:455 +#, c-format +msgid "%s:%d: bad extended linear address record length in Intel Hex file" +msgstr "" + +#: ihex.c:472 +#, c-format +msgid "%s:%d: bad extended linear start address length in Intel Hex file" +msgstr "" + +#: ihex.c:489 +#, c-format +msgid "%s:%d: unrecognized ihex type %u in Intel Hex file\n" +msgstr "" + +#: ihex.c:609 +#, c-format +msgid "%s: internal error in ihex_read_section" +msgstr "" + +#: ihex.c:644 +#, c-format +msgid "%s: bad section length in ihex_read_section" +msgstr "" + +#: ihex.c:858 +#, c-format +msgid "%s: address 0x%s out of range for Intex Hex file" +msgstr "" + +#: libbfd.c:473 +#, c-format +msgid "not mapping: data=%lx mapped=%d\n" +msgstr "" + +#: libbfd.c:476 +msgid "not mapping: env var not set\n" +msgstr "" + +#: libbfd.c:1371 +#, c-format +msgid "%s: compiled for a big endian system and target is little endian" +msgstr "" + +#: libbfd.c:1373 +#, c-format +msgid "%s: compiled for a little endian system and target is big endian" +msgstr "" + +#: linker.c:1808 +#, c-format +msgid "%s: indirect symbol `%s' to `%s' is a loop" +msgstr "" + +#: linker.c:2693 +#, c-format +msgid "Attempt to do relocateable link with %s input and %s output" +msgstr "" + +#: merge.c:883 +#, c-format +msgid "%s: access beyond end of merged section (%ld + %ld)" +msgstr "" + +#: oasys.c:1016 +#, c-format +msgid "%s: can not represent section `%s' in oasys" +msgstr "" + +#: osf-core.c:146 +#, c-format +msgid "Unhandled OSF/1 core file section type %d\n" +msgstr "" + +#. XXX code yet to be written. +#: peicode.h:796 +#, c-format +msgid "%s: Unhandled import type; %x" +msgstr "" + +#: peicode.h:801 +#, c-format +msgid "%s: Unrecognised import type; %x" +msgstr "" + +#: peicode.h:815 +#, c-format +msgid "%s: Unrecognised import name type; %x" +msgstr "" + +#: peicode.h:1172 +#, c-format +msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive" +msgstr "" + +#: peicode.h:1184 +#, c-format +msgid "" +"%s: Recognised but unhandled machine type (0x%x) in Import Library Format " +"archive" +msgstr "" + +#: peicode.h:1201 +#, c-format +msgid "%s: size field is zero in Import Library Format header" +msgstr "" + +#: peicode.h:1229 +#, c-format +msgid "%s: string not null terminated in ILF object file." +msgstr "" + +#: pe-mips.c:654 +#, c-format +msgid "%s: `ld -r' not supported with PE MIPS objects\n" +msgstr "" + +#: pe-mips.c:816 +#, c-format +msgid "%s: jump too far away\n" +msgstr "" + +#: pe-mips.c:843 +#, c-format +msgid "%s: bad pair/reflo after refhi\n" +msgstr "" + +#: ppcboot.c:423 +msgid "" +"\n" +"ppcboot header:\n" +msgstr "" + +#: ppcboot.c:424 +#, c-format +msgid "Entry offset = 0x%.8lx (%ld)\n" +msgstr "" + +#: ppcboot.c:425 +#, c-format +msgid "Length = 0x%.8lx (%ld)\n" +msgstr "" + +#: ppcboot.c:428 +#, c-format +msgid "Flag field = 0x%.2x\n" +msgstr "" + +#: ppcboot.c:434 +#, c-format +msgid "Partition name = \"%s\"\n" +msgstr "" + +#: ppcboot.c:453 +#, c-format +msgid "" +"\n" +"Partition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgstr "" + +#: ppcboot.c:459 +#, c-format +msgid "Partition[%d] end = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgstr "" + +#: ppcboot.c:465 +#, c-format +msgid "Partition[%d] sector = 0x%.8lx (%ld)\n" +msgstr "" + +#: ppcboot.c:466 +#, c-format +msgid "Partition[%d] length = 0x%.8lx (%ld)\n" +msgstr "" + +#: som.c:5356 +msgid "som_sizeof_headers unimplemented" +msgstr "" + +#: srec.c:301 +#, c-format +msgid "%s:%d: Unexpected character `%s' in S-record file\n" +msgstr "" + +#: syms.c:969 +msgid "Unsupported .stab relocation" +msgstr "" + +#: vms-gsd.c:354 +#, c-format +msgid "bfd_make_section (%s) failed" +msgstr "" + +#: vms-gsd.c:368 +#, c-format +msgid "bfd_set_section_flags (%s, %x) failed" +msgstr "" + +#: vms-gsd.c:404 +#, c-format +msgid "Size mismatch section %s=%lx, %s=%lx" +msgstr "" + +#: vms-gsd.c:699 +#, c-format +msgid "unknown gsd/egsd subtype %d" +msgstr "" + +#: vms-hdr.c:403 +msgid "Object module NOT error-free !\n" +msgstr "" + +#: vms-misc.c:537 +#, c-format +msgid "Stack overflow (%d) in _bfd_vms_push" +msgstr "" + +#: vms-misc.c:555 +msgid "Stack underflow in _bfd_vms_pop" +msgstr "" + +#: vms-misc.c:911 +msgid "_bfd_vms_output_counted called with zero bytes" +msgstr "" + +#: vms-misc.c:916 +msgid "_bfd_vms_output_counted called with too many bytes" +msgstr "" + +#: vms-misc.c:1047 +#, c-format +msgid "Symbol %s replaced by %s\n" +msgstr "" + +#: vms-misc.c:1109 +#, c-format +msgid "failed to enter %s" +msgstr "" + +#: vms-tir.c:68 +msgid "No Mem !" +msgstr "" + +#: vms-tir.c:302 +msgid "Bad section index in ETIR_S_C_STA_PQ" +msgstr "" + +#: vms-tir.c:317 +#, c-format +msgid "Unsupported STA cmd %d" +msgstr "" + +#: vms-tir.c:322 vms-tir.c:1274 +#, c-format +msgid "Reserved STA cmd %d" +msgstr "" + +#: vms-tir.c:428 +#, c-format +msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" +msgstr "" + +#: vms-tir.c:449 +#, c-format +msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" +msgstr "" + +#: vms-tir.c:462 +msgid "ETIR_S_C_STO_RB/AB: Not supported" +msgstr "" + +#: vms-tir.c:520 +msgid "ETIR_S_C_STO_LP_PSB: Not supported" +msgstr "" + +#: vms-tir.c:526 +msgid "ETIR_S_C_STO_HINT_GBL: not implemented" +msgstr "" + +#: vms-tir.c:532 +msgid "ETIR_S_C_STO_HINT_PS: not implemented" +msgstr "" + +#: vms-tir.c:536 vms-tir.c:1446 +#, c-format +msgid "Reserved STO cmd %d" +msgstr "" + +#: vms-tir.c:649 +msgid "ETIR_S_C_OPR_INSV: Not supported" +msgstr "" + +#: vms-tir.c:667 +msgid "ETIR_S_C_OPR_USH: Not supported" +msgstr "" + +#: vms-tir.c:673 +msgid "ETIR_S_C_OPR_ROT: Not supported" +msgstr "" + +#: vms-tir.c:692 +msgid "ETIR_S_C_OPR_REDEF: Not supported" +msgstr "" + +#: vms-tir.c:698 +msgid "ETIR_S_C_OPR_DFLIT: Not supported" +msgstr "" + +#: vms-tir.c:702 vms-tir.c:1641 +#, c-format +msgid "Reserved OPR cmd %d" +msgstr "" + +#: vms-tir.c:770 vms-tir.c:1710 +#, c-format +msgid "Reserved CTL cmd %d" +msgstr "" + +#: vms-tir.c:798 +msgid "ETIR_S_C_STC_LP: not supported" +msgstr "" + +#: vms-tir.c:816 +msgid "ETIR_S_C_STC_GBL: not supported" +msgstr "" + +#: vms-tir.c:824 +msgid "ETIR_S_C_STC_GCA: not supported" +msgstr "" + +#: vms-tir.c:833 +msgid "ETIR_S_C_STC_PS: not supported" +msgstr "" + +#. +#. * stack byte from image +#. * arg: - +#. * +#. +#: vms-tir.c:1174 +msgid "Stack-from-image not implemented" +msgstr "" + +#: vms-tir.c:1194 +msgid "Stack-entry-mask not fully implemented" +msgstr "" + +#. +#. * compare procedure argument +#. * arg: cs symbol name +#. * by argument index +#. * da argument descriptor +#. * +#. * compare argument descriptor with symbol argument (ARG$V_PASSMECH) +#. * and stack TRUE (args match) or FALSE (args dont match) value +#. +#: vms-tir.c:1210 +msgid "PASSMECH not fully implemented" +msgstr "" + +#: vms-tir.c:1230 +msgid "Stack-local-symbol not fully implemented" +msgstr "" + +#: vms-tir.c:1245 +msgid "Stack-literal not fully implemented" +msgstr "" + +#: vms-tir.c:1267 +msgid "Stack-local-symbol-entry-point-mask not fully implemented" +msgstr "" + +#: vms-tir.c:1442 +#, c-format +msgid "Unimplemented STO cmd %d" +msgstr "" + +#: vms-tir.c:1581 +msgid "TIR_S_C_OPR_ASH incomplete" +msgstr "" + +#: vms-tir.c:1595 +msgid "TIR_S_C_OPR_USH incomplete" +msgstr "" + +#: vms-tir.c:1609 +msgid "TIR_S_C_OPR_ROT incomplete" +msgstr "" + +#. +#. * redefine symbol to current location +#. +#: vms-tir.c:1630 +msgid "TIR_S_C_OPR_REDEF not supported" +msgstr "" + +#. +#. * define a literal +#. +#: vms-tir.c:1637 +msgid "TIR_S_C_OPR_DFLIT not supported" +msgstr "" + +#: vms-tir.c:1691 +msgid "TIR_S_C_CTL_DFLOC not fully implemented" +msgstr "" + +#: vms-tir.c:1699 +msgid "TIR_S_C_CTL_STLOC not fully implemented" +msgstr "" + +#: vms-tir.c:1707 +msgid "TIR_S_C_CTL_STKDL not fully implemented" +msgstr "" + +#: vms-tir.c:1761 +#, c-format +msgid "Obj code %d not found" +msgstr "" + +#: vms-tir.c:2102 +#, c-format +msgid "SEC_RELOC with no relocs in section %s" +msgstr "" + +#: vms-tir.c:2376 +#, c-format +msgid "Unhandled relocation %s" +msgstr "" + +#: xcofflink.c:1220 +#, c-format +msgid "%s: `%s' has line numbers but no enclosing section" +msgstr "" + +#: xcofflink.c:1267 +#, c-format +msgid "%s: class %d symbol `%s' has no aux entries" +msgstr "" + +#: xcofflink.c:1290 +#, c-format +msgid "%s: symbol `%s' has unrecognized csect type %d" +msgstr "" + +#: xcofflink.c:1302 +#, c-format +msgid "%s: bad XTY_ER symbol `%s': class %d scnum %d scnlen %d" +msgstr "" + +#: xcofflink.c:1340 +#, c-format +msgid "%s: XMC_TC0 symbol `%s' is class %d scnlen %d" +msgstr "" + +#: xcofflink.c:1493 +#, c-format +msgid "%s: csect `%s' not in enclosing section" +msgstr "" + +#: xcofflink.c:1598 +#, c-format +msgid "%s: misplaced XTY_LD `%s'" +msgstr "" + +#: xcofflink.c:1916 +#, c-format +msgid "%s: reloc %s:%d not in csect" +msgstr "" + +#: xcofflink.c:2051 +#, c-format +msgid "%s: XCOFF shared object when not producing XCOFF output" +msgstr "" + +#: xcofflink.c:2072 +#, c-format +msgid "%s: dynamic object with no .loader section" +msgstr "" + +#: xcofflink.c:2715 +#, c-format +msgid "%s: no such symbol" +msgstr "" + +#: xcofflink.c:2848 +msgid "error: undefined symbol __rtinit" +msgstr "" + +#: xcofflink.c:3389 +#, c-format +msgid "warning: attempt to export undefined symbol `%s'" +msgstr "" + +#: xcofflink.c:4358 +#, c-format +msgid "TOC overflow: 0x%lx > 0x10000; try -mminimal-toc when compiling" +msgstr "" + +#: xcofflink.c:5192 xcofflink.c:5603 xcofflink.c:5665 xcofflink.c:5968 +#, c-format +msgid "%s: loader reloc in unrecognized section `%s'" +msgstr "" + +#: xcofflink.c:5214 xcofflink.c:5979 +#, c-format +msgid "%s: `%s' in loader reloc but not loader sym" +msgstr "" + +#: xcofflink.c:5229 +#, c-format +msgid "%s: loader reloc in read-only section %s" +msgstr "" + +#: elf32-ia64.c:2046 elf64-ia64.c:2046 +msgid "@pltoff reloc against local symbol" +msgstr "" + +#: elf32-ia64.c:2104 elf64-ia64.c:2104 +msgid "non-zero addend in @fptr reloc" +msgstr "" + +#: elf32-ia64.c:3294 elf64-ia64.c:3294 +#, c-format +msgid "%s: short data segment overflowed (0x%lx >= 0x400000)" +msgstr "" + +#: elf32-ia64.c:3305 elf64-ia64.c:3305 +#, c-format +msgid "%s: __gp does not cover short data segment" +msgstr "" + +#: elf32-ia64.c:3575 elf64-ia64.c:3575 +#, c-format +msgid "%s: linking non-pic code in a shared library" +msgstr "" + +#: elf32-ia64.c:3608 elf64-ia64.c:3608 +#, c-format +msgid "%s: @gprel relocation against dynamic symbol %s" +msgstr "" + +#: elf32-ia64.c:3744 elf64-ia64.c:3744 +#, c-format +msgid "%s: dynamic relocation against speculation fixup" +msgstr "" + +#: elf32-ia64.c:3752 elf64-ia64.c:3752 +#, c-format +msgid "%s: speculation fixup against undefined weak symbol" +msgstr "" + +#: elf32-ia64.c:3935 elf64-ia64.c:3935 +msgid "unsupported reloc" +msgstr "" + +#: elf32-ia64.c:4232 elf64-ia64.c:4232 +#, c-format +msgid "%s: linking trap-on-NULL-dereference with non-trapping files" +msgstr "" + +#: elf32-ia64.c:4241 elf64-ia64.c:4241 +#, c-format +msgid "%s: linking big-endian files with little-endian files" +msgstr "" + +#: elf32-ia64.c:4250 elf64-ia64.c:4250 +#, c-format +msgid "%s: linking 64-bit files with 32-bit files" +msgstr "" + +#: elf32-ia64.c:4259 elf64-ia64.c:4259 +#, c-format +msgid "%s: linking constant-gp files with non-constant-gp files" +msgstr "" + +#: elf32-ia64.c:4269 elf64-ia64.c:4269 +#, c-format +msgid "%s: linking auto-pic files with non-auto-pic files" +msgstr "" + +#: peigen.c:1009 pepigen.c:1009 +#, c-format +msgid "%s: line number overflow: 0x%lx > 0xffff" +msgstr "" + +#: peigen.c:1027 pepigen.c:1027 +#, c-format +msgid "%s: reloc overflow 1: 0x%lx > 0xffff" +msgstr "" + +#: peigen.c:1040 pepigen.c:1040 +msgid "Export Directory [.edata (or where ever we found it)]" +msgstr "" + +#: peigen.c:1041 pepigen.c:1041 +msgid "Import Directory [parts of .idata]" +msgstr "" + +#: peigen.c:1042 pepigen.c:1042 +msgid "Resource Directory [.rsrc]" +msgstr "" + +#: peigen.c:1043 pepigen.c:1043 +msgid "Exception Directory [.pdata]" +msgstr "" + +#: peigen.c:1044 pepigen.c:1044 +msgid "Security Directory" +msgstr "" + +#: peigen.c:1045 pepigen.c:1045 +msgid "Base Relocation Directory [.reloc]" +msgstr "" + +#: peigen.c:1046 pepigen.c:1046 +msgid "Debug Directory" +msgstr "" + +#: peigen.c:1047 pepigen.c:1047 +msgid "Description Directory" +msgstr "" + +#: peigen.c:1048 pepigen.c:1048 +msgid "Special Directory" +msgstr "" + +#: peigen.c:1049 pepigen.c:1049 +msgid "Thread Storage Directory [.tls]" +msgstr "" + +#: peigen.c:1050 pepigen.c:1050 +msgid "Load Configuration Directory" +msgstr "" + +#: peigen.c:1051 pepigen.c:1051 +msgid "Bound Import Directory" +msgstr "" + +#: peigen.c:1052 pepigen.c:1052 +msgid "Import Address Table Directory" +msgstr "" + +#: peigen.c:1053 pepigen.c:1053 +msgid "Delay Import Directory" +msgstr "" + +#: peigen.c:1054 peigen.c:1055 pepigen.c:1054 pepigen.c:1055 +msgid "Reserved" +msgstr "" + +#: peigen.c:1119 pepigen.c:1119 +msgid "" +"\n" +"There is an import table, but the section containing it could not be found\n" +msgstr "" + +#: peigen.c:1124 pepigen.c:1124 +#, c-format +msgid "" +"\n" +"There is an import table in %s at 0x%lx\n" +msgstr "" + +#: peigen.c:1163 pepigen.c:1163 +#, c-format +msgid "" +"\n" +"Function descriptor located at the start address: %04lx\n" +msgstr "" + +#: peigen.c:1166 pepigen.c:1166 +#, c-format +msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" +msgstr "" + +#: peigen.c:1172 pepigen.c:1172 +msgid "" +"\n" +"No reldata section! Function descriptor not decoded.\n" +msgstr "" + +#: peigen.c:1177 pepigen.c:1177 +#, c-format +msgid "" +"\n" +"The Import Tables (interpreted %s section contents)\n" +msgstr "" + +#: peigen.c:1180 pepigen.c:1180 +msgid " vma: Hint Time Forward DLL First\n" +msgstr "" + +#: peigen.c:1182 pepigen.c:1182 +msgid " Table Stamp Chain Name Thunk\n" +msgstr "" + +#: peigen.c:1232 pepigen.c:1232 +#, c-format +msgid "" +"\n" +"\tDLL Name: %s\n" +msgstr "" + +#: peigen.c:1236 peigen.c:1299 pepigen.c:1236 pepigen.c:1299 +msgid "\tvma: Hint/Ord Member-Name\n" +msgstr "" + +#: peigen.c:1298 pepigen.c:1298 +msgid "\tThe Import Address Table (difference found)\n" +msgstr "" + +#: peigen.c:1305 pepigen.c:1305 +msgid "\t>>> Ran out of IAT members!\n" +msgstr "" + +#: peigen.c:1324 pepigen.c:1324 +msgid "\tThe Import Address Table is identical\n" +msgstr "" + +#: peigen.c:1397 pepigen.c:1397 +msgid "" +"\n" +"There is an export table, but the section containing it could not be found\n" +msgstr "" + +#: peigen.c:1402 pepigen.c:1402 +#, c-format +msgid "" +"\n" +"There is an export table in %s at 0x%lx\n" +msgstr "" + +#: peigen.c:1433 pepigen.c:1433 +#, c-format +msgid "" +"\n" +"The Export Tables (interpreted %s section contents)\n" +"\n" +msgstr "" + +#: peigen.c:1437 pepigen.c:1437 +#, c-format +msgid "Export Flags \t\t\t%lx\n" +msgstr "" + +#: peigen.c:1440 pepigen.c:1440 +#, c-format +msgid "Time/Date stamp \t\t%lx\n" +msgstr "" + +#: peigen.c:1443 pepigen.c:1443 +#, c-format +msgid "Major/Minor \t\t\t%d/%d\n" +msgstr "" + +#: peigen.c:1446 pepigen.c:1446 +msgid "Name \t\t\t\t" +msgstr "" + +#: peigen.c:1452 pepigen.c:1452 +#, c-format +msgid "Ordinal Base \t\t\t%ld\n" +msgstr "" + +#: peigen.c:1455 pepigen.c:1455 +msgid "Number in:\n" +msgstr "" + +#: peigen.c:1458 pepigen.c:1458 +#, c-format +msgid "\tExport Address Table \t\t%08lx\n" +msgstr "" + +#: peigen.c:1462 pepigen.c:1462 +#, c-format +msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" +msgstr "" + +#: peigen.c:1465 pepigen.c:1465 +msgid "Table Addresses\n" +msgstr "" + +#: peigen.c:1468 pepigen.c:1468 +msgid "\tExport Address Table \t\t" +msgstr "" + +#: peigen.c:1473 pepigen.c:1473 +msgid "\tName Pointer Table \t\t" +msgstr "" + +#: peigen.c:1478 pepigen.c:1478 +msgid "\tOrdinal Table \t\t\t" +msgstr "" + +#: peigen.c:1492 pepigen.c:1492 +#, c-format +msgid "" +"\n" +"Export Address Table -- Ordinal Base %ld\n" +msgstr "" + +#: peigen.c:1511 pepigen.c:1511 +msgid "Forwarder RVA" +msgstr "" + +#: peigen.c:1522 pepigen.c:1522 +msgid "Export RVA" +msgstr "" + +#: peigen.c:1529 pepigen.c:1529 +msgid "" +"\n" +"[Ordinal/Name Pointer] Table\n" +msgstr "" + +#: peigen.c:1584 pepigen.c:1584 +#, c-format +msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" +msgstr "" + +#: peigen.c:1588 pepigen.c:1588 +msgid "" +"\n" +"The Function Table (interpreted .pdata section contents)\n" +msgstr "" + +#: peigen.c:1591 pepigen.c:1591 +msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" +msgstr "" + +#: peigen.c:1594 pepigen.c:1594 +msgid " vma:\t\tBegin End EH EH PrologEnd Exception\n" +msgstr "" + +#: peigen.c:1596 pepigen.c:1596 +msgid " \t\tAddress Address Handler Data Address Mask\n" +msgstr "" + +#: peigen.c:1668 pepigen.c:1668 +msgid " Register save millicode" +msgstr "" + +#: peigen.c:1671 pepigen.c:1671 +msgid " Register restore millicode" +msgstr "" + +#: peigen.c:1674 pepigen.c:1674 +msgid " Glue code sequence" +msgstr "" + +#: peigen.c:1725 pepigen.c:1725 +msgid "" +"\n" +"\n" +"PE File Base Relocations (interpreted .reloc section contents)\n" +msgstr "" + +#: peigen.c:1760 pepigen.c:1760 +#, c-format +msgid "" +"\n" +"Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" +msgstr "" + +#: peigen.c:1773 pepigen.c:1773 +#, c-format +msgid "\treloc %4d offset %4x [%4lx] %s" +msgstr "" + +#. The MS dumpbin program reportedly ands with 0xff0f before +#. printing the characteristics field. Not sure why. No reason to +#. emulate it here. +#: peigen.c:1812 pepigen.c:1812 +#, c-format +msgid "" +"\n" +"Characteristics 0x%x\n" +msgstr ""
bfd.pot Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.