--- uqwk-2.21.orig/config-generic.h +++ uqwk-2.21/config-generic.h @@ -13,11 +13,11 @@ #define DEF_BBS_ID "0,TBSNBN-BBS" #ifndef NNTP - #define DEF_ACT_FILE "/usr/lib/news/active" + #define DEF_ACT_FILE "/var/lib/news/active" #define DEF_NEWS_DIR "/var/spool/news" #endif -#define DEF_MAIL_DIR "/var/spool/mail" +#define DEF_MAIL_DIR "/var/mail" -#define SENDMAIL "/usr/lib/sendmail -i" -#define INEWS_PATH "/usr/local/bin/inews" -#define NNTP_HOST_FILE "/usr/local/news/lib/nntp_server" /* news server file */ +#define SENDMAIL "/usr/sbin/sendmail -i" +#define INEWS_PATH "/usr/bin/inews" +#define NNTP_HOST_FILE "/etc/news/server" /* news server file */ --- uqwk-2.21.orig/misc.c +++ uqwk-2.21/misc.c @@ -110,7 +110,7 @@ */ void Spaces (char *c, int n) { - sprintf(c,"%*s", n, ""); + memset(c, ' ', n); } /* @@ -151,7 +151,7 @@ * This bit of code reallocs dynamically -- it will fail * if it is tries to reallocate non-reallocatable memory */ - if (NULL == fgets (c, n, fd)) return (NULL); + if (NULL == fgets (c, n-1, fd)) return (NULL); i = strlen (c); if ( i == n-1 ) { /* n-1 bytes read! more? */ i = n; --- uqwk-2.21.orig/init.c +++ uqwk-2.21/init.c @@ -18,6 +18,10 @@ */ void InitStuff() { + buf = malloc(BUF_LEN); + if (!buf) + OutOfMemory(); + char msg_fname[PATH_LEN]; /* Mail, conference, etc. lists */ --- uqwk-2.21.orig/config-debian.h +++ uqwk-2.21/config-debian.h @@ -0,0 +1,23 @@ +/* + * $Id: config-generic.h,v 1.5 2000/01/03 08:56:56 js Exp $ + * + * Generic uqwk config + */ + +#define CONFIGNAME "generic" + +#define DEF_BBS_NAME "The BBS That Shall Not Be Named" +#define DEF_BBS_CITY "Nowhere, Utopia" +#define DEF_BBS_PHONE "555-1212" +#define DEF_BBS_SYSOP "Joe A. Sysop" +#define DEF_BBS_ID "0,TBSNBN-BBS" + +#ifndef NNTP + #define DEF_ACT_FILE "/var/lib/news/active" + #define DEF_NEWS_DIR "/var/spool/news" +#endif +#define DEF_MAIL_DIR "/var/mail" + +#define SENDMAIL "/usr/sbin/sendmail -i" +#define INEWS_PATH "/usr/share/uqwk/inews-wrapper" +#define NNTP_HOST_FILE "/etc/news/server" /* news server file */ --- uqwk-2.21.orig/mail.c +++ uqwk-2.21/mail.c @@ -52,7 +52,7 @@ { struct stat st; - return (stat((char*)s,&st)!=EOF && !(st.st_mode & S_IFDIR)); + return (stat((char*)s,&st)!=EOF && (st.st_mode & S_IFDIR)); } #define strend(x) ((x) + strlen(x)) --- uqwk-2.21.orig/Makefile.in +++ uqwk-2.21/Makefile.in @@ -30,6 +30,7 @@ exec_prefix = @exec_prefix@ bindir = @bindir@ mandir = @mandir@ +srcdir = @srcdir@ BINFILES = uqwk LIBFILES = @@ -55,29 +56,44 @@ for doc in ${MANFILES}; do chmod 644 ${mandir}/man1/$${doc}; done -uqwk.o: uqwk.c uqwk.h +uqwk.o: $(srcdir)/uqwk.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -options.o: options.c uqwk.h uqwk-version.h +options.o: $(srcdir)/options.c $(srcdir)/uqwk.h $(srcdir)/uqwk-version.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -init.o: init.c uqwk.h +init.o: $(srcdir)/init.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -mail.o: mail.c uqwk.h +mail.o: $(srcdir)/mail.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -misc.o: misc.c uqwk.h +misc.o: $(srcdir)/misc.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -close.o: close.c uqwk.h +close.o: $(srcdir)/close.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -news.o: news.c uqwk.h +news.o: $(srcdir)/news.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -reply.o: reply.c uqwk.h +reply.o: $(srcdir)/reply.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -offline.o: offline.c uqwk.h +offline.o: $(srcdir)/offline.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -nntpclient.o: nntpclient.c nntp.h +nntpclient.o: $(srcdir)/nntpclient.c $(srcdir)/nntp.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -nntplib.o: nntplib.c nntp.h +nntplib.o: $(srcdir)/nntplib.c $(srcdir)/nntp.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< -score.o: score.c uqwk.h +score.o: $(srcdir)/score.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< + +signal.o: $(srcdir)/signal.c $(srcdir)/uqwk.h + $(CC) $(CFLAGS) -I$(srcdir) -c $< clean: rm -f *.o ${BINFILES} --- uqwk-2.21.orig/uqwk.h +++ uqwk-2.21/uqwk.h @@ -206,7 +206,7 @@ EXTERN FILE *idx_fd; /* ZipNews .idx file desc */ EXTERN FILE *mai_fd; /* ZipNews .mai file desc */ EXTERN int zip_flag; /* idx entry written for this ng? */ -EXTERN char buf[BUF_LEN]; /* General purpose buffer */ +EXTERN char *buf; /* General purpose buffer */ EXTERN int blk_cnt; /* Blocks written to messages.dat */ EXTERN int sum_flag; /* Summary hdr for this ng yet? */ EXTERN FILE *sum_fd; /* Summary file desc */ --- uqwk-2.21.orig/close.c +++ uqwk-2.21/close.c @@ -48,6 +48,9 @@ if ( (!read_only) && (strcmp (rep_file, DEF_REP_FILE))) unlink (rep_file); + free(buf); + buf = NULL; + return 0; } --- uqwk-2.21.orig/scripts/getsoup +++ uqwk-2.21/scripts/getsoup @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # $Id: getsoup,v 1.1 1999/03/08 15:28:40 js Exp $ UQWKARGS="-B0 -m +L" --- uqwk-2.21.orig/debian/inews-wrapper +++ uqwk-2.21/debian/inews-wrapper @@ -0,0 +1,13 @@ +#!/bin/sh +# Minimal inews-wrapper for uqwk.nntp. +# Written by peterk@debian.org and released to the public domain. + +if test "$NNTPSERVER" = ""; then + if test -f /etc/news/server; then + read NNTPSERVER < /etc/news/server + else + NNTPSERVER=localhost + fi +fi + +exec /usr/bin/postnews "$NNTPSERVER" --- uqwk-2.21.orig/debian/uqwk.postinst +++ uqwk-2.21/debian/uqwk.postinst @@ -0,0 +1,37 @@ +#!/bin/sh -e + +. /usr/share/debconf/confmodule + +# First do our own magic +if [ "$1" = configure ]; then + update-alternatives --install /usr/bin/uqwk uqwk /usr/bin/uqwk.nntp 100 --slave /usr/share/man/man1/uqwk.1.gz uqwk.1.gz /usr/share/man/man1/uqwk.nntp.1.gz + + # This is mostly copied from slrn's postint script, + # written by Joey Hess + + # We used to use /etc/nntpserver. Policy now says use /etc/news/server. + # Note that on some systems, /etc/news/server may be a link to + # /etc/nntpserver. + if [ -f /etc/news/server -a -f /etc/nntpserver -a ! -L /etc/news/server ] ; then + rm -f /etc/nntpserver + fi + if [ -f /etc/news/server -a -f /etc/nntpserver -a -L /etc/news/server ] ; then + rm -f /etc/news/server + mv /etc/nntpserver /etc/news/server + fi + if [ -f /etc/nntpserver -a ! -f /etc/news/server ] ; then + mv /etc/nntpserver /etc/news/server + fi + + # Always update the files; the config script makes sure ths variables + # always have a sane and current value in them. + + db_get shared/news/server + mkdir -p /etc/news + echo "$RET" > /etc/news/server +fi + +# Then do whatever magic debhelper wants to perform +#DEBHELPER# + +exit 0 --- uqwk-2.21.orig/debian/uqwk.prerm +++ uqwk-2.21/debian/uqwk.prerm @@ -0,0 +1,9 @@ +#!/bin/sh -e + +if test "$1" = "remove" -o "$1" = "deconfigure"; then + update-alternatives --remove uqwk /usr/bin/uqwk.nntp +fi + +#DEBHELPER# + +exit 0 --- uqwk-2.21.orig/debian/copyright +++ uqwk-2.21/debian/copyright @@ -0,0 +1,13 @@ +Packages: uqwk, uqwk-spool +Obtained from: http://www.xs4all.nl/~js/warez/ +Packaged for Debian by: Peter Krefting +Previously packaged by: Herbert Xu +Upstream authors: steve belczyk, jeroen scheerder + +Copyright (C) 1993-1994 by steve belczyk. +Permission to use, copy, modify and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without expressed or +implied warranty. --- uqwk-2.21.orig/debian/control +++ uqwk-2.21/debian/control @@ -0,0 +1,43 @@ +Source: uqwk +Section: comm +Priority: optional +Maintainer: Peter Krefting +Build-Depends: debhelper (>= 7), po-debconf +Standards-Version: 3.8.4 + +Package: uqwk +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, postnews, exim4 | mail-transport-agent, debconf (>= 0.5) | debconf-2.0 +Suggests: multimail | goldedplus +Description: Offline mail and news package creator (NNTP version) + Uqwk is a program which collects all of a user's unread mail or news + and formats it into a packet for offline reading. QWK, Simple + Offline Usenet Packet (SOUP), and ZipNews packet formats are supported. + . + Uqwk also accepts reply packets, so replies can be mailed or posted, + depending whether the message is marked private (email) or public (news). + . + Uqwk also supports a small offline command language, so the contents + of the user's .newsrc file can be viewed and manipulated offline. + . + This version accesses newsgroups via NNTP. + +Package: uqwk-spool +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, exim4 | mail-transport-agent +Provides: uqwk +Conflicts: uqwk (<< 2.15-1) +Replaces: uqwk (<< 2.15-1) +Suggests: multimail | goldedplus +Description: Offline mail and news package creator (spool version) + Uqwk is a program which collects all of a user's unread mail or news + and formats it into a packet for offline reading. QWK, Simple + Offline Usenet Packet (SOUP), and ZipNews packet formats are supported. + . + Uqwk also accepts reply packets, so replies can be mailed or posted, + depending whether the message is marked private (email) or public (news). + . + Uqwk also supports a small offline command language, so the contents + of the user's .newsrc file can be viewed and manipulated offline. + . + This version accesses newsgroups via a local news spool. --- uqwk-2.21.orig/debian/compat +++ uqwk-2.21/debian/compat @@ -0,0 +1 @@ +7 --- uqwk-2.21.orig/debian/uqwk.docs +++ uqwk-2.21/debian/uqwk.docs @@ -0,0 +1,7 @@ +FAQ +README +README.Typhoon +contrib/olmenu+sonr/olmenu/olmenu.howto +contrib/olmenu+sonr/olmenu/olmenu.setup +contrib/olmenu+sonr/sonr/readme.sonr +contrib/olmenu+sonr/olmenu.html --- uqwk-2.21.orig/debian/uqwk-spool.README.Debian +++ uqwk-2.21/debian/uqwk-spool.README.Debian @@ -0,0 +1,13 @@ +uqwk for Debian (spool version) +--------------- + +Uqwk comes in two flavours, one using NNTP to retrieve the news postings, +one accessing a local news spool to do the same. This is the version that +retrieves messages from a spool, the NNTP version is in the packages 'uqwk'. +If both packages are installed, the command 'uqwk' will by default call the +NNTP version. If you wish to have both versions installed, and switch to +having this version as default, you must run 'update-alternatives --config +uqwk' to change the default. Whether or not you change the default, this +version can always be called using the command 'uqwk.spool'. + + -- Peter Krefting --- uqwk-2.21.orig/debian/uqwk.templates +++ uqwk-2.21/debian/uqwk.templates @@ -0,0 +1,7 @@ +Template: shared/news/server +Type: string +_Description: What news server should be used for reading and posting news? + What news server (NNTP server) should be used for reading and posting + news? + . + Enter the fully qualified domain name of the server. --- uqwk-2.21.orig/debian/uqwk.config +++ uqwk-2.21/debian/uqwk.config @@ -0,0 +1,29 @@ +#!/bin/sh -e +# Mostly copied from slrn's config script, written by +# Joey Hess + +. /usr/share/debconf/confmodule +db_version 2.0 + +# Note this code block is duplicated in slrnpull's config script. +if [ ! -s /etc/news/server ]; then + # No news server file currently exists (or it's empty). + db_get shared/news/server + SERVER="$RET" + # If there is no server set, try to guess a good value. + if [ -z "$SERVER" ]; then + NETNAME="`hostname -d`" + if [ ! -z "$NETNAME" ]; then + db_set shared/news/server "news.$NETNAME" + fi + fi +else + # Reconfiguring the package, or a news server file already exists. + # Still ask the question, though it may or may not be seen. Just + # use the first line of the file now as the default answer. + db_set shared/news/server "`head -1 /etc/news/server`" + # Effectively, the question is seen -- since the file is set up.. + db_fset shared/news/server seen true +fi +db_input medium shared/news/server || true +db_go --- uqwk-2.21.orig/debian/uqwk-spool.prerm +++ uqwk-2.21/debian/uqwk-spool.prerm @@ -0,0 +1,9 @@ +#!/bin/sh -e + +if [ "$1" = "remove" -o "$1" = "deconfigure" ]; then + update-alternatives --remove uqwk /usr/bin/uqwk.spool +fi + +#DEBHELPER# + +exit 0 --- uqwk-2.21.orig/debian/rules +++ uqwk-2.21/debian/rules @@ -0,0 +1,77 @@ +#!/usr/bin/make -f +# Built on template copyright 1997 by Joey Hess. +# Copyright 2000-2001,2003,2010 Peter Krefting + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + +# Make it possible to build without optimization +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) +CFLAGS = -O0 +else +CFLAGS = -O4 +endif + +build: build-stamp +build-stamp: + dh_testdir + mkdir -p nntp spool + cd nntp && CFLAGS="$(CFLAGS) -Wall" ../configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --with-config=config-debian.h + cd spool && CFLAGS="$(CFLAGS) -Wall" ../configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --disable-nntp --disable-nntpauth --cache-file=../nntp/config.cache + $(MAKE) -C nntp all + $(MAKE) -C spool all + touch build-stamp + +clean: + dh_testdir + dh_testroot + -rm -f build-stamp + -rm -rf nntp + -rm -rf spool + dh_clean + +install: DH_OPTIONS= +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs usr/bin usr/share/man/man1 /usr/share/doc/uqwk /usr/share/uqwk + dh_installdirs -puqwk-spool usr/bin usr/share/man/man1 usr/share/doc/uqwk-spool + install nntp/uqwk debian/uqwk/usr/bin/uqwk.nntp + install spool/uqwk debian/uqwk-spool/usr/bin/uqwk.spool + install debian/inews-wrapper debian/uqwk/usr/share/uqwk/inews-wrapper + install -m644 contrib/olmenu+sonr/README debian/uqwk/usr/share/doc/uqwk/README.olmenu+sonr + install -m644 contrib/olmenu+sonr/README debian/uqwk-spool/usr/share/doc/uqwk-spool/README.olmenu+sonr + install -m644 uqwk.1 debian/uqwk/usr/share/man/man1/uqwk.nntp.1 + install -m644 uqwk.1 debian/uqwk-spool/usr/share/man/man1/uqwk.spool.1 + +# Build architecture-independent files here. +binary-indep: build install + +# Build architecture-dependent files here. +# Pass -a to all debhelper commands in this target to reduce clutter. +#binary-arch: DH_OPTIONS=-a +binary-arch: build install + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs + dh_installdocs -puqwk-spool + dh_installexamples scripts/* contrib/olmenu+sonr/sonr/sonr contrib/olmenu+sonr/sonr/sonr.quiet contrib/olmenu+sonr/olmenu/olmenu + dh_installexamples -puqwk-spool scripts/* contrib/olmenu+sonr/sonr/sonr contrib/olmenu+sonr/sonr/sonr.quiet contrib/olmenu+sonr/olmenu/olmenu + dh_installchangelogs HISTORY + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- uqwk-2.21.orig/debian/uqwk-spool.dirs +++ uqwk-2.21/debian/uqwk-spool.dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/man/man1 --- uqwk-2.21.orig/debian/changelog +++ uqwk-2.21/debian/changelog @@ -0,0 +1,179 @@ +uqwk (2.21-15) unstable; urgency=low + + * Use /bin/bash in sample script. + (Closes: Bug#530215, 530216) + * Use standard dependencies. + (Closes: Bug#495859) + * Update Standards-Version and debhelper usage. + + -- Peter Krefting Mon, 19 Apr 2010 21:00:00 +0100 + +uqwk (2.21-14) unstable; urgency=low + + * Added Portuguese translation for debconf templates. + (Closes: Bug#383818) + + -- Peter Karlsson Tue, 07 Nov 2006 20:30:00 +0100 + +uqwk (2.21-13) unstable; urgency=low + + * Create /etc/news on startup, if it does not exist already. + (Closes: Bug#364019) + * Fixed crash when reading message with very long lines. + (Closes: Bug#376577) + + -- Peter Karlsson Sun, 16 Jul 2006 22:30:00 +0100 + +uqwk (2.21-12) unstable; urgency=low + + * Added dependency on debconf-2.0 for uqwk. + (Closes: Bug#332135) + + -- Peter Karlsson Mon, 15 Nov 2005 17:45:00 +0100 + +uqwk (2.21-11) unstable; urgency=low + + * Added Vietnamese translation for debconf templates. + (Closes: Bug#324068) + + -- Peter Karlsson Mon, 05 Sep 2005 19:05:00 +0100 + +uqwk (2.21-10) unstable; urgency=low + + * Added Czech translation for debconf templates. + (Closes: Bug#287544) + + -- Peter Karlsson Mon, 10 Jan 2005 18:10:00 +0100 + +uqwk (2.21-9) unstable; urgency=low + + * Added Japanese translation for debconf templates. + (Closes: Bug#259162) + + -- Peter Karlsson Wed, 28 Jul 2004 19:00:00 +0100 + +uqwk (2.21-8) unstable; urgency=low + + * Added Catalan translation for debconf templates. + (Closes: Bug#248760) + + -- Peter Karlsson Sat, 29 May 2004 19:40:00 +0100 + +uqwk (2.21-7) unstable; urgency=low + + * Added Dutch translation for debconf templates. + (Closes: Bug#208419) + * Updated dependency for uqwk-spool to list "exim4" instead of "exim". + (Closes: Bug#228565) + + -- Peter Karlsson Mon, 19 Jan 2004 21:45:00 +0100 + +uqwk (2.21-6) unstable; urgency=low + + * Corrected build-dependencies to cater for po-debconf. + (Closes: Bug#201549) + * Imported pt_BR and da translations from the slrn package. + + -- Peter Karlsson Wed, 16 Jul 2003 13:30:00 +0100 + +uqwk (2.21-5) unstable; urgency=low + + * Switched to po-debconf. + (Closes: Bug#199338) + * Added French translation for debconf templates. + (Closes: Bug#199643) + + -- Peter Karlsson Sun, 13 Jul 2003 11:00:00 +0100 + +uqwk (2.21-4) unstable; urgency=low + + * Fixed a problem in mail handling. + (Closes: Bug#179892) + * Fixed a crash when writing QWK packages. + + -- Peter Karlsson Tue, 11 Feb 2003 20:15:00 +0100 + +uqwk (2.21-3) unstable; urgency=low + + * Added Spanish debconf templates. + (Closes: Bug#119500) + * Added real alternative packages to mail-transport-agent (ssmtp for the + NNTP version, exim for the local spool version) + + -- peter karlsson Wed, 21 Nov 2001 22:30:00 +0100 + +uqwk (2.21-2) unstable; urgency=low + + * NNTP version: Do not require an inews program to post. + + -- peter karlsson Sun, 28 Oct 2001 16:30:00 +0100 + +uqwk (2.21-1) unstable; urgency=low + + * New upstream release: + - Fixed a bug when SUBSCRIBEing to a group (an offline commmand). + - Updates to maildir and signal handling. + + -- peter karlsson Fri, 26 Oct 2001 07:15:00 +0200 + +uqwk (2.18-1) unstable; urgency=low + + * New upstream release: + - Fixed a bug where uqwk closed an already closed file handle, + causing SIGSEGVs on some platforms. + * Upgraded to policy 3.5.6: + - Changed access point for mail to /var/mail. + + -- peter karlsson Mon, 8 Oct 2001 07:15:00 +0200 + +uqwk (2.17-1) unstable; urgency=low + + * New upstream release: + - Fixed a one-off error in a mail reading error message. + + -- peter karlsson Sat, 5 May 2001 09:25:15 +0200 + +uqwk (2.16-1) unstable; urgency=low + + * New upstream release + (no other changes than the patches that went into 2.15-1). + * Added Build-Depends and updated Standards-Version. + * Added Suggests on programs that can read SOUP packages. + * Fixed postrm script not to remove alternatives on upgrade. + + -- peter karlsson Sat, 27 Jan 2001 21:00:00 +0100 + +uqwk (2.15-1) unstable; urgency=low + + * New maintainer. + * Switch to Jeroen Scheerder's improved version. + * Debian infrastructure re-built from scratch. + * Build both NNTP (package uqwk) and spool (package uqwk-spool) version. + + -- peter karlsson Mon, 5 Jun 2000 21:25:00 +0200 + +uqwk (1.8-4) unstable; urgency=low + + * Applied patch from Paul Slootman. (Closes: #26751) + * Applied patch from Christian Meder (Closes: #29891) + + -- Christian Kurz Sat, 25 Dec 1999 15:50:38 +0100 + +uqwk (1.8-3) unstable; urgency=low + + * Orphaning uqwk. + * Fixed header problem. + + -- Herbert Xu Sat, 20 Nov 1999 20:56:29 -0600 + +uqwk (1.8-2) unstable; urgency=low + + * Added mail-transport-agent to dependency list. + + -- Herbert Xu Sun, 5 Jul 1998 17:27:27 +1000 + +uqwk (1.8-1) unstable; urgency=low + + * Initial release. + + -- Herbert Xu Sun, 5 Jul 1998 17:15:37 +1000 --- uqwk-2.21.orig/debian/uqwk.dirs +++ uqwk-2.21/debian/uqwk.dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/man/man1 --- uqwk-2.21.orig/debian/uqwk.README.Debian +++ uqwk-2.21/debian/uqwk.README.Debian @@ -0,0 +1,14 @@ +uqwk for Debian (NNTP version) +--------------- + +Uqwk comes in two flavours, one using NNTP to retrieve the news postings, +one accessing a local news spool to do the same. This is the version that +retrieves messages over NNTP, the spool version is in the package +'uqwk-spool'. If both packages are installed, the command 'uqwk' will by +default call this version (the NNTP version). If you wish to switch to the +version that accesses a local news spool, you must install uqwk-spool, and, +if you keep this, run 'update-alternatives --config uqwk' to change the +default. Whether or not you change the default, this version can always be +called using the command 'uqwk.nntp'. + + -- Peter Krefting --- uqwk-2.21.orig/debian/uqwk-spool.docs +++ uqwk-2.21/debian/uqwk-spool.docs @@ -0,0 +1,7 @@ +FAQ +README +README.Typhoon +contrib/olmenu+sonr/olmenu/olmenu.howto +contrib/olmenu+sonr/olmenu/olmenu.setup +contrib/olmenu+sonr/sonr/readme.sonr +contrib/olmenu+sonr/olmenu.html --- uqwk-2.21.orig/debian/uqwk-spool.postinst +++ uqwk-2.21/debian/uqwk-spool.postinst @@ -0,0 +1,9 @@ +#! /bin/sh -e + +if [ "$1" = "configure" ]; then + update-alternatives --install /usr/bin/uqwk uqwk /usr/bin/uqwk.spool 50 --slave /usr/share/man/man1/uqwk.1.gz uqwk.1.gz /usr/share/man/man1/uqwk.spool.1.gz +fi + +#DEBHELPER# + +exit 0 --- uqwk-2.21.orig/debian/po/ru.po +++ uqwk-2.21/debian/po/ru.po @@ -0,0 +1,43 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+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=KOI8-R\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "" +" ?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +" ( NNTP) " +" ?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr " ." --- uqwk-2.21.orig/debian/po/templates.pot +++ uqwk-2.21/debian/po/templates.pot @@ -0,0 +1,41 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+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: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "" --- uqwk-2.21.orig/debian/po/es.po +++ uqwk-2.21/debian/po/es.po @@ -0,0 +1,42 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+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=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "Qu servidor de grupos de noticias quiere usar?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Qu servidor de grupos de noticias (servidor NNTP) debe utilizarse para " +"leer y escribir mensajes?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Introduzca el nombre completo del servidor." --- uqwk-2.21.orig/debian/po/nl.po +++ uqwk-2.21/debian/po/nl.po @@ -0,0 +1,42 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: uqwk 2.21-6\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+0200\n" +"PO-Revision-Date: 2003-09-02 21:32+0100\n" +"Last-Translator: Tim Vandermeersch \n" +"Language-Team: dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "Welke news server wilt u gebruiken om nieuws te lezen en te posten?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Welke news server (NNTP server) wilt u gebruiken voor nieuws te lezen en te " +"posten?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Gelieve de \"fully qualified\" domein naam van de server in te geven" --- uqwk-2.21.orig/debian/po/ja.po +++ uqwk-2.21/debian/po/ja.po @@ -0,0 +1,44 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# +msgid "" +msgstr "" +"Project-Id-Version: uqwk 2.21-8\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-07-13 17:26+0900\n" +"PO-Revision-Date: 2004-07-04 21:24+0900\n" +"Last-Translator: Hideki Yamane \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-JP\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "news ɤ߽񤭤Τˤɤ news ФȤޤ?" + +#. Type: string +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "news ɤ߽񤭤Τˤɤ news (NNTP ) Ȥޤ?" + +#. Type: string +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Фδɥᥤ̾ (FQDN) ϤƤ" --- uqwk-2.21.orig/debian/po/de.po +++ uqwk-2.21/debian/po/de.po @@ -0,0 +1,43 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+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=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "Welcher Newsserver soll zum Lesen und Senden benutzt werden?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Welcher Newsserver (NNTP Server) soll zum Lesen und Senden von News benutzt " +"werden?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "" +"Bitte den Domainnamen (Fully Qualified Domain Name) des Servers eingeben." --- uqwk-2.21.orig/debian/po/pt.po +++ uqwk-2.21/debian/po/pt.po @@ -0,0 +1,36 @@ +# Portuguese translation of uqwk. +# This file is distributed under the same license as the uqwk package. +# Luísa Lourenço , 2006. +# +# +msgid "" +msgstr "" +"Project-Id-Version: uqwk 2.21-13\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-07-18 05:08-0600\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Luísa Lourenço \n" +"Language-Team: Native Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../uqwk.templates:1001 +msgid "What news server should be used for reading and posting news?" +msgstr "Qual o servidor de 'news' que deve ser usado para ler e publicar 'news'?" + +#. Type: string +#. Description +#: ../uqwk.templates:1001 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Qual o servidor de 'news' (servidor NNTP) que deve ser usado para ler e publicar 'news'?" + +#. Type: string +#. Description +#: ../uqwk.templates:1001 +msgid "Enter the fully qualified domain name of the server." +msgstr "Insira o nome completo e qualificado do domínio do servidor." --- uqwk-2.21.orig/debian/po/pl.po +++ uqwk-2.21/debian/po/pl.po @@ -0,0 +1,41 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+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=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "Ktry serwer news bdzie uywany do czytania i wysyania?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Ktry serwer (serwer NNTP) chcesz uy do czytania i wysyania wiadomoci?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Wprowad pen nazw (FQDN) serwera." --- uqwk-2.21.orig/debian/po/pt_BR.po +++ uqwk-2.21/debian/po/pt_BR.po @@ -0,0 +1,41 @@ +# +# This file is from the DDTP, the Debian Description Translation Project +# +# See http://ddtp.debian.org/ for more information. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Debian Description Translation Project \n" +"Language-Team: pt_BR \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +# Template: shared/news/server +# ddtp-prioritize: 62 +# +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "Qual servidor de notcias deve ser usado para" + +# +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"ler e postar notcias ? Qual servidor de notcias (servidor NNTP) deve ser " +"usado para ler e postar notcias ?" + +# +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Informe o nome de domnio totalmente qualificado do servidor." + --- uqwk-2.21.orig/debian/po/ca.po +++ uqwk-2.21/debian/po/ca.po @@ -0,0 +1,33 @@ +# uqwk (debconf) translation to Catalan. +# Copyright (C) 2004 Free Software Foundation, Inc. +# Aleix Badia i Bosch , 2004 +msgid "" +msgstr "" +"Project-Id-Version: uqwk_2.21-7_templates\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-20 11:44+0200\n" +"PO-Revision-Date: 2004-03-05 19:46GMT\n" +"Last-Translator: Aleix Badia i Bosch \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "" +"Quin servidor de notícies s'ha d'utilitzar per enviar i llegir notícies?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Quin servidor de notícies (servidor d'NNTP) s'ha d'utilitzar per enviar i " +"llegir notícies?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Introduïu el nom del domini qualiificat complet del servidor." --- uqwk-2.21.orig/debian/po/fr.po +++ uqwk-2.21/debian/po/fr.po @@ -0,0 +1,44 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: uqwk_2.21\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+0200\n" +"PO-Revision-Date: 2003-06-30 09:40+0200\n" +"Last-Translator: Michel Grentzinger \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "" +"Quel serveur de nouvelles faut-il utiliser pour lire et poster des " +"nouvelles ?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Quel est le serveur de nouvelles (serveur NNTP) qui sera utilis pour lire " +"et poster des nouvelles ?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Indiquez le nom de domaine pleinement qualifi du serveur." --- uqwk-2.21.orig/debian/po/sv.po +++ uqwk-2.21/debian/po/sv.po @@ -0,0 +1,43 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: uqwk 2.21-5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+0200\n" +"PO-Revision-Date: 2003-07-13 10:40+0100\n" +"Last-Translator: Peter Karlsson \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "" +"Vilken server skall anvndas fr att lsa och skriva i diskussionsgrupper " +"(news)?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Vilken diskussionsgruppsserver (NNTP-server, newsserver) skall anvndas fr " +"att lsa och skriva i diskussionsgrupper?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Ange det kompletta domnnamnet fr servern." --- uqwk-2.21.orig/debian/po/vi.po +++ uqwk-2.21/debian/po/vi.po @@ -0,0 +1,33 @@ +# Vietnamese translation for Uqwk. +# Copyright © 2005 Free Software Foundation, Inc. +# Clytie Siddall , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: uqwk 2.21-10\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+0200\n" +"PO-Revision-Date: 2005-08-20 12:00+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" +"X-Generator: LocFactoryEditor 1.2.2\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "Để đọc và gởi thông điệp tin, bạn có muốn sử dụng máy phục vụ tin nào?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "Để đọc và gởi thông điệp tin, bạn có muốn sử dụng máy phục vụ tin (NNTP) nào?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Hãy nhập tên miền khả năng đầy đủ (FQDN) của máy phục vụ này." --- uqwk-2.21.orig/debian/po/da.po +++ uqwk-2.21/debian/po/da.po @@ -0,0 +1,41 @@ +# +# This file is from the DDTP, the Debian Description Translation Project +# +# See http://ddtp.debian.org/ for more information. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Debian Description Translation Project \n" +"Language-Team: da \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +# Template: shared/news/server +# ddtp-prioritize: 62 +# +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "Hvilken nyhedsserver skal bruges til nyhedsgrupper?" + +# +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "" +"Hvilken nyhedsserver (NNTP-server) skal bruges til at lse nyhedsgrupper og " +"indsende indlg i nyhedsgrupper?" + +# +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Angiv serverens fuldstndige domnenavn." + --- uqwk-2.21.orig/debian/po/cs.po +++ uqwk-2.21/debian/po/cs.po @@ -0,0 +1,40 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: uqwk\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-07-16 14:37+0200\n" +"PO-Revision-Date: 2004-12-28 15:20+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../uqwk.templates:3 +msgid "What news server should be used for reading and posting news?" +msgstr "Kter news server chcete pout pro ten a zasln pspvk?" + +#. Description +#: ../uqwk.templates:3 +msgid "" +"What news server (NNTP server) should be used for reading and posting news?" +msgstr "Kter news server (NNTP) chcete pout pro ten a zasln pspvk?" + +#. Description +#: ../uqwk.templates:3 +msgid "Enter the fully qualified domain name of the server." +msgstr "Zadejte pln kvalifikovan domnov jmno serveru." --- uqwk-2.21.orig/debian/po/POTFILES.in +++ uqwk-2.21/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] uqwk.templates --- uqwk-2.21.orig/debian/source/format +++ uqwk-2.21/debian/source/format @@ -0,0 +1 @@ +1.0