tags 175987 + patch tags 277259 + patch tags 296086 + patch tags 332068 + patch thanks
Hi, In order to finish the cdebconf transition, see: http://lists.debian.org/debian-devel/2005/08/msg00136.html I intend to *lovingly* NMU, with this very small change. I will upload to DELAYED-7, so that you still have time to stop it if needed. Attached is the diff for my pimppa 0.5.8-0.2 NMU. -- ยท''`. If I can't dance to it, it's not my revolution : :' : -- Emma Goldman `. `' Proudly running Debian GNU/Linux (unstable) `- www.amayita.com www.malapecora.com www.chicasduras.com
diff -u pimppa-0.5.8/config.guess pimppa-0.5.8/config.guess --- pimppa-0.5.8/config.guess +++ pimppa-0.5.8/config.guess @@ -1,9 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, +# Inc. -timestamp='2006-02-23' +timestamp='2007-07-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -160,6 +161,7 @@ arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched @@ -210,7 +212,7 @@ echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) - echo powerppc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} @@ -328,7 +330,7 @@ sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; - i86pc:SunOS:5.*:*) + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) @@ -770,6 +772,8 @@ case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac @@ -777,10 +781,7 @@ i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; - i*:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 - exit ;; - i*:MSYS_NT-*:*:*) + *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) @@ -790,12 +791,15 @@ i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - x86:Interix*:[345]*) - echo i586-pc-interix${UNAME_RELEASE} - exit ;; - EM64T:Interix*:[345]*) - echo x86_64-unknown-interix${UNAME_RELEASE} - exit ;; + *:Interix*:[3456]*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + EM64T | authenticamd) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; @@ -831,6 +835,9 @@ arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; @@ -947,6 +954,9 @@ x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; + xtensa:Linux:*:*) + echo xtensa-unknown-linux-gnu + exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent @@ -989,7 +999,7 @@ LIBC=gnulibc1 # endif #else - #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__sun) + #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout @@ -1205,6 +1215,15 @@ SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; diff -u pimppa-0.5.8/config.sub pimppa-0.5.8/config.sub --- pimppa-0.5.8/config.sub +++ pimppa-0.5.8/config.sub @@ -1,9 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, +# Inc. -timestamp='2006-02-23' +timestamp='2007-06-28' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -240,15 +241,16 @@ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ - | fr30 | frv \ + | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ - | m32r | m32rle | m68000 | m68k | m88k | maxq | mb | microblaze | mcore \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ @@ -274,21 +276,19 @@ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | score \ + | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b \ - | strongarm \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ + | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; - m32c) - basic_machine=$basic_machine-unknown - ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown @@ -318,18 +318,18 @@ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* \ + | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ - | m32r-* | m32rle-* \ + | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ @@ -358,23 +358,21 @@ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; - m32c-*) - ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -477,8 +475,8 @@ basic_machine=craynv-cray os=-unicosmp ;; - cr16c) - basic_machine=cr16c-unknown + cr16) + basic_machine=cr16-unknown os=-elf ;; crds | unos) @@ -685,6 +683,10 @@ basic_machine=i386-pc os=-mingw32 ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; miniframe) basic_machine=m68000-convergent ;; @@ -912,6 +914,10 @@ sb1el) basic_machine=mipsisa64sb1el-unknown ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; sei) basic_machine=mips-sei os=-seiux @@ -923,6 +929,9 @@ basic_machine=sh-hitachi os=-hms ;; + sh5el) + basic_machine=sh5le-unknown + ;; sh64) basic_machine=sh64-unknown ;; @@ -1128,7 +1137,7 @@ sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sparc | sparcv8 | sparcv9 | sparcv9b) + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) @@ -1217,7 +1226,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1369,6 +1378,12 @@ # system, and we'll never get to this point. case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; *-acorn) os=-riscix1.2 ;; @@ -1378,9 +1393,9 @@ arm*-semi) os=-aout ;; - c4x-* | tic4x-*) - os=-coff - ;; + c4x-* | tic4x-*) + os=-coff + ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 @@ -1406,6 +1421,9 @@ m68*-cisco) os=-aout ;; + mep-*) + os=-elf + ;; mips*-cisco) os=-elf ;; diff -u pimppa-0.5.8/debian/control pimppa-0.5.8/debian/control --- pimppa-0.5.8/debian/control +++ pimppa-0.5.8/debian/control @@ -7,13 +7,13 @@ Package: pimppa Architecture: any -Depends: ${shlibs:Depends}, debconf, suck (>= 4.3.0), uudeview (>= 0.5.15) +Depends: ${shlibs:Depends}, debconf | debconf-2.0, suck (>= 4.3.0), uudeview (>= 0.5.15) Suggests: pngcrush, gqview -Description: powerful tool to loot binaries from newsgroups smartly +Description: Powerful tool to loot binaries from newsgroups smartly PIMPPA is a tool to loot binaries from newsgroups and ftp sites. It tries to achieve complete "hands free" operation where possible. The system is best suited for the Connoisseur, the Collector and the - Worshipper of the Mighty Crond. Its not very useful for the inferior + Worshipper of the Mighty Crond. It's not very useful for the inferior minions of the trendy interactive. . Current features: @@ -32,7 +32,7 @@ * Optional Gnome GUI. * It's free! - GPL'ed Open Source. . - Downsides (its not perfect) + Downsides (it's not perfect) * Software requirements. We call them formidable. * Installation and use. You might actually have to read some of the documentation. diff -u pimppa-0.5.8/debian/docs pimppa-0.5.8/debian/docs --- pimppa-0.5.8/debian/docs +++ pimppa-0.5.8/debian/docs @@ -3,0 +4 @@ +SETUP diff -u pimppa-0.5.8/debian/changelog pimppa-0.5.8/debian/changelog --- pimppa-0.5.8/debian/changelog +++ pimppa-0.5.8/debian/changelog @@ -1,3 +1,13 @@ +pimppa (0.5.8-0.2) unstable; urgency=low + + * Non-maintainer upload. + * Fixed typos (Closes: #277259, #175987). + * Include the SETUP file (Closes: #296086). + * cdebconf transition: allow the dependency on debconf to be satisfied with + an alternate of debconf-2.0 (Closes: #332068). + + -- Amaya Rodrigo Sastre <[EMAIL PROTECTED]> Mon, 20 Aug 2007 20:43:26 +0200 + pimppa (0.5.8-0.1) unstable; urgency=low * Non-Maintainer Upload. only in patch2: unchanged: --- pimppa-0.5.8.orig/debian/templates.pot +++ pimppa-0.5.8/debian/templates.pot @@ -0,0 +1,210 @@ +# +# 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-09-09 21:28+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n" +"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../templates:4 +msgid "Do you want to configure PIMPPA with debconf?" +msgstr "" + +#. Description +#: ../templates:4 +msgid "PIMPPA is tool to fetch binaries from newsgroups smartly." +msgstr "" + +#. Description +#: ../templates:4 +msgid "" +"If you answer few question you'll get minimal, but fully functional config " +"that will be good start for finetunning." +msgstr "" + +#. Description +#: ../templates:4 +msgid "" +"After install finishes you'll have to read pimppa documentation anyway, at " +"least to learn how to manage this tool." +msgstr "" + +#. Description +#: ../templates:4 +msgid "" +"You can always return to the configure stage by executing 'dpkg-reconfigure " +"pimppa'." +msgstr "" + +#. Description +#: ../templates:19 +msgid "As which (unprivileged) user should Pimpa run?" +msgstr "" + +#. Description +#: ../templates:19 +msgid "" +"Give the name of user as which the PIMPPA will run. If you're going to use " +"PIMPPA on a workstation, for you own purpose only - put here the name of " +"your user (*existing*), but not root!." +msgstr "" + +#. Description +#: ../templates:19 +msgid "Leaving the field empty will lead to unconfigured package." +msgstr "" + +#. Description +#: ../templates:29 +msgid "Which news server (NNTP) should PIMPPA use?" +msgstr "" + +#. Description +#: ../templates:29 +msgid "Give the name of a server you want PIMPPA to fetch news from." +msgstr "" + +#. Description +#: ../templates:29 +msgid "" +"PIMPPA can use more than one newsserver - you can configure it later using " +"pimppa tools." +msgstr "" + +#. Description +#: ../templates:38 +msgid "Where to store the fetched binaries?" +msgstr "" + +#. Description +#: ../templates:38 +msgid "" +"Pimppa uses /var/spool/pimppa symlink to point to where the fetched binaries " +"should be stored." +msgstr "" + +#. Description +#: ../templates:38 +msgid "" +"By default this will be a symlink to ~/pimppa directory of the user you " +"specified before (this is default if you leave this field empty)." +msgstr "" + +#. Description +#: ../templates:38 +msgid "" +"You can also write /var/spool/pimppa here and then no symlink will be " +"created, but realy /var/spool/pimppa directory where data will be stored." +msgstr "" + +#. Description +#: ../templates:38 +msgid "" +"Keep in mind, that there can be *A LOT* of data you may want to store there." +msgstr "" + +#. Choices +#: ../templates:53 +msgid "no_cron, daily, every_6_hours, every_1_hour" +msgstr "" + +#. Description +#: ../templates:55 +msgid "How often should PIMPPA fetch the news?" +msgstr "" + +#. Description +#: ../templates:55 +msgid "" +"You probably want to automate the process of fetching the news from " +"newserver." +msgstr "" + +#. Description +#: ../templates:55 +msgid "How often should 'pleech' program be run to fetch the news?" +msgstr "" + +#. Description +#: ../templates:64 +msgid "*database* password you want for Pimppa SQL database" +msgstr "" + +#. Description +#: ../templates:64 +msgid "" +"Pimppa uses MySQL database to store all informations. Database is named " +"'pimppa' with user 'pimppa' and these are hardcoded." +msgstr "" + +#. Description +#: ../templates:64 +msgid "" +"You should choose the password for this database so that mailicious users " +"were not able to delete or alter it." +msgstr "" + +#. Description +#: ../templates:64 +msgid "" +"If you leave the field empty I'll autogenerate the password, but it won't be " +"secure (belive me)." +msgstr "" + +#. Description +#: ../templates:77 +msgid "subscribe initially to alt.binaries.pictures.cartoons?" +msgstr "" + +#. Description +#: ../templates:81 +msgid "Pimmpa (re)configured successfuly" +msgstr "" + +#. Description +#: ../templates:81 +msgid "It seems that Pimppa has been (re)configured." +msgstr "" + +#. Description +#: ../templates:81 +msgid "" +"Now go to shell and invoke (as user which you choose before) 'pleech -v' to " +"test the setup." +msgstr "" + +#. Description +#: ../templates:81 +msgid "" +"Whether it worked or not - you should now go and read Pimppa documentation, " +"because you won't be able to do anything before you know the tools." +msgstr "" + +#. Description +#: ../templates:81 +msgid "You can also try graphical GTK+ frontend called 'bowser'." +msgstr "" + +#. Description +#: ../templates:81 +msgid "Good luck using Pimppa!" +msgstr "" only in patch2: unchanged: --- pimppa-0.5.8.orig/debian/POTFILES.in +++ pimppa-0.5.8/debian/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates only in patch2: unchanged: --- pimppa-0.5.8.orig/debian/po/templates.pot +++ pimppa-0.5.8/debian/po/templates.pot @@ -0,0 +1,210 @@ +# +# 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-09-09 21:28+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n" +"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Description +#: ../templates:4 +msgid "Do you want to configure PIMPPA with debconf?" +msgstr "" + +#. Description +#: ../templates:4 +msgid "PIMPPA is tool to fetch binaries from newsgroups smartly." +msgstr "" + +#. Description +#: ../templates:4 +msgid "" +"If you answer few question you'll get minimal, but fully functional config " +"that will be good start for finetunning." +msgstr "" + +#. Description +#: ../templates:4 +msgid "" +"After install finishes you'll have to read pimppa documentation anyway, at " +"least to learn how to manage this tool." +msgstr "" + +#. Description +#: ../templates:4 +msgid "" +"You can always return to the configure stage by executing 'dpkg-reconfigure " +"pimppa'." +msgstr "" + +#. Description +#: ../templates:19 +msgid "As which (unprivileged) user should Pimpa run?" +msgstr "" + +#. Description +#: ../templates:19 +msgid "" +"Give the name of user as which the PIMPPA will run. If you're going to use " +"PIMPPA on a workstation, for you own purpose only - put here the name of " +"your user (*existing*), but not root!." +msgstr "" + +#. Description +#: ../templates:19 +msgid "Leaving the field empty will lead to unconfigured package." +msgstr "" + +#. Description +#: ../templates:29 +msgid "Which news server (NNTP) should PIMPPA use?" +msgstr "" + +#. Description +#: ../templates:29 +msgid "Give the name of a server you want PIMPPA to fetch news from." +msgstr "" + +#. Description +#: ../templates:29 +msgid "" +"PIMPPA can use more than one newsserver - you can configure it later using " +"pimppa tools." +msgstr "" + +#. Description +#: ../templates:38 +msgid "Where to store the fetched binaries?" +msgstr "" + +#. Description +#: ../templates:38 +msgid "" +"Pimppa uses /var/spool/pimppa symlink to point to where the fetched binaries " +"should be stored." +msgstr "" + +#. Description +#: ../templates:38 +msgid "" +"By default this will be a symlink to ~/pimppa directory of the user you " +"specified before (this is default if you leave this field empty)." +msgstr "" + +#. Description +#: ../templates:38 +msgid "" +"You can also write /var/spool/pimppa here and then no symlink will be " +"created, but realy /var/spool/pimppa directory where data will be stored." +msgstr "" + +#. Description +#: ../templates:38 +msgid "" +"Keep in mind, that there can be *A LOT* of data you may want to store there." +msgstr "" + +#. Choices +#: ../templates:53 +msgid "no_cron, daily, every_6_hours, every_1_hour" +msgstr "" + +#. Description +#: ../templates:55 +msgid "How often should PIMPPA fetch the news?" +msgstr "" + +#. Description +#: ../templates:55 +msgid "" +"You probably want to automate the process of fetching the news from " +"newserver." +msgstr "" + +#. Description +#: ../templates:55 +msgid "How often should 'pleech' program be run to fetch the news?" +msgstr "" + +#. Description +#: ../templates:64 +msgid "*database* password you want for Pimppa SQL database" +msgstr "" + +#. Description +#: ../templates:64 +msgid "" +"Pimppa uses MySQL database to store all informations. Database is named " +"'pimppa' with user 'pimppa' and these are hardcoded." +msgstr "" + +#. Description +#: ../templates:64 +msgid "" +"You should choose the password for this database so that mailicious users " +"were not able to delete or alter it." +msgstr "" + +#. Description +#: ../templates:64 +msgid "" +"If you leave the field empty I'll autogenerate the password, but it won't be " +"secure (belive me)." +msgstr "" + +#. Description +#: ../templates:77 +msgid "subscribe initially to alt.binaries.pictures.cartoons?" +msgstr "" + +#. Description +#: ../templates:81 +msgid "Pimmpa (re)configured successfuly" +msgstr "" + +#. Description +#: ../templates:81 +msgid "It seems that Pimppa has been (re)configured." +msgstr "" + +#. Description +#: ../templates:81 +msgid "" +"Now go to shell and invoke (as user which you choosed before) 'pleech -v' to " +"test the setup." +msgstr "" + +#. Description +#: ../templates:81 +msgid "" +"Whether it worked or not - you should now go and read Pimppa documentation, " +"because you won't be able to do anything before you know the tools." +msgstr "" + +#. Description +#: ../templates:81 +msgid "You can also try graphical GTK+ frontend called 'bowser'." +msgstr "" + +#. Description +#: ../templates:81 +msgid "Good luck using Pimppa!" +msgstr "" only in patch2: unchanged: --- pimppa-0.5.8.orig/debian/po/POTFILES.in +++ pimppa-0.5.8/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates