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

Subversion Repositories or1k

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /or1k/tags/start/gdb-5.0/opcodes/po
    from Rev 579 to Rev 1765
    Reverse comparison

Rev 579 → Rev 1765

/Make-in
0,0 → 1,251
# Makefile for program source directory in GNU NLS utilities package.
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
#
# This file file be copied and used freely without restrictions. It can
# be used in projects which are not available under the GNU Public License
# but which still want to provide support for the GNU gettext functionality.
# Please note that the actual code is *not* freely available.
 
PACKAGE = @PACKAGE@
VERSION = @VERSION@
 
SHELL = /bin/sh
@SET_MAKE@
 
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
 
prefix = @prefix@
exec_prefix = @exec_prefix@
datadir = $(prefix)/@DATADIRNAME@
localedir = $(datadir)/locale
gnulocaledir = $(prefix)/share/locale
gettextsrcdir = $(prefix)/share/gettext/po
subdir = po
 
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = @MKINSTALLDIRS@
 
CC = @CC@
GENCAT = @GENCAT@
GMSGFMT = PATH=../src:$$PATH @GMSGFMT@
MSGFMT = @MSGFMT@
XGETTEXT = PATH=../src:$$PATH @XGETTEXT@
MSGMERGE = PATH=../src:$$PATH msgmerge
 
DEFS = @DEFS@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
 
INCLUDES = -I.. -I$(top_srcdir)/intl
 
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
 
SOURCES = cat-id-tbl.c
POFILES = @POFILES@
GMOFILES = @GMOFILES@
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)
 
POTFILES = \
 
CATALOGS = @CATALOGS@
CATOBJEXT = @CATOBJEXT@
INSTOBJEXT = @INSTOBJEXT@
 
.SUFFIXES:
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
 
.c.o:
$(COMPILE) $<
 
.po.pox:
$(MAKE) $(PACKAGE).pot
$(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
 
.po.mo:
$(MSGFMT) -o $@ $<
 
.po.gmo:
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
&& rm -f $$file && $(GMSGFMT) -o $$file $<
 
.po.cat:
sed -f ../intl/po2msg.sed < $< > $*.msg \
&& rm -f $@ && $(GENCAT) $@ $*.msg
 
 
all: all-@USE_NLS@
 
all-yes: $(CATALOGS) @MAINT@ $(PACKAGE).pot
all-no:
 
$(srcdir)/$(PACKAGE).pot: $(POTFILES)
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
--add-comments --keyword=_ --keyword=N_ \
--files-from=$(srcdir)/POTFILES.in
rm -f $(srcdir)/$(PACKAGE).pot
mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot
 
$(srcdir)/cat-id-tbl.c: stamp-cat-id; @:
$(srcdir)/stamp-cat-id: $(PACKAGE).pot
rm -f cat-id-tbl.tmp
sed -f ../intl/po2tbl.sed $(srcdir)/$(PACKAGE).pot \
| sed -e "s/@PACKAGE NAME@/$(PACKAGE)/" > cat-id-tbl.tmp
if cmp -s cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; then \
rm cat-id-tbl.tmp; \
else \
echo cat-id-tbl.c changed; \
rm -f $(srcdir)/cat-id-tbl.c; \
mv cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; \
fi
cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id
 
 
install: install-exec install-data
install-exec:
install-info:
install-data: install-data-@USE_NLS@
install-data-no: all
install-data-yes: all
if test -r $(MKINSTALLDIRS); then \
$(MKINSTALLDIRS) $(datadir); \
else \
$(top_srcdir)/mkinstalldirs $(datadir); \
fi
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
case "$$cat" in \
*.gmo) destdir=$(gnulocaledir);; \
*) destdir=$(localedir);; \
esac; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
dir=$$destdir/$$lang/LC_MESSAGES; \
if test -r $(MKINSTALLDIRS); then \
$(MKINSTALLDIRS) $$dir; \
else \
$(top_srcdir)/mkinstalldirs $$dir; \
fi; \
if test -r $$cat; then \
$(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
else \
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
fi; \
if test -r $$cat.m; then \
$(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
else \
if test -r $(srcdir)/$$cat.m ; then \
$(INSTALL_DATA) $(srcdir)/$$cat.m \
$$dir/$(PACKAGE)$(INSTOBJEXT).m; \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
else \
true; \
fi; \
fi; \
done
if test "$(PACKAGE)" = "gettext"; then \
if test -r $(MKINSTALLDIRS); then \
$(MKINSTALLDIRS) $(gettextsrcdir); \
else \
$(top_srcdir)/mkinstalldirs $(gettextsrcdir); \
fi; \
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
$(gettextsrcdir)/Makefile.in.in; \
else \
: ; \
fi
 
# Define this as empty until I found a useful application.
installcheck:
 
uninstall:
catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
done
rm -f $(gettextsrcdir)/po-Makefile.in.in
 
check: all
 
cat-id-tbl.o: ../intl/libgettext.h
 
dvi info tags TAGS ID:
 
mostlyclean:
rm -f core core.* *.pox $(PACKAGE).po *.old.po cat-id-tbl.tmp
rm -fr *.o
 
clean: mostlyclean
 
distclean: clean
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
 
maintainer-clean: distclean
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
rm -f $(GMOFILES)
 
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
dist distdir: update-po $(DISTFILES)
dists="$(DISTFILES)"; \
for file in $$dists; do \
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|| cp -p $(srcdir)/$$file $(distdir); \
done
 
update-po: Makefile
$(MAKE) $(PACKAGE).pot
PATH=`pwd`/../src:$$PATH; \
cd $(srcdir); \
catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
mv $$lang.po $$lang.old.po; \
echo "$$lang:"; \
if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \
rm -f $$lang.old.po; \
else \
echo "msgmerge for $$cat failed!"; \
rm -f $$lang.po; \
mv $$lang.old.po $$lang.po; \
fi; \
done
 
POTFILES: POTFILES.in
( if test 'x$(srcdir)' != 'x.'; then \
posrcprefix='$(top_srcdir)/'; \
else \
posrcprefix="../"; \
fi; \
rm -f $@-t $@ \
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
| sed -e '$$s/\\$$//') > $@-t \
&& chmod a-w $@-t \
&& mv $@-t $@ )
 
POTFILES.in: @MAINT@ ../Makefile
cd .. && $(MAKE) po/POTFILES.in
 
Makefile: Make-in ../config.status POTFILES
cd .. \
&& CONFIG_FILES=$(subdir)/Makefile.in:$(subdir)/Make-in \
CONFIG_HEADERS= $(SHELL) ./config.status
 
# Tell versions [3.59,3.63) of GNU make not to export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
/POTFILES.in
0,0 → 1,75
a29k-dis.c
alpha-dis.c
alpha-opc.c
arc-dis.c
arc-opc.c
arm-dis.c
arm-opc.h
cgen-asm.c
cgen-dis.c
cgen-opc.c
d10v-dis.c
d10v-opc.c
d30v-dis.c
d30v-opc.c
dis-buf.c
disassemble.c
fr30-asm.c
fr30-desc.c
fr30-desc.h
fr30-dis.c
fr30-ibld.c
fr30-opc.c
fr30-opc.h
h8300-dis.c
h8500-dis.c
h8500-opc.h
hppa-dis.c
i370-dis.c
i370-opc.c
i386-dis.c
i960-dis.c
m10200-dis.c
m10200-opc.c
m10300-dis.c
m10300-opc.c
m32r-asm.c
m32r-desc.c
m32r-desc.h
m32r-dis.c
m32r-ibld.c
m32r-opc.c
m32r-opc.h
m32r-opinst.c
m68k-dis.c
m68k-opc.c
m88k-dis.c
mcore-dis.c
mcore-opc.h
mips-dis.c
mips-opc.c
mips16-opc.c
or16-dis.c
or32-dis.c
or1k-dis.c
ns32k-dis.c
pj-dis.c
pj-opc.c
ppc-dis.c
ppc-opc.c
sh-dis.c
sh-opc.h
sparc-dis.c
sparc-opc.c
sysdep.h
tic30-dis.c
tic80-dis.c
tic80-opc.c
v850-dis.c
v850-opc.c
vax-dis.c
w65-dis.c
w65-opc.h
z8k-dis.c
z8k-opc.h
z8kgen.c
/opcodes.pot
0,0 → 1,345
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2000-04-04 23:21+0930\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
 
#: alpha-opc.c:335
msgid "branch operand unaligned"
msgstr ""
 
#: alpha-opc.c:358 alpha-opc.c:380
msgid "jump hint unaligned"
msgstr ""
 
#: arc-dis.c:231
msgid "*unknown*"
msgstr ""
 
#: arc-opc.c:629
msgid "unable to fit different valued constants into instruction"
msgstr ""
 
#: arc-opc.c:639
msgid "auxiliary register not allowed here"
msgstr ""
 
#: arc-opc.c:652
#, c-format
msgid "invalid register number `%d'"
msgstr ""
 
#: arc-opc.c:775
#, c-format
msgid "value won't fit in range %ld - %ld"
msgstr ""
 
#: arc-opc.c:871
msgid "branch address not on 4 byte boundary"
msgstr ""
 
#: arm-dis.c:470
msgid "<illegal precision>"
msgstr ""
 
#: arm-dis.c:882
#, c-format
msgid "Unrecognised register name set: %s\n"
msgstr ""
 
#: arm-dis.c:889
#, c-format
msgid "Unrecognised disassembler option: %s\n"
msgstr ""
 
#: arm-dis.c:1053
msgid ""
"\n"
"The following ARM specific disassembler options are supported for use with\n"
"the -M switch:\n"
msgstr ""
 
#: cgen-asm.c:224
msgid "unrecognized keyword/register name"
msgstr ""
 
#: cgen-asm.c:332 fr30-ibld.c:223 m32r-ibld.c:227
#, c-format
msgid "operand out of range (%ld not between %ld and %ld)"
msgstr ""
 
#: cgen-asm.c:353
#, c-format
msgid "operand out of range (%lu not between %lu and %lu)"
msgstr ""
 
#: d30v-dis.c:305
#, c-format
msgid "<unknown register %d>"
msgstr ""
 
#. Can't happen.
#: dis-buf.c:56
#, c-format
msgid "Unknown error %d\n"
msgstr ""
 
#: dis-buf.c:61
#, c-format
msgid "Address 0x%x is out of bounds.\n"
msgstr ""
 
#: fr30-asm.c:305 m32r-asm.c:313
#, c-format
msgid "Unrecognized field %d while parsing.\n"
msgstr ""
 
#. We couldn't parse it.
#: fr30-asm.c:369 fr30-asm.c:373 fr30-asm.c:447 m32r-asm.c:377 m32r-asm.c:381
#: m32r-asm.c:455
msgid "unrecognized instruction"
msgstr ""
 
#. Syntax char didn't match. Can't be this insn.
#. FIXME: would like to return something like
#. "expected char `c'"
#: fr30-asm.c:415 m32r-asm.c:423
msgid "syntax error"
msgstr ""
 
#: fr30-asm.c:441 m32r-asm.c:449
msgid "junk at end of line"
msgstr ""
 
#: fr30-asm.c:534 m32r-asm.c:552
#, c-format
msgid "bad instruction `%.50s...'"
msgstr ""
 
#: fr30-asm.c:537 m32r-asm.c:555
#, c-format
msgid "bad instruction `%.50s'"
msgstr ""
 
#: fr30-dis.c:300 m32r-dis.c:239
#, c-format
msgid "Unrecognized field %d while printing insn.\n"
msgstr ""
 
#: fr30-ibld.c:210 m32r-ibld.c:211
#, c-format
msgid "operand out of range (%lu not between 0 and %lu)"
msgstr ""
 
#: fr30-ibld.c:745 m32r-ibld.c:679
#, c-format
msgid "Unrecognized field %d while building insn.\n"
msgstr ""
 
#: fr30-ibld.c:947 m32r-ibld.c:809
#, c-format
msgid "Unrecognized field %d while decoding insn.\n"
msgstr ""
 
#: fr30-ibld.c:1091 m32r-ibld.c:914
#, c-format
msgid "Unrecognized field %d while getting int operand.\n"
msgstr ""
 
#: fr30-ibld.c:1220 m32r-ibld.c:1004
#, c-format
msgid "Unrecognized field %d while getting vma operand.\n"
msgstr ""
 
#: fr30-ibld.c:1349 m32r-ibld.c:1097
#, c-format
msgid "Unrecognized field %d while setting int operand.\n"
msgstr ""
 
#: fr30-ibld.c:1471 m32r-ibld.c:1183
#, c-format
msgid "Unrecognized field %d while setting vma operand.\n"
msgstr ""
 
#: h8300-dis.c:404
#, c-format
msgid "Hmmmm %x"
msgstr ""
 
#: h8300-dis.c:416
#, c-format
msgid "Don't understand %x \n"
msgstr ""
 
#: h8500-dis.c:139
#, c-format
msgid "can't cope with insert %d\n"
msgstr ""
 
#. Couldn't understand anything
#: h8500-dis.c:344
#, c-format
msgid "%02x\t\t*unknown*"
msgstr ""
 
#: m10200-dis.c:199
#, c-format
msgid "unknown\t0x%02x"
msgstr ""
 
#: m10200-dis.c:339
#, c-format
msgid "unknown\t0x%04lx"
msgstr ""
 
#: m10300-dis.c:680
#, c-format
msgid "unknown\t0x%04x"
msgstr ""
 
#: m68k-dis.c:410
#, c-format
msgid "<internal error in opcode table: %s %s>\n"
msgstr ""
 
#: m68k-dis.c:988
#, c-format
msgid "<function code %d>"
msgstr ""
 
#: m88k-dis.c:273
#, c-format
msgid "# <dis error: %08x>"
msgstr ""
 
#: mips-dis.c:237
#, c-format
msgid "# internal error, undefined modifier(%c)"
msgstr ""
 
#. I and Z are output operands and can`t be immediate
#. * A is an address and we can`t have the address of
#. * an immediate either. We don't know how much to increase
#. * aoffsetp by since whatever generated this is broken
#. * anyway!
#.
#: ns32k-dis.c:618
msgid "$<undefined>"
msgstr ""
 
#: ppc-opc.c:586 ppc-opc.c:617
msgid "invalid conditional option"
msgstr ""
 
#: ppc-opc.c:619
msgid "attempt to set y bit when using + or - modifier"
msgstr ""
 
#: ppc-opc.c:674
msgid "ignoring least significant bits in branch offset"
msgstr ""
 
#: ppc-opc.c:709 ppc-opc.c:746
msgid "illegal bitmask"
msgstr ""
 
#: ppc-opc.c:815
msgid "value out of range"
msgstr ""
 
#: ppc-opc.c:889
msgid "index register in load range"
msgstr ""
 
#: ppc-opc.c:904
msgid "invalid register operand when updating"
msgstr ""
 
#. Mark as non-valid instruction
#: sparc-dis.c:744
msgid "unknown"
msgstr ""
 
#: sparc-dis.c:816
#, c-format
msgid "Internal error: bad sparc-opcode.h: \"%s\", %#.8lx, %#.8lx\n"
msgstr ""
 
#: sparc-dis.c:827
#, c-format
msgid "Internal error: bad sparc-opcode.h: \"%s\", %#.8lx, %#.8lx\n"
msgstr ""
 
#: sparc-dis.c:876
#, c-format
msgid "Internal error: bad sparc-opcode.h: \"%s\" == \"%s\"\n"
msgstr ""
 
#: v850-dis.c:221
#, c-format
msgid "unknown operand shift: %x\n"
msgstr ""
 
#: v850-dis.c:233
#, c-format
msgid "unknown pop reg: %d\n"
msgstr ""
 
#. The functions used to insert and extract complicated operands.
#. Note: There is a conspiracy between these functions and
#. v850_insert_operand() in gas/config/tc-v850.c. Error messages
#. containing the string 'out of range' will be ignored unless a
#. specific command line option is given to GAS.
#: v850-opc.c:46
msgid "displacement value is not in range and is not aligned"
msgstr ""
 
#: v850-opc.c:47
msgid "displacement value is out of range"
msgstr ""
 
#: v850-opc.c:48
msgid "displacement value is not aligned"
msgstr ""
 
#: v850-opc.c:50
msgid "immediate value is out of range"
msgstr ""
 
#: v850-opc.c:61
msgid "branch value not in range and to odd offset"
msgstr ""
 
#: v850-opc.c:63 v850-opc.c:95
msgid "branch value out of range"
msgstr ""
 
#: v850-opc.c:66 v850-opc.c:98
msgid "branch to odd offset"
msgstr ""
 
#: v850-opc.c:93
msgid "branch value not in range and to an odd offset"
msgstr ""
 
#: v850-opc.c:321
msgid "invalid register for stack adjustment"
msgstr ""
 
#: v850-opc.c:343
msgid "immediate value not in range and not even"
msgstr ""
 
#: v850-opc.c:348
msgid "immediate value must be even"
msgstr ""

powered by: WebSVN 2.1.0

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