From 80fdb0714b75cb240d8b8068d718b915f1904110 Mon Sep 17 00:00:00 2001 From: Pixel <> Date: Thu, 29 Mar 2001 23:40:57 +0000 Subject: First. --- po/ChangeLog | 1 + po/Makefile.in.in | 248 +++++++++++++++++++++++++++++++++++++++++++++++++++++ po/POTFILES.in | 6 ++ po/ProjetArchi.pot | 108 +++++++++++++++++++++++ po/cat-id-tbl.c | 36 ++++++++ po/fr.po | 111 ++++++++++++++++++++++++ po/stamp-cat-id | 1 + 7 files changed, 511 insertions(+) create mode 100644 po/ChangeLog create mode 100644 po/Makefile.in.in create mode 100644 po/POTFILES.in create mode 100644 po/ProjetArchi.pot create mode 100644 po/cat-id-tbl.c create mode 100644 po/fr.po create mode 100644 po/stamp-cat-id (limited to 'po') diff --git a/po/ChangeLog b/po/ChangeLog new file mode 100644 index 0000000..09de061 --- /dev/null +++ b/po/ChangeLog @@ -0,0 +1 @@ +First release. \ No newline at end of file diff --git a/po/Makefile.in.in b/po/Makefile.in.in new file mode 100644 index 0000000..111b40f --- /dev/null +++ b/po/Makefile.in.in @@ -0,0 +1,248 @@ +# 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 = $(top_srcdir)/@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: cat-id-tbl.c $(CATALOGS) +all-no: + +$(srcdir)/$(PACKAGE).pot: $(POTFILES) + $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ + --add-comments --keyword=_ --keyword=N_ \ + --files-from=$(srcdir)/POTFILES.in \ + && test ! -f $(PACKAGE).po \ + || ( 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 -r "$(MKINSTALLDIRS)"; then \ + $(MKINSTALLDIRS) $(datadir); \ + else \ + $(SHELL) $(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 \ + $(SHELL) $(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 \ + $(SHELL) $(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 $@ ) + +Makefile: Makefile.in.in ../config.status POTFILES + cd .. \ + && CONFIG_FILES=$(subdir)/$@.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/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..fadcafe --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,6 @@ +lib/hash.c +lib/meta.c +lib/parser.c +lib/assembler.c +lib/numbers.c +src/compilo.c diff --git a/po/ProjetArchi.pot b/po/ProjetArchi.pot new file mode 100644 index 0000000..14ef553 --- /dev/null +++ b/po/ProjetArchi.pot @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2001-03-30 01:34+0200\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" + +#: lib/meta.c:69 +msgid "Missing operator ':'" +msgstr "" + +#: lib/meta.c:97 +msgid "Invalid number." +msgstr "" + +#: lib/meta.c:101 +msgid "Expecting ';' for field separator." +msgstr "" + +#: lib/meta.c:120 +msgid "Expecting ',' for field separator." +msgstr "" + +#: lib/meta.c:143 lib/meta.c:152 lib/meta.c:190 lib/meta.c:210 lib/meta.c:229 +#: lib/meta.c:243 +msgid "Identifier incorrect." +msgstr "" + +#: lib/meta.c:148 +msgid "Error: Expecting a . after a =" +msgstr "" + +#: lib/meta.c:185 +msgid "Extra parameters for field 'p'." +msgstr "" + +#: lib/meta.c:193 +msgid "Unexpected char at end of line." +msgstr "" + +#: lib/meta.c:206 +msgid "Expecting operator '=' for field 'p'." +msgstr "" + +#: lib/meta.c:225 +msgid "Error: character . expected." +msgstr "" + +#: lib/meta.c:247 +msgid "= expected after an implicit name" +msgstr "" + +#: lib/meta.c:255 lib/meta.c:264 +msgid "Identifier incorrect" +msgstr "" + +#: lib/meta.c:274 +msgid "expecting ; as field separator" +msgstr "" + +#: lib/meta.c:456 lib/meta.c:465 src/compilo.c:14 src/compilo.c:23 +msgid "Out of memory." +msgstr "" + +#: lib/meta.c:487 +msgid "Meta parser init failed." +msgstr "" + +#: lib/parser.c:82 +msgid "Too many nested operators in expression.\n" +msgstr "" + +#: lib/parser.c:111 +msgid "Too many nested functions calls in expression.\n" +msgstr "" + +#: lib/parser.c:175 +msgid "Invalid unary operator" +msgstr "" + +#: lib/parser.c:177 +msgid "Invalid binary operator" +msgstr "" + +#: lib/parser.c:197 +msgid "Parse error: too much left parenthesis" +msgstr "" + +#: lib/parser.c:204 lib/parser.c:223 +msgid "Parse error: too much right parenthesis" +msgstr "" + +#: lib/parser.c:209 lib/parser.c:228 +msgid "Parse error: enclosure mismatch" +msgstr "" + +#: lib/parser.c:241 +msgid "Invalid character" +msgstr "" diff --git a/po/cat-id-tbl.c b/po/cat-id-tbl.c new file mode 100644 index 0000000..50d239e --- /dev/null +++ b/po/cat-id-tbl.c @@ -0,0 +1,36 @@ +/* Automatically generated by po2tbl.sed from ProjetArchi.pot. */ + +#if HAVE_CONFIG_H +# include +#endif + +#include "libgettext.h" + +const struct _msg_ent _msg_tbl[] = { + {"", 1}, + {"Missing operator ':'", 2}, + {"Invalid number.", 3}, + {"Expecting ';' for field separator.", 4}, + {"Expecting ',' for field separator.", 5}, + {"Identifier incorrect.", 6}, + {"Error: Expecting a . after a =", 7}, + {"Extra parameters for field 'p'.", 8}, + {"Unexpected char at end of line.", 9}, + {"Expecting operator '=' for field 'p'.", 10}, + {"Error: character . expected.", 11}, + {"= expected after an implicit name", 12}, + {"Identifier incorrect", 13}, + {"expecting ; as field separator", 14}, + {"Out of memory.", 15}, + {"Meta parser init failed.", 16}, + {"Too many nested operators in expression.\n", 17}, + {"Too many nested functions calls in expression.\n", 18}, + {"Invalid unary operator", 19}, + {"Invalid binary operator", 20}, + {"Parse error: too much left parenthesis", 21}, + {"Parse error: too much right parenthesis", 22}, + {"Parse error: enclosure mismatch", 23}, + {"Invalid character", 24}, +}; + +int _msg_tbl_length = 24; diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 0000000..05b84a9 --- /dev/null +++ b/po/fr.po @@ -0,0 +1,111 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2001-03-30 01:19+0200\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" + +#: lib/meta.c:68 +msgid "Missing operator ':'" +msgstr "" + +#: lib/meta.c:96 +msgid "Invalid number." +msgstr "" + +#: lib/meta.c:100 +msgid "Expecting ';' for field separator." +msgstr "" + +#: lib/meta.c:119 +msgid "Expecting ',' for field separator." +msgstr "" + +#: lib/meta.c:142 lib/meta.c:151 lib/meta.c:189 lib/meta.c:209 lib/meta.c:228 +#: lib/meta.c:242 +msgid "Identifier incorrect." +msgstr "" + +#: lib/meta.c:147 +msgid "Error: Expecting a . after a =" +msgstr "" + +#: lib/meta.c:184 +msgid "Extra parameters for field 'p'." +msgstr "" + +#: lib/meta.c:192 +msgid "Unexpected char at end of line." +msgstr "" + +#: lib/meta.c:205 +msgid "Expecting operator '=' for field 'p'." +msgstr "" + +#: lib/meta.c:224 +msgid "Error: character . expected." +msgstr "" + +#: lib/meta.c:246 +msgid "= expected after an implicit name" +msgstr "" + +#: lib/meta.c:254 lib/meta.c:263 +msgid "Identifier incorrect" +msgstr "" + +#: lib/meta.c:273 +msgid "expecting ; as field separator" +msgstr "" + +#: lib/meta.c:455 lib/meta.c:464 src/compilo.c:12 src/compilo.c:21 +msgid "Out of memory." +msgstr "" + +#: lib/meta.c:486 +msgid "Meta parser init failed." +msgstr "" + +#: lib/parser.c:81 +msgid "Too many nested operators in expression.\n" +msgstr "" + +#: lib/parser.c:110 +msgid "Too many nested functions calls in expression.\n" +msgstr "" + +#: lib/parser.c:174 +msgid "Invalid unary operator" +msgstr "" + +#: lib/parser.c:176 +msgid "Invalid binary operator" +msgstr "" + +#: lib/parser.c:196 +msgid "Parse error: too much left parenthesis" +msgstr "" + +#: lib/parser.c:203 lib/parser.c:222 +msgid "Parse error: too much right parenthesis" +msgstr "" + +#: lib/parser.c:208 lib/parser.c:227 +msgid "Parse error: enclosure mismatch" +msgstr "" + +#: lib/parser.c:240 +msgid "Invalid character" +msgstr "" + +#~ msgid "Hello World!\n" +#~ msgstr "Bonjour le monde!\n" diff --git a/po/stamp-cat-id b/po/stamp-cat-id new file mode 100644 index 0000000..9788f70 --- /dev/null +++ b/po/stamp-cat-id @@ -0,0 +1 @@ +timestamp -- cgit v1.2.3