From 252b5132c753830d5fd56823373aed85f2a0db63 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 3 May 1999 07:29:11 +0000 Subject: 19990502 sourceware import --- gas/po/Make-in | 251 ++++ gas/po/POTFILES.in | 193 +++ gas/po/gas.pot | 3853 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 4297 insertions(+) create mode 100644 gas/po/Make-in create mode 100644 gas/po/POTFILES.in create mode 100644 gas/po/gas.pot (limited to 'gas/po') diff --git a/gas/po/Make-in b/gas/po/Make-in new file mode 100644 index 0000000..0552db1 --- /dev/null +++ b/gas/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 +# +# 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/gas/po/POTFILES.in b/gas/po/POTFILES.in new file mode 100644 index 0000000..0023b7a --- /dev/null +++ b/gas/po/POTFILES.in @@ -0,0 +1,193 @@ +config/tc-hppa.c +config/tc-m32r.c +config/aout_gnu.h +config/atof-ieee.c +config/atof-tahoe.c +config/atof-vax.c +config/e-i386coff.c +config/e-i386elf.c +config/e-mipsecoff.c +config/e-mipself.c +config/itbl-mips.h +config/m68k-parse.h +config/m88k-opcode.h +config/obj-aout.c +config/obj-aout.h +config/obj-bout.c +config/obj-bout.h +config/obj-coff.c +config/obj-coff.h +config/obj-ecoff.c +config/obj-ecoff.h +config/obj-elf.c +config/obj-elf.h +config/obj-evax.c +config/obj-evax.h +config/obj-generic.c +config/obj-generic.h +config/obj-hp300.c +config/obj-hp300.h +config/obj-ieee.c +config/obj-ieee.h +config/obj-multi.c +config/obj-multi.h +config/obj-som.c +config/obj-som.h +config/obj-vms.c +config/obj-vms.h +config/tc-a29k.c +config/tc-a29k.h +config/tc-alpha.c +config/tc-alpha.h +config/tc-arc.c +config/tc-arc.h +config/tc-arm.c +config/tc-arm.h +config/tc-d10v.c +config/tc-d10v.h +config/tc-d30v.c +config/tc-d30v.h +config/tc-mcore.c +config/tc-fr30.c +config/tc-fr30.h +config/tc-generic.c +config/tc-generic.h +config/tc-h8300.c +config/tc-h8300.h +config/tc-h8500.c +config/tc-h8500.h +config/tc-mips.c +config/tc-hppa.h +config/tc-i386.c +config/tc-i386.h +config/tc-i860.c +config/tc-i860.h +config/tc-i960.c +config/tc-i960.h +config/tc-mn10300.c +config/tc-m32r.h +config/tc-m68851.h +config/tc-m68k.c +config/tc-m68k.h +config/tc-m88k.c +config/tc-m88k.h +config/tc-mcore.h +config/tc-mips.h +config/tc-mn10200.c +config/tc-mn10200.h +config/tc-mn10300.h +config/tc-ns32k.c +config/tc-ns32k.h +config/tc-ppc.c +config/tc-ppc.h +config/tc-sh.c +config/tc-sh.h +config/tc-sparc.c +config/tc-sparc.h +config/tc-tahoe.c +config/tc-tahoe.h +config/tc-tic30.c +config/tc-tic30.h +config/tc-tic80.c +config/tc-tic80.h +config/tc-v850.c +config/tc-v850.h +config/tc-vax.c +config/tc-vax.h +config/tc-w65.c +config/tc-w65.h +config/tc-z8k.c +config/tc-z8k.h +config/te-386bsd.h +config/te-aux.h +config/te-delt88.h +config/te-delta.h +config/te-dpx2.h +config/te-dynix.h +config/te-epoc-pe.h +config/te-generic.h +config/te-go32.h +config/te-hp300.h +config/te-hppa.h +config/te-i386aix.h +config/te-ic960.h +config/te-linux.h +config/te-lnews.h +config/te-lynx.h +config/te-mach.h +config/te-macos.h +config/te-multi.h +config/te-nbsd.h +config/te-nbsd532.h +config/te-pc532mach.h +config/te-pe.h +config/te-ppcnw.h +config/te-psos.h +config/te-riscix.h +config/te-sparcaout.h +config/te-sun3.h +config/te-svr4.h +config/te-sysv32.h +config/vax-inst.h +config/vms-a-conf.h +config/vms-conf.h +app.c +as.c +as.h +asintl.h +atof-generic.c +bignum-copy.c +bignum.h +bit_fix.h +cgen.c +cgen.h +cond.c +debug.c +depend.c +ecoff.c +ecoff.h +ehopt.c +emul-target.h +emul.h +expr.c +expr.h +flonum-copy.c +flonum-konst.c +flonum-mult.c +flonum.h +frags.c +frags.h +gasp.c +hash.c +hash.h +input-file.c +input-file.h +input-scrub.c +itbl-ops.c +itbl-ops.h +listing.c +listing.h +literal.c +macro.c +macro.h +messages.c +obj.h +output-file.c +output-file.h +read.c +read.h +sb.c +sb.h +stabs.c +struc-symbol.h +subsegs.c +subsegs.h +symbols.c +symbols.h +tc.h +write.c +write.h +testsuite/gas/all/itbl-test.c +testsuite/gas/mips/elf_e_flags.c +testsuite/gas/tic80/relocs1.c +testsuite/gas/tic80/relocs2.c diff --git a/gas/po/gas.pot b/gas/po/gas.pot new file mode 100644 index 0000000..cd9abba --- /dev/null +++ b/gas/po/gas.pot @@ -0,0 +1,3853 @@ +# 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: 1999-04-18 18:31-0400\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" + +#: app.c:435 app.c:449 +msgid "end of file in comment" +msgstr "" + +#: app.c:528 +msgid "end of file in string: inserted '\"'" +msgstr "" + +#: app.c:594 +#, c-format +msgid "Unknown escape '\\%c' in string: Ignored" +msgstr "" + +#: app.c:603 +msgid "End of file in string: '\"' inserted" +msgstr "" + +#: app.c:723 +msgid "end of file not at end of a line; newline inserted" +msgstr "" + +#: app.c:869 +msgid "end of file in multiline comment" +msgstr "" + +#: app.c:918 +msgid "end of file after a one-character quote; \\0 inserted" +msgstr "" + +#: app.c:926 +msgid "end of file in escape character" +msgstr "" + +#: app.c:938 +msgid "Missing close quote: (assumed)" +msgstr "" + +#: app.c:997 app.c:1051 app.c:1120 +msgid "end of file in comment; newline inserted" +msgstr "" + +#: app.c:1061 +msgid "EOF in Comment: Newline inserted" +msgstr "" + +#: as.c:121 +#, c-format +msgid "GNU assembler version %s (%s) using BFD version %s" +msgstr "" + +#: as.c:124 +#, c-format +msgid "GNU assembler version %s (%s)" +msgstr "" + +#: as.c:133 +#, c-format +msgid "Usage: %s [option...] [asmfile...]\n" +msgstr "" + +#: as.c:135 +msgid "" +"Options:\n" +" -a[sub-option...]\tturn on listings\n" +" Sub-options [default hls]:\n" +" c omit false conditionals\n" +" d omit debugging directives\n" +" h include high-level source\n" +" l include assembly\n" +" m include macro expansions\n" +" n omit forms processing\n" +" s include symbols\n" +" =file set listing file name (must be last sub-option)\n" +msgstr "" + +#: as.c:148 +msgid "" +" -D\t\t produce assembler debugging messages\n" +" --defsym SYM=VAL define symbol SYM to given value\n" +" -f\t\t skip whitespace and comment preprocessing\n" +" --gstabs\t generate stabs debugging information\n" +" --help\t\t show this message and exit\n" +" -I DIR\t\t add DIR to search list for .include directives\n" +" -J\t\t don't warn about signed overflow\n" +" -K\t\t warn when differences altered for long displacements\n" +" -L,--keep-locals keep local symbols (e.g. starting with `L')\n" +msgstr "" + +#: as.c:159 +msgid "" +" -M,--mri\t assemble in MRI compatibility mode\n" +" --MD FILE\t write dependency information in FILE (default none)\n" +" -nocpp\t\t ignored\n" +" -o OBJFILE\t name the object-file output OBJFILE (default a.out)\n" +" -R\t\t fold data section into text section\n" +" --statistics\t print various measured statistics from execution\n" +" --strip-local-absolute strip local absolute symbols\n" +" --traditional-format\t Use same format as native assembler when possible\n" +" --version\t\t print assembler version number and exit\n" +" -W\t\t\t suppress warnings\n" +" --itbl INSTTBL\t extend instruction set to include instructions\n" +"\t\t\t matching the specifications defined in file INSTTBL\n" +" -w\t\t\t ignored\n" +" -X\t\t\t ignored\n" +" -Z\t\t\t generate object file even after errors\n" +msgstr "" + +#: as.c:176 +msgid "" +" --listing-lhs-width\t set the width in words of the output data column " +"of\n" +"\t\t\t the listing\n" +" --listing-lhs-width2\t set the width in words of the continuation lines\n" +"\t\t\t of the output data column; ignored if smaller than\n" +"\t\t\t the width of the first line\n" +" --listing-rhs-width\t set the max width in characters of the lines from\n" +"\t\t\t the source file\n" +" --listing-cont-lines\t set the maximum number of continuation lines used\n" +"\t\t\t for the output data column of the listing\n" +msgstr "" + +#: as.c:189 gasp.c:3583 +msgid "" +"\n" +"Report bugs to bug-gnu-utils@gnu.org\n" +msgstr "" + +#: as.c:226 +msgid "missing emulation mode name" +msgstr "" + +#: as.c:241 +#, c-format +msgid "unrecognized emulation name `%s'" +msgstr "" + +#. This output is intended to follow the GNU standards document. +#: as.c:459 +#, c-format +msgid "GNU assembler %s\n" +msgstr "" + +#: as.c:460 +msgid "Copyright 1997 Free Software Foundation, Inc.\n" +msgstr "" + +#: as.c:461 gasp.c:3677 +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 "" + +#: as.c:464 +#, c-format +msgid "This assembler was configured for a target of `%s'.\n" +msgstr "" + +#: as.c:471 +msgid "multiple emulation names specified" +msgstr "" + +#: as.c:473 +msgid "emulations not handled in this configuration" +msgstr "" + +#: as.c:478 +#, c-format +msgid "alias = %s\n" +msgstr "" + +#: as.c:479 +#, c-format +msgid "canonical = %s\n" +msgstr "" + +#: as.c:480 +#, c-format +msgid "cpu-type = %s\n" +msgstr "" + +#: as.c:482 +#, c-format +msgid "format = %s\n" +msgstr "" + +#: as.c:485 +#, c-format +msgid "bfd-target = %s\n" +msgstr "" + +#: as.c:498 +msgid "bad defsym; format is --defsym name=value" +msgstr "" + +#: as.c:518 +msgid "No file name following -t option\n" +msgstr "" + +#: as.c:534 +#, c-format +msgid "Failed to read instruction table %s\n" +msgstr "" + +#: as.c:634 +#, c-format +msgid "invalid listing option `%c'" +msgstr "" + +#: as.c:856 +#, c-format +msgid "%s: total time in assembly: %ld.%06ld\n" +msgstr "" + +#: as.c:859 +#, c-format +msgid "%s: data size %ld\n" +msgstr "" + +#. +#. * We have a GROSS internal error. +#. * This should never happen. +#. +#: atof-generic.c:438 config/tc-a29k.c:544 config/tc-i860.c:335 +#: config/tc-i860.c:708 config/tc-m68k.c:3045 config/tc-m68k.c:3074 +#: config/tc-sparc.c:2157 +msgid "failed sanity check." +msgstr "" + +#: cond.c:75 +msgid "invalid identifier for \".ifdef\"" +msgstr "" + +#: cond.c:128 +msgid "non-constant expression in \".if\" statement" +msgstr "" + +#: cond.c:224 +msgid "bad format for ifc or ifnc" +msgstr "" + +#: cond.c:257 +msgid "\".endif\" without \".if\"" +msgstr "" + +#: cond.c:287 +msgid ".else without matching .if - ignored" +msgstr "" + +#: cond.c:292 +msgid "duplicate \"else\" - ignored" +msgstr "" + +#: cond.c:295 +msgid "here is the previous \"else\"" +msgstr "" + +#: cond.c:298 +msgid "here is the previous \"if\"" +msgstr "" + +#: cond.c:343 +msgid ".ifeqs syntax error" +msgstr "" + +#: cond.c:430 +msgid "end of macro inside conditional" +msgstr "" + +#: cond.c:432 +msgid "end of file inside conditional" +msgstr "" + +#: cond.c:435 +msgid "here is the start of the unterminated conditional" +msgstr "" + +#: cond.c:439 +msgid "here is the \"else\" of the unterminated conditional" +msgstr "" + +#: config/obj-aout.c:157 +#, c-format +msgid "Attempt to put a common symbol into set %s" +msgstr "" + +#: config/obj-aout.c:161 +#, c-format +msgid "Attempt to put an undefined symbol into set %s" +msgstr "" + +#: config/obj-aout.c:192 config/obj-elf.c:1527 ecoff.c:3663 +#, c-format +msgid "Symbol `%s' can not be both weak and common" +msgstr "" + +#: config/obj-aout.c:250 config/obj-coff.c:1766 +msgid "unresolved relocation" +msgstr "" + +#: config/obj-aout.c:252 config/obj-coff.c:1768 +#, c-format +msgid "bad relocation: symbol `%s' not in symbol table" +msgstr "" + +#: config/obj-aout.c:339 +#, c-format +msgid "%s: bad type for weak symbol" +msgstr "" + +#: config/obj-aout.c:453 config/obj-coff.c:2700 write.c:1796 +#, c-format +msgid "%s: global symbols not supported in common sections" +msgstr "" + +#: config/obj-aout.c:520 +#, c-format +msgid "Local symbol %s never defined." +msgstr "" + +#: config/obj-aout.c:608 +msgid "subsegment index too high" +msgstr "" + +#: config/obj-bout.c:312 config/obj-vms.c:566 +#, c-format +msgid "Local symbol %s never defined" +msgstr "" + +#: config/obj-coff.c:133 +#, c-format +msgid "Inserting \"%s\" into structure table failed: %s" +msgstr "" + +#: config/obj-coff.c:452 config/obj-coff.c:2113 +msgid ".ln pseudo-op inside .def/.endef: ignored." +msgstr "" + +#: config/obj-coff.c:512 config/obj-coff.c:2170 +msgid ".def pseudo-op used inside of .def/.endef: ignored." +msgstr "" + +#: config/obj-coff.c:558 config/obj-coff.c:2223 +msgid ".endef pseudo-op used outside of .def/.endef: ignored." +msgstr "" + +#: config/obj-coff.c:592 +#, c-format +msgid "`%s' symbol without preceding function" +msgstr "" + +#: config/obj-coff.c:634 config/obj-coff.c:2298 +#, c-format +msgid "unexpected storage class %d" +msgstr "" + +#: config/obj-coff.c:736 config/obj-coff.c:2405 +msgid ".dim pseudo-op used outside of .def/.endef: ignored." +msgstr "" + +#: config/obj-coff.c:756 config/obj-coff.c:2425 +msgid "badly formed .dim directive ignored" +msgstr "" + +#: config/obj-coff.c:807 config/obj-coff.c:2488 +msgid ".size pseudo-op used outside of .def/.endef ignored." +msgstr "" + +#: config/obj-coff.c:823 config/obj-coff.c:2504 +msgid ".scl pseudo-op used outside of .def/.endef ignored." +msgstr "" + +#: config/obj-coff.c:841 config/obj-coff.c:2522 +msgid ".tag pseudo-op used outside of .def/.endef ignored." +msgstr "" + +#: config/obj-coff.c:860 config/obj-coff.c:2540 +#, c-format +msgid "tag not found for .tag %s" +msgstr "" + +#: config/obj-coff.c:875 config/obj-coff.c:2555 +msgid ".type pseudo-op used outside of .def/.endef ignored." +msgstr "" + +#: config/obj-coff.c:897 config/obj-coff.c:2577 +msgid ".val pseudo-op used outside of .def/.endef ignored." +msgstr "" + +#: config/obj-coff.c:1026 config/obj-coff.c:2773 +msgid "mismatched .eb" +msgstr "" + +#: config/obj-coff.c:1044 config/obj-coff.c:2813 +msgid "C_EFCN symbol out of scope" +msgstr "" + +#. STYP_INFO +#. STYP_LIB +#. STYP_OVER +#: config/obj-coff.c:1253 +#, c-format +msgid "unsupported section attribute '%c'" +msgstr "" + +#: config/obj-coff.c:1258 config/obj-coff.c:3516 config/tc-ppc.c:3778 +#, c-format +msgid "unknown section attribute '%c'" +msgstr "" + +#: config/obj-coff.c:1280 config/tc-ppc.c:3796 read.c:2478 +#, c-format +msgid "error setting flags for \"%s\": %s" +msgstr "" + +#: config/obj-coff.c:1399 +#, c-format +msgid "0x%lx: \"%s\" type = %ld, class = %d, segment = %d\n" +msgstr "" + +#: config/obj-coff.c:1593 config/obj-ieee.c:69 +msgid "Out of step\n" +msgstr "" + +#: config/obj-coff.c:2028 +msgid "bfd_coff_swap_scnhdr_out failed" +msgstr "" + +#: config/obj-coff.c:2255 +msgid "`.bf' symbol without preceding function\n" +msgstr "" + +#: config/obj-coff.c:3216 config/obj-ieee.c:522 output-file.c:52 +#: output-file.c:119 +#, c-format +msgid "FATAL: Can't create %s" +msgstr "" + +#: config/obj-coff.c:3390 +#, c-format +msgid "Can't close %s: %s" +msgstr "" + +#: config/obj-coff.c:3424 +#, c-format +msgid "Too many new sections; can't add \"%s\"" +msgstr "" + +#: config/obj-coff.c:3834 config/tc-m88k.c:1260 config/tc-sparc.c:3015 +msgid "Expected comma after name" +msgstr "" + +#: config/obj-coff.c:3840 read.c:1934 +msgid "Missing size expression" +msgstr "" + +#: config/obj-coff.c:3846 +#, c-format +msgid "lcomm length (%d.) <0! Ignored." +msgstr "" + +#: config/obj-coff.c:3874 read.c:2160 +#, c-format +msgid "Symbol %s already defined" +msgstr "" + +#: config/obj-coff.c:3968 config/tc-i960.c:3201 +#, c-format +msgid "No 'bal' entry point for leafproc %s" +msgstr "" + +#: config/obj-coff.c:4047 write.c:2501 +#, c-format +msgid "Negative of non-absolute symbol %s" +msgstr "" + +#: config/obj-coff.c:4068 write.c:2515 +msgid "callj to difference of 2 symbols" +msgstr "" + +#: config/obj-coff.c:4114 +#, c-format +msgid "Can't emit reloc {- %s-seg symbol \"%s\"} @ file address %ld." +msgstr "" + +#. This is a COBR instruction. They have only a 13-bit +#. displacement and are only to be used for local branches: +#. flag as error, don't generate relocation. +#: config/obj-coff.c:4204 config/tc-i960.c:3221 write.c:2659 +msgid "can't use COBR format with external label" +msgstr "" + +#: config/obj-coff.c:4278 +#, c-format +msgid "Value of %ld too large for field of %d bytes at 0x%lx" +msgstr "" + +#: config/obj-coff.c:4292 write.c:2747 +#, c-format +msgid "Signed .word overflow; switch may be too large; %ld at 0x%lx" +msgstr "" + +#: config/obj-ecoff.c:239 +msgid "Can't set GP value" +msgstr "" + +#: config/obj-ecoff.c:246 +msgid "Can't set register masks" +msgstr "" + +#: config/obj-elf.c:274 config/tc-sparc.c:3156 config/tc-v850.c:263 +msgid "Expected comma after symbol-name" +msgstr "" + +#: config/obj-elf.c:281 config/tc-arc.c:778 config/tc-sparc.c:3163 +#, c-format +msgid ".COMMon length (%d.) <0! Ignored." +msgstr "" + +#: config/obj-elf.c:291 config/tc-alpha.c:3429 config/tc-sparc.c:3173 +#: config/tc-v850.c:285 +msgid "Ignoring attempt to re-define symbol" +msgstr "" + +#: config/obj-elf.c:299 config/tc-arc.c:796 config/tc-sparc.c:3181 +#: config/tc-v850.c:295 +#, c-format +msgid "Length of .comm \"%s\" is already %ld. Not changed to %d." +msgstr "" + +#: config/obj-elf.c:322 config/tc-arc.c:815 config/tc-v850.c:322 +msgid "Common alignment negative; 0 assumed" +msgstr "" + +#: config/obj-elf.c:341 config/tc-m32r.c:1298 config/tc-ppc.c:1389 +#: config/tc-v850.c:385 +msgid "Common alignment not a power of 2" +msgstr "" + +#: config/obj-elf.c:404 config/tc-arc.c:875 config/tc-sparc.c:3305 +#: config/tc-v850.c:563 +#, c-format +msgid "bad .common segment %s" +msgstr "" + +#: config/obj-elf.c:589 +msgid "Missing section name" +msgstr "" + +#: config/obj-elf.c:654 +msgid "Bad .section directive: want a,w,x in string" +msgstr "" + +#: config/obj-elf.c:703 +msgid "Unrecognized section type" +msgstr "" + +#: config/obj-elf.c:717 +msgid "Bad .section directive - character following name is not '#'" +msgstr "" + +#: config/obj-elf.c:749 +msgid "Unrecognized section attribute" +msgstr "" + +#: config/obj-elf.c:770 +#, c-format +msgid "Setting incorrect section type for %s" +msgstr "" + +#: config/obj-elf.c:780 +#, c-format +msgid "Setting incorrect section attributes for %s" +msgstr "" + +#: config/obj-elf.c:905 +msgid ".previous without corresponding .section; ignored" +msgstr "" + +#: config/obj-elf.c:954 +#, c-format +msgid "multiple .symver directives for symbol `%s'" +msgstr "" + +#: config/obj-elf.c:963 +msgid "expected comma after name in .symver" +msgstr "" + +#: config/obj-elf.c:984 +#, c-format +msgid "missing version name in `%s' for symbol `%s'" +msgstr "" + +#: config/obj-elf.c:1187 config/obj-som.c:148 config/obj-som.c:193 +msgid "Expected quoted string" +msgstr "" + +#: config/obj-elf.c:1208 +#, c-format +msgid "expected comma after name `%s' in .size directive" +msgstr "" + +#: config/obj-elf.c:1217 +msgid "missing expression in .size directive" +msgstr "" + +#: config/obj-elf.c:1283 +#, c-format +msgid "ignoring unrecognized symbol type \"%s\"" +msgstr "" + +#: config/obj-elf.c:1453 +msgid ".size expression too complicated to fix up" +msgstr "" + +#: config/obj-elf.c:1484 +#, c-format +msgid "" +"invalid attempt to declare external version name as default in symbol `%s'" +msgstr "" + +#: config/obj-elf.c:1610 +#, c-format +msgid "Failed to set up debugging information: %s" +msgstr "" + +#: config/obj-elf.c:1626 +#, c-format +msgid "Can't start writing .mdebug section: %s" +msgstr "" + +#: config/obj-elf.c:1634 +#, c-format +msgid "Could not write .mdebug section: %s" +msgstr "" + +#: config/obj-ieee.c:460 +msgid "too many sections" +msgstr "" + +#: config/obj-som.c:131 +msgid "Only one .version pseudo-op per file!" +msgstr "" + +#: config/obj-som.c:157 +#, c-format +msgid "FATAL: Attaching version header %s" +msgstr "" + +#: config/obj-som.c:176 +msgid "Only one .copyright pseudo-op per file!" +msgstr "" + +#: config/obj-som.c:202 +#, c-format +msgid "FATAL: Attaching copyright header %s" +msgstr "" + +#: config/obj-vms.c:464 +#, c-format +msgid "compiler emitted zero-size common symbol `%s' already defined" +msgstr "" + +#: config/obj-vms.c:474 +#, c-format +msgid "compiler redefined zero-size common symbol `%s'" +msgstr "" + +#: config/obj-vms.c:597 +#, c-format +msgid "Couldn't create VMS object file \"%s\"" +msgstr "" + +#: config/obj-vms.c:623 +msgid "I/O error writing VMS object file (length prefix)" +msgstr "" + +#: config/obj-vms.c:637 +msgid "I/O error writing VMS object file" +msgstr "" + +#: config/obj-vms.c:1240 +msgid "Couldn't find source file \"%s\", status=%%X%x" +msgstr "" + +#: config/obj-vms.c:1749 config/obj-vms.c:2937 +#, c-format +msgid "debugger forward reference error, dbx type %d" +msgstr "" + +#: config/obj-vms.c:1825 +#, c-format +msgid "Variable descriptor %d too complicated. Defined as `void *'." +msgstr "" + +#: config/obj-vms.c:2144 +msgid "" +"***Warning - the assembly code generated by the compiler has placed \n" +" global constant(s) in the text psect. These will not be available to \n" +" other modules, since this is not the correct way to handle this. You \n" +" have two options: 1) get a patched compiler that does not put global \n" +" constants in the text psect, or 2) remove the 'const' keyword from \n" +" definitions of global variables in your source module(s). Don't say \n" +" I didn't warn you! \n" +msgstr "" + +#: config/obj-vms.c:2463 +#, c-format +msgid "debugginer output: %d is an unknown untyped variable." +msgstr "" + +#: config/obj-vms.c:2681 +#, c-format +msgid "debugger output: structure element `%s' has undefined type" +msgstr "" + +#: config/obj-vms.c:2792 +#, c-format +msgid "debugger output: %d is an unknown type of variable." +msgstr "" + +#: config/obj-vms.c:2926 +#, c-format +msgid "debugger output: Unable to resolve %d circular references." +msgstr "" + +#: config/obj-vms.c:3131 +#, c-format +msgid "Module name truncated: %s\n" +msgstr "" + +#: config/obj-vms.c:3410 +#, c-format +msgid "Symbol %s replaced by %s\n" +msgstr "" + +#. impossible +#: config/obj-vms.c:3694 +#, c-format +msgid "Unknown VMS psect type (%ld)" +msgstr "" + +#: config/obj-vms.c:3735 +#, c-format +msgid "Globalsymbol attribute for symbol %s was unexpected." +msgstr "" + +#: config/obj-vms.c:3885 +msgid "Invalid data type for globalvalue" +msgstr "" + +#: config/obj-vms.c:3897 +#, c-format +msgid "Invalid globalvalue of %s" +msgstr "" + +#: config/obj-vms.c:4247 +msgid "Couldn't find fixup fragment when checking for indirect reference" +msgstr "" + +#: config/obj-vms.c:4591 config/obj-vms.c:4733 +msgid "Fixup data addsy and subsy don't have the same type" +msgstr "" + +#: config/obj-vms.c:4595 config/obj-vms.c:4737 +msgid "Fixup data addsy and subsy don't have an appropriate type" +msgstr "" + +#: config/obj-vms.c:4598 config/obj-vms.c:4740 +msgid "Fixup data is erroneously \"pcrel\"" +msgstr "" + +#: config/obj-vms.c:4614 config/obj-vms.c:4759 +msgid "Fixup datum is not a longword" +msgstr "" + +#: config/obj-vms.c:4618 config/obj-vms.c:4763 +msgid "Fixup datum is not \"fixP->fx_addsy\"" +msgstr "" + +#: config/obj-vms.c:4834 +#, c-format +msgid "" +"g++ wrote an extern reference to `%s' as a routine.\n" +"I will fix it, but I hope that it was note really a routine." +msgstr "" + +#: config/obj-vms.c:4966 +msgid "Can't handle global xtors symbols yet." +msgstr "" + +#: config/obj-vms.c:4969 +#, c-format +msgid "Unknown %s" +msgstr "" + +#. +#. * Error otherwise. +#. +#: config/obj-vms.c:5054 +#, c-format +msgid "unhandled stab type %d" +msgstr "" + +#: config/tc-a29k.c:160 config/tc-sparc.c:3357 +msgid "Unknown segment type" +msgstr "" + +#. Probably a memory allocation problem? Give up now. +#: config/tc-a29k.c:330 config/tc-hppa.c:1354 config/tc-i860.c:202 +#: config/tc-mips.c:1102 config/tc-mips.c:1144 config/tc-sparc.c:715 +msgid "Broken assembler. No assembly attempted." +msgstr "" + +#: config/tc-a29k.c:375 config/tc-arc.c:534 config/tc-d10v.c:481 +#: config/tc-d30v.c:540 config/tc-h8300.c:305 config/tc-h8500.c:297 +#: config/tc-mcore.c:380 config/tc-mn10200.c:936 config/tc-mn10300.c:1307 +#: config/tc-ppc.c:1844 config/tc-sh.c:478 config/tc-tic80.c:291 +#: config/tc-v850.c:2033 config/tc-w65.c:257 config/tc-z8k.c:341 +msgid "missing operand" +msgstr "" + +#: config/tc-a29k.c:415 config/tc-hppa.c:1471 config/tc-i860.c:407 +#: config/tc-i860.c:423 config/tc-sparc.c:1191 config/tc-sparc.c:1197 +#, c-format +msgid "Unknown opcode: `%s'" +msgstr "" + +#: config/tc-a29k.c:420 +#, c-format +msgid "Unknown opcode `%s'." +msgstr "" + +#: config/tc-a29k.c:452 +#, c-format +msgid "Too many operands: %s" +msgstr "" + +#: config/tc-a29k.c:474 config/tc-a29k.c:505 +#, c-format +msgid "Immediate value of %ld is too large" +msgstr "" + +#: config/tc-a29k.c:892 config/tc-i860.c:940 +#, c-format +msgid "bad relocation type: 0x%02x" +msgstr "" + +#: config/tc-a29k.c:916 +#, c-format +msgid "need %o3\n" +msgstr "" + +#: config/tc-a29k.c:932 +msgid "a29k_convert_frag\n" +msgstr "" + +#: config/tc-a29k.c:941 +msgid "a29k_estimate_size_before_relax\n" +msgstr "" + +#: config/tc-a29k.c:1092 +#, c-format +msgid "label \"$%d\" redefined" +msgstr "" + +#: config/tc-a29k.c:1165 +msgid "Invalid expression after %%%%\n" +msgstr "" + +#: config/tc-a29k.c:1176 +msgid "Invalid register in & expression" +msgstr "" + +#: config/tc-alpha.c:722 +#, c-format +msgid "internal error: can't hash opcode `%s': %s" +msgstr "" + +#: config/tc-alpha.c:756 +#, c-format +msgid "internal error: can't hash macro `%s': %s" +msgstr "" + +#: config/tc-alpha.c:832 config/tc-i960.c:2711 +msgid "syntax error" +msgstr "" + +#: config/tc-alpha.c:905 config/tc-arm.c:4982 config/tc-h8300.c:1413 +#: config/tc-h8500.c:1222 config/tc-hppa.c:3651 config/tc-i860.c:813 +#: config/tc-m68k.c:4003 config/tc-m88k.c:1106 config/tc-ns32k.c:1588 +#: config/tc-sparc.c:2433 config/tc-z8k.c:1355 +msgid "Bad call to MD_ATOF()" +msgstr "" + +#: config/tc-alpha.c:955 +#, c-format +msgid "Unknown CPU identifier `%s'" +msgstr "" + +#: config/tc-alpha.c:999 +msgid "" +"Alpha options:\n" +"-32addr\t\t\ttreat addresses as 32-bit values\n" +"-F\t\t\tlack floating point instructions support\n" +"-mev4 | -mev45 | -mev5 | -mev56 | -mpca56 | -mev6 | -mall\n" +"\t\t\tspecify variant of Alpha architecture\n" +"-m21064 | -m21066 | -m21164 | -m21164a | -m21164pc | -m21264\n" +"\t\t\tthese variants include PALcode opcodes\n" +msgstr "" + +#: config/tc-alpha.c:1009 +msgid "" +"VMS options:\n" +"-+\t\t\thash encode (don't truncate) names longer than 64 characters\n" +"-H\t\t\tshow new symbol after hash truncation\n" +msgstr "" + +#: config/tc-alpha.c:1165 +#, c-format +msgid "unhandled relocation type %s" +msgstr "" + +#: config/tc-alpha.c:1178 +msgid "non-absolute expression in constant field" +msgstr "" + +#: config/tc-alpha.c:1192 +#, c-format +msgid "type %d reloc done?\n" +msgstr "" + +#: config/tc-alpha.c:1243 config/tc-alpha.c:1250 config/tc-mips.c:7777 +msgid "Used $at without \".set noat\"" +msgstr "" + +#: config/tc-alpha.c:1407 +#, c-format +msgid "cannot represent `%s' relocation in object file" +msgstr "" + +#: config/tc-alpha.c:1414 +#, c-format +msgid "internal error? cannot generate `%s' relocation" +msgstr "" + +#: config/tc-alpha.c:1468 +#, c-format +msgid "frame reg expected, using $%d." +msgstr "" + +#: config/tc-alpha.c:1793 +#, c-format +msgid "operand out of range (%s not between %d and %d)" +msgstr "" + +#: config/tc-alpha.c:1890 config/tc-arc.c:547 config/tc-d10v.c:570 +#: config/tc-d30v.c:623 config/tc-mn10200.c:991 config/tc-mn10300.c:1382 +#: config/tc-ppc.c:1810 config/tc-ppc.c:1917 config/tc-ppc.c:1929 +#: config/tc-v850.c:1819 config/tc-v850.c:1842 config/tc-v850.c:2055 +msgid "too many fixups" +msgstr "" + +#: config/tc-alpha.c:2015 config/tc-alpha.c:2073 +#, c-format +msgid "inappropriate arguments for opcode `%s'" +msgstr "" + +#: config/tc-alpha.c:2017 config/tc-alpha.c:2075 +#, c-format +msgid "opcode `%s' not supported for target %s" +msgstr "" + +#: config/tc-alpha.c:2021 config/tc-alpha.c:2078 +#, c-format +msgid "unknown opcode `%s'" +msgstr "" + +#: config/tc-alpha.c:2130 +msgid "can not resolve expression" +msgstr "" + +#: config/tc-alpha.c:2268 config/tc-alpha.c:2445 +msgid "overflow in literal (.lita) table" +msgstr "" + +#: config/tc-alpha.c:2275 config/tc-alpha.c:2297 config/tc-alpha.c:2458 +#: config/tc-alpha.c:2680 config/tc-alpha.c:2727 config/tc-alpha.c:2775 +#: config/tc-alpha.c:2864 config/tc-alpha.c:3065 config/tc-alpha.c:3166 +msgid "macro requires $at register while noat in effect" +msgstr "" + +#: config/tc-alpha.c:2277 config/tc-alpha.c:2299 config/tc-alpha.c:2460 +msgid "macro requires $at while $at in use" +msgstr "" + +#: config/tc-alpha.c:2407 expr.c:82 read.c:3101 +msgid "bignum invalid; zero assumed" +msgstr "" + +#: config/tc-alpha.c:2409 expr.c:84 read.c:3103 read.c:3432 read.c:4328 +msgid "floating point number invalid; zero assumed" +msgstr "" + +#: config/tc-alpha.c:2414 +msgid "can't handle expression" +msgstr "" + +#: config/tc-alpha.c:2451 +msgid "overflow in literal (.lit8) table" +msgstr "" + +#: config/tc-alpha.c:3400 config/tc-ppc.c:1338 config/tc-ppc.c:3542 +#: read.c:1358 +#, c-format +msgid ".COMMon length (%ld.) <0! Ignored." +msgstr "" + +#: config/tc-alpha.c:3438 config/tc-alpha.c:3447 config/tc-ppc.c:3579 +#: read.c:1379 +#, c-format +msgid "Length of .comm \"%s\" is already %ld. Not changed to %ld." +msgstr "" + +#: config/tc-alpha.c:3549 ecoff.c:3105 +msgid ".ent directive has no name" +msgstr "" + +#: config/tc-alpha.c:3557 +msgid "nested .ent directives" +msgstr "" + +#: config/tc-alpha.c:3593 ecoff.c:3053 +msgid ".end directive has no name" +msgstr "" + +#: config/tc-alpha.c:3602 +msgid ".end directive names different symbol than .ent" +msgstr "" + +#: config/tc-alpha.c:3676 +#, c-format +msgid "Invalid argument %d to .prologue." +msgstr "" + +#: config/tc-alpha.c:3704 +msgid "ECOFF debugging is disabled." +msgstr "" + +#: config/tc-alpha.c:3725 +msgid "Unknown section directive" +msgstr "" + +#: config/tc-alpha.c:3762 +msgid ".ent directive has no symbol" +msgstr "" + +#: config/tc-alpha.c:3790 +msgid "Bad .frame directive 1./2. param" +msgstr "" + +#: config/tc-alpha.c:3802 +msgid "Bad .frame directive 3./4. param" +msgstr "" + +#: config/tc-alpha.c:3827 +msgid ".pdesc directive not in link (.link) section" +msgstr "" + +#: config/tc-alpha.c:3835 +msgid ".pdesc has no matching .ent" +msgstr "" + +#: config/tc-alpha.c:3845 +msgid ".pdesc directive has no entry symbol" +msgstr "" + +#: config/tc-alpha.c:3857 +msgid "No comma after .pdesc " +msgstr "" + +#: config/tc-alpha.c:3880 +msgid "unknown procedure kind" +msgstr "" + +#: config/tc-alpha.c:3975 +msgid ".name directive not in link (.link) section" +msgstr "" + +#: config/tc-alpha.c:3983 +msgid ".name directive has no symbol" +msgstr "" + +#: config/tc-alpha.c:4018 +msgid "No symbol after .linkage" +msgstr "" + +#: config/tc-alpha.c:4047 +msgid "No symbol after .code_address" +msgstr "" + +#: config/tc-alpha.c:4082 ecoff.c:3269 +msgid "Bad .mask directive" +msgstr "" + +#: config/tc-alpha.c:4104 ecoff.c:3200 +msgid "Bad .fmask directive" +msgstr "" + +#: config/tc-alpha.c:4275 read.c:2123 read.c:2675 stabs.c:460 +#, c-format +msgid "Expected comma after name \"%s\"" +msgstr "" + +#. symbolP->sy_other = (signed char) temp; +#: config/tc-alpha.c:4286 +#, c-format +msgid "unhandled: .proc %s,%d" +msgstr "" + +#: config/tc-alpha.c:4321 +#, c-format +msgid "Tried to .set unrecognized mode `%s'" +msgstr "" + +#. not fatal, but it might not work in the end +#: config/tc-alpha.c:4338 +msgid "File overrides no-base-register option." +msgstr "" + +#: config/tc-alpha.c:4355 +#, c-format +msgid "Bad base register, using $%d." +msgstr "" + +#: config/tc-alpha.c:4377 +#, c-format +msgid "Alignment too large: %d. assumed" +msgstr "" + +#: config/tc-alpha.c:4381 config/tc-d30v.c:2163 +msgid "Alignment negative: 0 assumed" +msgstr "" + +#: config/tc-alpha.c:4694 +#, c-format +msgid "Chose GP value of %lx\n" +msgstr "" + +#: config/tc-arc.c:136 +msgid "" +"ARC options:\n" +"-EB\t\t\tgenerate big endian output\n" +"-EL\t\t\tgenerate little endian output\n" +msgstr "" + +#: config/tc-arc.c:154 config/tc-arc.c:177 config/tc-arc.c:921 +#: config/tc-hppa.c:1316 config/tc-hppa.c:6410 config/tc-hppa.c:6416 +#: config/tc-hppa.c:6422 config/tc-mn10300.c:890 config/tc-mn10300.c:2023 +msgid "could not set architecture and machine" +msgstr "" + +#: config/tc-arc.c:174 +msgid "virtual memory exhausted" +msgstr "" + +#: config/tc-arc.c:253 config/tc-mn10200.c:1354 config/tc-mn10300.c:1930 +#: config/tc-ppc.c:1095 config/tc-v850.c:1618 +#, c-format +msgid "operand out of range (%s not between %ld and %ld)" +msgstr "" + +#: config/tc-arc.c:388 +#, c-format +msgid "unknown syntax format character `%c'" +msgstr "" + +#: config/tc-arc.c:487 +msgid "too many suffixes" +msgstr "" + +#: config/tc-arc.c:532 config/tc-d10v.c:479 config/tc-d30v.c:538 +#: config/tc-mn10200.c:933 config/tc-mn10300.c:1304 config/tc-ppc.c:1842 +#: config/tc-tic80.c:287 config/tc-v850.c:2030 +msgid "illegal operand" +msgstr "" + +#: config/tc-arc.c:619 config/tc-mn10200.c:1032 config/tc-mn10300.c:1452 +#: config/tc-ppc.c:1966 config/tc-v850.c:2108 +#, c-format +msgid "junk at end of line: `%s'" +msgstr "" + +#: config/tc-arc.c:659 +msgid "8 byte instruction in delay slot" +msgstr "" + +#: config/tc-arc.c:661 +msgid "8 byte jump instruction with delay slot" +msgstr "" + +#: config/tc-arc.c:669 +msgid "conditional branch follows set of flags" +msgstr "" + +#: config/tc-arc.c:748 config/tc-arm.c:6041 +#, c-format +msgid "bad instruction `%s'" +msgstr "" + +#: config/tc-arc.c:771 +msgid "expected comma after symbol-name" +msgstr "" + +#: config/tc-arc.c:788 +msgid "ignoring attempt to re-define symbol" +msgstr "" + +#: config/tc-arc.c:803 +msgid "expected comma after common length" +msgstr "" + +#: config/tc-arc.c:896 +msgid ".cpu command must appear before any instructions" +msgstr "" + +#: config/tc-arc.c:915 +msgid ".cpu conflicts with previous value" +msgstr "" + +#: config/tc-arc.c:926 +msgid "bad .cpu op" +msgstr "" + +#: config/tc-arc.c:950 config/tc-ppc.c:2615 +msgid "missing rename string" +msgstr "" + +#: config/tc-arc.c:962 +msgid "invalid symbol to rename to" +msgstr "" + +#: config/tc-arc.c:1009 config/tc-d10v.c:274 config/tc-d30v.c:353 +#: config/tc-mips.c:9317 config/tc-mn10200.c:356 config/tc-ppc.c:4363 +#: config/tc-sh.c:1187 config/tc-v850.c:1276 +msgid "bad call to md_atof" +msgstr "" + +#: config/tc-arc.c:1096 +#, c-format +msgid "missing ')' in %-op" +msgstr "" + +#: config/tc-arc.c:1130 +msgid "expression too complex for %%st" +msgstr "" + +#: config/tc-arc.c:1324 config/tc-arm.c:2937 config/tc-d10v.c:1448 +#: config/tc-d30v.c:1810 config/tc-mips.c:3361 config/tc-mips.c:4317 +#: config/tc-mips.c:5102 config/tc-mips.c:5648 config/tc-ppc.c:4698 +#: config/tc-v850.c:2339 +msgid "expression too complex" +msgstr "" + +#: config/tc-arc.c:1390 config/tc-ppc.c:4801 config/tc-v850.c:2383 +msgid "unresolved expression that must be resolved" +msgstr "" + +#: config/tc-arc.c:1454 config/tc-sparc.c:2880 +#, c-format +msgid "internal error: can't export reloc type %d (`%s')" +msgstr "" + +#: config/tc-arm.c:983 +msgid "Literal Pool Overflow" +msgstr "" + +#: config/tc-arm.c:1103 +msgid "Invalid syntax for .req directive." +msgstr "" + +#: config/tc-arm.c:1139 +msgid "Nothing to put in the pool\n" +msgstr "" + +#: config/tc-arm.c:1151 +msgid "Inserting implicit pool at change of section" +msgstr "" + +#: config/tc-arm.c:1183 config/tc-mips.c:10603 read.c:2017 +#, c-format +msgid "Alignment too large: %d. assumed." +msgstr "" + +#: config/tc-arm.c:1186 read.c:2022 +msgid "Alignment negative. 0 assumed." +msgstr "" + +#: config/tc-arm.c:1251 +msgid "selected processor does not support THUMB opcodes" +msgstr "" + +#: config/tc-arm.c:1263 +msgid "selected processor does not support ARM opcodes" +msgstr "" + +#: config/tc-arm.c:1272 +#, c-format +msgid "invalid instruction size selected (%d)" +msgstr "" + +#: config/tc-arm.c:1307 +#, c-format +msgid "invalid operand to .code directive (%d) (expecting 16 or 32)" +msgstr "" + +#: config/tc-arm.c:1319 +msgid "Garbage following instruction" +msgstr "" + +#. In the few cases where we might be able to accept something else +#. this error can be overridden +#: config/tc-arm.c:1367 +#, c-format +msgid "Register expected, not '%.100s'" +msgstr "" + +#. In the few cases where we might be able to accept something else +#. this error can be overridden +#: config/tc-arm.c:1393 +msgid " expected" +msgstr "" + +#: config/tc-arm.c:1424 +msgid "Illegal co-processor number" +msgstr "" + +#: config/tc-arm.c:1431 +msgid "Bad or missing co-processor number" +msgstr "" + +#: config/tc-arm.c:1456 +msgid "bad or missing expression" +msgstr "" + +#: config/tc-arm.c:1462 +msgid "immediate co-processor expression too large" +msgstr "" + +#. In the few cases where we might be able to accept something else +#. this error can be overridden +#: config/tc-arm.c:1487 +msgid "Co-processor register expected" +msgstr "" + +#. In the few cases where we might be able to accept something else +#. this error can be overridden +#: config/tc-arm.c:1511 +msgid "Floating point register expected" +msgstr "" + +#: config/tc-arm.c:1529 +msgid "immediate expression expected" +msgstr "" + +#: config/tc-arm.c:1544 +msgid "co-processor address must be word aligned" +msgstr "" + +#: config/tc-arm.c:1550 +msgid "offset too large" +msgstr "" + +#: config/tc-arm.c:1600 +msgid "pc may not be used in post-increment" +msgstr "" + +#: config/tc-arm.c:1616 config/tc-arm.c:2727 +msgid "pre-indexed expression expected" +msgstr "" + +#: config/tc-arm.c:1630 config/tc-arm.c:2740 config/tc-arm.c:3089 +msgid "missing ]" +msgstr "" + +#: config/tc-arm.c:1641 +msgid "pc may not be used with write-back" +msgstr "" + +#: config/tc-arm.c:1696 +msgid " expected" +msgstr "" + +#: config/tc-arm.c:1758 config/tc-arm.c:2378 +msgid "Register or shift expression expected" +msgstr "" + +#: config/tc-arm.c:1772 config/tc-arm.c:2090 config/tc-arm.c:2345 +#: config/tc-arm.c:2365 +msgid "Invalid constant" +msgstr "" + +#: config/tc-arm.c:1783 +msgid "Error: unrecognised syntax for second argument to msr instruction" +msgstr "" + +#: config/tc-arm.c:1833 +msgid "rdhi, rdlo and rm must all be different" +msgstr "" + +#: config/tc-arm.c:1890 +msgid "rd and rm should be different in mul" +msgstr "" + +#: config/tc-arm.c:1947 +msgid "rd and rm should be different in mla" +msgstr "" + +#: config/tc-arm.c:2074 +msgid "bad_segment" +msgstr "" + +#: config/tc-arm.c:2121 config/tc-arm.c:2199 +msgid "Shift expression expected" +msgstr "" + +#: config/tc-arm.c:2163 +msgid "Invalid immediate shift" +msgstr "" + +#: config/tc-arm.c:2192 +msgid "shift requires register or #expression" +msgstr "" + +#: config/tc-arm.c:2193 +msgid "shift requires #expression" +msgstr "" + +#: config/tc-arm.c:2336 config/tc-arm.c:2770 +msgid "Constant expression expected" +msgstr "" + +#: config/tc-arm.c:2432 +msgid "Invalid floating point immediate expression" +msgstr "" + +#: config/tc-arm.c:2435 +msgid "Floating point register or immediate expression expected" +msgstr "" + +#: config/tc-arm.c:2574 +msgid "address offset too large" +msgstr "" + +#: config/tc-arm.c:2645 +msgid "Processor does not support halfwords or signed bytes" +msgstr "" + +#: config/tc-arm.c:2667 +msgid "Address expected" +msgstr "" + +#: config/tc-arm.c:2698 config/tc-arm.c:2712 config/tc-arm.c:2750 +msgid "destination register same as write-back base\n" +msgstr "" + +#: config/tc-arm.c:2790 +msgid "literal pool insertion failed" +msgstr "" + +#: config/tc-arm.c:2826 +msgid "Pre-increment instruction with translate" +msgstr "" + +#: config/tc-arm.c:2868 +msgid "Bad range in register list" +msgstr "" + +#: config/tc-arm.c:2876 config/tc-arm.c:2885 config/tc-arm.c:2927 +#, c-format +msgid "Warning: Duplicated register (r%d) in register list" +msgstr "" + +#: config/tc-arm.c:2888 +msgid "Warning: Register range not in ascending order" +msgstr "" + +#: config/tc-arm.c:2900 +msgid "Missing `}'" +msgstr "" + +#: config/tc-arm.c:2916 +msgid "invalid register mask" +msgstr "" + +#: config/tc-arm.c:2977 +msgid "r15 not allowed as base register" +msgstr "" + +#: config/tc-arm.c:3047 config/tc-arm.c:3061 +msgid "r15 not allowed in swap" +msgstr "" + +#: config/tc-arm.c:3158 +msgid "Use of r15 in bx has undefined behaviour" +msgstr "" + +#: config/tc-arm.c:3417 config/tc-v850.c:1921 config/tc-v850.c:1942 +msgid "constant expression expected" +msgstr "" + +#: config/tc-arm.c:3423 +msgid "Constant value required for number of registers" +msgstr "" + +#: config/tc-arm.c:3431 +msgid "number of registers must be in the range [1:4]" +msgstr "" + +#: config/tc-arm.c:3493 +msgid "R15 not allowed as base register with write-back" +msgstr "" + +#: config/tc-arm.c:3745 +msgid "lo register required" +msgstr "" + +#: config/tc-arm.c:3753 +msgid "hi register required" +msgstr "" + +#: config/tc-arm.c:3823 +msgid "dest and source1 must be the same register" +msgstr "" + +#: config/tc-arm.c:3830 +msgid "subtract valid only on lo regs" +msgstr "" + +#: config/tc-arm.c:3854 +msgid "invalid Hi register with immediate" +msgstr "" + +#: config/tc-arm.c:3881 config/tc-arm.c:3914 config/tc-arm.c:3924 +msgid "immediate value out of range" +msgstr "" + +#: config/tc-arm.c:3892 +msgid "invalid immediate value for stack adjust" +msgstr "" + +#: config/tc-arm.c:3903 +msgid "invalid immediate for address calculation" +msgstr "" + +#: config/tc-arm.c:3990 +msgid "source1 and dest must be same register" +msgstr "" + +#: config/tc-arm.c:4025 +msgid "Invalid immediate for shift" +msgstr "" + +#: config/tc-arm.c:4104 +msgid "only lo regs allowed with immediate" +msgstr "" + +#: config/tc-arm.c:4123 +msgid "invalid immediate" +msgstr "" + +#: config/tc-arm.c:4178 +msgid "expected ']'" +msgstr "" + +#: config/tc-arm.c:4245 +msgid "byte or halfword not valid for base register" +msgstr "" + +#: config/tc-arm.c:4250 +msgid "R15 based store not allowed" +msgstr "" + +#: config/tc-arm.c:4255 +msgid "Invalid base register for register offset" +msgstr "" + +#: config/tc-arm.c:4273 +msgid "invalid offset" +msgstr "" + +#: config/tc-arm.c:4284 +msgid "invalid base register in load/store" +msgstr "" + +#: config/tc-arm.c:4308 config/tc-arm.c:5471 config/tc-arm.c:5480 +#: config/tc-arm.c:5487 config/tc-arm.c:5494 config/tc-arm.c:5501 +msgid "Invalid offset" +msgstr "" + +#: config/tc-arm.c:4386 +msgid "dest and source1 one must be the same register" +msgstr "" + +#: config/tc-arm.c:4394 +msgid "Rs and Rd must be different in MUL" +msgstr "" + +#: config/tc-arm.c:4539 +msgid "" +"Inserted missing '!': load/store multiple always writes back base register" +msgstr "" + +#: config/tc-arm.c:4555 config/tc-arm.c:4657 +msgid "Expression too complex" +msgstr "" + +#: config/tc-arm.c:4561 +msgid "only lo-regs valid in load/store multiple" +msgstr "" + +#: config/tc-arm.c:4608 +msgid "Syntax: ldrs[b] Rd, [Rb, Ro]" +msgstr "" + +#: config/tc-arm.c:4673 +msgid "invalid register list to push/pop instruction" +msgstr "" + +#: config/tc-arm.c:4811 +msgid "Virtual memory exhausted" +msgstr "" + +#: config/tc-arm.c:5203 +#, c-format +msgid "invalid constant (%x) after fixup\n" +msgstr "" + +#: config/tc-arm.c:5215 config/tc-arm.c:5236 +#, c-format +msgid "bad immediate value for offset (%d)" +msgstr "" + +#: config/tc-arm.c:5234 config/tc-arm.c:5257 +msgid "invalid literal constant: pool needs to be closer\n" +msgstr "" + +#: config/tc-arm.c:5274 +msgid "shift expression is too large" +msgstr "" + +#: config/tc-arm.c:5292 config/tc-arm.c:5301 +msgid "Invalid swi expression" +msgstr "" + +#: config/tc-arm.c:5311 +msgid "Invalid expression in load/store multiple" +msgstr "" + +#: config/tc-arm.c:5341 config/tc-arm.c:5357 config/tc-mips.c:10430 +msgid "Branch out of range" +msgstr "" + +#: config/tc-arm.c:5376 +msgid "Branch with link out of range" +msgstr "" + +#: config/tc-arm.c:5443 +msgid "Illegal value for co-processor offset" +msgstr "" + +#: config/tc-arm.c:5466 +#, c-format +msgid "Invalid offset, target not word aligned (0x%08X)" +msgstr "" + +#: config/tc-arm.c:5537 +msgid "Invalid immediate for stack address calculation" +msgstr "" + +#: config/tc-arm.c:5546 +#, c-format +msgid "Invalid immediate for address calculation (value = 0x%08X)" +msgstr "" + +#: config/tc-arm.c:5555 +msgid "Invalid 8bit immediate" +msgstr "" + +#: config/tc-arm.c:5563 +msgid "Invalid 3bit immediate" +msgstr "" + +#: config/tc-arm.c:5579 +#, c-format +msgid "Invalid immediate: %d is too large" +msgstr "" + +#: config/tc-arm.c:5593 +#, c-format +msgid "Illegal Thumb shift value: %d" +msgstr "" + +#: config/tc-arm.c:5607 +#, c-format +msgid "Bad relocation fixup type (%d)\n" +msgstr "" + +#: config/tc-arm.c:5676 +msgid "Literal referenced across section boundry (Implicit dump?)" +msgstr "" + +#: config/tc-arm.c:5695 +#, c-format +msgid "Internal_relocation (type %d) not fixed up (IMMEDIATE)" +msgstr "" + +#: config/tc-arm.c:5701 +#, c-format +msgid "Internal_relocation (type %d) not fixed up (OFFSET_IMM)" +msgstr "" + +#: config/tc-arm.c:5724 +#, c-format +msgid "Can not represent %s relocation in this object file format (%d)" +msgstr "" + +#: config/tc-arm.c:5742 config/tc-mips.c:11909 config/tc-sh.c:2277 +#, c-format +msgid "Can not represent %s relocation in this object file format" +msgstr "" + +#: config/tc-arm.c:5755 +msgid "md_estimate_size_before_relax\n" +msgstr "" + +#: config/tc-arm.c:5825 +#, c-format +msgid "No operator -- statement `%s'\n" +msgstr "" + +#: config/tc-arm.c:5875 config/tc-arm.c:5927 +#, c-format +msgid "Opcode `%s' must have suffix from <%s>\n" +msgstr "" + +#: config/tc-arm.c:5900 +msgid "Warning: Use of the 'nv' conditional is deprecated\n" +msgstr "" + +#: config/tc-arm.c:6019 +#, c-format +msgid "register '%s' does not exist\n" +msgstr "" + +#: config/tc-arm.c:6025 +#, c-format +msgid "ignoring redefinition of register alias '%s'" +msgstr "" + +#: config/tc-arm.c:6030 +#, c-format +msgid "" +"ignoring redefinition of register alias '%s' to non-existant register '%s'" +msgstr "" + +#: config/tc-arm.c:6034 +msgid "ignoring incomplete .req pseuso op" +msgstr "" + +#: config/tc-arm.c:6210 +#, c-format +msgid "Unrecognised APCS switch -m%s" +msgstr "" + +#: config/tc-arm.c:6336 config/tc-arm.c:6347 config/tc-arm.c:6358 +#: config/tc-arm.c:6363 +#, c-format +msgid "Invalid architecture variant -m%s" +msgstr "" + +#: config/tc-arm.c:6370 +#, c-format +msgid "Invalid processor variant -m%s" +msgstr "" + +#: config/tc-arm.c:6392 +msgid "" +" ARM Specific Assembler Options:\n" +" -m[arm][] select processor variant\n" +" -m[arm]v[2|2a|3|3m|4|4t] select architecture variant\n" +" -mthumb only allow Thumb instructions\n" +" -mthumb-interwork mark the assembled code as supporting " +"interworking\n" +" -mall allow any instruction\n" +" -mfpa10, -mfpa11 select floating point architecture\n" +" -mfpe-old don't allow floating-point multiple " +"instructions\n" +" -mno-fpu don't allow any floating-point instructions.\n" +msgstr "" + +#: config/tc-arm.c:6403 +msgid " -k generate PIC code.\n" +msgstr "" + +#: config/tc-arm.c:6407 +msgid "" +" -mapcs-32, -mapcs-26 specify which ARM Procedure Calling Standard to " +"use\n" +msgstr "" + +#: config/tc-arm.c:6410 +msgid " -mapcs-float floating point args are passed in FP regs\n" +msgstr "" + +#: config/tc-arm.c:6413 +msgid "" +" -mapcs-reentrant the code is position independent/reentrant\n" +msgstr "" + +#: config/tc-arm.c:6418 +msgid " -moabi support the old ELF ABI\n" +msgstr "" + +#: config/tc-arm.c:6423 +msgid "" +" -EB assemble code for a big endian cpu\n" +" -EL assemble code for a little endian cpu\n" +msgstr "" + +#: config/tc-arm.c:6596 +#, c-format +msgid "%s: unexpected function type: %d" +msgstr "" + +#: config/tc-d10v.c:218 +msgid "" +"D10V options:\n" +"-O optimize. Will do some operations in parallel.\n" +msgstr "" + +#: config/tc-d10v.c:521 config/tc-d10v.c:603 config/tc-d30v.c:639 +#, c-format +msgid "operand out of range: %d" +msgstr "" + +#: config/tc-d10v.c:664 +msgid "Instruction must be executed in parallel with another instruction." +msgstr "" + +#: config/tc-d10v.c:716 +msgid "Instruction must be executed in parallel" +msgstr "" + +#: config/tc-d10v.c:719 +msgid "Long instructions may not be combined." +msgstr "" + +#: config/tc-d10v.c:759 +msgid "One of these instructions may not be executed in parallel." +msgstr "" + +#: config/tc-d10v.c:764 config/tc-d30v.c:843 +msgid "Two IU instructions may not be executed in parallel" +msgstr "" + +#: config/tc-d10v.c:766 config/tc-d10v.c:774 config/tc-d10v.c:789 +#: config/tc-d10v.c:802 config/tc-d30v.c:844 config/tc-d30v.c:853 +msgid "Swapping instruction order" +msgstr "" + +#: config/tc-d10v.c:772 config/tc-d30v.c:850 +msgid "Two MU instructions may not be executed in parallel" +msgstr "" + +#: config/tc-d10v.c:793 config/tc-d30v.c:869 +msgid "IU instruction may not be in the left container" +msgstr "" + +#: config/tc-d10v.c:806 config/tc-d30v.c:882 +msgid "MU instruction may not be in the right container" +msgstr "" + +#: config/tc-d10v.c:810 config/tc-d30v.c:890 +msgid "unknown execution type passed to write_2_short()" +msgstr "" + +#: config/tc-d10v.c:1023 config/tc-d10v.c:1037 config/tc-h8300.c:1279 +#: config/tc-h8500.c:1122 config/tc-mcore.c:709 config/tc-sh.c:1040 +#: config/tc-z8k.c:1223 +msgid "can't find opcode " +msgstr "" + +#: config/tc-d10v.c:1050 config/tc-d10v.c:1068 config/tc-d30v.c:1368 +msgid "Unable to mix instructions as specified" +msgstr "" + +#: config/tc-d10v.c:1116 config/tc-d30v.c:1503 +#, c-format +msgid "unknown opcode: %s" +msgstr "" + +#: config/tc-d10v.c:1197 config/tc-d10v.c:1343 config/tc-tic80.c:537 +msgid "bad opcode or operands" +msgstr "" + +#: config/tc-d10v.c:1246 config/tc-m68k.c:4110 +msgid "value out of range" +msgstr "" + +#: config/tc-d10v.c:1318 +msgid "illegal operand - register name found where none expected" +msgstr "" + +#: config/tc-d10v.c:1354 config/tc-tic80.c:548 +msgid "Register number must be EVEN" +msgstr "" + +#: config/tc-d10v.c:1385 config/tc-d30v.c:1754 config/tc-mn10200.c:1234 +#: config/tc-mn10300.c:1786 config/tc-ppc.c:4997 config/tc-v850.c:2254 +#, c-format +msgid "reloc %d not supported by object file format" +msgstr "" + +#: config/tc-d10v.c:1498 +#, c-format +msgid "line %d: rep or repi must include at least 4 instructions" +msgstr "" + +#: config/tc-d10v.c:1517 config/tc-d30v.c:1935 +#, c-format +msgid "line %d: unknown relocation type: 0x%x" +msgstr "" + +#: config/tc-d30v.c:184 +#, c-format +msgid "Register name %s conflicts with symbol of the same name" +msgstr "" + +#: config/tc-d30v.c:276 +msgid "" +"\n" +"D30V options:\n" +"-O Make adjacent short instructions parallel if " +"possible.\n" +"-n Warn about all NOPs inserted by the assembler.\n" +"-N\t\t\tWarn about NOPs inserted after word multiplies.\n" +"-c Warn about symbols whoes names match register " +"names.\n" +"-C Opposite of -C. -c is the default.\n" +msgstr "" + +#: config/tc-d30v.c:450 +msgid "unexpected 12-bit reloc type" +msgstr "" + +#: config/tc-d30v.c:457 +msgid "unexpected 18-bit reloc type" +msgstr "" + +#: config/tc-d30v.c:701 +#, c-format +msgid "%s NOP inserted" +msgstr "" + +#: config/tc-d30v.c:702 +msgid "sequential" +msgstr "" + +#: config/tc-d30v.c:702 +msgid "parallel" +msgstr "" + +#: config/tc-d30v.c:839 +msgid "Instructions may not be executed in parallel" +msgstr "" + +#: config/tc-d30v.c:852 config/tc-d30v.c:859 config/tc-d30v.c:875 +#: config/tc-d30v.c:884 +#, c-format +msgid "Executing %s in IU may not work" +msgstr "" + +#: config/tc-d30v.c:871 +#, c-format +msgid "special left instruction `%s' kills instruction `%s' in right container" +msgstr "" + +#: config/tc-d30v.c:1250 config/tc-d30v.c:1267 +msgid "Cannot assemble instruction" +msgstr "" + +#: config/tc-d30v.c:1252 +msgid "First opcode is long. Unable to mix instructions as specified." +msgstr "" + +#: config/tc-d30v.c:1320 +msgid "word of NOPs added between word multiply and load" +msgstr "" + +#: config/tc-d30v.c:1322 +msgid "word of NOPs added between word multiply and 16-bit multiply" +msgstr "" + +#: config/tc-d30v.c:1352 +msgid "Instruction uses long version, so it cannot be mixed as specified" +msgstr "" + +#: config/tc-d30v.c:1436 config/tc-d30v.c:1473 +#, c-format +msgid "unknown condition code: %s" +msgstr "" + +#: config/tc-d30v.c:1466 +#, c-format +msgid "cmpu doesn't support condition code %s" +msgstr "" + +#: config/tc-d30v.c:1514 +#, c-format +msgid "operands for opcode `%s' do not match any valid format" +msgstr "" + +#: config/tc-d30v.c:1727 +msgid "Odd numbered register used as target of multi-register instruction" +msgstr "" + +#: config/tc-d30v.c:1824 +#, c-format +msgid "line %d: unable to place address of symbol '%s' into a byte" +msgstr "" + +#: config/tc-d30v.c:1827 +#, c-format +msgid "line %d: unable to place value %x into a byte" +msgstr "" + +#: config/tc-d30v.c:1835 +#, c-format +msgid "line %d: unable to place address of symbol '%s' into a short" +msgstr "" + +#: config/tc-d30v.c:1838 +#, c-format +msgid "line %d: unable to place value %x into a short" +msgstr "" + +#: config/tc-d30v.c:1846 +#, c-format +msgid "line %d: unable to place address of symbol '%s' into a quad" +msgstr "" + +#: config/tc-d30v.c:2016 +#, c-format +msgid "value too large to fit in %d bits" +msgstr "" + +#: config/tc-d30v.c:2159 +#, c-format +msgid "Alignment too large: %d assumed" +msgstr "" + +#: config/tc-h8300.c:254 config/tc-h8300.c:262 +msgid "Reg not valid for H8/300" +msgstr "" + +#: config/tc-h8300.c:423 config/tc-h8300.c:426 config/tc-h8300.c:429 +#: config/tc-h8300.c:433 +msgid "Invalid register list for ldm/stm\n" +msgstr "" + +#: config/tc-h8300.c:490 config/tc-h8300.c:553 config/tc-h8300.c:560 +msgid "Wrong size pointer register for architecture." +msgstr "" + +#: config/tc-h8300.c:518 config/tc-h8300.c:527 config/tc-h8300.c:537 +msgid "expected @(exp, reg16)" +msgstr "" + +#: config/tc-h8300.c:617 +msgid "expect :8 or :16 here" +msgstr "" + +#: config/tc-h8300.c:823 +#, c-format +msgid "operand %s0x%lx out of range." +msgstr "" + +#: config/tc-h8300.c:910 +msgid "Can't work out size of operand.\n" +msgstr "" + +#: config/tc-h8300.c:964 +#, c-format +msgid "Opcode `%s' with these operand types not available in H8/300 mode" +msgstr "" + +#: config/tc-h8300.c:1016 config/tc-h8300.c:1036 +msgid "Need #1 or #2 here" +msgstr "" + +#: config/tc-h8300.c:1031 +msgid "#4 not valid on H8/300." +msgstr "" + +#: config/tc-h8300.c:1112 config/tc-h8300.c:1150 +#, c-format +msgid "branch operand has odd offset (%lx)\n" +msgstr "" + +#: config/tc-h8300.c:1191 +msgid "destination operand must be 16 bit register" +msgstr "" + +#: config/tc-h8300.c:1201 +msgid "source operand must be 8 bit register" +msgstr "" + +#: config/tc-h8300.c:1209 +msgid "destination operand must be 16bit absolute address" +msgstr "" + +#: config/tc-h8300.c:1216 +msgid "destination operand must be 8 bit register" +msgstr "" + +#: config/tc-h8300.c:1225 +msgid "source operand must be 16bit absolute address" +msgstr "" + +#: config/tc-h8300.c:1233 +msgid "invalid operands" +msgstr "" + +#: config/tc-h8300.c:1290 config/tc-h8500.c:1129 config/tc-mips.c:8513 +#: config/tc-sh.c:1047 config/tc-w65.c:759 config/tc-z8k.c:1235 +msgid "unknown opcode" +msgstr "" + +#: config/tc-h8300.c:1336 +msgid "mismatch between opcode size and operand size" +msgstr "" + +#: config/tc-h8300.c:1348 config/tc-h8500.c:1157 config/tc-sh.c:1144 +#: config/tc-w65.c:791 config/tc-z8k.c:1290 +msgid "call to tc_crawl_symbol_chain \n" +msgstr "" + +#: config/tc-h8300.c:1362 config/tc-h8500.c:1171 config/tc-sh.c:1151 +#: config/tc-w65.c:805 config/tc-z8k.c:1304 +msgid "call to tc_headers_hook \n" +msgstr "" + +#: config/tc-h8300.c:1451 config/tc-h8500.c:1260 config/tc-z8k.c:1415 +msgid "call to tc_aout_fix_to_chars \n" +msgstr "" + +#: config/tc-h8300.c:1461 config/tc-z8k.c:1425 +msgid "call to md_convert_frag \n" +msgstr "" + +#: config/tc-h8300.c:1506 config/tc-z8k.c:1500 +msgid "call tomd_estimate_size_before_relax \n" +msgstr "" + +#: config/tc-h8500.c:337 +msgid ":24 not valid for this opcode" +msgstr "" + +#: config/tc-h8500.c:344 +msgid "expect :8,:16 or :24" +msgstr "" + +#: config/tc-h8500.c:401 +msgid "syntax error in reg list" +msgstr "" + +#: config/tc-h8500.c:419 +msgid "missing final register in range" +msgstr "" + +#: config/tc-h8500.c:506 config/tc-h8500.c:513 config/tc-h8500.c:519 +msgid "expected @(exp, Rn)" +msgstr "" + +#: config/tc-h8500.c:535 +msgid "@Rn+ needs word register" +msgstr "" + +#: config/tc-h8500.c:545 +msgid "@Rn needs word register" +msgstr "" + +#: config/tc-h8500.c:845 config/tc-sh.c:844 +#, c-format +msgid "unhandled %d\n" +msgstr "" + +#: config/tc-h8500.c:873 config/tc-sh.c:865 +#, c-format +msgid "operand must be absolute in range %d..%d" +msgstr "" + +#: config/tc-h8500.c:963 config/tc-sh.c:986 +#, c-format +msgid "failed for %d\n" +msgstr "" + +#: config/tc-h8500.c:1145 config/tc-sh.c:1082 config/tc-w65.c:779 +msgid "invalid operands for opcode" +msgstr "" + +#: config/tc-hppa.c:1114 +msgid "Missing .exit\n" +msgstr "" + +#: config/tc-hppa.c:1117 +msgid "Missing .procend\n" +msgstr "" + +#: config/tc-hppa.c:1126 +msgid "Not in a space.\n" +msgstr "" + +#: config/tc-hppa.c:1129 +msgid "Not in a subspace.\n" +msgstr "" + +#: config/tc-hppa.c:1291 +msgid "Invalid field selector. Assuming F%%." +msgstr "" + +#: config/tc-hppa.c:1322 +msgid "-R option not supported on this target." +msgstr "" + +#: config/tc-hppa.c:1336 +#, c-format +msgid "Internal error: can't hash `%s': %s\n" +msgstr "" + +#: config/tc-hppa.c:1344 config/tc-i860.c:191 config/tc-sparc.c:704 +#, c-format +msgid "internal error: losing opcode: `%s' \"%s\"\n" +msgstr "" + +#: config/tc-hppa.c:1406 config/tc-hppa.c:6539 config/tc-hppa.c:6591 +msgid "Missing function name for .PROC (corrupted label chain)" +msgstr "" + +#: config/tc-hppa.c:1409 config/tc-hppa.c:6594 +msgid "Missing function name for .PROC" +msgstr "" + +#: config/tc-hppa.c:1518 config/tc-hppa.c:4430 +msgid "could not update architecture and machine" +msgstr "" + +#: config/tc-hppa.c:1714 +msgid "Invalid Indexed Load Completer." +msgstr "" + +#: config/tc-hppa.c:1723 +msgid "Invalid Indexed Load Completer Syntax." +msgstr "" + +#: config/tc-hppa.c:1756 +msgid "Invalid Short Load/Store Completer." +msgstr "" + +#: config/tc-hppa.c:1807 config/tc-hppa.c:1812 +msgid "Invalid Store Bytes Short Completer" +msgstr "" + +#: config/tc-hppa.c:1822 config/tc-hppa.c:1866 +#, c-format +msgid "Invalid Compare/Subtract Condition: %c" +msgstr "" + +#: config/tc-hppa.c:1840 config/tc-hppa.c:2375 +msgid "Invalid Compare/Subtract Condition." +msgstr "" + +#: config/tc-hppa.c:1881 +msgid "Invalid Compare/Subtract Condition" +msgstr "" + +#: config/tc-hppa.c:1970 config/tc-hppa.c:2062 +#, c-format +msgid "Invalid Add Condition: %s" +msgstr "" + +#: config/tc-hppa.c:2132 config/tc-hppa.c:2245 +msgid "Invalid Logical Instruction Condition." +msgstr "" + +#: config/tc-hppa.c:2301 +msgid "Invalid Shift/Extract/Deposit Condition." +msgstr "" + +#: config/tc-hppa.c:2337 +#, c-format +msgid "Invalid Bit Branch Condition: %c" +msgstr "" + +#: config/tc-hppa.c:2776 config/tc-hppa.c:2791 +#, c-format +msgid "Invalid CBit Specification: %s" +msgstr "" + +#: config/tc-hppa.c:2977 config/tc-hppa.c:3010 config/tc-hppa.c:3047 +msgid "Branch to unaligned address" +msgstr "" + +#: config/tc-hppa.c:3147 +msgid "Invalid SFU identifier" +msgstr "" + +#: config/tc-hppa.c:3207 +msgid "Invalid COPR identifier" +msgstr "" + +#: config/tc-hppa.c:3447 config/tc-hppa.c:3473 config/tc-hppa.c:3498 +#: config/tc-hppa.c:3523 config/tc-hppa.c:3548 +msgid "Invalid register for single precision fmpyadd or fmpysub" +msgstr "" + +#: config/tc-hppa.c:3572 +msgid "Invalid Floating Point Operand Format." +msgstr "" + +#: config/tc-hppa.c:3595 +#, c-format +msgid "Invalid operands %s" +msgstr "" + +#: config/tc-hppa.c:4130 +msgid "Unknown relocation encountered in md_apply_fix." +msgstr "" + +#: config/tc-hppa.c:4140 +#, c-format +msgid "no hppa_fixup entry for this fixup (fixP = 0x%x, type = 0x%x)\n" +msgstr "" + +#: config/tc-hppa.c:4282 config/tc-hppa.c:4307 +#, c-format +msgid "Undefined register: '%s'." +msgstr "" + +#: config/tc-hppa.c:4345 +#, c-format +msgid "Non-absolute symbol: '%s'." +msgstr "" + +#: config/tc-hppa.c:4360 +#, c-format +msgid "Undefined absolute constant: '%s'." +msgstr "" + +#: config/tc-hppa.c:4469 +#, c-format +msgid "Invalid FP Compare Condition: %s" +msgstr "" + +#: config/tc-hppa.c:4526 +#, c-format +msgid "Invalid FTEST completer: %s" +msgstr "" + +#: config/tc-hppa.c:4593 config/tc-hppa.c:4632 +#, c-format +msgid "Invalid FP Operand Format: %3s" +msgstr "" + +#: config/tc-hppa.c:4713 +msgid "Bad segment in expression." +msgstr "" + +#: config/tc-hppa.c:4772 +msgid "Bad segment (should be absolute)." +msgstr "" + +#: config/tc-hppa.c:4871 +#, c-format +msgid "Invalid argument location: %s\n" +msgstr "" + +#: config/tc-hppa.c:4902 +#, c-format +msgid "Invalid argument description: %d" +msgstr "" + +#: config/tc-hppa.c:4925 +#, c-format +msgid "Invalid Nullification: (%c)" +msgstr "" + +#: config/tc-hppa.c:5657 +#, c-format +msgid "Invalid .CALL argument: %s" +msgstr "" + +#: config/tc-hppa.c:5776 +msgid ".callinfo is not within a procedure definition" +msgstr "" + +#: config/tc-hppa.c:5796 +#, c-format +msgid "FRAME parameter must be a multiple of 8: %d\n" +msgstr "" + +#: config/tc-hppa.c:5815 +msgid "Value for ENTRY_GR must be in the range 3..18\n" +msgstr "" + +#: config/tc-hppa.c:5827 +msgid "Value for ENTRY_FR must be in the range 12..21\n" +msgstr "" + +#: config/tc-hppa.c:5837 +msgid "Value for ENTRY_SR must be 3\n" +msgstr "" + +#: config/tc-hppa.c:5893 +#, c-format +msgid "Invalid .CALLINFO argument: %s" +msgstr "" + +#: config/tc-hppa.c:5983 +msgid "The .ENTER pseudo-op is not supported" +msgstr "" + +#: config/tc-hppa.c:5997 +msgid "Misplaced .entry. Ignored." +msgstr "" + +#: config/tc-hppa.c:6001 +msgid "Missing .callinfo." +msgstr "" + +#: config/tc-hppa.c:6049 +msgid ".REG must use a label" +msgstr "" + +#: config/tc-hppa.c:6051 +msgid ".EQU must use a label" +msgstr "" + +#: config/tc-hppa.c:6102 +msgid ".EXIT must appear within a procedure" +msgstr "" + +#: config/tc-hppa.c:6106 +msgid "Missing .callinfo" +msgstr "" + +#: config/tc-hppa.c:6110 +msgid "No .ENTRY for this .EXIT" +msgstr "" + +#: config/tc-hppa.c:6137 +#, c-format +msgid "Cannot define export symbol: %s\n" +msgstr "" + +#: config/tc-hppa.c:6190 +#, c-format +msgid "Using ENTRY rather than CODE in export directive for %s" +msgstr "" + +#: config/tc-hppa.c:6291 +#, c-format +msgid "Undefined .EXPORT/.IMPORT argument (ignored): %s" +msgstr "" + +#: config/tc-hppa.c:6373 +msgid "Missing label name on .LABEL" +msgstr "" + +#: config/tc-hppa.c:6378 +msgid "extra .LABEL arguments ignored." +msgstr "" + +#: config/tc-hppa.c:6393 +msgid "The .LEAVE pseudo-op is not supported" +msgstr "" + +#: config/tc-hppa.c:6426 +msgid "Unrecognized .LEVEL argument\n" +msgstr "" + +#: config/tc-hppa.c:6460 +#, c-format +msgid "Cannot define static symbol: %s\n" +msgstr "" + +#: config/tc-hppa.c:6493 +msgid "Nested procedures" +msgstr "" + +#: config/tc-hppa.c:6503 +msgid "Cannot allocate unwind descriptor\n" +msgstr "" + +#: config/tc-hppa.c:6598 +msgid "misplaced .procend" +msgstr "" + +#: config/tc-hppa.c:6601 +msgid "Missing .callinfo for this procedure" +msgstr "" + +#: config/tc-hppa.c:6604 +msgid "Missing .EXIT for a .ENTRY" +msgstr "" + +#: config/tc-hppa.c:6704 +msgid "Invalid .SPACE argument" +msgstr "" + +#: config/tc-hppa.c:6752 +msgid "Can't change spaces within a procedure definition. Ignored" +msgstr "" + +#: config/tc-hppa.c:6879 +#, c-format +msgid "Undefined space: '%s' Assuming space number = 0." +msgstr "" + +#: config/tc-hppa.c:6921 +msgid "Must be in a space before changing or declaring subspaces.\n" +msgstr "" + +#: config/tc-hppa.c:6925 +msgid "Can't change subspaces within a procedure definition. Ignored" +msgstr "" + +#: config/tc-hppa.c:6961 +msgid "Parameters of an existing subspace can't be modified" +msgstr "" + +#: config/tc-hppa.c:7014 +msgid "Alignment must be a power of 2" +msgstr "" + +#: config/tc-hppa.c:7056 +msgid "FIRST not supported as a .SUBSPACE argument" +msgstr "" + +#: config/tc-hppa.c:7058 +msgid "Invalid .SUBSPACE argument" +msgstr "" + +#: config/tc-hppa.c:7098 +msgid "Ignoring subspace decl due to ELF BFD bugs." +msgstr "" + +#: config/tc-hppa.c:7261 +#, c-format +msgid "Internal error: Unable to find containing space for %s." +msgstr "" + +#: config/tc-hppa.c:7302 +#, c-format +msgid "Out of memory: could not allocate new space chain entry: %s\n" +msgstr "" + +#: config/tc-hppa.c:7388 +#, c-format +msgid "Out of memory: could not allocate new subspace chain entry: %s\n" +msgstr "" + +#: config/tc-hppa.c:8044 +#, c-format +msgid "Symbol '%s' could not be created." +msgstr "" + +#: config/tc-hppa.c:8048 +msgid "No memory for symbol name." +msgstr "" + +#: config/tc-i386.c:502 +msgid "same type of prefix used twice" +msgstr "" + +#: config/tc-i386.c:536 +msgid "Bad argument to syntax directive." +msgstr "" + +#: config/tc-i386.c:619 config/tc-m68k.c:3630 +#, c-format +msgid "Internal Error: Can't hash %s: %s" +msgstr "" + +#: config/tc-i386.c:850 +msgid "Unknown" +msgstr "" + +#: config/tc-i386.c:898 config/tc-i386.c:4360 config/tc-m68k.c:762 +#, c-format +msgid "Can not do %d byte pc-relative relocation" +msgstr "" + +#: config/tc-i386.c:908 config/tc-i386.c:4363 config/tc-m68k.c:769 +#, c-format +msgid "Can not do %d byte relocation" +msgstr "" + +#: config/tc-i386.c:1009 config/tc-i386.c:1095 +#, c-format +msgid "no such 386 instruction: `%s'" +msgstr "" + +#: config/tc-i386.c:1018 +#, c-format +msgid "invalid character %s in mnemonic" +msgstr "" + +#: config/tc-i386.c:1025 +msgid "expecting prefix; got nothing" +msgstr "" + +#: config/tc-i386.c:1027 +msgid "expecting mnemonic; got nothing" +msgstr "" + +#: config/tc-i386.c:1045 +#, c-format +msgid "redundant %s prefix" +msgstr "" + +#: config/tc-i386.c:1104 +#, c-format +msgid "expecting string instruction after `%s'" +msgstr "" + +#: config/tc-i386.c:1127 +#, c-format +msgid "invalid character %s before operand %d" +msgstr "" + +#: config/tc-i386.c:1141 +#, c-format +msgid "unbalanced parenthesis in operand %d." +msgstr "" + +#: config/tc-i386.c:1144 +#, c-format +msgid "unbalanced brackets in operand %d." +msgstr "" + +#: config/tc-i386.c:1153 +#, c-format +msgid "invalid character %s in operand %d" +msgstr "" + +#: config/tc-i386.c:1180 +#, c-format +msgid "spurious operands; (%d operands/instruction max)" +msgstr "" + +#: config/tc-i386.c:1201 +msgid "expecting operand after ','; got nothing" +msgstr "" + +#: config/tc-i386.c:1206 +msgid "expecting operand before ','; got nothing" +msgstr "" + +#. we found no match +#: config/tc-i386.c:1433 +#, c-format +msgid "suffix or operands invalid for `%s'" +msgstr "" + +#. Warn them that a data or address size prefix doesn't affect +#. assembly of the next line of code. +#: config/tc-i386.c:1442 +#, c-format +msgid "stand-alone `%s' prefix" +msgstr "" + +#: config/tc-i386.c:1466 config/tc-i386.c:1481 +msgid "`%s' operand %d must use `%%es' segment" +msgstr "" + +#: config/tc-i386.c:1547 config/tc-i386.c:1586 config/tc-i386.c:1613 +msgid "using `%%%s' instead of `%%%s' due to `%c' suffix" +msgstr "" + +#: config/tc-i386.c:1558 config/tc-i386.c:1575 config/tc-i386.c:1602 +msgid "`%%%s' not allowed with `%s%c'" +msgstr "" + +#: config/tc-i386.c:1642 config/tc-i386.c:1662 +msgid "no instruction mnemonic suffix given; can't determine immediate size" +msgstr "" + +#: config/tc-i386.c:1687 +msgid "" +"no instruction mnemonic suffix given and no register operands; can't size " +"instruction" +msgstr "" + +#. reversed arguments on faddp, fsubp, etc. +#: config/tc-i386.c:1800 +msgid "translating to `%s %%%s,%%%s'" +msgstr "" + +#. extraneous `l' suffix on fp insn +#: config/tc-i386.c:1807 +msgid "translating to `%s %%%s'" +msgstr "" + +#: config/tc-i386.c:2033 +msgid "you can't `pop %%cs'" +msgstr "" + +#. UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc +#: config/tc-i386.c:2064 +#, c-format +msgid "translating to `%sp'" +msgstr "" + +#: config/tc-i386.c:2095 config/tc-i386.c:2198 config/tc-i386.c:2258 +msgid "skipping prefixes on this instruction" +msgstr "" + +#: config/tc-i386.c:2115 config/tc-i386.c:2222 config/tc-i386.c:2271 +msgid "16-bit jump out of range" +msgstr "" + +#: config/tc-i386.c:2217 +#, c-format +msgid "`%s' only takes byte displacement; %ld shortened to %d" +msgstr "" + +#: config/tc-i386.c:2280 +#, c-format +msgid "can't handle non absolute segment in `%s'" +msgstr "" + +#: config/tc-i386.c:2537 +msgid "Only 1 or 2 immediate operands are allowed" +msgstr "" + +#: config/tc-i386.c:2568 config/tc-i386.c:2797 +msgid "GOT relocations not supported in 16 bit mode" +msgstr "" + +#: config/tc-i386.c:2589 config/tc-i386.c:2818 +msgid "Bad reloc specifier in expression" +msgstr "" + +#: config/tc-i386.c:2606 config/tc-i386.c:2851 +#, c-format +msgid "Ignoring junk `%s' after expression" +msgstr "" + +#. missing or bad expr becomes absolute 0 +#: config/tc-i386.c:2613 +#, c-format +msgid "Missing or invalid immediate expression `%s' taken as 0" +msgstr "" + +#: config/tc-i386.c:2648 config/tc-i386.c:2870 +#, c-format +msgid "Unimplemented segment type %d in operand" +msgstr "" + +#: config/tc-i386.c:2691 +#, c-format +msgid "expecting scale factor of 1, 2, 4, or 8: got `%s'" +msgstr "" + +#: config/tc-i386.c:2697 +#, c-format +msgid "scale factor of %d without an index register" +msgstr "" + +#: config/tc-i386.c:3045 config/tc-i386.c:3051 config/tc-i386.c:3060 +#, c-format +msgid "bad segment name `%s'" +msgstr "" + +#: config/tc-i386.c:3226 config/tc-i386.c:3481 +#, c-format +msgid "too many memory references for `%s'" +msgstr "" + +#: config/tc-i386.c:3337 config/tc-i386.c:3350 config/tc-i386.c:3662 +#: config/tc-i386.c:3675 +#, c-format +msgid "`%s' is not a valid %s bit base/index expression" +msgstr "" + +#: config/tc-i386.c:3434 +#, c-format +msgid "bad memory operand `%s'" +msgstr "" + +#: config/tc-i386.c:3449 +#, c-format +msgid "Junk `%s' after register" +msgstr "" + +#: config/tc-i386.c:3590 +#, c-format +msgid "expecting `,' or `)' after index register in `%s'" +msgstr "" + +#: config/tc-i386.c:3607 +#, c-format +msgid "expecting `)' after scale factor in `%s'" +msgstr "" + +#: config/tc-i386.c:3614 +#, c-format +msgid "expecting index register or scale factor after `,'; got '%c'" +msgstr "" + +#: config/tc-i386.c:3621 +#, c-format +msgid "expecting `,' or `)' after base register in `%s'" +msgstr "" + +#. it's not a memory operand; argh! +#: config/tc-i386.c:3684 +#, c-format +msgid "invalid char %s beginning operand %d `%s'" +msgstr "" + +#: config/tc-i386.c:4087 +msgid "Bad call to md_atof ()" +msgstr "" + +#: config/tc-i386.c:4148 config/tc-i386.c:4161 +#, c-format +msgid "bad register name `%s'" +msgstr "" + +#: config/tc-i386.c:4215 +msgid "-m\t\t\tdo long jump\n" +msgstr "" + +#: config/tc-i386.c:4255 +msgid "GOT already in symbol table" +msgstr "" + +#: config/tc-i386.c:4395 config/tc-mcore.c:2017 config/tc-sh.c:2415 +#, c-format +msgid "Cannot represent relocation type %s" +msgstr "" + +#: config/tc-i860.c:157 config/tc-i860.c:161 +msgid "Unknown temporary pseudo register" +msgstr "" + +#: config/tc-i860.c:183 config/tc-mips.c:1099 config/tc-sparc.c:696 +#, c-format +msgid "internal error: can't hash `%s': %s\n" +msgstr "" + +#: config/tc-i860.c:341 +#, c-format +msgid "Expanded opcode after delayed branch: `%s'" +msgstr "" + +#: config/tc-i860.c:343 +#, c-format +msgid "Expanded opcode in dual mode: `%s'" +msgstr "" + +#: config/tc-i860.c:580 +msgid "Fsr1 equals fdest with Pipelining" +msgstr "" + +#: config/tc-i860.c:631 +msgid "5-bit immediate too large" +msgstr "" + +#: config/tc-i860.c:725 +msgid "Illegal operands" +msgstr "" + +#: config/tc-i860.c:749 config/tc-sparc.c:2338 +msgid "bad segment" +msgstr "" + +#: config/tc-i860.c:878 +#, c-format +msgid "26-bit branch w/o pc relative set: 0x%08x" +msgstr "" + +#. align pcrel offset, see manual +#. check for overflow +#: config/tc-i860.c:882 +#, c-format +msgid "26-bit branch offset overflow: 0x%08x" +msgstr "" + +#: config/tc-i860.c:891 config/tc-i860.c:922 +#, c-format +msgid "16-bit immediate 4-byte alignment error: 0x%08x" +msgstr "" + +#: config/tc-i860.c:896 config/tc-i860.c:927 +#, c-format +msgid "16-bit immediate 2-byte alignment error: 0x%08x" +msgstr "" + +#: config/tc-i860.c:904 +#, c-format +msgid "16-bit branch offset overflow: 0x%08x" +msgstr "" + +#: config/tc-i860.c:912 +#, c-format +msgid "16-bit immediate 16-byte alignment error: 0x%08x" +msgstr "" + +#: config/tc-i860.c:917 +#, c-format +msgid "16-bit immediate 8-byte alignment error: 0x%08x" +msgstr "" + +#: config/tc-i860.c:933 +#, c-format +msgid "16-bit immediate overflow: 0x%08x" +msgstr "" + +#: config/tc-i860.c:951 +msgid "md_number_to_disp\n" +msgstr "" + +#: config/tc-i860.c:961 +msgid "i860_number_to_field\n" +msgstr "" + +#: config/tc-i860.c:1001 +msgid "i860_convert_frag\n" +msgstr "" + +#: config/tc-i860.c:1010 +msgid "i860_estimate_size_before_relax\n" +msgstr "" + +#: config/tc-i960.c:544 +#, c-format +msgid "Hashing returned \"%s\"." +msgstr "" + +#. Offset of last character in opcode mnemonic +#: config/tc-i960.c:578 +msgid "branch prediction invalid on this opcode" +msgstr "" + +#: config/tc-i960.c:621 +#, c-format +msgid "invalid opcode, \"%s\"." +msgstr "" + +#: config/tc-i960.c:626 +#, c-format +msgid "improper number of operands. expecting %d, got %d" +msgstr "" + +#: config/tc-i960.c:771 config/tc-m32r.c:1873 +msgid "Bad call to md_atof()" +msgstr "" + +#: config/tc-i960.c:861 +#, c-format +msgid "Fixup of %ld too large for field width of %d" +msgstr "" + +#: config/tc-i960.c:979 +#, c-format +msgid "invalid architecture %s" +msgstr "" + +#: config/tc-i960.c:999 +msgid "I960 options:\n" +msgstr "" + +#: config/tc-i960.c:1002 +msgid "" +"\n" +"\t\t\tspecify variant of 960 architecture\n" +"-b\t\t\tadd code to collect statistics about branches taken\n" +"-link-relax\t\tpreserve individual alignment directives so linker\n" +"\t\t\tcan do relaxing (b.out format only)\n" +"-no-relax\t\tdon't alter compare-and-branch instructions for\n" +"\t\t\tlong displacements\n" +msgstr "" + +#: config/tc-i960.c:1400 +msgid "too many operands" +msgstr "" + +#: config/tc-i960.c:1460 config/tc-i960.c:1690 +msgid "expression syntax error" +msgstr "" + +#: config/tc-i960.c:1498 +msgid "attempt to branch into different segment" +msgstr "" + +#: config/tc-i960.c:1502 +#, c-format +msgid "target of %s instruction must be a label" +msgstr "" + +#: config/tc-i960.c:1542 +msgid "unmatched '['" +msgstr "" + +#: config/tc-i960.c:1553 +msgid "garbage after index spec ignored" +msgstr "" + +#. We never moved: there was no opcode either! +#: config/tc-i960.c:1620 +msgid "missing opcode" +msgstr "" + +#: config/tc-i960.c:1928 +msgid "invalid constant" +msgstr "" + +#: config/tc-i960.c:2041 +msgid "invalid index register" +msgstr "" + +#: config/tc-i960.c:2064 +msgid "invalid scale factor" +msgstr "" + +#: config/tc-i960.c:2247 +msgid "unaligned register" +msgstr "" + +#: config/tc-i960.c:2270 +msgid "no such sfr in this architecture" +msgstr "" + +#: config/tc-i960.c:2308 +msgid "illegal literal" +msgstr "" + +#. Should not happen: see block comment above +#: config/tc-i960.c:2541 +#, c-format +msgid "Trying to 'bal' to %s" +msgstr "" + +#: config/tc-i960.c:2552 +msgid "Looks like a proc, but can't tell what kind.\n" +msgstr "" + +#: config/tc-i960.c:2584 +msgid "should have 1 or 2 operands" +msgstr "" + +#: config/tc-i960.c:2593 config/tc-i960.c:2612 +#, c-format +msgid "Redefining leafproc %s" +msgstr "" + +#: config/tc-i960.c:2642 +msgid "should have two operands" +msgstr "" + +#: config/tc-i960.c:2652 +msgid "'entry_num' must be absolute number in [0,31]" +msgstr "" + +#: config/tc-i960.c:2661 +#, c-format +msgid "Redefining entrynum for sysproc %s" +msgstr "" + +#: config/tc-i960.c:2772 +msgid "architecture of opcode conflicts with that of earlier instruction(s)" +msgstr "" + +#: config/tc-i960.c:2793 +msgid "big endian mode is not supported" +msgstr "" + +#: config/tc-i960.c:2795 +#, c-format +msgid "ignoring unrecognized .endian type `%s'" +msgstr "" + +#: config/tc-i960.c:3052 +#, c-format +msgid "leafproc symbol '%s' undefined" +msgstr "" + +#: config/tc-i960.c:3062 +#, c-format +msgid "Warning: making leafproc entries %s and %s both global\n" +msgstr "" + +#: config/tc-i960.c:3169 +msgid "option --link-relax is only supported in b.out format" +msgstr "" + +#: config/tc-i960.c:3212 +msgid "callj to difference of two symbols" +msgstr "" + +#. Pretend that we do not recognise this option. +#: config/tc-m32r.c:232 +#, c-format +msgid "%s: unrecognised option: -hidden\n" +msgstr "" + +#: config/tc-m32r.c:265 +msgid " M32R specific command line options:\n" +msgstr "" + +#: config/tc-m32r.c:287 +msgid "" +" -warn-unmatched-high warn when an (s)high reloc has no matching low " +"reloc\n" +msgstr "" + +#: config/tc-m32r.c:289 +msgid " -no-warn-unmatched-high do not warn about missing low relocs\n" +msgstr "" + +#: config/tc-m32r.c:291 +msgid " -Wuh synonym for -warn-unmatched-high\n" +msgstr "" + +#: config/tc-m32r.c:293 +msgid " -Wnuh synonym for -no-warn-unmatched-high\n" +msgstr "" + +#: config/tc-m32r.c:297 +msgid " -relax create linker relaxable code\n" +msgstr "" + +#: config/tc-m32r.c:299 +msgid " -cpu-desc provide runtime cpu description file\n" +msgstr "" + +#: config/tc-m32r.c:429 read.c:2734 read.c:4799 +#, c-format +msgid "symbol `%s' already defined" +msgstr "" + +#: config/tc-m32r.c:700 +msgid "Instructions write to the same destination register." +msgstr "" + +#: config/tc-m32r.c:708 +msgid "Instructions do not use parallel execution pipelines." +msgstr "" + +#: config/tc-m32r.c:715 +msgid "Instructions share the same execution pipeline" +msgstr "" + +#: config/tc-m32r.c:784 config/tc-m32r.c:870 +#, c-format +msgid "not a 16 bit instruction '%s'" +msgstr "" + +#: config/tc-m32r.c:791 config/tc-m32r.c:877 config/tc-m32r.c:1038 +#, c-format +msgid "unknown instruction '%s'" +msgstr "" + +#: config/tc-m32r.c:799 config/tc-m32r.c:884 config/tc-m32r.c:1045 +#, c-format +msgid "instruction '%s' is for the M32RX only" +msgstr "" + +#: config/tc-m32r.c:807 config/tc-m32r.c:892 +#, c-format +msgid "instruction '%s' cannot be executed in parallel." +msgstr "" + +#: config/tc-m32r.c:854 config/tc-m32r.c:917 config/tc-m32r.c:1098 +msgid "internal error: lookup/get operands failed" +msgstr "" + +#: config/tc-m32r.c:902 +#, c-format +msgid "'%s': only the NOP instruction can be issued in parallel on the m32r" +msgstr "" + +#: config/tc-m32r.c:931 +#, c-format +msgid "" +"%s: output of 1st instruction is the same as an input to 2nd instruction - " +"is this intentional ?" +msgstr "" + +#: config/tc-m32r.c:935 +#, c-format +msgid "" +"%s: output of 2nd instruction is the same as an input to 1st instruction - " +"is this intentional ?" +msgstr "" + +#: config/tc-m32r.c:1264 config/tc-ppc.c:1330 config/tc-ppc.c:3534 read.c:1349 +msgid "Expected comma after symbol-name: rest of line ignored." +msgstr "" + +#: config/tc-m32r.c:1273 +#, c-format +msgid ".SCOMMon length (%ld.) <0! Ignored." +msgstr "" + +#: config/tc-m32r.c:1287 config/tc-ppc.c:1352 config/tc-ppc.c:2261 +#: config/tc-ppc.c:3558 +msgid "ignoring bad alignment" +msgstr "" + +#: config/tc-m32r.c:1313 config/tc-ppc.c:1363 config/tc-ppc.c:3570 read.c:1369 +#: read.c:2083 +#, c-format +msgid "Ignoring attempt to re-define symbol `%s'." +msgstr "" + +#: config/tc-m32r.c:1322 +#, c-format +msgid "Length of .scomm \"%s\" is already %ld. Not changed to %ld." +msgstr "" + +#: config/tc-m32r.c:1566 +msgid "Addend to unresolved symbol not on word boundary." +msgstr "" + +#: config/tc-m32r.c:1795 +msgid "Unmatched high/shigh reloc" +msgstr "" + +#: config/tc-m68k.c:636 +msgid "Unknown PC relative instruction" +msgstr "" + +#: config/tc-m68k.c:764 +#, c-format +msgid "Can not do %d byte pc-relative pic relocation" +msgstr "" + +#: config/tc-m68k.c:771 +#, c-format +msgid "Can not do %d byte pic relocation" +msgstr "" + +#: config/tc-m68k.c:875 config/tc-mips.c:11891 +#, c-format +msgid "Cannot make %s relocation PC relative" +msgstr "" + +#: config/tc-m68k.c:987 config/tc-tahoe.c:1505 config/tc-vax.c:1773 +msgid "No operator" +msgstr "" + +#: config/tc-m68k.c:1017 config/tc-tahoe.c:1522 config/tc-vax.c:1790 +msgid "Unknown operator" +msgstr "" + +#: config/tc-m68k.c:1764 +msgid "invalid instruction for this architecture; needs " +msgstr "" + +#: config/tc-m68k.c:1769 +msgid "fpu (68040, 68060 or 68881/68882)" +msgstr "" + +#: config/tc-m68k.c:1772 +msgid "mmu (68030 or 68851)" +msgstr "" + +#: config/tc-m68k.c:1775 +msgid "68020 or higher" +msgstr "" + +#: config/tc-m68k.c:1778 +msgid "68000 or higher" +msgstr "" + +#: config/tc-m68k.c:1781 +msgid "68010 or higher" +msgstr "" + +#: config/tc-m68k.c:1809 +msgid "operands mismatch" +msgstr "" + +#: config/tc-m68k.c:1866 config/tc-m68k.c:1872 config/tc-m68k.c:1878 +msgid "operand out of range" +msgstr "" + +#: config/tc-m68k.c:1935 +#, c-format +msgid "Bignum too big for %c format; truncated" +msgstr "" + +#: config/tc-m68k.c:2003 +msgid "displacement too large for this architecture; needs 68020 or higher" +msgstr "" + +#: config/tc-m68k.c:2113 +msgid "" +"scale factor invalid on this architecture; needs cpu32 or 68020 or higher" +msgstr "" + +#: config/tc-m68k.c:2167 +msgid "Forcing byte displacement" +msgstr "" + +#: config/tc-m68k.c:2169 +msgid "byte displacement out of range" +msgstr "" + +#: config/tc-m68k.c:2216 config/tc-m68k.c:2254 +msgid "invalid operand mode for this architecture; needs 68020 or higher" +msgstr "" + +#: config/tc-m68k.c:2240 config/tc-m68k.c:2274 +msgid ":b not permitted; defaulting to :w" +msgstr "" + +#: config/tc-m68k.c:2356 +msgid "unsupported byte value; use a different suffix" +msgstr "" + +#: config/tc-m68k.c:2370 +msgid "unknown/incorrect operand" +msgstr "" + +#: config/tc-m68k.c:2403 config/tc-m68k.c:2411 config/tc-m68k.c:2418 +#: config/tc-m68k.c:2425 +msgid "out of range" +msgstr "" + +#: config/tc-m68k.c:2475 +msgid "Can't use long branches on 68000/68010/5200" +msgstr "" + +#: config/tc-m68k.c:2563 +msgid "Expression out of range, using 0" +msgstr "" + +#: config/tc-m68k.c:2668 config/tc-m68k.c:2684 +msgid "Floating point register in register list" +msgstr "" + +#: config/tc-m68k.c:2674 +msgid "Wrong register in floating-point reglist" +msgstr "" + +#: config/tc-m68k.c:2690 +msgid "incorrect register in reglist" +msgstr "" + +#: config/tc-m68k.c:2696 +msgid "wrong register in floating-point reglist" +msgstr "" + +#: config/tc-m68k.c:2772 +msgid "failed sanity check" +msgstr "" + +#. ERROR +#: config/tc-m68k.c:3108 +msgid "Extra )" +msgstr "" + +#. ERROR +#: config/tc-m68k.c:3119 +msgid "Missing )" +msgstr "" + +#: config/tc-m68k.c:3136 +msgid "Missing operand" +msgstr "" + +#: config/tc-m68k.c:3427 +#, c-format +msgid "%s -- statement `%s' ignored" +msgstr "" + +#: config/tc-m68k.c:3471 +#, c-format +msgid "Don't know how to figure width of %c in md_assemble()" +msgstr "" + +#: config/tc-m68k.c:3639 config/tc-m68k.c:3675 +#, c-format +msgid "Internal Error: Can't find %s in hash table" +msgstr "" + +#: config/tc-m68k.c:3642 config/tc-m68k.c:3678 +#, c-format +msgid "Internal Error: Can't hash %s: %s" +msgstr "" + +#: config/tc-m68k.c:3804 +#, c-format +msgid "unrecognized default cpu `%s' ???" +msgstr "" + +#: config/tc-m68k.c:3816 +msgid "68040 and 68851 specified; mmu instructions may assemble incorrectly" +msgstr "" + +#: config/tc-m68k.c:3836 +msgid "options for 68881 and no-68881 both given" +msgstr "" + +#: config/tc-m68k.c:3838 +msgid "options for 68851 and no-68851 both given" +msgstr "" + +#: config/tc-m68k.c:3909 +#, c-format +msgid "text label `%s' aligned to odd boundary" +msgstr "" + +#: config/tc-m68k.c:4126 +msgid "invalid byte branch offset" +msgstr "" + +#: config/tc-m68k.c:4183 +msgid "short branch with zero offset: use :w" +msgstr "" + +#: config/tc-m68k.c:4229 +msgid "Long branch offset not supported." +msgstr "" + +#: config/tc-m68k.c:4290 +#, c-format +msgid "Internal error (long PC-relative operand) for insn 0x%04x at 0x%lx" +msgstr "" + +#: config/tc-m68k.c:4321 +msgid "displacement doesn't fit in one byte" +msgstr "" + +#: config/tc-m68k.c:4434 +msgid "Long branch offset to extern symbol not supported." +msgstr "" + +#: config/tc-m68k.c:4783 config/tc-m68k.c:4794 +msgid "expression out of range: defaulting to 1" +msgstr "" + +#: config/tc-m68k.c:4826 +msgid "expression out of range: defaulting to 0" +msgstr "" + +#: config/tc-m68k.c:4859 config/tc-m68k.c:4871 +#, c-format +msgid "Can't deal with expression; defaulting to %ld" +msgstr "" + +#: config/tc-m68k.c:4885 +msgid "expression doesn't fit in BYTE" +msgstr "" + +#: config/tc-m68k.c:4889 +msgid "expression doesn't fit in WORD" +msgstr "" + +#: config/tc-m68k.c:4982 +#, c-format +msgid "%s: unrecognized processor name" +msgstr "" + +#: config/tc-m68k.c:5047 +msgid "bad coprocessor id" +msgstr "" + +#: config/tc-m68k.c:5053 +msgid "unrecognized fopt option" +msgstr "" + +#: config/tc-m68k.c:5187 +#, c-format +msgid "option `%s' may not be negated" +msgstr "" + +#: config/tc-m68k.c:5198 +#, c-format +msgid "option `%s' not recognized" +msgstr "" + +#: config/tc-m68k.c:5231 +msgid "bad format of OPT NEST=depth" +msgstr "" + +#: config/tc-m68k.c:5294 +msgid "missing label" +msgstr "" + +#: config/tc-m68k.c:5318 config/tc-m68k.c:5347 +msgid "bad register list" +msgstr "" + +#: config/tc-m68k.c:5320 +#, c-format +msgid "bad register list: %s" +msgstr "" + +#: config/tc-m68k.c:5418 +msgid "restore without save" +msgstr "" + +#: config/tc-m68k.c:5595 config/tc-m68k.c:5944 +msgid "syntax error in structured control directive" +msgstr "" + +#: config/tc-m68k.c:5646 +msgid "missing condition code in structured control directive" +msgstr "" + +#: config/tc-m68k.c:5978 +msgid "missing then" +msgstr "" + +#: config/tc-m68k.c:6060 +msgid "else without matching if" +msgstr "" + +#: config/tc-m68k.c:6094 +msgid "endi without matching if" +msgstr "" + +#: config/tc-m68k.c:6135 +msgid "break outside of structured loop" +msgstr "" + +#: config/tc-m68k.c:6174 +msgid "next outside of structured loop" +msgstr "" + +#: config/tc-m68k.c:6226 +msgid "missing =" +msgstr "" + +#: config/tc-m68k.c:6264 +msgid "missing to or downto" +msgstr "" + +#: config/tc-m68k.c:6300 config/tc-m68k.c:6334 config/tc-m68k.c:6544 +msgid "missing do" +msgstr "" + +#: config/tc-m68k.c:6437 +msgid "endf without for" +msgstr "" + +#: config/tc-m68k.c:6493 +msgid "until without repeat" +msgstr "" + +#: config/tc-m68k.c:6580 +msgid "endw without while" +msgstr "" + +#: config/tc-m68k.c:6696 +#, c-format +msgid "unrecognized option `%s'" +msgstr "" + +#: config/tc-m68k.c:6741 +#, c-format +msgid "unrecognized architecture specification `%s'" +msgstr "" + +#: config/tc-m68k.c:6811 +msgid "" +"680X0 options:\n" +"-l\t\t\tuse 1 word for refs to undefined symbols [default 2]\n" +"-m68000 | -m68008 | -m68010 | -m68020 | -m68030 | -m68040 | -m68060\n" +" | -m68302 | -m68331 | -m68332 | -m68333 | -m68340 | -m68360\n" +" | -mcpu32 | -m5200\n" +"\t\t\tspecify variant of 680X0 architecture [default 68020]\n" +"-m68881 | -m68882 | -mno-68881 | -mno-68882\n" +"\t\t\ttarget has/lacks floating-point coprocessor\n" +"\t\t\t[default yes for 68020, 68030, and cpu32]\n" +msgstr "" + +#: config/tc-m68k.c:6821 +msgid "" +"-m68851 | -mno-68851\n" +"\t\t\ttarget has/lacks memory-management unit coprocessor\n" +"\t\t\t[default yes for 68020 and up]\n" +"-pic, -k\t\tgenerate position independent code\n" +"-S\t\t\tturn jbsr into jsr\n" +"--register-prefix-optional\n" +"\t\t\trecognize register names without prefix character\n" +"--bitwise-or\t\tdo not treat `|' as a comment character\n" +msgstr "" + +#: config/tc-m68k.c:6830 +msgid "" +"--base-size-default-16\tbase reg without size is 16 bits\n" +"--base-size-default-32\tbase reg without size is 32 bits (default)\n" +"--disp-size-default-16\tdisplacement with unknown size is 16 bits\n" +"--disp-size-default-32\tdisplacement with unknown size is 32 bits (default)\n" +msgstr "" + +#: config/tc-m68k.c:6865 +#, c-format +msgid "Error %s in %s\n" +msgstr "" + +#: config/tc-m68k.c:6869 +#, c-format +msgid "Opcode(%d.%s): " +msgstr "" + +#: config/tc-m88k.c:206 +#, c-format +msgid "Can't hash instruction '%s':%s" +msgstr "" + +#: config/tc-m88k.c:258 +#, c-format +msgid "Invalid mnemonic '%s'" +msgstr "" + +#: config/tc-m88k.c:278 +msgid "Parameter syntax error" +msgstr "" + +#: config/tc-m88k.c:333 +msgid "Unknown relocation type" +msgstr "" + +#. Having this here repeats the warning somtimes. +#. But can't we stand that? +#: config/tc-m88k.c:446 +msgid "Use of obsolete instruction" +msgstr "" + +#: config/tc-m88k.c:563 +msgid "Expression truncated to 16 bits" +msgstr "" + +#: config/tc-m88k.c:629 config/tc-m88k.c:651 +msgid "Expression truncated to 5 bits" +msgstr "" + +#: config/tc-m88k.c:873 +msgid "Expression truncated to 9 bits" +msgstr "" + +#: config/tc-m88k.c:895 +msgid "Removed lower 2 bits of expression" +msgstr "" + +#: config/tc-m88k.c:1034 +msgid "Bad relocation type" +msgstr "" + +#: config/tc-m88k.c:1047 +msgid "md_number_to_disp not defined" +msgstr "" + +#: config/tc-m88k.c:1057 +msgid "md_number_to_field not defined" +msgstr "" + +#: config/tc-m88k.c:1170 +msgid "Relaxation should never occur" +msgstr "" + +#: config/tc-m88k.c:1267 config/tc-sparc.c:3024 read.c:1940 +#, c-format +msgid "BSS length (%d.) <0! Ignored." +msgstr "" + +#: config/tc-m88k.c:1311 +#, c-format +msgid "Ignoring attempt to re-define symbol %s." +msgstr "" + +#: config/tc-mcore.c:273 +#, c-format +msgid "register expected, but saw '%.6s'" +msgstr "" + +#: config/tc-mcore.c:357 +#, c-format +msgid "control register expected, but saw '%.6s'" +msgstr "" + +#: config/tc-mcore.c:513 +msgid "more than 65K literal pools" +msgstr "" + +#: config/tc-mcore.c:567 +msgid "missing ']'" +msgstr "" + +#: config/tc-mcore.c:607 +msgid "operand must be a constant" +msgstr "" + +#: config/tc-mcore.c:609 +#, c-format +msgid "operand must be absolute in range %d..%d, not %d" +msgstr "" + +#: config/tc-mcore.c:646 +msgid "operand must be a multiple of 4" +msgstr "" + +#: config/tc-mcore.c:653 +msgid "operand must be a multiple of 2" +msgstr "" + +#: config/tc-mcore.c:667 config/tc-mcore.c:1177 config/tc-mcore.c:1231 +msgid "base register expected" +msgstr "" + +#: config/tc-mcore.c:716 +#, c-format +msgid "unknown opcode \"%s\"" +msgstr "" + +#: config/tc-mcore.c:759 +msgid "invalid register: r15 illegal" +msgstr "" + +#: config/tc-mcore.c:808 +msgid "M340 specific opcode used when assembling for M210" +msgstr "" + +#: config/tc-mcore.c:827 config/tc-mcore.c:866 config/tc-mcore.c:885 +#: config/tc-mcore.c:904 config/tc-mcore.c:931 config/tc-mcore.c:960 +#: config/tc-mcore.c:997 config/tc-mcore.c:1032 config/tc-mcore.c:1051 +#: config/tc-mcore.c:1070 config/tc-mcore.c:1102 config/tc-mcore.c:1124 +#: config/tc-mcore.c:1180 config/tc-mcore.c:1234 config/tc-mcore.c:1269 +#: config/tc-mcore.c:1323 config/tc-mcore.c:1345 config/tc-mcore.c:1368 +msgid "second operand missing" +msgstr "" + +#: config/tc-mcore.c:842 +msgid "destination register must be r1" +msgstr "" + +#: config/tc-mcore.c:863 +msgid "source register must be r1" +msgstr "" + +#: config/tc-mcore.c:926 config/tc-mcore.c:983 +msgid "immediate is not a power of two" +msgstr "" + +#: config/tc-mcore.c:954 +msgid "translating bgeni to movi" +msgstr "" + +#: config/tc-mcore.c:991 +msgid "translating mgeni to movi" +msgstr "" + +#: config/tc-mcore.c:1023 +msgid "translating bmaski to movi" +msgstr "" + +#: config/tc-mcore.c:1097 +#, c-format +msgid "displacement too large (%d)" +msgstr "" + +#: config/tc-mcore.c:1111 +msgid "Invalid register: r0 and r15 illegal" +msgstr "" + +#: config/tc-mcore.c:1138 +msgid "bad starting register: r0 and r15 invalid" +msgstr "" + +#: config/tc-mcore.c:1151 +msgid "ending register must be r15" +msgstr "" + +#: config/tc-mcore.c:1171 +msgid "bad base register: must be r0" +msgstr "" + +#: config/tc-mcore.c:1189 +msgid "first register must be r4" +msgstr "" + +#: config/tc-mcore.c:1200 +msgid "last register must be r7" +msgstr "" + +#: config/tc-mcore.c:1237 +msgid "reg-reg expected" +msgstr "" + +#: config/tc-mcore.c:1342 +msgid "second operand must be 1" +msgstr "" + +#: config/tc-mcore.c:1363 +msgid "zero used as immediate value" +msgstr "" + +#: config/tc-mcore.c:1374 +#, c-format +msgid "unimplemented opcode \"%s\"" +msgstr "" + +#: config/tc-mcore.c:1444 config/tc-w65.c:856 +msgid "Bad call to MD_NTOF()" +msgstr "" + +#: config/tc-mcore.c:1513 +#, c-format +msgid "unrecognised cpu type '%s'" +msgstr "" + +#: config/tc-mcore.c:1535 +msgid "" +"MCORE specific options:\n" +" -{no-}jsri2bsr\t disable/enable jsri to bsr transformation (def: on)\n" +" -{no-}sifilter\t disable/enable silicon filter behavior (def: off)\n" +" -relax\t\t alter jump instructions for long displacements\n" +msgstr "" + -- cgit v1.1