Question about spellutils at gnome-i18n



Hello, I have see that the oficial spellutils package has some .po
catalogs that are not at our CVS copy. Why?

Could I commit it? (You have the patch attached to this mail)


Thanks.

P.S.: The actual spellutils does not compile.

-- 
Carlos Perelló Marín
mailto:carlos@gnome-db.org
mailto:carlos@hispalinux.es
http://www.gnome-db.org
http://www.Hispalinux.es
Valencia - Spain
diff -u -r --new-file spellutils/mkinstalldirs spellutils-0.7/mkinstalldirs
--- spellutils/mkinstalldirs	Mon Apr  2 01:32:13 2001
+++ spellutils-0.7/mkinstalldirs	Mon Mar 22 18:13:11 1999
@@ -4,7 +4,7 @@
 # Created: 1993-05-16
 # Public domain
 
-# $Id: mkinstalldirs,v 1.1 2000/05/02 21:39:26 kenneth Exp $
+# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $
 
 errstatus=0
 
diff -u -r --new-file spellutils/po/Makefile.in.in spellutils-0.7/po/Makefile.in.in
--- spellutils/po/Makefile.in.in	Thu Jan  1 01:00:00 1970
+++ spellutils-0.7/po/Makefile.in.in	Sun Apr 16 12:04:50 2000
@@ -0,0 +1,248 @@
+# 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 = $(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 -u -r --new-file spellutils/po/POTFILES.in spellutils-0.7/po/POTFILES.in
--- spellutils/po/POTFILES.in	Thu Jan  1 01:00:00 1970
+++ spellutils-0.7/po/POTFILES.in	Sun Apr 23 00:15:46 2000
@@ -0,0 +1,10 @@
+# List of source files containing translatable strings.
+
+pospell.c
+pospell_write.c
+pospell_read.c
+newsbody.c
+newsbody_read.c
+header.c
+lib.c
+exec.c
diff -u -r --new-file spellutils/po/cat-id-tbl.c spellutils-0.7/po/cat-id-tbl.c
--- spellutils/po/cat-id-tbl.c	Thu Jan  1 01:00:00 1970
+++ spellutils-0.7/po/cat-id-tbl.c	Sun Apr 23 10:12:29 2000
@@ -0,0 +1,120 @@
+/* Automatically generated by po2tbl.sed from spellutils.pot.  */
+
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include "libgettext.h"
+
+const struct _msg_ent _msg_tbl[] = {
+  {"", 1},
+  {"only one -l option is allowed", 2},
+  {"getopt returned impossible value: %d ('%c')", 3},
+  {"\
+Usage: pospell [-fsv] [-l language] -n pofile -p program\n\
+       [-- [program-arguments...]]\n\
+\n\
+Copies all translated strings from `pofile' to a temporary\n\
+file (the `spellfile') and then calls the program `program'\n\
+(typically a spell checker) with all `program-arguments'.\n\
+Afterwards the possibly changed translation is copied back\n\
+into the `pofile'.\n\
+\n\
+If `pofile' is specified as `-', pospell will use its standard\n\
+input and standard output.\n\
+\n\
+`%f' in the `program arguments' will be expanded to the name of\n\
+the `spellfile'. Use `%%' for a real `%' character.\n\
+\n\
+The flags mean:\n\
+ -f: The called program is a filter so don't make a temporary\n\
+     file, but pipe `spellfile' to the standard input of the\n\
+     `program' and later read it back from its standard output.\n\
+ -l language: Only translations with the indicated language code\n\
+     are copied to the `spellfile'.\n\
+ -s: quit with an error message if the `pofile' or `spellfile'\n\
+     have unrecognized formats.\n\
+ -v: Print version and exit.\n", 4},
+  {"%s died with signal \"%s\"", 5},
+  {"%s died with signal no. %d", 6},
+  {"child process couldn't execute %s", 7},
+  {"%s returned failure exit code %d", 8},
+  {"impossible status from child process: %x", 9},
+  {"\
+I don't understand this line in the .po file:\n\
+%s", 10},
+  {"\
+found marker for a removed item in the spell file,\n\
+but cannot find a corresponding item in the po file", 11},
+  {"\
+found line with unknown content in the spell file:\n\
+%s", 12},
+  {"\
+Usage: newsbody [-fhqsv] [-k headername] -n message -p program\n\
+       [-- [program-arguments...]]\n\
+\n\
+Copies the body of the e-mail or usenet message in `message'\n\
+to a temporary file (the `bodyfile') and then calls the program\n\
+`program' (e.g. a spell checker) with all `program-arguments'.\n\
+Afterwards the possibly changed `bodyfile' is copied back into\n\
+the `message'.\n\
+\n\
+If `message' is specified as `-', newsbody will use its\n\
+standard input and standard output.\n\
+\n\
+`%f' in the `program arguments' will be expanded to the name of\n\
+the `bodyfile'. Use `%%' for a real `%' character.\n\
+\n\
+The flags mean:\n\
+ -f: The called program is a filter so don't make a temporary\n\
+     file, but pipe `bodyfile' to the standard input of the\n\
+     `program' and later read it back from its standard output.\n\
+ -h: keep the entire header. This flag should also be used\n\
+     if 'message' doesn't have a header at all.\n\
+ -k headername: keep these header lines in the `bodyfile'.\n\
+     (Multiple -k flags are allowed).\n\
+ -q: Also remove quotes from the `bodyfile'.\n\
+     Lines starting with `>' are considered quotes.\n\
+ -s: Also remove signature from the `bodyfile'.\n\
+     The signature is all lines from the first signature separator\n\
+     (i.e. `-- ') to the bottom of the message.\n\
+ -v: Print version and exit.\n", 13},
+  {"\
+found marker for a removed line in the body file,\n\
+but cannot find a corresponding line in the message file", 14},
+  {"internal error while reading a header continuation", 15},
+  {"could not allocate memory", 16},
+  {"reading file", 17},
+  {"writing file", 18},
+  {"open %s for reading", 19},
+  {"open %s for writing", 20},
+  {"closing file", 21},
+  {"making temporary filename", 22},
+  {"unlink %s", 23},
+  {"rename %s %s", 24},
+  {"stat %s", 25},
+  {"read from %s", 26},
+  {"write to %s", 27},
+  {"error in child process", 28},
+  {"error", 29},
+  {", errno = %d", 30},
+  {"fork", 31},
+  {"open terminal read", 32},
+  {"dup2 stdin", 33},
+  {"close extra terminal read fd", 34},
+  {"open terminal write", 35},
+  {"dup2 stdout", 36},
+  {"close extra terminal write fd", 37},
+  {"exec %s", 38},
+  {"pipe for output", 39},
+  {"pipe for input", 40},
+  {"close write end of output pipe", 41},
+  {"close read end of output pipe", 42},
+  {"close read end of input pipe", 43},
+  {"close write end of input pipe", 44},
+  {"fdopen write end of output pipe", 45},
+  {"fdopen read end of input pipe", 46},
+  {"waiting for child", 47},
+};
+
+int _msg_tbl_length = 47;
Binary files spellutils/po/da.gmo and spellutils-0.7/po/da.gmo differ
diff -u -r --new-file spellutils/po/da.po spellutils-0.7/po/da.po
--- spellutils/po/da.po	Thu Jan  1 01:00:00 1970
+++ spellutils-0.7/po/da.po	Sun Apr 23 10:17:33 2000
@@ -0,0 +1,338 @@
+# Dansk oversættelse af pospell
+# Byrial Jensen <byrial@image.dk>.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: spellutils 0.6\n"
+"POT-Creation-Date: 2000-04-23 10:12+0200\n"
+"PO-Revision-Date: 2000-04-19 08:00+0200\n"
+"Last-Translator: Byrial Jensen <byrial@image.dk>\n"
+"Language-Team: SSLUG locale mailing list <sslug-locale@sslug.dk>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: pospell.c:155
+msgid "only one -l option is allowed"
+msgstr "kun ét -l-tilvalg er tilladt"
+
+#. all possible cases should have been stated
+#: newsbody.c:185 pospell.c:178
+#, c-format
+msgid "getopt returned impossible value: %d ('%c')"
+msgstr "getopt returnede umulig værdi: %d ('%c')"
+
+#: pospell.c:199
+msgid ""
+"Usage: pospell [-fsv] [-l language] -n pofile -p program\n"
+"       [-- [program-arguments...]]\n"
+"\n"
+"Copies all translated strings from `pofile' to a temporary\n"
+"file (the `spellfile') and then calls the program `program'\n"
+"(typically a spell checker) with all `program-arguments'.\n"
+"Afterwards the possibly changed translation is copied back\n"
+"into the `pofile'.\n"
+"\n"
+"If `pofile' is specified as `-', pospell will use its standard\n"
+"input and standard output.\n"
+"\n"
+"`%f' in the `program arguments' will be expanded to the name of\n"
+"the `spellfile'. Use `%%' for a real `%' character.\n"
+"\n"
+"The flags mean:\n"
+" -f: The called program is a filter so don't make a temporary\n"
+"     file, but pipe `spellfile' to the standard input of the\n"
+"     `program' and later read it back from its standard output.\n"
+" -l language: Only translations with the indicated language code\n"
+"     are copied to the `spellfile'.\n"
+" -s: quit with an error message if the `pofile' or `spellfile'\n"
+"     have unrecognized formats.\n"
+" -v: Print version and exit.\n"
+msgstr ""
+"Brug: pospell [-fsv] [-l sprog] -n pofil -p program\n"
+"      [-- [program-argumenter...]]\n"
+"\n"
+"Kopierer alle oversatte tekster fra 'pofil' til en kladdefil\n"
+"('stavefilen') og kalder så programmet 'program' (typisk et\n"
+"stavekontrolprogram) med alle 'program-argumenter'.\n"
+"Bagefter bliver den måske ændrede oversættelse kopieret tilbage\n"
+"til 'pofilen'.\n"
+"\n"
+"Hvis 'pofil' er angivet som '-', vil pospell bruge standard-ind\n"
+"og standard-ud.\n"
+"\n"
+"'%f' in 'program-argumenterne' vil blive erstattet med navnet på\n"
+"'stavefilen'. Brug '%%' for angive et rigtigt '%'-tegn.\n"
+"\n"
+"Tilvalgene betyder:\n"
+" -f: Det kaldte program er et filter, så opret ikke en kladdefil,\n"
+"     men led oversættelserne til dets standard-ind, og læs dem\n"
+"     siden tilbage fra dets standard-ud.\n"
+" -l sprog: Kun oversættelser med den indikerede sprogkode kopieres\n"
+"     til 'stavefilen'.\n"
+" -s: Slut af med en fejlmeddelelse hvis 'pofilen' eller 'stavefilen'\n"
+"     har uigenkendelige formater.\n"
+" -v: Udskriv version og afslut.\n"
+
+#: newsbody.c:287 pospell.c:276
+#, c-format
+msgid "%s died with signal \"%s\""
+msgstr "%s døde med signalet \"%s\""
+
+#: newsbody.c:290 pospell.c:279
+#, c-format
+msgid "%s died with signal no. %d"
+msgstr "%s døde med signal nr. %d"
+
+#: newsbody.c:297 pospell.c:286
+#, c-format
+msgid "child process couldn't execute %s"
+msgstr "barneprocess kunne ikke udføre %s"
+
+#: newsbody.c:299 pospell.c:288
+#, c-format
+msgid "%s returned failure exit code %d"
+msgstr "%s returnerede fejlafslutningskode %d"
+
+#: newsbody.c:302 pospell.c:291
+#, c-format
+msgid "impossible status from child process: %x"
+msgstr "umulig status fra barneproces: %x"
+
+#: pospell_write.c:141
+#, c-format
+msgid ""
+"I don't understand this line in the .po file:\n"
+"%s"
+msgstr ""
+"jeg forstår ikke denne linje i .po-filen:\n"
+"%s"
+
+#: pospell_read.c:67
+msgid ""
+"found marker for a removed item in the spell file,\n"
+"but cannot find a corresponding item in the po file"
+msgstr ""
+"fandt en markør for et fjernet element i stavefilen,\n"
+"men kan ikke finde et tilsvarende element i pofilen"
+
+#: pospell_read.c:124
+#, c-format
+msgid ""
+"found line with unknown content in the spell file:\n"
+"%s"
+msgstr ""
+"fandt en linje med ukendt indhold i stavefilen:\n"
+"%s"
+
+#: newsbody.c:205
+msgid ""
+"Usage: newsbody [-fhqsv] [-k headername] -n message -p program\n"
+"       [-- [program-arguments...]]\n"
+"\n"
+"Copies the body of the e-mail or usenet message in `message'\n"
+"to a temporary file (the `bodyfile') and then calls the program\n"
+"`program' (e.g. a spell checker) with all `program-arguments'.\n"
+"Afterwards the possibly changed `bodyfile' is copied back into\n"
+"the `message'.\n"
+"\n"
+"If `message' is specified as `-', newsbody will use its\n"
+"standard input and standard output.\n"
+"\n"
+"`%f' in the `program arguments' will be expanded to the name of\n"
+"the `bodyfile'. Use `%%' for a real `%' character.\n"
+"\n"
+"The flags mean:\n"
+" -f: The called program is a filter so don't make a temporary\n"
+"     file, but pipe `bodyfile' to the standard input of the\n"
+"     `program' and later read it back from its standard output.\n"
+" -h: keep the entire header. This flag should also be used\n"
+"     if 'message' doesn't have a header at all.\n"
+" -k headername: keep these header lines in the `bodyfile'.\n"
+"     (Multiple -k flags are allowed).\n"
+" -q: Also remove quotes from the `bodyfile'.\n"
+"     Lines starting with `>' are considered quotes.\n"
+" -s: Also remove signature from the `bodyfile'.\n"
+"     The signature is all lines from the first signature separator\n"
+"     (i.e. `-- ') to the bottom of the message.\n"
+" -v: Print version and exit.\n"
+msgstr ""
+"Brug: newsbody [-fhqsv] [-k brevhovednavn] -n brev -p program\n"
+"      [-- [program-argumenter...]]\n"
+"\n"
+"Kopierer brevkroppen fra en e-post- eller usenet-besked, 'brevet',\n"
+"til en kladdefil ('brevkropfilen') og kalder så programmet 'program'\n"
+"(f.eks. et stavekontrolprogram) med alle 'program-argumenter'.\n"
+"Bagefter bliver den måske ændrede 'brevkropfil' kopieret tilbage til\n"
+"'brevet'.\n"
+"\n"
+"Hvis 'brev' er angivet som '-', vil newsbody bruge standard-ind\n"
+"og standard-ud.\n"
+"\n"
+"'%f' i 'program-argumenterne' vil blive erstattet med navnet på\n"
+"'brevkropfilen'. Brug '%%' for angive et rigtigt '%'-tegn.\n"
+"\n"
+"Tilvalgene betyder:\n"
+" -f: Det kaldte program er et filter, så opret ikke en kladdefil,\n"
+"     men led 'brevkropfilen' til dets standard-ind, og læs dem\n"
+"     siden tilbage fra dets standard-ud.\n"
+" -h: Behold hele brevhovedet. Dette tilvalg skal også bruges hvis\n"
+"     'brevet' slet ikke har noget brevhoved.\n"
+" -k brevhovednavn: Behold denne slags brevhoveder i 'brevkropfilen'.\n"
+"     (Flere -k-tilvalg er tilladt).\n"
+" -q: Fjern også alle citatlinjer, dvs. linjer som begynder med tegnet '>',\n"
+"     fra 'brevkropfilen'\n"
+" -s: Fjern også signaturen fra 'brevkropfilen'.\n"
+"     Signaturen er alle linjer fra den første signaturadskiller\n"
+"     (dvs. '-- ') til slutningen af brevet.\n"
+" -v: Udskriv version og afslut.\n"
+
+#: newsbody_read.c:109
+msgid ""
+"found marker for a removed line in the body file,\n"
+"but cannot find a corresponding line in the message file"
+msgstr ""
+"fandt en markør for en fjernet linje i brevkropfilen,\n"
+"men kan ikke finde en tilsvarende linje i brevfilen"
+
+#. This cannot happen - we have at least the ungetted char to read
+#: header.c:57
+msgid "internal error while reading a header continuation"
+msgstr "programfejl ved læsning af brevhovedfortsættelseslinje"
+
+#: lib.c:37 lib.c:47
+msgid "could not allocate memory"
+msgstr "kunne ikke få hukommelse"
+
+#: lib.c:70
+msgid "reading file"
+msgstr "læsning af fil"
+
+#: lib.c:95
+msgid "writing file"
+msgstr "skrivning af fil"
+
+#: lib.c:103
+#, c-format
+msgid "open %s for reading"
+msgstr "åbning af %s til læsning"
+
+#: lib.c:112
+#, c-format
+msgid "open %s for writing"
+msgstr "åbning af %s til skrivning"
+
+#: lib.c:119
+msgid "closing file"
+msgstr "lukning af fil"
+
+#: lib.c:127
+msgid "making temporary filename"
+msgstr "konstruktion af navn på kladdefil"
+
+#: lib.c:134
+#, c-format
+msgid "unlink %s"
+msgstr "sletning af %s"
+
+#: lib.c:142
+#, c-format
+msgid "rename %s %s"
+msgstr "omdøbning af %s til %s"
+
+#: lib.c:155
+#, c-format
+msgid "stat %s"
+msgstr "læsning af filstatus for %s"
+
+#: lib.c:164
+#, c-format
+msgid "read from %s"
+msgstr "læsning fra %s"
+
+#: lib.c:166
+#, c-format
+msgid "write to %s"
+msgstr "skrivning til %s"
+
+#: lib.c:194
+msgid "error in child process"
+msgstr "fejl i barneproces"
+
+#: lib.c:194
+msgid "error"
+msgstr "fejl"
+
+#: lib.c:205
+#, c-format
+msgid ", errno = %d"
+msgstr ", fejlnr. = %d"
+
+#: exec.c:38 exec.c:93
+msgid "fork"
+msgstr "afgrening (fork)"
+
+#: exec.c:54
+msgid "open terminal read"
+msgstr "åbning af terminal til læsning"
+
+#: exec.c:56 exec.c:106
+msgid "dup2 stdin"
+msgstr "kopiering af fildeskriptor til standard-ind"
+
+#: exec.c:58
+msgid "close extra terminal read fd"
+msgstr "lukning af ekstra fildeskriptor til terminallæsning"
+
+#: exec.c:63
+msgid "open terminal write"
+msgstr "åbning af terminal til skrivning"
+
+#: exec.c:65 exec.c:113
+msgid "dup2 stdout"
+msgstr "kopiering af fildeskriptor til standard-ud"
+
+#: exec.c:67
+msgid "close extra terminal write fd"
+msgstr "lukning af ekstra fildeskriptor til terminalskrivning"
+
+#: exec.c:70 exec.c:118
+#, c-format
+msgid "exec %s"
+msgstr "udfør %s"
+
+#: exec.c:87
+msgid "pipe for output"
+msgstr "oprettelse af ledning til uddata"
+
+#: exec.c:89
+msgid "pipe for input"
+msgstr "oprettelse af ledning til inddata"
+
+#: exec.c:104
+msgid "close write end of output pipe"
+msgstr "lukning af skriveenden af uddataledning"
+
+#: exec.c:108 exec.c:123
+msgid "close read end of output pipe"
+msgstr "lukning af læseenden af uddataledning"
+
+#: exec.c:111
+msgid "close read end of input pipe"
+msgstr "lukning af læseenden af inddataledning"
+
+#: exec.c:115 exec.c:128
+msgid "close write end of input pipe"
+msgstr "lukning af skriveenden af inddataledning"
+
+#: exec.c:125
+msgid "fdopen write end of output pipe"
+msgstr "åbning af skriveenden af uddataledning"
+
+#: exec.c:130
+msgid "fdopen read end of input pipe"
+msgstr "åbning af læseenden af inddataledning"
+
+#: exec.c:138
+msgid "waiting for child"
+msgstr "venten på barn"
diff -u -r --new-file spellutils/po/spellutils.pot spellutils-0.7/po/spellutils.pot
--- spellutils/po/spellutils.pot	Thu Jan  1 01:00:00 1970
+++ spellutils-0.7/po/spellutils.pot	Sun Apr 23 10:12:27 2000
@@ -0,0 +1,279 @@
+# 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-23 10:12+0200\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"
+
+#: pospell.c:155
+msgid "only one -l option is allowed"
+msgstr ""
+
+#. all possible cases should have been stated
+#: newsbody.c:185 pospell.c:178
+#, c-format
+msgid "getopt returned impossible value: %d ('%c')"
+msgstr ""
+
+#: pospell.c:199
+msgid ""
+"Usage: pospell [-fsv] [-l language] -n pofile -p program\n"
+"       [-- [program-arguments...]]\n"
+"\n"
+"Copies all translated strings from `pofile' to a temporary\n"
+"file (the `spellfile') and then calls the program `program'\n"
+"(typically a spell checker) with all `program-arguments'.\n"
+"Afterwards the possibly changed translation is copied back\n"
+"into the `pofile'.\n"
+"\n"
+"If `pofile' is specified as `-', pospell will use its standard\n"
+"input and standard output.\n"
+"\n"
+"`%f' in the `program arguments' will be expanded to the name of\n"
+"the `spellfile'. Use `%%' for a real `%' character.\n"
+"\n"
+"The flags mean:\n"
+" -f: The called program is a filter so don't make a temporary\n"
+"     file, but pipe `spellfile' to the standard input of the\n"
+"     `program' and later read it back from its standard output.\n"
+" -l language: Only translations with the indicated language code\n"
+"     are copied to the `spellfile'.\n"
+" -s: quit with an error message if the `pofile' or `spellfile'\n"
+"     have unrecognized formats.\n"
+" -v: Print version and exit.\n"
+msgstr ""
+
+#: newsbody.c:287 pospell.c:276
+#, c-format
+msgid "%s died with signal \"%s\""
+msgstr ""
+
+#: newsbody.c:290 pospell.c:279
+#, c-format
+msgid "%s died with signal no. %d"
+msgstr ""
+
+#: newsbody.c:297 pospell.c:286
+#, c-format
+msgid "child process couldn't execute %s"
+msgstr ""
+
+#: newsbody.c:299 pospell.c:288
+#, c-format
+msgid "%s returned failure exit code %d"
+msgstr ""
+
+#: newsbody.c:302 pospell.c:291
+#, c-format
+msgid "impossible status from child process: %x"
+msgstr ""
+
+#: pospell_write.c:141
+#, c-format
+msgid ""
+"I don't understand this line in the .po file:\n"
+"%s"
+msgstr ""
+
+#: pospell_read.c:67
+msgid ""
+"found marker for a removed item in the spell file,\n"
+"but cannot find a corresponding item in the po file"
+msgstr ""
+
+#: pospell_read.c:124
+#, c-format
+msgid ""
+"found line with unknown content in the spell file:\n"
+"%s"
+msgstr ""
+
+#: newsbody.c:205
+msgid ""
+"Usage: newsbody [-fhqsv] [-k headername] -n message -p program\n"
+"       [-- [program-arguments...]]\n"
+"\n"
+"Copies the body of the e-mail or usenet message in `message'\n"
+"to a temporary file (the `bodyfile') and then calls the program\n"
+"`program' (e.g. a spell checker) with all `program-arguments'.\n"
+"Afterwards the possibly changed `bodyfile' is copied back into\n"
+"the `message'.\n"
+"\n"
+"If `message' is specified as `-', newsbody will use its\n"
+"standard input and standard output.\n"
+"\n"
+"`%f' in the `program arguments' will be expanded to the name of\n"
+"the `bodyfile'. Use `%%' for a real `%' character.\n"
+"\n"
+"The flags mean:\n"
+" -f: The called program is a filter so don't make a temporary\n"
+"     file, but pipe `bodyfile' to the standard input of the\n"
+"     `program' and later read it back from its standard output.\n"
+" -h: keep the entire header. This flag should also be used\n"
+"     if 'message' doesn't have a header at all.\n"
+" -k headername: keep these header lines in the `bodyfile'.\n"
+"     (Multiple -k flags are allowed).\n"
+" -q: Also remove quotes from the `bodyfile'.\n"
+"     Lines starting with `>' are considered quotes.\n"
+" -s: Also remove signature from the `bodyfile'.\n"
+"     The signature is all lines from the first signature separator\n"
+"     (i.e. `-- ') to the bottom of the message.\n"
+" -v: Print version and exit.\n"
+msgstr ""
+
+#: newsbody_read.c:109
+msgid ""
+"found marker for a removed line in the body file,\n"
+"but cannot find a corresponding line in the message file"
+msgstr ""
+
+#. This cannot happen - we have at least the ungetted char to read
+#: header.c:57
+msgid "internal error while reading a header continuation"
+msgstr ""
+
+#: lib.c:37 lib.c:47
+msgid "could not allocate memory"
+msgstr ""
+
+#: lib.c:70
+msgid "reading file"
+msgstr ""
+
+#: lib.c:95
+msgid "writing file"
+msgstr ""
+
+#: lib.c:103
+#, c-format
+msgid "open %s for reading"
+msgstr ""
+
+#: lib.c:112
+#, c-format
+msgid "open %s for writing"
+msgstr ""
+
+#: lib.c:119
+msgid "closing file"
+msgstr ""
+
+#: lib.c:127
+msgid "making temporary filename"
+msgstr ""
+
+#: lib.c:134
+#, c-format
+msgid "unlink %s"
+msgstr ""
+
+#: lib.c:142
+#, c-format
+msgid "rename %s %s"
+msgstr ""
+
+#: lib.c:155
+#, c-format
+msgid "stat %s"
+msgstr ""
+
+#: lib.c:164
+#, c-format
+msgid "read from %s"
+msgstr ""
+
+#: lib.c:166
+#, c-format
+msgid "write to %s"
+msgstr ""
+
+#: lib.c:194
+msgid "error in child process"
+msgstr ""
+
+#: lib.c:194
+msgid "error"
+msgstr ""
+
+#: lib.c:205
+#, c-format
+msgid ", errno = %d"
+msgstr ""
+
+#: exec.c:38 exec.c:93
+msgid "fork"
+msgstr ""
+
+#: exec.c:54
+msgid "open terminal read"
+msgstr ""
+
+#: exec.c:56 exec.c:106
+msgid "dup2 stdin"
+msgstr ""
+
+#: exec.c:58
+msgid "close extra terminal read fd"
+msgstr ""
+
+#: exec.c:63
+msgid "open terminal write"
+msgstr ""
+
+#: exec.c:65 exec.c:113
+msgid "dup2 stdout"
+msgstr ""
+
+#: exec.c:67
+msgid "close extra terminal write fd"
+msgstr ""
+
+#: exec.c:70 exec.c:118
+#, c-format
+msgid "exec %s"
+msgstr ""
+
+#: exec.c:87
+msgid "pipe for output"
+msgstr ""
+
+#: exec.c:89
+msgid "pipe for input"
+msgstr ""
+
+#: exec.c:104
+msgid "close write end of output pipe"
+msgstr ""
+
+#: exec.c:108 exec.c:123
+msgid "close read end of output pipe"
+msgstr ""
+
+#: exec.c:111
+msgid "close read end of input pipe"
+msgstr ""
+
+#: exec.c:115 exec.c:128
+msgid "close write end of input pipe"
+msgstr ""
+
+#: exec.c:125
+msgid "fdopen write end of output pipe"
+msgstr ""
+
+#: exec.c:130
+msgid "fdopen read end of input pipe"
+msgstr ""
+
+#: exec.c:138
+msgid "waiting for child"
+msgstr ""
diff -u -r --new-file spellutils/po/stamp-cat-id spellutils-0.7/po/stamp-cat-id
--- spellutils/po/stamp-cat-id	Thu Jan  1 01:00:00 1970
+++ spellutils-0.7/po/stamp-cat-id	Sun Apr 23 10:12:29 2000
@@ -0,0 +1 @@
+timestamp


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]