diff options
author | Richard Henderson <rth@redhat.com> | 1999-05-03 07:29:11 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1999-05-03 07:29:11 +0000 |
commit | 252b5132c753830d5fd56823373aed85f2a0db63 (patch) | |
tree | 1af963bfd8d3e55167b81def4207f175eaff3a56 /bfd/po | |
download | gdb-252b5132c753830d5fd56823373aed85f2a0db63.zip gdb-252b5132c753830d5fd56823373aed85f2a0db63.tar.gz gdb-252b5132c753830d5fd56823373aed85f2a0db63.tar.bz2 |
19990502 sourceware importbinu_ss_19990502
Diffstat (limited to 'bfd/po')
-rw-r--r-- | bfd/po/Make-in | 251 | ||||
-rw-r--r-- | bfd/po/POTFILES.in | 264 | ||||
-rw-r--r-- | bfd/po/bfd.pot | 632 |
3 files changed, 1147 insertions, 0 deletions
diff --git a/bfd/po/Make-in b/bfd/po/Make-in new file mode 100644 index 0000000..0552db1 --- /dev/null +++ b/bfd/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/bfd/po/POTFILES.in b/bfd/po/POTFILES.in new file mode 100644 index 0000000..ae49966 --- /dev/null +++ b/bfd/po/POTFILES.in @@ -0,0 +1,264 @@ +archures.c +bfd-in2.h +aix386-core.c +aout-adobe.c +aout-arm.c +aout-encap.c +aout-ns32k.c +aout-sparcle.c +aout-target.h +aout-tic30.c +aout0.c +aout32.c +aout64.c +aoutf1.h +aoutx.h +archive.c +bfd-in.h +bfd.c +binary.c +bout.c +cache.c +cf-i386lynx.c +cf-m68klynx.c +cf-sparclynx.c +cisco-core.c +coff-a29k.c +coff-alpha.c +coff-apollo.c +coff-arm.c +coff-aux.c +coff-go32.c +coff-h8300.c +coff-h8500.c +coff-i386.c +coff-i860.c +coff-i960.c +coff-m68k.c +coff-m88k.c +coff-mcore.c +coff-mips.c +coff-pmac.c +coff-ppc.c +coff-rs6000.c +coff-sh.c +coff-sparc.c +coff-stgo32.c +coff-svm68k.c +coff-tic30.c +coff-tic80.c +coff-u68k.c +coff-w65.c +coff-we32k.c +coff-z8k.c +coffcode.h +coffgen.c +cofflink.c +coffswap.h +cpu-m10300.c +cpu-m32r.c +cpu-mips.c +corefile.c +cpu-a29k.c +cpu-alpha.c +cpu-arc.c +cpu-arm.c +cpu-d10v.c +cpu-d30v.c +cpu-fr30.c +cpu-h8300.c +cpu-h8500.c +cpu-hppa.c +cpu-i386.c +cpu-i860.c +cpu-i960.c +cpu-m10200.c +cpu-sh.c +elf-m10300.c +cpu-m68k.c +cpu-m88k.c +cpu-mcore.c +elf32-m32r.c +cpu-ns32k.c +cpu-powerpc.c +cpu-rs6000.c +libbfd.h +cpu-sparc.c +cpu-tic30.c +cpu-tic80.c +cpu-v850.c +cpu-vax.c +elf32-mips.c +cpu-w65.c +cpu-we32k.c +cpu-z8k.c +demo64.c +dwarf1.c +dwarf2.c +ecoff.c +ecofflink.c +ecoffswap.h +elf-bfd.h +elf-m10200.c +libhppa.h +elf.c +elf32-arc.c +elf32-arm.h +elf32-d10v.c +elf32-d30v.c +elf32-fr30.c +elf32-gen.c +elf32-hppa.c +elf32-hppa.h +elf32-i386.c +elf32-i860.c +reloc.c +elf32-m68k.c +elf32-m88k.c +elf32-mcore.c +targets.c +elf32-ppc.c +elf32-sh.c +elf32-sparc.c +elf32-v850.c +elf32.c +elf64-alpha.c +elf64-gen.c +elf64-mips.c +elf64-sparc.c +elf64.c +elfarm-nabi.c +elfarm-oabi.c +elfcode.h +elfcore.h +elflink.c +elflink.h +elfxx-target.h +epoc-pe-arm.c +epoc-pei-arm.c +format.c +freebsd.h +gen-aout.c +genlink.h +go32stub.h +hash.c +host-aout.c +hp300bsd.c +hp300hpux.c +hppa_stubs.h +hppabsd-core.c +hpux-core.c +i386aout.c +i386bsd.c +i386dynix.c +i386freebsd.c +i386linux.c +i386lynx.c +i386mach3.c +i386msdos.c +i386netbsd.c +i386os9k.c +ieee.c +ihex.c +init.c +irix-core.c +libaout.h +libbfd-in.h +libbfd.c +libcoff-in.h +libcoff.h +libecoff.h +libieee.h +libnlm.h +liboasys.h +linker.c +lynx-core.c +m68k4knetbsd.c +m68klinux.c +m68klynx.c +m68knetbsd.c +doc/chew.c +m88kmach3.c +mipsbsd.c +netbsd-core.c +netbsd.h +newsos3.c +nlm-target.h +nlm.c +nlm32-alpha.c +nlm32-i386.c +nlm32-ppc.c +nlm32-sparc.c +nlm32.c +nlm64.c +nlmcode.h +nlmswap.h +ns32k.h +ns32knetbsd.c +oasys.c +opncls.c +osf-core.c +pc532-mach.c +pe-arm.c +pe-i386.c +pe-mcore.c +pe-ppc.c +pei-arm.c +pei-i386.c +pei-mcore.c +pei-ppc.c +peicode.h +ppcboot.c +ptrace-core.c +reloc16.c +riscix.c +rs6000-core.c +sco5-core.c +section.c +som.c +som.h +sparclinux.c +sparclynx.c +sparcnetbsd.c +srec.c +stab-syms.c +stabs.c +sunos.c +syms.c +sysdep.h +tekhex.c +trad-core.c +vaxnetbsd.c +versados.c +vms-gsd.c +vms-hdr.c +vms-misc.c +vms-tir.c +vms.c +vms.h +xcofflink.c +hosts/alphalinux.h +hosts/alphavms.h +hosts/decstation.h +hosts/delta68.h +hosts/dpx2.h +hosts/hp300bsd.h +hosts/i386bsd.h +hosts/i386linux.h +hosts/i386mach3.h +hosts/i386sco.h +hosts/i860mach3.h +hosts/m68kaux.h +hosts/m68klinux.h +hosts/m88kmach3.h +hosts/mipsbsd.h +hosts/mipsmach3.h +hosts/news-mips.h +hosts/news.h +hosts/pc532mach.h +hosts/riscos.h +hosts/symmetry.h +hosts/tahoe.h +hosts/vaxbsd.h +hosts/vaxult.h +hosts/vaxult2.h diff --git a/bfd/po/bfd.pot b/bfd/po/bfd.pot new file mode 100644 index 0000000..f7ffbb4 --- /dev/null +++ b/bfd/po/bfd.pot @@ -0,0 +1,632 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 1999-04-18 18:26-0400\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" + +#: aout-adobe.c:182 +#, c-format +msgid "%s: Unknown section type in a.out.adobe file: %x\n" +msgstr "" + +#: aoutx.h:1237 aoutx.h:1651 +#, c-format +msgid "%s: can not represent section `%s' in a.out object file format" +msgstr "" + +#: aoutx.h:1621 +#, c-format +msgid "" +"%s: can not represent section for symbol `%s' in a.out object file format" +msgstr "" + +#: aoutx.h:1623 +msgid "*unknown*" +msgstr "" + +#: aoutx.h:3667 +#, c-format +msgid "%s: relocateable link from %s to %s not supported" +msgstr "" + +#: archive.c:1716 +msgid "Warning: writing archive was slow: rewriting timestamp\n" +msgstr "" + +#: archive.c:1987 +msgid "Reading archive file mod timestamp" +msgstr "" + +#. FIXME: bfd can't call perror. +#: archive.c:2011 +msgid "Writing updated armap timestamp" +msgstr "" + +#: bfd.c:274 +msgid "No error" +msgstr "" + +#: bfd.c:275 +msgid "System call error" +msgstr "" + +#: bfd.c:276 +msgid "Invalid bfd target" +msgstr "" + +#: bfd.c:277 +msgid "File in wrong format" +msgstr "" + +#: bfd.c:278 +msgid "Invalid operation" +msgstr "" + +#: bfd.c:279 +msgid "Memory exhausted" +msgstr "" + +#: bfd.c:280 +msgid "No symbols" +msgstr "" + +#: bfd.c:281 +msgid "Archive has no index; run ranlib to add one" +msgstr "" + +#: bfd.c:282 +msgid "No more archived files" +msgstr "" + +#: bfd.c:283 +msgid "Malformed archive" +msgstr "" + +#: bfd.c:284 +msgid "File format not recognized" +msgstr "" + +#: bfd.c:285 +msgid "File format is ambiguous" +msgstr "" + +#: bfd.c:286 +msgid "Section has no contents" +msgstr "" + +#: bfd.c:287 +msgid "Nonrepresentable section on output" +msgstr "" + +#: bfd.c:288 +msgid "Symbol needs debug section which does not exist" +msgstr "" + +#: bfd.c:289 +msgid "Bad value" +msgstr "" + +#: bfd.c:290 +msgid "File truncated" +msgstr "" + +#: bfd.c:291 +msgid "File too big" +msgstr "" + +#: bfd.c:292 +msgid "#<Invalid error code>" +msgstr "" + +#: bfd.c:679 +#, c-format +msgid "bfd assertion fail %s:%d" +msgstr "" + +#: binary.c:298 +#, c-format +msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx." +msgstr "" + +#: coff-a29k.c:121 +msgid "Missing IHCONST" +msgstr "" + +#: coff-a29k.c:181 +msgid "Missing IHIHALF" +msgstr "" + +#: coff-a29k.c:213 +msgid "Unrecognized reloc" +msgstr "" + +#: coff-a29k.c:406 +msgid "missing IHCONST reloc" +msgstr "" + +#: coff-a29k.c:497 +msgid "missing IHIHALF reloc" +msgstr "" + +#: coff-alpha.c:880 coff-alpha.c:917 +msgid "GP relative relocation used when GP not defined" +msgstr "" + +#: coff-alpha.c:1486 elf64-alpha.c:4051 +msgid "using multiple gp values" +msgstr "" + +#: coff-alpha.c:1992 coff-mips.c:1435 elf32-mips.c:5175 +msgid "GP relative relocation when GP not defined" +msgstr "" + +#: coff-arm.c:884 +#, c-format +msgid "%s: unable to find THUMB glue '%s' for `%s'" +msgstr "" + +#: coff-arm.c:913 +#, c-format +msgid "%s: unable to find ARM glue '%s' for `%s'" +msgstr "" + +#: coff-arm.c:1192 coff-arm.c:1286 +#, c-format +msgid "%s(%s): warning: interworking not enabled." +msgstr "" + +#: coff-arm.c:1196 +#, c-format +msgid " first occurrence: %s: arm call to thumb" +msgstr "" + +#: coff-arm.c:1290 +#, c-format +msgid " first occurrence: %s: thumb call to arm" +msgstr "" + +#: coff-arm.c:1293 +msgid " consider relinking with --support-old-code enabled" +msgstr "" + +#: coff-arm.c:1581 coff-tic80.c:682 cofflink.c:2722 +#, c-format +msgid "%s: bad reloc address 0x%lx in section `%s'" +msgstr "" + +#: coff-arm.c:2036 +#, c-format +msgid "%s: ERROR: compiled for APCS-%d whereas target %s uses APCS-%d" +msgstr "" + +#: coff-arm.c:2051 +#, c-format +msgid "" +"%s: ERROR: passes floats in float registers whereas target %s uses integer " +"registers" +msgstr "" + +#: coff-arm.c:2054 +#, c-format +msgid "" +"%s: ERROR: passes floats in integer registers whereas target %s uses float " +"registers" +msgstr "" + +#: coff-arm.c:2069 +#, c-format +msgid "" +"%s: ERROR: compiled as position independent code, whereas target %s is " +"absolute position" +msgstr "" + +#: coff-arm.c:2072 +#, c-format +msgid "" +"%s: ERROR: compiled as absolute position code, whereas target %s is position " +"independent" +msgstr "" + +#: coff-arm.c:2101 +#, c-format +msgid "Warning: input file %s supports interworking, whereas %s does not." +msgstr "" + +#: coff-arm.c:2104 +#, c-format +msgid "Warning: input file %s does not support interworking, whereas %s does." +msgstr "" + +#: coff-arm.c:2132 +#, c-format +msgid "private flags = %x:" +msgstr "" + +#: coff-arm.c:2140 +msgid " [floats passed in float registers]" +msgstr "" + +#: coff-arm.c:2142 +msgid " [floats passed in integer registers]" +msgstr "" + +#: coff-arm.c:2145 +msgid " [position independent]" +msgstr "" + +#: coff-arm.c:2147 +msgid " [absolute position]" +msgstr "" + +#: coff-arm.c:2151 +msgid " [interworking flag not initialised]" +msgstr "" + +#: coff-arm.c:2153 +msgid " [interworking supported]" +msgstr "" + +#: coff-arm.c:2155 +msgid " [interworking not supported]" +msgstr "" + +#: coff-arm.c:2204 +#, c-format +msgid "" +"Warning: Not setting interworking flag of %s, since it has already been " +"specified as non-interworking" +msgstr "" + +#: coff-arm.c:2208 +#, c-format +msgid "Warning: Clearing the interworking flag of %s due to outside request" +msgstr "" + +#: coff-i960.c:135 coff-i960.c:484 +msgid "uncertain calling convention for non-COFF symbol" +msgstr "" + +#: coff-mips.c:875 elf32-mips.c:1183 +msgid "GP relative relocation when _gp not defined" +msgstr "" + +#: coff-mips.c:2433 +msgid "unsupported reloc type" +msgstr "" + +#. No other sections should appear in -membedded-pic +#. code. +#: coff-mips.c:2470 +msgid "reloc against unsupported section" +msgstr "" + +#: coff-mips.c:2478 +msgid "reloc not properly aligned" +msgstr "" + +#: coff-tic80.c:445 +#, c-format +msgid "Unrecognized reloc type 0x%x" +msgstr "" + +#: coff-w65.c:383 +#, c-format +msgid "ignoring reloc %s\n" +msgstr "" + +#: coffcode.h:3413 +#, c-format +msgid "%s: warning: illegal symbol index %ld in line numbers" +msgstr "" + +#: coffcode.h:3427 +#, c-format +msgid "%s: warning: duplicate line number information for `%s'" +msgstr "" + +#: coffcode.h:3748 +#, c-format +msgid "%s: Unrecognized storage class %d for %s symbol `%s'" +msgstr "" + +#: coffcode.h:3932 +#, c-format +msgid "%s: warning: illegal symbol index %ld in relocs" +msgstr "" + +#: coffcode.h:3970 +#, c-format +msgid "%s: illegal relocation type %d at address 0x%lx" +msgstr "" + +#: coffgen.c:1607 +#, c-format +msgid "%s: bad string table size %lu" +msgstr "" + +#: cofflink.c:423 +#, c-format +msgid "Warning: type of symbol `%s' changed from %d to %d in %s" +msgstr "" + +#: cofflink.c:2093 +#, c-format +msgid "%s: relocs in section `%s', but it has no contents" +msgstr "" + +#: coffswap.h:879 +#, c-format +msgid "%s: warning: %s: line number overflow: 0x%lx > 0xffff" +msgstr "" + +#: coffswap.h:892 +#, c-format +msgid "%s: %s: reloc overflow: 0x%lx > 0xffff" +msgstr "" + +#: dwarf2.c:420 +msgid "Dwarf Error: Can't find .debug_abbrev section." +msgstr "" + +#: dwarf2.c:438 +#, c-format +msgid "Dwarf Error: Abbrev offset (%u) bigger than abbrev size (%u)." +msgstr "" + +#: dwarf2.c:614 +#, c-format +msgid "Dwarf Error: Invalid or unhandled FORM value: %d." +msgstr "" + +#: dwarf2.c:720 +msgid "Dwarf Error: Can't find .debug_line section." +msgstr "" + +#: dwarf2.c:881 +msgid "Dwarf Error: mangled line number section." +msgstr "" + +#: dwarf2.c:1054 dwarf2.c:1201 +#, c-format +msgid "Dwarf Error: Could not find abbrev number %d." +msgstr "" + +#: dwarf2.c:1162 +#, c-format +msgid "" +"Dwarf Error: found dwarf version '%hu', this reader only handles version 2 " +"information." +msgstr "" + +#: dwarf2.c:1169 +#, c-format +msgid "" +"Dwarf Error: found address size '%u', this reader can not handle sizes " +"greater than '%u'." +msgstr "" + +#: dwarf2.c:1192 +#, c-format +msgid "Dwarf Error: Bad abbrev number: %d." +msgstr "" + +#: ecoff.c:1308 +#, c-format +msgid "Unknown basic type %d" +msgstr "" + +#: ecoff.c:1580 +#, c-format +msgid "" +"\n" +" End+1 symbol: %ld" +msgstr "" + +#: ecoff.c:1587 ecoff.c:1590 +#, c-format +msgid "" +"\n" +" First symbol: %ld" +msgstr "" + +#: ecoff.c:1602 +#, c-format +msgid "" +"\n" +" End+1 symbol: %-7ld Type: %s" +msgstr "" + +#: ecoff.c:1609 +#, c-format +msgid "" +"\n" +" Local symbol: %ld" +msgstr "" + +#: ecoff.c:1617 +#, c-format +msgid "" +"\n" +" struct; End+1 symbol: %ld" +msgstr "" + +#: ecoff.c:1622 +#, c-format +msgid "" +"\n" +" union; End+1 symbol: %ld" +msgstr "" + +#: ecoff.c:1627 +#, c-format +msgid "" +"\n" +" enum; End+1 symbol: %ld" +msgstr "" + +#: ecoff.c:1633 +#, c-format +msgid "" +"\n" +" Type: %s" +msgstr "" + +#: elf-m10200.c:455 elf-m10300.c:667 elf32-d10v.c:490 elf32-fr30.c:650 +#: elf32-m32r.c:1157 elf32-v850.c:1674 +msgid "internal error: out of range error" +msgstr "" + +#: elf-m10200.c:459 elf-m10300.c:671 elf32-d10v.c:494 elf32-fr30.c:654 +#: elf32-m32r.c:1161 elf32-v850.c:1678 +msgid "internal error: unsupported relocation error" +msgstr "" + +#: elf-m10200.c:463 elf-m10300.c:675 elf32-d10v.c:498 elf32-m32r.c:1165 +msgid "internal error: dangerous error" +msgstr "" + +#: elf-m10200.c:467 elf-m10300.c:679 elf32-d10v.c:502 elf32-fr30.c:662 +#: elf32-m32r.c:1169 elf32-v850.c:1698 +msgid "internal error: unknown error" +msgstr "" + +#: elf.c:320 +#, c-format +msgid "%s: invalid string offset %u >= %lu for section `%s'" +msgstr "" + +#: elf.c:543 +msgid "" +"\n" +"Program Header:\n" +msgstr "" + +#: elf.c:591 +msgid "" +"\n" +"Dynamic Section:\n" +msgstr "" + +#: elf.c:693 +msgid "" +"\n" +"Version definitions:\n" +msgstr "" + +#: elf.c:716 +msgid "" +"\n" +"Version References:\n" +msgstr "" + +#: elf.c:721 +#, c-format +msgid " required from %s:\n" +msgstr "" + +#: elf.c:1882 +#, c-format +msgid "" +"creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = " +"0x%.8lx\n" +msgstr "" + +#: elf.c:2481 +#, c-format +msgid "%s: Not enough room for program headers (allocated %u, need %u)" +msgstr "" + +#: elf.c:2584 +#, c-format +msgid "%s: Not enough room for program headers, try linking with -N" +msgstr "" + +#: elf.c:2710 +#, c-format +msgid "Error: First section in segment (%s) starts at 0x%x" +msgstr "" + +#: elf.c:2713 +#, c-format +msgid " whereas segment starts at 0x%x" +msgstr "" + +#: elf.c:2983 +#, c-format +msgid "%s: warning: allocated section `%s' not in segment" +msgstr "" + +#: elf.c:3350 +#, c-format +msgid "%s: symbol `%s' required but not present" +msgstr "" + +#: elf.c:3359 +#, c-format +msgid "" +"elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = " +"0x%.8lx%s\n" +msgstr "" + +#: elf.c:3501 +#, c-format +msgid "%s: warning: Empty loadable segment detected\n" +msgstr "" + +#: elf.c:4774 +#, c-format +msgid "%s: unsupported relocation type %s" +msgstr "" + +#: elf32-fr30.c:658 elf32-v850.c:1682 +msgid "internal error: dangerous relocation" +msgstr "" + +#: elf32-hppa.c:1215 +msgid "Unsupported call to hppa_elf_reloc" +msgstr "" + +#: elf32-i386.c:1293 +#, c-format +msgid "" +"%s: warning: unresolvable relocation against symbol `%s' from %s section" +msgstr "" + +#: elf32-m32r.c:808 +msgid "SDA relocation when _SDA_BASE_ not defined" +msgstr "" + +#: elf32-m32r.c:892 elf32-ppc.c:3071 +#, c-format +msgid "%s: unknown relocation type %d" +msgstr "" + +#: elf32-m32r.c:1100 +#, c-format +msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)" +msgstr "" + +#: elf32-m32r.c:1906 +#, c-format +msgid "%s: Instruction set mismatch with previous modules" +msgstr "" + +#: elf32-m32r.c:1929 +#, c-format +msgid "private flags = %lx" +msgstr "" + +#: elf32-m32r.c:1934 +msgid ": m32r instructions" +msgstr "" + |