summaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
Diffstat (limited to 'po')
-rw-r--r--po/Makefile.in.in182
-rw-r--r--po/de.gmobin8417 -> 8417 bytes
-rw-r--r--po/de.po37
-rw-r--r--po/es.po38
-rw-r--r--po/et.gmobin10791 -> 10791 bytes
-rw-r--r--po/et.po42
-rw-r--r--po/fr.gmobin8356 -> 8356 bytes
-rw-r--r--po/fr.po42
-rw-r--r--po/ja.gmobin8255 -> 8255 bytes
-rw-r--r--po/ja.po42
-rw-r--r--po/nl.gmobin7374 -> 7374 bytes
-rw-r--r--po/nl.po38
-rw-r--r--po/ru.gmobin11087 -> 11087 bytes
-rw-r--r--po/ru.po34
14 files changed, 209 insertions, 246 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in
index 4d6b64e0..32b73765 100644
--- a/po/Makefile.in.in
+++ b/po/Makefile.in.in
@@ -1,5 +1,5 @@
# Makefile for program source directory in GNU NLS utilities package.
-# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+# Copyright (C) 1995-1997, 2000, 2001 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
@@ -9,6 +9,10 @@
PACKAGE = @PACKAGE@
VERSION = @VERSION@
+# These two variables depend on the location of this directory.
+subdir = po
+top_builddir = ..
+
SHELL = /bin/sh
@SET_MAKE@
@@ -18,22 +22,20 @@ VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
-datadir = $(prefix)/@DATADIRNAME@
+datadir = @datadir@
localedir = $(datadir)/locale
-gnulocaledir = $(prefix)/share/locale
-gettextsrcdir = $(prefix)/share/gettext/po
-subdir = po
+gettextsrcdir = $(datadir)/gettext/po
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = @MKINSTALLDIRS@
+mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
CC = @CC@
-GENCAT = @GENCAT@
-GMSGFMT = PATH=../src:$$PATH @GMSGFMT@
+GMSGFMT = @GMSGFMT@
MSGFMT = @MSGFMT@
-XGETTEXT = PATH=../src:$$PATH @XGETTEXT@
-MSGMERGE = PATH=../src:$$PATH msgmerge
+XGETTEXT = @XGETTEXT@
+MSGMERGE = msgmerge
DEFS = @DEFS@
CFLAGS = @CFLAGS@
@@ -43,20 +45,17 @@ INCLUDES = -I.. -I$(top_srcdir)/intl
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
-SOURCES = cat-id-tbl.c
POFILES = @POFILES@
GMOFILES = @GMOFILES@
-DISTFILES = Makefile.in.in POTFILES.in $(PACKAGE).pot \
-stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)
+DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
+$(POFILES) $(GMOFILES)
POTFILES = \
CATALOGS = @CATALOGS@
-CATOBJEXT = @CATOBJEXT@
-INSTOBJEXT = @INSTOBJEXT@
.SUFFIXES:
-.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
+.SUFFIXES: .c .o .po .pox .gmo .mo
.c.o:
$(COMPILE) $<
@@ -70,19 +69,19 @@ INSTOBJEXT = @INSTOBJEXT@
.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
+ && rm -f $$file && $(GMSGFMT) --statistics -o $$file $<
all: all-@USE_NLS@
-all-yes: cat-id-tbl.c $(CATALOGS)
+all-yes: $(CATALOGS)
all-no:
-$(srcdir)/$(PACKAGE).pot: $(POTFILES)
+# Note: Target 'all' must not depend on target '$(srcdir)/$(PACKAGE).pot',
+# otherwise packages like GCC can not be built if only parts of the source
+# have been downloaded.
+
+$(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
--add-comments --keyword=_ --keyword=N_ \
--files-from=$(srcdir)/POTFILES.in \
@@ -90,78 +89,35 @@ $(srcdir)/$(PACKAGE).pot: $(POTFILES)
|| ( 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-data: install-data-@USE_NLS@
-install-data-no: all
-install-data-yes: all
- if test -x "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
+ if test "$(PACKAGE)" = "gettext"; then \
+ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
+ $(INSTALL_DATA) $(srcdir)/Makefile.in.in \
+ $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
+ : ; \
fi
+install-data-no: all
+install-data-yes: all
+ $(mkinstalldirs) $(DESTDIR)$(datadir)
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
- case "$$cat" in \
- *.gmo) destdir=$(DESTDIR)$(gnulocaledir);; \
- *) destdir=$(DESTDIR)$(localedir);; \
- esac; \
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- dir=$$destdir/$$lang/LC_MESSAGES; \
- if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $$dir; \
- else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
- fi; \
+ lang=`echo $$cat | sed 's/\.gmo$$//'`; \
+ dir=$(localedir)/$$lang/LC_MESSAGES; \
+ $(mkinstalldirs) $(DESTDIR)$$dir; \
if test -r $$cat; then \
- $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
- echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
+ $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
+ echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE).mo"; \
else \
- $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
+ $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
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; \
+ "$(DESTDIR)$$dir/$(PACKAGE).mo"; \
fi; \
done
- if test "$(PACKAGE)" = "gettext"; then \
- if test -x "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
- else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
- fi; \
- $(INSTALL_DATA) $(srcdir)/Makefile.in.in \
- $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
- else \
- : ; \
- fi
# Define this as empty until I found a useful application.
installcheck:
@@ -170,76 +126,68 @@ uninstall:
catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
- rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
- rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
- rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
+ lang=`echo $$cat | sed 's/\.gmo$$//'`; \
+ rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo; \
done
- rm -f $(DESTDIR)$(gettextsrcdir)/po-Makefile.in.in
+ if test "$(PACKAGE)" = "gettext"; then \
+ rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
+ else \
+ : ; \
+ fi
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 -f core core.* *.pox $(PACKAGE).po *.new.po
rm -fr *.o
clean: mostlyclean
distclean: clean
- rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
+ rm -f Makefile Makefile.in POTFILES *.mo
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)
+distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
+dist distdir:
+ $(MAKE) update-po
+ @$(MAKE) dist2
+# This is a separate target because 'update-po' must be executed before.
+dist2: $(DISTFILES)
dists="$(DISTFILES)"; \
for file in $$dists; do \
- ln $(srcdir)/$$file $(distdir) 2> /dev/null \
- || cp -p $(srcdir)/$$file $(distdir); \
+ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
+ cp -p $$dir/$$file $(distdir); \
done
update-po: Makefile
$(MAKE) $(PACKAGE).pot
- PATH=`pwd`/../src:$$PATH; \
+ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \
cd $(srcdir); \
- catalogs='$(CATALOGS)'; \
+ catalogs='$(GMOFILES)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
- lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- mv $$lang.po $$lang.old.po; \
+ lang=`echo $$cat | sed 's/\.gmo$$//'`; \
echo "$$lang:"; \
- if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \
- rm -f $$lang.old.po; \
+ if $(MSGMERGE) $$lang.po $(PACKAGE).pot -o $$lang.new.po; then \
+ mv -f $$lang.new.po $$lang.po; \
else \
echo "msgmerge for $$cat failed!"; \
- rm -f $$lang.po; \
- mv $$lang.old.po $$lang.po; \
+ rm -f $$lang.new.po; \
fi; \
done
+ $(MAKE) update-gmo
-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 $@ )
-
-Makefile: Makefile.in.in ../config.status POTFILES
- cd .. \
+update-gmo: Makefile $(GMOFILES)
+ @:
+
+Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in
+ cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
$(SHELL) ./config.status
diff --git a/po/de.gmo b/po/de.gmo
index 850b40c4..c601819a 100644
--- a/po/de.gmo
+++ b/po/de.gmo
Binary files differ
diff --git a/po/de.po b/po/de.po
index c86ec66c..55f62885 100644
--- a/po/de.po
+++ b/po/de.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.25\n"
-"POT-Creation-Date: 2001-02-21 11:16+0100\n"
+"POT-Creation-Date: 2001-03-16 16:02+0100\n"
"PO-Revision-Date: 1996-10-10 17:54 MET DST\n"
"Last-Translator: Ulrich Drepper <drepper@gnu.ai.mit.edu>\n"
"Language-Team: German <de@li.org>\n"
@@ -118,22 +118,22 @@ msgstr "%s leitet ab"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:71
+#: src/getargs.c:80
msgid "GNU bison generates parsers for LALR(1) grammars.\n"
msgstr ""
-#: src/getargs.c:75
+#: src/getargs.c:84
#, c-format
msgid "Usage: %s [OPTION]... FILE\n"
msgstr ""
-#: src/getargs.c:79
+#: src/getargs.c:88
msgid ""
"If a long option shows an argument as mandatory, then it is mandatory\n"
"for the equivalent short option also. Similarly for optional arguments.\n"
msgstr ""
-#: src/getargs.c:85
+#: src/getargs.c:94
msgid ""
"Operation modes:\n"
" -h, --help display this help and exit\n"
@@ -141,9 +141,10 @@ msgid ""
" -y, --yacc emulate POSIX yacc\n"
msgstr ""
-#: src/getargs.c:92
+#: src/getargs.c:101
msgid ""
"Parser:\n"
+" -S, --skeleton=FILE specify the skeleton to use\n"
" -t, --debug instrument the parser for debugging\n"
" --locations enable locations computation\n"
" -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n"
@@ -153,7 +154,7 @@ msgid ""
" -k, --token-table include a table of token names\n"
msgstr ""
-#: src/getargs.c:104
+#: src/getargs.c:114
msgid ""
"Output:\n"
" -d, --defines also produce a header file\n"
@@ -162,38 +163,39 @@ msgid ""
" -o, --output-file=FILE leave output to FILE\n"
msgstr ""
-#: src/getargs.c:112
+#: src/getargs.c:122
msgid "Report bugs to <bug-bison@gnu.org>.\n"
msgstr ""
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:126
+#: src/getargs.c:136
#, c-format
msgid "bison (GNU Bison) %s"
msgstr ""
-#: src/getargs.c:131
-msgid "Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"
+#: src/getargs.c:141
+msgid ""
+"Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"
msgstr ""
-#: src/getargs.c:135
+#: src/getargs.c:145
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
-#: src/getargs.c:214
+#: src/getargs.c:226
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr ""
-#: src/getargs.c:222
+#: src/getargs.c:233
#, c-format
msgid "%s: no grammar file given\n"
msgstr "%s: keine Grammatik-Datei angegeben\n"
-#: src/getargs.c:226
+#: src/getargs.c:237
#, fuzzy, c-format
msgid "%s: extra arguments ignored after `%s'\n"
msgstr "%s: zusätzliche Argumente nach »%s« werden ignoriert\n"
@@ -672,7 +674,7 @@ msgstr ""
"Reduzierung von %s definiert %d Terminal, %d Nicht-Terminal und %d "
"Produktionen.\n"
-#: lib/error.c:102
+#: lib/error.c:117
msgid "Unknown system error"
msgstr ""
@@ -805,7 +807,8 @@ msgstr ""
#~ "Report bugs to bug-bison@gnu.org\n"
#~ msgstr ""
#~ "Benutzung: %s [-dhklntvyV] [-b Datei-Präfix] [-o Ausgabe-Datei]\n"
-#~ " [-p Namen-Präfix] [--debug] [--defines] [--fixed-output-files]\n"
+#~ " [-p Namen-Präfix] [--debug] [--defines] [--fixed-output-"
+#~ "files]\n"
#~ " [--no-lines] [--verbose] [--version] [--help] [--yacc]\n"
#~ " [--no-parser] [--token-table]\n"
#~ " [--file-prefix=Präfix] [--name-prefix=Präfix]\n"
diff --git a/po/es.po b/po/es.po
index 5fa5efcf..c45ac211 100644
--- a/po/es.po
+++ b/po/es.po
@@ -30,7 +30,7 @@
msgid ""
msgstr ""
"Project-Id-Version: GNU bison 1.25\n"
-"POT-Creation-Date: 2001-02-21 11:16+0100\n"
+"POT-Creation-Date: 2001-03-16 16:02+0100\n"
"PO-Revision-Date: 1998-09-21 10:19+0200\n"
"Last-Translator: Nicolás García-Pedrajas <ngarcia-pedrajas@acm.org>\n"
"Language-Team: Spanish <es@li.org>\n"
@@ -174,22 +174,22 @@ msgstr "%s deriva"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:71
+#: src/getargs.c:80
msgid "GNU bison generates parsers for LALR(1) grammars.\n"
msgstr ""
-#: src/getargs.c:75
+#: src/getargs.c:84
#, c-format
msgid "Usage: %s [OPTION]... FILE\n"
msgstr ""
-#: src/getargs.c:79
+#: src/getargs.c:88
msgid ""
"If a long option shows an argument as mandatory, then it is mandatory\n"
"for the equivalent short option also. Similarly for optional arguments.\n"
msgstr ""
-#: src/getargs.c:85
+#: src/getargs.c:94
msgid ""
"Operation modes:\n"
" -h, --help display this help and exit\n"
@@ -197,9 +197,10 @@ msgid ""
" -y, --yacc emulate POSIX yacc\n"
msgstr ""
-#: src/getargs.c:92
+#: src/getargs.c:101
msgid ""
"Parser:\n"
+" -S, --skeleton=FILE specify the skeleton to use\n"
" -t, --debug instrument the parser for debugging\n"
" --locations enable locations computation\n"
" -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n"
@@ -209,7 +210,7 @@ msgid ""
" -k, --token-table include a table of token names\n"
msgstr ""
-#: src/getargs.c:104
+#: src/getargs.c:114
msgid ""
"Output:\n"
" -d, --defines also produce a header file\n"
@@ -218,41 +219,42 @@ msgid ""
" -o, --output-file=FILE leave output to FILE\n"
msgstr ""
-#: src/getargs.c:112
+#: src/getargs.c:122
msgid "Report bugs to <bug-bison@gnu.org>.\n"
msgstr ""
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:126
+#: src/getargs.c:136
#, c-format
msgid "bison (GNU Bison) %s"
msgstr ""
-#: src/getargs.c:131
-msgid "Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"
+#: src/getargs.c:141
+msgid ""
+"Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"
msgstr ""
-#: src/getargs.c:135
+#: src/getargs.c:145
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
-#: src/getargs.c:214
+#: src/getargs.c:226
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr ""
# Me parece menos "computadora" decir "ningún fichero de gramática" - cll
#
-#: src/getargs.c:222
+#: src/getargs.c:233
#, c-format
msgid "%s: no grammar file given\n"
msgstr "%s: no se ha especificado ningún fichero de gramática\n"
# Ignorar es no saber, to ignore es no hacer caso, que no es lo mismo. sv
-#: src/getargs.c:226
+#: src/getargs.c:237
#, fuzzy, c-format
msgid "%s: extra arguments ignored after `%s'\n"
msgstr "%s: los argumentos extra después de '%s' no se tendrán en cuenta\n"
@@ -773,10 +775,10 @@ msgstr "El símbolo de inicio (axioma) %s no deriva ninguna sentencia"
msgid ""
"reduced %s defines %d terminal%s, %d nonterminal%s, and %d production%s.\n"
msgstr ""
-"la reducción de %s define %d terminal%s, %d no terminal%s, y %d "
-"produccion%s.\n"
+"la reducción de %s define %d terminal%s, %d no terminal%s, y %d produccion%"
+"s.\n"
-#: lib/error.c:102
+#: lib/error.c:117
msgid "Unknown system error"
msgstr ""
diff --git a/po/et.gmo b/po/et.gmo
index 2398d086..24583d97 100644
--- a/po/et.gmo
+++ b/po/et.gmo
Binary files differ
diff --git a/po/et.po b/po/et.po
index 9cdb7479..dca24d18 100644
--- a/po/et.po
+++ b/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.25\n"
-"POT-Creation-Date: 2001-02-21 11:16+0100\n"
+"POT-Creation-Date: 2001-03-16 16:02+0100\n"
"PO-Revision-Date: 2000-04-11 22:19+02:00\n"
"Last-Translator: Toomas Soome <tsoome@ut.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -124,16 +124,16 @@ msgstr "%s derives"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:71
+#: src/getargs.c:80
msgid "GNU bison generates parsers for LALR(1) grammars.\n"
msgstr "GNU bison genereerib parsereid LALR(1) grammatikatele.\n"
-#: src/getargs.c:75
+#: src/getargs.c:84
#, c-format
msgid "Usage: %s [OPTION]... FILE\n"
msgstr "Kasuta: %s [VÕTI]...FAIL\n"
-#: src/getargs.c:79
+#: src/getargs.c:88
msgid ""
"If a long option shows an argument as mandatory, then it is mandatory\n"
"for the equivalent short option also. Similarly for optional arguments.\n"
@@ -141,7 +141,7 @@ msgstr ""
"Kui pikk võti näitab, et argument on kohustuslik, siis on see kohustuslik \n"
"ka lühikese võtme korral. Sama ka vabalt valitavate võtmete korral.\n"
-#: src/getargs.c:85
+#: src/getargs.c:94
msgid ""
"Operation modes:\n"
" -h, --help display this help and exit\n"
@@ -153,10 +153,11 @@ msgstr ""
" -V, --version esita versiooniinfo ja lõpeta töö\n"
" -y, --yacc emuleeri POSIX yacc\n"
-#: src/getargs.c:92
+#: src/getargs.c:101
#, fuzzy
msgid ""
"Parser:\n"
+" -S, --skeleton=FILE specify the skeleton to use\n"
" -t, --debug instrument the parser for debugging\n"
" --locations enable locations computation\n"
" -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n"
@@ -173,7 +174,7 @@ msgstr ""
" -r, --raw sümbolite number alates 3\n"
" -k, --token-table lisa ka sümbolite nimede tabel\n"
-#: src/getargs.c:104
+#: src/getargs.c:114
msgid ""
"Output:\n"
" -d, --defines also produce a header file\n"
@@ -187,38 +188,39 @@ msgstr ""
" -b, --file-prefix=PREFIKS kasuta väljundfailide nimedes PREFIKSit\n"
" -o, --output-file=FAIL jäta väljund FAILi\n"
-#: src/getargs.c:112
+#: src/getargs.c:122
msgid "Report bugs to <bug-bison@gnu.org>.\n"
msgstr "Teatage palun vigadest aadressil <bug-bison@gnu.org>.\n"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:126
+#: src/getargs.c:136
#, c-format
msgid "bison (GNU Bison) %s"
msgstr ""
-#: src/getargs.c:131
-msgid "Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"
+#: src/getargs.c:141
+msgid ""
+"Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"
msgstr ""
-#: src/getargs.c:135
+#: src/getargs.c:145
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
-#: src/getargs.c:214
+#: src/getargs.c:226
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr ""
-#: src/getargs.c:222
+#: src/getargs.c:233
#, c-format
msgid "%s: no grammar file given\n"
msgstr "%s: puudub grammatikafail\n"
-#: src/getargs.c:226
+#: src/getargs.c:237
#, c-format
msgid "%s: extra arguments ignored after `%s'\n"
msgstr "%s: ignoreerin lisaargumente peale `%s'\n"
@@ -688,10 +690,10 @@ msgstr "Stardisümbolist %s ei tuletata ühtegi lauset"
msgid ""
"reduced %s defines %d terminal%s, %d nonterminal%s, and %d production%s.\n"
msgstr ""
-"redutseeritud %s defineerib %d terminali%s, %d mitteterminali%s ja %d "
-"reeglit%s.\n"
+"redutseeritud %s defineerib %d terminali%s, %d mitteterminali%s ja %d reeglit"
+"%s.\n"
-#: lib/error.c:102
+#: lib/error.c:117
msgid "Unknown system error"
msgstr ""
@@ -859,8 +861,8 @@ msgstr ""
#~ " [--file-prefix=prefix] [--name-prefix=prefix]\n"
#~ " [--output=outfile] grammar-file\n"
#~ msgstr ""
-#~ "Kasuta: %s [-dhklntvyV] [-b faili-prefiks] [-o väljundfail] [-p "
-#~ "nime-prefiks]\n"
+#~ "Kasuta: %s [-dhklntvyV] [-b faili-prefiks] [-o väljundfail] [-p nime-"
+#~ "prefiks]\n"
#~ " [--debug] [--defines] [--fixed-output-files] [--no-lines]\n"
#~ " [--verbose] [--version] [--help] [--yacc]\n"
#~ " [--no-parser] [--token-table]\n"
diff --git a/po/fr.gmo b/po/fr.gmo
index a5d607e7..f9a5aca2 100644
--- a/po/fr.gmo
+++ b/po/fr.gmo
Binary files differ
diff --git a/po/fr.po b/po/fr.po
index bfb2e326..17925f85 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.25\n"
-"POT-Creation-Date: 2001-02-21 11:16+0100\n"
+"POT-Creation-Date: 2001-03-16 16:02+0100\n"
"PO-Revision-Date: 1996-03-19 20:05 EST\n"
"Last-Translator: Dominique Boucher <boucherd@IRO.UMontreal.CA>\n"
"Language-Team: French <fr@li.org>\n"
@@ -125,22 +125,22 @@ msgstr "%s dérive"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:71
+#: src/getargs.c:80
msgid "GNU bison generates parsers for LALR(1) grammars.\n"
msgstr ""
-#: src/getargs.c:75
+#: src/getargs.c:84
#, c-format
msgid "Usage: %s [OPTION]... FILE\n"
msgstr ""
-#: src/getargs.c:79
+#: src/getargs.c:88
msgid ""
"If a long option shows an argument as mandatory, then it is mandatory\n"
"for the equivalent short option also. Similarly for optional arguments.\n"
msgstr ""
-#: src/getargs.c:85
+#: src/getargs.c:94
msgid ""
"Operation modes:\n"
" -h, --help display this help and exit\n"
@@ -148,9 +148,10 @@ msgid ""
" -y, --yacc emulate POSIX yacc\n"
msgstr ""
-#: src/getargs.c:92
+#: src/getargs.c:101
msgid ""
"Parser:\n"
+" -S, --skeleton=FILE specify the skeleton to use\n"
" -t, --debug instrument the parser for debugging\n"
" --locations enable locations computation\n"
" -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n"
@@ -160,7 +161,7 @@ msgid ""
" -k, --token-table include a table of token names\n"
msgstr ""
-#: src/getargs.c:104
+#: src/getargs.c:114
msgid ""
"Output:\n"
" -d, --defines also produce a header file\n"
@@ -169,38 +170,39 @@ msgid ""
" -o, --output-file=FILE leave output to FILE\n"
msgstr ""
-#: src/getargs.c:112
+#: src/getargs.c:122
msgid "Report bugs to <bug-bison@gnu.org>.\n"
msgstr ""
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:126
+#: src/getargs.c:136
#, c-format
msgid "bison (GNU Bison) %s"
msgstr ""
-#: src/getargs.c:131
-msgid "Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"
+#: src/getargs.c:141
+msgid ""
+"Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"
msgstr ""
-#: src/getargs.c:135
+#: src/getargs.c:145
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
-#: src/getargs.c:214
+#: src/getargs.c:226
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr ""
-#: src/getargs.c:222
+#: src/getargs.c:233
#, c-format
msgid "%s: no grammar file given\n"
msgstr "%s: grammaire manquante\n"
-#: src/getargs.c:226
+#: src/getargs.c:237
#, fuzzy, c-format
msgid "%s: extra arguments ignored after `%s'\n"
msgstr "%s: paramètres supplémentaires ignorés après «%s»\n"
@@ -673,10 +675,10 @@ msgstr "Aucune phrase ne peut être dérivée du symbole de départ %s"
msgid ""
"reduced %s defines %d terminal%s, %d nonterminal%s, and %d production%s.\n"
msgstr ""
-"la réduction de %s définit %d terminal%s, %d catégorie%s et %d "
-"production%s.\n"
+"la réduction de %s définit %d terminal%s, %d catégorie%s et %d production%"
+"s.\n"
-#: lib/error.c:102
+#: lib/error.c:117
msgid "Unknown system error"
msgstr ""
@@ -854,8 +856,8 @@ msgstr ""
#~ "\n"
#~ "Report bugs to bug-bison@gnu.org\n"
#~ msgstr ""
-#~ "Usage: %s [-dhklntvyV] [-b préfixe-de-fichier] [-o sortie] [-p "
-#~ "préfixe-de-nom]\n"
+#~ "Usage: %s [-dhklntvyV] [-b préfixe-de-fichier] [-o sortie] [-p préfixe-de-"
+#~ "nom]\n"
#~ " [--debug] [--defines] [--fixed-output-files] [--no-lines]\n"
#~ " [--verbose] [--version] [--help] [--yacc]\n"
#~ " [--no-parser] [--token-table]\n"
diff --git a/po/ja.gmo b/po/ja.gmo
index 1878ee3d..1b7552b6 100644
--- a/po/ja.gmo
+++ b/po/ja.gmo
Binary files differ
diff --git a/po/ja.po b/po/ja.po
index acd6bdf0..314cf402 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: GNU bison 1.28\n"
-"POT-Creation-Date: 2001-02-21 11:16+0100\n"
+"POT-Creation-Date: 2001-03-16 16:02+0100\n"
"PO-Revision-Date: 1999-09-28 21:10+0900\n"
"Last-Translator: Daisuke Yamashita <yamad@mb.infoweb.ne.jp>\n"
"Language-Team: Japanese <ja@li.org>\n"
@@ -124,22 +124,22 @@ msgstr "%s ¤Ï°Ê²¼¤«¤éÇÉÀ¸"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:71
+#: src/getargs.c:80
msgid "GNU bison generates parsers for LALR(1) grammars.\n"
msgstr ""
-#: src/getargs.c:75
+#: src/getargs.c:84
#, c-format
msgid "Usage: %s [OPTION]... FILE\n"
msgstr ""
-#: src/getargs.c:79
+#: src/getargs.c:88
msgid ""
"If a long option shows an argument as mandatory, then it is mandatory\n"
"for the equivalent short option also. Similarly for optional arguments.\n"
msgstr ""
-#: src/getargs.c:85
+#: src/getargs.c:94
msgid ""
"Operation modes:\n"
" -h, --help display this help and exit\n"
@@ -147,9 +147,10 @@ msgid ""
" -y, --yacc emulate POSIX yacc\n"
msgstr ""
-#: src/getargs.c:92
+#: src/getargs.c:101
msgid ""
"Parser:\n"
+" -S, --skeleton=FILE specify the skeleton to use\n"
" -t, --debug instrument the parser for debugging\n"
" --locations enable locations computation\n"
" -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n"
@@ -159,7 +160,7 @@ msgid ""
" -k, --token-table include a table of token names\n"
msgstr ""
-#: src/getargs.c:104
+#: src/getargs.c:114
msgid ""
"Output:\n"
" -d, --defines also produce a header file\n"
@@ -168,38 +169,39 @@ msgid ""
" -o, --output-file=FILE leave output to FILE\n"
msgstr ""
-#: src/getargs.c:112
+#: src/getargs.c:122
msgid "Report bugs to <bug-bison@gnu.org>.\n"
msgstr ""
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:126
+#: src/getargs.c:136
#, c-format
msgid "bison (GNU Bison) %s"
msgstr ""
-#: src/getargs.c:131
-msgid "Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"
+#: src/getargs.c:141
+msgid ""
+"Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"
msgstr ""
-#: src/getargs.c:135
+#: src/getargs.c:145
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
-#: src/getargs.c:214
+#: src/getargs.c:226
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr ""
-#: src/getargs.c:222
+#: src/getargs.c:233
#, c-format
msgid "%s: no grammar file given\n"
msgstr "%s: ʸˡ¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
-#: src/getargs.c:226
+#: src/getargs.c:237
#, fuzzy, c-format
msgid "%s: extra arguments ignored after `%s'\n"
msgstr "%s: '%s' ¤è¤ê¸å¤í¤Î;ʬ¤Ê°ú¿ô¤Ï̵»ë¤µ¤ì¤Þ¤·¤¿\n"
@@ -550,8 +552,8 @@ msgstr "ÆþÎϤ·¤¿Ê¸Ë¡¤Ëµ¬Â§¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
#, c-format
msgid "symbol %s is used, but is not defined as a token and has no rules"
msgstr ""
-"¥·¥ó¥Ü¥ë %s "
-"¤¬»È¤ï¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¥È¡¼¥¯¥ó¤È¤·¤ÆÄêµÁ¤µ¤ì¤Æ¤ª¤é¤º¡¢µ¬Â§¤ò»ý¤Á¤Þ¤»¤ó"
+"¥·¥ó¥Ü¥ë %s ¤¬»È¤ï¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¥È¡¼¥¯¥ó¤È¤·¤ÆÄêµÁ¤µ¤ì¤Æ¤ª¤é¤º¡¢µ¬Â§¤ò»ý¤Á¤Þ"
+"¤»¤ó"
#: src/reader.c:1659
#, c-format
@@ -671,10 +673,10 @@ msgstr "³«»Ï¥·¥ó¥Ü¥ë %s ¤Ï¤É¤Îʸ¤Ë¤âͳÍ褷¤Þ¤»¤ó"
msgid ""
"reduced %s defines %d terminal%s, %d nonterminal%s, and %d production%s.\n"
msgstr ""
-"´Ô¸µ¥Õ¥¡¥¤¥ë %s ¤Ç %d ¸Ä¤Î½ªÃ¼»Ò%.0s, %d ¸Ä¤ÎÈó½ªÃ¼»Ò%.0s, %d "
-"¸Ä¤Îµ¬Â§%.0s¤¬ÄêµÁ¤µ¤ì¤Þ¤·¤¿\n"
+"´Ô¸µ¥Õ¥¡¥¤¥ë %s ¤Ç %d ¸Ä¤Î½ªÃ¼»Ò%.0s, %d ¸Ä¤ÎÈó½ªÃ¼»Ò%.0s, %d ¸Ä¤Îµ¬Â§%.0s¤¬"
+"ÄêµÁ¤µ¤ì¤Þ¤·¤¿\n"
-#: lib/error.c:102
+#: lib/error.c:117
msgid "Unknown system error"
msgstr ""
diff --git a/po/nl.gmo b/po/nl.gmo
index e132ba15..b56122c6 100644
--- a/po/nl.gmo
+++ b/po/nl.gmo
Binary files differ
diff --git a/po/nl.po b/po/nl.po
index 14992168..3b4dec24 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.25\n"
-"POT-Creation-Date: 2001-02-21 11:16+0100\n"
+"POT-Creation-Date: 2001-03-16 16:02+0100\n"
"PO-Revision-Date: 1996-08-27 15:34 MET DST\n"
"Last-Translator: Erick Branderhorst <branderh@debian.org>\n"
"Language-Team: Dutch <nl@li.org>\n"
@@ -124,22 +124,22 @@ msgstr "%s afgeleiden"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:71
+#: src/getargs.c:80
msgid "GNU bison generates parsers for LALR(1) grammars.\n"
msgstr ""
-#: src/getargs.c:75
+#: src/getargs.c:84
#, c-format
msgid "Usage: %s [OPTION]... FILE\n"
msgstr ""
-#: src/getargs.c:79
+#: src/getargs.c:88
msgid ""
"If a long option shows an argument as mandatory, then it is mandatory\n"
"for the equivalent short option also. Similarly for optional arguments.\n"
msgstr ""
-#: src/getargs.c:85
+#: src/getargs.c:94
msgid ""
"Operation modes:\n"
" -h, --help display this help and exit\n"
@@ -147,9 +147,10 @@ msgid ""
" -y, --yacc emulate POSIX yacc\n"
msgstr ""
-#: src/getargs.c:92
+#: src/getargs.c:101
msgid ""
"Parser:\n"
+" -S, --skeleton=FILE specify the skeleton to use\n"
" -t, --debug instrument the parser for debugging\n"
" --locations enable locations computation\n"
" -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n"
@@ -159,7 +160,7 @@ msgid ""
" -k, --token-table include a table of token names\n"
msgstr ""
-#: src/getargs.c:104
+#: src/getargs.c:114
msgid ""
"Output:\n"
" -d, --defines also produce a header file\n"
@@ -168,38 +169,39 @@ msgid ""
" -o, --output-file=FILE leave output to FILE\n"
msgstr ""
-#: src/getargs.c:112
+#: src/getargs.c:122
msgid "Report bugs to <bug-bison@gnu.org>.\n"
msgstr ""
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:126
+#: src/getargs.c:136
#, c-format
msgid "bison (GNU Bison) %s"
msgstr ""
-#: src/getargs.c:131
-msgid "Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"
+#: src/getargs.c:141
+msgid ""
+"Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"
msgstr ""
-#: src/getargs.c:135
+#: src/getargs.c:145
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
-#: src/getargs.c:214
+#: src/getargs.c:226
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr ""
-#: src/getargs.c:222
+#: src/getargs.c:233
#, c-format
msgid "%s: no grammar file given\n"
msgstr "%s: geen grammatica bestand gegeven\n"
-#: src/getargs.c:226
+#: src/getargs.c:237
#, fuzzy, c-format
msgid "%s: extra arguments ignored after `%s'\n"
msgstr "%s: extra argumenten genegeerd na '%s'\n"
@@ -672,10 +674,10 @@ msgstr "Start symbool %s is niet afkomstig uit een zin"
msgid ""
"reduced %s defines %d terminal%s, %d nonterminal%s, and %d production%s.\n"
msgstr ""
-"gereduceerd %s gedefinieerd %d terminal%s, %d nietterminal%s, en %d "
-"productie%s.\n"
+"gereduceerd %s gedefinieerd %d terminal%s, %d nietterminal%s, en %d productie"
+"%s.\n"
-#: lib/error.c:102
+#: lib/error.c:117
msgid "Unknown system error"
msgstr ""
diff --git a/po/ru.gmo b/po/ru.gmo
index 3a41e35c..571e02e5 100644
--- a/po/ru.gmo
+++ b/po/ru.gmo
Binary files differ
diff --git a/po/ru.po b/po/ru.po
index 5bdaebe6..810424f1 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.28a\n"
-"POT-Creation-Date: 2001-02-21 11:16+0100\n"
+"POT-Creation-Date: 2001-03-16 16:02+0100\n"
"PO-Revision-Date: 2000-04-12 13:16+04:00\n"
"Last-Translator: Dmitry S. Sivachenko <dima@Chg.RU>\n"
"Language-Team: Russian <ru@li.org>\n"
@@ -125,16 +125,16 @@ msgstr "%s ×Ù×ÏÄÉÔ"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:71
+#: src/getargs.c:80
msgid "GNU bison generates parsers for LALR(1) grammars.\n"
msgstr "GNU bison ÇÅÎÅÒÉÒÕÅÔ ÁÎÁÌÉÚÁÔÏÒÙ ÄÌÑ ÇÒÁÍÍÁÔÉË LALR(1).\n"
-#: src/getargs.c:75
+#: src/getargs.c:84
#, c-format
msgid "Usage: %s [OPTION]... FILE\n"
msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ëìàþé]... æáêì\n"
-#: src/getargs.c:79
+#: src/getargs.c:88
msgid ""
"If a long option shows an argument as mandatory, then it is mandatory\n"
"for the equivalent short option also. Similarly for optional arguments.\n"
@@ -143,7 +143,7 @@ msgstr ""
"Ñ×ÌÑÅÔÓÑ ÏÂÑÚÁÔÅÌØÎÙÍ ÄÌÑ ËÏÒÏÔËÏÊ ÆÏÒÍÙ. ôÏ ÖÅ ËÁÓÁÅÔÓÑ ÎÅÏÂÑÚÁÔÅÌØÎÙÈ\n"
"ÁÒÇÕÍÅÎÔÏ×.\n"
-#: src/getargs.c:85
+#: src/getargs.c:94
msgid ""
"Operation modes:\n"
" -h, --help display this help and exit\n"
@@ -155,10 +155,11 @@ msgstr ""
" -V, --version ×Ù×ÅÓÔÉ ÉÎÆÏÒÍÁÃÉÀ Ï ×ÅÒÓÉÉ É ×ÙÊÔÉ\n"
" -y, --yacc ÜÍÕÌÉÒÏ×ÁÔØ POSIX yacc\n"
-#: src/getargs.c:92
+#: src/getargs.c:101
#, fuzzy
msgid ""
"Parser:\n"
+" -S, --skeleton=FILE specify the skeleton to use\n"
" -t, --debug instrument the parser for debugging\n"
" --locations enable locations computation\n"
" -p, --name-prefix=PREFIX prepend PREFIX to the external symbols\n"
@@ -175,7 +176,7 @@ msgstr ""
" -r, --raw ÎÕÍÅÒÏ×ÁÔØ ÌÅËÓÅÍÙ, ÎÁÞÉÎÁÑ Ó 3\n"
" -k, --token-table ×ËÌÀÞÉÔØ ÔÁÂÌÉÃÕ ÉÍÅÎ ÌÅËÓÅÍ\n"
-#: src/getargs.c:104
+#: src/getargs.c:114
msgid ""
"Output:\n"
" -d, --defines also produce a header file\n"
@@ -189,38 +190,39 @@ msgstr ""
" -b, --file-prefix=ðòåæéëó ÕËÁÚÁÔØ ðòåæéëó ÄÌÑ ×ÙÈÏÄÎÙÈ ÆÁÊÌÏ×\n"
" -o, --output-file=æáêì ÐÏÍÅÓÔÉÔØ ÒÅÚÕÌØÔÁÔ × æáêì\n"
-#: src/getargs.c:112
+#: src/getargs.c:122
msgid "Report bugs to <bug-bison@gnu.org>.\n"
msgstr "ïÛÉÂËÉ ÓÏÏÂÝÁÊÔÅ ÐÏ ÁÄÒÅÓÕ <bug-bison@gnu.org>.\n"
#. Some efforts were made to ease the translators' task, please
#. continue.
-#: src/getargs.c:126
+#: src/getargs.c:136
#, c-format
msgid "bison (GNU Bison) %s"
msgstr ""
-#: src/getargs.c:131
-msgid "Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.\n"
+#: src/getargs.c:141
+msgid ""
+"Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.\n"
msgstr ""
-#: src/getargs.c:135
+#: src/getargs.c:145
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
-#: src/getargs.c:214
+#: src/getargs.c:226
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr ""
-#: src/getargs.c:222
+#: src/getargs.c:233
#, c-format
msgid "%s: no grammar file given\n"
msgstr "%s: ÎÅ ÚÁÄÁÎ ÆÁÊÌ Ó ÇÒÁÍÍÁÔÉËÏÊ\n"
-#: src/getargs.c:226
+#: src/getargs.c:237
#, c-format
msgid "%s: extra arguments ignored after `%s'\n"
msgstr "%s: ÌÉÛÎÉÅ ÁÒÇÕÍÅÎÔÙ ÐÏÓÌÅ `%s' ÉÇÎÏÒÉÒÏ×ÁÎÙ\n"
@@ -692,7 +694,7 @@ msgstr ""
"×Ù×ÅÄÅÎÎÙÊ %s ÏÐÒÅÄÅÌÑÅÔ %d ÔÅÒÍÉÎÁÌÏ×%s, %d ÎÅÔÅÒÍÉÎÁÌÏ×%s, É %d ÐÒÁ×ÉÌ "
"×Ù×ÏÄÁ%s.\n"
-#: lib/error.c:102
+#: lib/error.c:117
msgid "Unknown system error"
msgstr ""