--- freepops-0.2.9.orig/debian/freepops.init +++ freepops-0.2.9/debian/freepops.init @@ -0,0 +1,128 @@ +#!/bin/bash + +### BEGIN INIT INFO +# Provides: freepops +# Required-Start: $network $local_fs $remote_fs +# Required-Stop: $network $local_fs $remote_fs +# Should-Start: $syslog +# Should-Stop: $syslog +# X-Start-Before: fetchmail +# X-Stop-After: fetchmail +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Starts the freepopsd (* > pop3) daemon. +# Description: Starts freepopsd, an everthing to pop3 +# converter, usually used as a webmail to +# pop3 converter. +### END INIT INFO + +# lsb functions, to use those ugly colors.. +. /lib/lsb/init-functions + +### some default values ### + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin + +DEFAULT_DAEMON=/usr/bin/freepopsd +DEFAULT_PIDFILE=/var/run/freepopsd.pid +DEFAULT_CHROOTED_DAEMON_OPTS=" -n -s nobody.nogroup" +DEFAULT_DAEMON_OPTS=" -n" + +NAME=freepopsd +DESC="freepops daemon" + +### /etc/default/ loading ### + +# Include freepops defaults if available. Used variables are: +# DAEMON, DAEMON_OPTS, CHROOTED_DAEMON_OPTS, PIDFILE, CHROOT +# all have a DEFAULT_ here, except CHROOT that is empty if the +# daemon should run in the normal environment + +if [ -f /etc/default/freepops ] ; then + . /etc/default/freepops +fi + +if [ -z "$DAEMON" ] ; then + DAEMON=$DEFAULT_DAEMON +fi + +if [ -z "$PIDFILE" ] ; then + PIDFILE=$DEFAULT_PIDFILE +fi + +if [ -z "$DAEMON_OPTS" ] ; then + DAEMON_OPTS=$DEFAULT_DAEMON_OPTS +fi + +if [ -z "$CHROOTED_DAEMON_OPTS" ] ; then + CHROOTED_DAEMON_OPTS=$DEFAULT_CHROOTED_DAEMON_OPTS +fi + +test -x $DAEMON || exit 0 + +set -e + +### helpers ### + +start_freepopsd () { + if [ -z "$CHROOT" ] ; then + log_daemon_msg "Starting $DESC" "$NAME" + start-stop-daemon --start -b --quiet -m -p $PIDFILE \ + --exec $DAEMON -- $DAEMON_OPTS + log_end_msg $? + else + log_daemon_msg "Starting $DESC" "(chroot) $NAME" + start-stop-daemon --start -b --quiet -m -p $PIDFILE \ + -r $CHROOT --exec $DAEMON -- $CHROOTED_DAEMON_OPTS + log_end_msg $? + fi +} + +stop_freepopsd () { + if [ -z "$CHROOT" ] ; then + log_daemon_msg "Stopping $DESC" "$NAME" + start-stop-daemon --stop --quiet -p $PIDFILE + log_end_msg $? + else + log_daemon_msg "Stopping $DESC" "(chroot) $NAME" + start-stop-daemon --stop --quiet -p $PIDFILE + log_end_msg $? + fi + rm $PIDFILE +} + +status_freepopsd () { + P=`cat $PIDFILE` + N=`ps -e | grep "^$P " | grep $DAEMON | wc -l` + if [ $N > 0 ]; then + echo freepops is running with pid $P. + else + echo freepops is dead. + fi +} + +### real code ### + +case "$1" in + start) + start_freepopsd + ;; + stop) + stop_freepopsd + ;; + restart|force-reload) + stop_freepopsd + sleep 1 + start_freepopsd + ;; + status) + status_freepopsd + ;; + *) + N=/etc/init.d/freepops + echo "Usage: $N {start|stop|restart|force-reload|status}" >&2 + exit 1 + ;; +esac + +exit 0 --- freepops-0.2.9.orig/debian/freepops.dirs +++ freepops-0.2.9/debian/freepops.dirs @@ -0,0 +1,4 @@ +usr/bin +usr/share/man/man1 +usr/share/pixmaps/ +etc/default/ --- freepops-0.2.9.orig/debian/freepops.cron.hourly +++ freepops-0.2.9/debian/freepops.cron.hourly @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ -d /var/lib/freepops/chroot-jail/ ]; then + cp -rf /var/lib/freepops/lua_updates \ + /var/lib/freepops/chroot-jail/var/lib/freepops/ +fi --- freepops-0.2.9.orig/debian/docs +++ freepops-0.2.9/debian/docs @@ -0,0 +1 @@ +README --- freepops-0.2.9.orig/debian/copyright +++ freepops-0.2.9/debian/copyright @@ -0,0 +1,85 @@ +This is freepops, written and maintained by + Enrico Tassi + Alessio Caprari + Nicola Cocchiaro + Simone Vellei +on Mon, 3 Nov 2003 19:46:38 +0100. + +The original source can always be found at: + http://freepops.org + + +Copyright (C) 2003 + Alessio Caprari, Nicola Cocchiaro, Enrico Tassi, Simone Vellei + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +In the modules/src/ directory there sources under different licenses: + +getdate/ + + Taken from curl-7.11.0 is under this public domain license: + + Originally written by Steven M. Bellovin while + at the University of North Carolina at Chapel Hill. Later tweaked by + a couple of people on Usenet. Completely overhauled by Rich $alz + and Jim Berets in August, 1990. + + This code has been modified since it was included in curl, to make it + thread-safe and to make compilers complain less about it. + + This code is in the public domain and has no copyright. + +lua/ +luadoc/ +luaexpat/ +luafilesystem/ + + Taken from the lua.org and related sites are under a MIT license: + + Copyright (C) 2003-2004 Tecgraf, PUC-Rio. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +pthread/ + + This is taken from the redhat site and is distributed under the LGPL. + Public License can be found in `/usr/share/common-licenses/LGPL'. + +luabind/ +curl_lua/ + + These modules are duole licensed under GPL and MIT (the same for the lua/ + module). + --- freepops-0.2.9.orig/debian/freepops-updater-gnome.install +++ freepops-0.2.9/debian/freepops-updater-gnome.install @@ -0,0 +1 @@ +debian/freepops-updater-gnome.desktop usr/share/applications/ --- freepops-0.2.9.orig/debian/changelog +++ freepops-0.2.9/debian/changelog @@ -0,0 +1,294 @@ +freepops (0.2.9-5) unstable; urgency=low + + * Ack NMU + * Fix build dependency adding ghostscript (Closes: #614529, #629810) + + -- Enrico Tassi Wed, 20 Jul 2011 19:03:15 +0200 + +freepops (0.2.9-4.2) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues. Debconf translations: + - Arabic (Ossama M. Khayat). Closes: #560345 + - Vietnamese (Clytie Siddall). Closes: #569651 + - Danish (Joe Hansen). Closes: #586225 + + -- Christian Perrier Fri, 18 Jun 2010 06:54:02 +0200 + +freepops (0.2.9-4.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues. Debconf translations: + - German (Helge Kreutzmann). Closes: #512126 + - Simplified Chinese (Ji ZhengYu). Closes: #560783 + + -- Christian Perrier Thu, 17 Dec 2009 07:43:00 +0100 + +freepops (0.2.9-4) unstable; urgency=low + + * updated standards-version to 3.8.2, no changes + * added ${misc:Depends} to make lintian happy + * removed call to deprecated dh_desktop, .desktop file now installed + using dh_install + + -- Enrico Tassi Fri, 24 Jul 2009 17:21:13 +0200 + +freepops (0.2.9-3) unstable; urgency=low + + * Recommend dialog (Closes: #521430) + + -- Enrico Tassi Fri, 27 Mar 2009 19:45:16 +0100 + +freepops (0.2.9-2) unstable; urgency=low + + * Uploaded to unstable + + -- Enrico Tassi Sun, 15 Feb 2009 14:03:32 +0100 + +freepops (0.2.9-1) experimental; urgency=low + + * New upstream release with minor fixes + + -- Enrico Tassi Sat, 27 Dec 2008 16:55:54 +0100 + +freepops (0.2.8-1) experimental; urgency=low + + * Fixed typo in package description (Closes: #486151) + * New upstream release + * Acknowledge NMU by Christian Perrier for #488192, #493383 + * Bumped standards-version to 3.8.0, no changes needed + * Added crontab to copy updates inside the chroot (Closes: #499039) + * Fixed postins script to call 'sh' instead '/bin/sh' to make lintian happy + * Removed -i to make invocation in rules file to make lintian happy + + -- Enrico Tassi Sat, 20 Sep 2008 13:31:44 +0200 + +freepops (0.2.7-2.2) unstable; urgency=low + + * Non-maintainer upload. + * Brown paper bag NMU + * Really add Japanese debconf translation. Really Closes: #493383 + + -- Christian Perrier Fri, 19 Sep 2008 07:45:49 +0200 + +freepops (0.2.7-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues + * Debconf translations: + - Turkish. Closes: #488192, #493383 + + -- Christian Perrier Wed, 17 Sep 2008 07:22:52 +0200 + +freepops (0.2.7-2) unstable; urgency=low + + * Fixed LSB headers in init script to require $network instead of $all + (thanks to Alessio Caprari for the patch) + + -- Enrico Tassi Sat, 14 Jun 2008 11:26:02 +0200 + +freepops (0.2.7-1) unstable; urgency=low + + * new upstream release (Closes: #460882) + * added freepops-updater-gnome containing an interactive updater based on + zenity + * updated Standsrds Version to 3.7.3, fixing .menu sections + * added fi.po (Closes: #456968) + + -- Enrico Tassi Tue, 27 May 2008 16:27:52 +0200 + +freepops (0.2.6-1) unstable; urgency=low + + * New upstream release + * Added pt_BR localization (thanks Eder L. Marques) (Closes: #447877) + + -- Enrico Tassi Thu, 25 Oct 2007 17:49:24 +0200 + +freepops (0.2.5-1) unstable; urgency=low + + * New upstream release + * Added ml.po (Closes: #426113) + * Updated vi.po (Closes: #427176) + + -- Enrico Tassi Fri, 22 Jun 2007 13:39:47 +0200 + +freepops (0.2.4-1) unstable; urgency=low + + * New upstream release + * Debconf templates and debian/control reviewed by the debian-l10n- + english team as part of the Smith review project. + Closes: #420761, #421733 + * Debconf translation updates: + - German. Closes: #421732 + - Portuguese. Closes: #421738 + - Tamil. Closes: #421777 + - Czech. Closes: #421765 + - Galician. Closes: #421817 + - Basque. Closes: #421883 + - Russian. Closes: #422112 + - Swedish. Closes: #422474 + - Dutch. Closes: #423056, #419728 + - Spanish. Closes: #423693 + - Arabic. Closes: #424698 + - French. Closes: #424751 + + -- Enrico Tassi Sat, 26 May 2007 12:01:32 +0200 + +freepops (0.2.3-1) unstable; urgency=low + + * New Upstream release + * Changed default options, now the daemon lowers its rights to + nobody.nogroup (Closes: #413412) + * Integrated l10n sv,ru,eu,gl,cs,pt,de,nl,ta patches but bugs are still + open due to the debconf template review. + + -- Enrico Tassi Sat, 07 Apr 2007 16:40:26 +0200 + +freepops (0.2.3-1~l10n-1) UNRELEASED; urgency=low + + * Integrated l10n sv patch (Closes: #422474) + * Integrated l10n ru patch (Closes: #422112) + * Integrated l10n eu patch (Closes: #421883) + * Integrated l10n gl patch (Closes: #421817) + * Integrated l10n cs patch (Closes: #421765) + * Integrated l10n pt patch (Closes: #421738) + * Integrated l10n de patch (Closes: #421732, #414744) + * Integrated l10n nl patch (Closes: #419728) + * Integrated l10n ta patch (Closes: #421777) + + -- Enrico Tassi Sat, 07 Apr 2007 16:40:26 +0200 + +freepops (0.2.2-1) unstable; urgency=low + + * New upstream release + + -- Enrico Tassi Sat, 31 Mar 2007 21:33:50 +0200 + +freepops (0.2.1-1) unstable; urgency=low + + * New upstream release + * Changed default options, now the daemon lowers its rights to + nobody.nogroup (Closes: #413412) + * Removed .bak files eventually created in /var/lib/freepops in the prerm + script. + * updated de translation (Closes: #414744) + + -- Enrico Tassi Sun, 25 Mar 2007 15:29:17 +0200 + +freepops (0.2.0-1) unstable; urgency=low + + * new upstream release: package splitted to separate the updaters, some of + them are X11 dependent from the simple server that is still a simple + daemon non dependent on X11. + * added debconf template to ask the user if locally installed updates in + /var/lib/freepops/lua_updates have to be removed on upgrade (in the + postinst script). + * added it.po translation to the debconf template. + * added de.po translation (Closes: #411484) + * fixed ancient bug of removing /var/lib/freepops in the prerm script + even if these directories belong to the package. + + -- Enrico Tassi Sun, 14 Jan 2007 19:17:20 +0100 + +freepops (0.0.99-1) unstable; urgency=low + + * new upstream release + + -- Enrico Tassi Sun, 18 Jun 2006 18:57:17 +0200 + +freepops (0.0.98-2) unstable; urgency=low + + * bad package (actually the sarge backport) uploaded + + -- Enrico Tassi Sun, 12 Mar 2006 18:32:03 +0100 + +freepops (0.0.98-1) unstable; urgency=low + + * new upstream release + + -- Enrico Tassi Sat, 11 Mar 2006 19:26:34 +0100 + +freepops (0.0.97-1) unstable; urgency=low + + * new upstream release + + -- Enrico Tassi Fri, 13 Jan 2006 23:59:43 +0100 + +freepops (0.0.96-1) unstable; urgency=low + + * new upstram release + + -- Enrico Tassi Wed, 16 Nov 2005 22:23:47 +0100 + +freepops (0.0.95-1) unstable; urgency=low + + * new upstream release + * fixed chroot jail creation (missing .so and config.lua files) + * added sv debconf translation (Closes: #333343) + * using lsb-base in init scripts + * changed FSF address in copying file + * the manuals in -doc are now under GPL and not FDL as before (the upstream + changed the license) + * added dependency on debconf-2.0 (Closes: #331825) + + -- Enrico Tassi Sun, 25 Sep 2005 13:01:39 +0200 + +freepops (0.0.31-1) unstable; urgency=low + + * init.d script uses only POSIX shell commands, applied patch by + Rogério Brito (Closes: #316221) + * new upstream release + + -- Enrico Tassi Wed, 13 Jul 2005 02:24:55 +0200 + +freepops (0.0.30-1) unstable; urgency=low + + * new upstream release + * fixed libero multipage stat (Closes: #315958) + * added Vietnamese debconf translation (closes: #314186) + * the .configure script now supports going backward + * cleaned some dh_make useless stuff in rules + * fixed the build-depends(-indep) field + * fixed the clean target that now calls make distclean + + -- Enrico Tassi Mon, 27 Jun 2005 19:49:02 +0200 + +freepops (0.0.29-1) unstable; urgency=low + + * manual.pdf is now build only in binary-indep target (closes: #306799) + * new upstream release + + -- Enrico Tassi Wed, 1 Jun 2005 18:25:22 +0200 + +freepops (0.0.28-1) unstable; urgency=low + + * added fr.po and cs.po (closes: #307449, #308059) + * new upstream release (closes: #309845, #306799) + + -- Enrico Tassi Sat, 28 May 2005 14:31:56 +0200 + +freepops (0.0.27-2) unstable; urgency=low + + * fixed wrong entries in config.lua (closes: Bug#304244) + * more detailed description for the -doc package (closes: Bug#306364) + + -- Enrico Tassi Tue, 26 Apr 2005 14:28:36 +0200 + +freepops (0.0.27-1) unstable; urgency=low + + * new upastream release + + -- Enrico Tassi Sat, 9 Apr 2005 16:43:38 +0200 + +freepops (0.0.25-1) unstable; urgency=low + + * fixes libero plugin + + -- Enrico Tassi Mon, 31 Jan 2005 21:59:57 +0100 + +freepops (0.0.24-1) unstable; urgency=low + + * new upstream release + * first official debian package + + -- Enrico Tassi Sun, 30 Jan 2005 18:12:36 +0100 --- freepops-0.2.9.orig/debian/freepops-updater-fltk.dirs +++ freepops-0.2.9/debian/freepops-updater-fltk.dirs @@ -0,0 +1,5 @@ +usr/lib/freepops +usr/share/man/man1 +usr/bin +usr/share/pixmaps +usr/share/locale --- freepops-0.2.9.orig/debian/freepops-updater-gnome.desktop +++ freepops-0.2.9/debian/freepops-updater-gnome.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Version=1.0 +Encoding=UTF-8 +Type=Application +Terminal=false +Name=FreePOPs updater +Comment=Download updated version of FreePOPs plugins +Icon=/usr/share/pixmaps/freepops-updater-zenity.svg +Exec=su-to-root -X -c freepops-updater-zenity +Categories=GNOME;Application;System; +GenericName= --- freepops-0.2.9.orig/debian/freepops-updater-fltk.menu +++ freepops-0.2.9/debian/freepops-updater-fltk.menu @@ -0,0 +1,9 @@ +?package(freepops-updater-fltk):\ + needs="X11" \ + section="Applications/System/Administration" \ + title="freepops updateri (fltk)" \ + command="su-to-root -X -c freepops-updater-fltk"\ + icon="/usr/share/pixmaps/freepops-updater-fltk-32.xpm"\ + hints="" \ + longtitle="Check for updates and installs them" \ + description="Graphical and interactive frontend to the freepops updater modules, that allows to check the official website for updates to lua modules and install them" --- freepops-0.2.9.orig/debian/freepops.menu +++ freepops-0.2.9/debian/freepops.menu @@ -0,0 +1,8 @@ +?package(freepops):needs="text" section="Applications/Network/Communication"\ + title="freepopsd (start)" command="/usr/bin/freepopsd -v "\ + icon="/usr/share/pixmaps/freepops-32.xpm" +# this is commented since we have no per-user pid file, so it will be a pain +# in the ass to use killall +#?package(freepops):needs="text" section="Apps/Net"\ +# title="freepopsd (stop)" command="/usr/bin/freepopsd "\ +# icon="/usr/share/pixmaps/freepops-32.xpm" --- freepops-0.2.9.orig/debian/freepops.templates +++ freepops-0.2.9/debian/freepops.templates @@ -0,0 +1,43 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# for an advice to debian-l10n-english@lists.debian.org +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: freepops/init +Type: boolean +_Description: Start freepopsd automatically after each boot? + The FreePOPs daemon can be started automatically after each boot. + By default, it will bind to port 2000. This setting may be changed by + editing the /etc/default/freepops file. + +Template: freepops/jail +Type: boolean +Default: false +_Description: Create a chroot jail for FreePOPs? + FreePOPs can be launched in a chrooted environment to improve the + system's security. + . + The jail will be created in /var/lib/freepops/chroot-jail/. + The regular init script will then take care of launching the daemon + by calling a script named start.sh at the root of the chroot jail. + +Template: freepops/updates +Type: boolean +Default: true +_Description: Remove local updates on upgrade? + The freepops-updater-fltk or freepops-updater-dialog utilities will + install local updates in /var/lib/freepops/lua_updates. + . + Such updates are usually integrated in further FreePOPs releases or + can be downloaded again by running the updater. Therefore, they + may safely be removed when the package is upgraded. + . + The modules saved in /var/lib/freepops/lua_updates have a higher + priority than those from /usr/share/freepops/lua. It is thus + recommended to remove the former in order to avoid using outdated modules, + unless you intend to freeze the local modifications regardless of + FreePOPs upgrades. --- freepops-0.2.9.orig/debian/compat +++ freepops-0.2.9/debian/compat @@ -0,0 +1 @@ +7 --- freepops-0.2.9.orig/debian/freepops.postrm +++ freepops-0.2.9/debian/freepops.postrm @@ -0,0 +1,41 @@ +#! /bin/sh +# postrm script for #PACKAGE# +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + update-rc.d -f freepops remove 1>/dev/null 2>/dev/null + if [ "$1" = "purge" -o "$1" = "remove" ]; then + rm -f /var/lib/freepops/lua_updates/*.lua + rm -f /var/lib/freepops/lua_updates/*/*.lua + rm -f /var/lib/freepops/lua_unofficial/*.lua + fi + ;; + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- freepops-0.2.9.orig/debian/freepops-doc.dirs +++ freepops-0.2.9/debian/freepops-doc.dirs @@ -0,0 +1 @@ +usr/share/doc/freepops-doc/ --- freepops-0.2.9.orig/debian/freepops.prerm +++ freepops-0.2.9/debian/freepops.prerm @@ -0,0 +1,49 @@ +#! /bin/sh +# prerm script for freepops +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + remove|upgrade|deconfigure) + + invoke-rc.d freepops stop 2>/dev/null || true + + JAIL_SCRIPT=/usr/lib/freepops/create_jail.sh + JAIL_DIR=`sh $JAIL_SCRIPT get-dir` + rm -rf $JAIL_DIR + + rm -f /var/lib/freepops/lua_updates/*.bak + rm -f /var/lib/freepops/lua_updates/*/*.bak + ;; + + failed-upgrade) + + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- freepops-0.2.9.orig/debian/freepops.postinst +++ freepops-0.2.9/debian/freepops.postinst @@ -0,0 +1,95 @@ +#! /bin/sh +# postinst script for freepops +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure) + + # Source debconf library. + . /usr/share/debconf/confmodule + + # Check their answers. + JAIL_SCRIPT=/usr/lib/freepops/create_jail.sh + JAIL_DIR=`sh $JAIL_SCRIPT get-dir` + + # jail script........ + db_get freepops/jail + TMPFILE=`tempfile` + if [ "$RET" = true ]; then + # create it + sh $JAIL_SCRIPT create + # set the CHROOT variable + mv /etc/default/freepops $TMPFILE + echo "CHROOT=\"$JAIL_DIR\"" >> $TMPFILE + cat $TMPFILE | sed "s/\#CHROOT\=/CHROOT\=/" | \ + uniq > /etc/default/freepops + + else + #remove it + rm -fr $JAIL_DIR + #comment old config file CHROOT variable + mv /etc/default/freepops $TMPFILE + sed "s/CHROOT\=/\#CHROOT\=/" $TMPFILE | \ + uniq > /etc/default/freepops + fi + rm $TMPFILE + + # clean of updates + db_get freepops/updates + if [ "$RET" = true ]; then + echo Removing local updates in /var/lib/freeopos/lua_updates/ + rm -f /var/lib/freepops/lua_updates/*.lua + rm -f /var/lib/freepops/lua_updates/*/*.lua + fi + + # init script.......... + db_get freepops/init + if [ "$RET" = true ]; then + invoke-rc.d freepops stop 2>/dev/null || true + update-rc.d freepops defaults 19 19 1>/dev/null 2>/dev/null + invoke-rc.d freepops start + echo + fi + + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- freepops-0.2.9.orig/debian/control +++ freepops-0.2.9/debian/control @@ -0,0 +1,54 @@ +Source: freepops +Section: mail +Priority: optional +Maintainer: Enrico Tassi +Build-Depends: debhelper (>= 7), libexpat1-dev, libcurl4-gnutls-dev (>= 7.15.0-2), flex, bison, po-debconf, liblua5.1-filesystem-dev, liblua5.1-expat-dev, liblua5.1-curl-dev (>= 0.3.0), liblua5.1-dev, libfltk1.1-dev, liblua5.1-socket-dev, gettext +Build-Depends-Indep: texlive-latex-extra, texlive-fonts-recommended, texlive-latex-recommended, ghostscript, luadoc +Standards-Version: 3.8.2 +Homepage: http://www.freepops.org + +Package: freepops +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, debconf | debconf-2.0 , lsb-base (>= 3.0-6) +Recommends: dialog +Description: POP3 interface to several webmail sites + FreePOPs is a POP3 daemon that translates local POP3 commands + to remote HTTP requests to the supported webmail sites. + . + FreePOPs can also be used as RSS aggregator and POP3 proxy. + . + This package also includes a dialog based updater program, to check + for updates and optionally download them. + +Package: freepops-updater-fltk +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, freepops (>= 0.2.0) +Description: Graphical interface for the freepops updater engine + This package provides a click-and-update program to download the latest updates + from the freepops website. + . + The user interface is based on FTLK, if you are not using a GTK+ based desktop + environment this package is probably what you want to install. + +Package: freepops-updater-gnome +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, freepops (>= 0.2.0), zenity +Description: GNOME interface for the freepops updater engine + This package provides a click-and-update program to download the latest updates + from the freepops website. + . + The user interface is based on zenity, thus this package is recommended + for GTK+ desktop environments like GNOME. + +Package: freepops-doc +Section: doc +Architecture: all +Depends: ${misc:Depends} +Description: FreePOPs user/developer manual + FreePOPs is a POP3 daemon that translates local POP3 commands + to remote HTTP requests to the supported webmail sites. + . + FreePOPs can also be used as RSS aggregator and POP3 proxy. + . + This package includes the PDF manual for the software. + --- freepops-0.2.9.orig/debian/freepops-updater-gnome.dirs +++ freepops-0.2.9/debian/freepops-updater-gnome.dirs @@ -0,0 +1,4 @@ +usr/share/man/man1 +usr/bin +usr/share/pixmaps +usr/share/applications/ --- freepops-0.2.9.orig/debian/rules +++ freepops-0.2.9/debian/rules @@ -0,0 +1,142 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + rm -f config + ./configure.sh linux-gnutls -lua -luafilesystem -luacurl -luaexpat -fltk-ui -luasocket + + touch configure-stamp + + +build: build-stamp +build-manual: build-manual-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) all WHERE=/usr/ LOCALEDIR=/usr/share/locale + + touch build-stamp + +build-manual-stamp: build-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) manual WHERE=/usr/ + + touch build-manual-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp build-manual-stamp + + # Add here commands to clean up after the build process. + $(MAKE) realclean || true # can fail if the previous compilation fails + + dh_clean + debconf-updatepo + +install-common: + dh_testdir + dh_testroot + dh_clean + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/freepops/ WHERE=/usr/ LOCALEDIR=/usr/share/locale + -mv $(CURDIR)/debian/freepops/usr/share/doc/freepops/*.pdf \ + $(CURDIR)/debian/freepops-doc/usr/share/doc/freepops-doc/ + mv $(CURDIR)/debian/freepops/usr/lib/freepops/*.so \ + $(CURDIR)/debian/freepops-updater-fltk/usr/lib/freepops/ + mv $(CURDIR)/debian/freepops/usr/share/man/man1/freepops-updater-fltk.1\ + $(CURDIR)/debian/freepops-updater-fltk/usr/share/man/man1/ + mv $(CURDIR)/debian/freepops/usr/bin/freepops-updater-fltk \ + $(CURDIR)/debian/freepops-updater-fltk/usr/bin + cp updater-ui/fltk/freepops-updater-fltk-32.xpm \ + $(CURDIR)/debian/freepops-updater-fltk/usr/share/pixmaps/ + mv $(CURDIR)/debian/freepops/usr/share/locale/ $(CURDIR)/debian/freepops-updater-fltk/usr/share/ + mv $(CURDIR)/debian/freepops/usr/share/man/man1/freepops-updater-zenity.1\ + $(CURDIR)/debian/freepops-updater-gnome/usr/share/man/man1/ + mv $(CURDIR)/debian/freepops/usr/bin/freepops-updater-zenity \ + $(CURDIR)/debian/freepops-updater-gnome/usr/bin + cp updater-ui/zenity/freepops-updater-zenity.svg \ + $(CURDIR)/debian/freepops-updater-gnome/usr/share/pixmaps/ + cp debian/freepops-updater-gnome.desktop \ + $(CURDIR)/debian/freepops-updater-gnome/usr/share/applications/ + + +install-manual: build-manual install-common + +install: build install-common + #create the /etc/freepops/freepops.conf file + DESTDIR=$(CURDIR)/debian/freepops; \ + FILE=$$DESTDIR/etc/default/freepops; \ + echo "#####################################"> $$FILE; \ + echo "# configuration file for freepopsd.">> $$FILE; \ + echo "# ">> $$FILE; \ + echo "# man freepopsd for more info. ">> $$FILE; \ + echo "DAEMON=\"/usr/bin/freepopsd\"">> $$FILE; \ + echo "DAEMON_OPTS=\" -n -s nobody.nogroup\"">> $$FILE; \ + echo "PIDFILE=\"/var/run/freepops.pid\"">> $$FILE; \ + echo "CHROOTED_DAEMON_OPTS=\" -n -s nobody.nogroup\"">> $$FILE + + #istall the icon + DESTDIR=$(CURDIR)/debian/freepops; \ + cp modules/src/winsystray/freepops-32.xpm $$DESTDIR/usr/share/pixmaps/ + + DESTDIR=$(CURDIR)/debian/freepops; \ + cp scripts/create_jail.sh $$DESTDIR/usr/lib/freepops + +# Build architecture-independent files here. +binary-indep: build build-manual install-manual + dh_testdir -i + dh_testroot -i + dh_installchangelogs ChangeLog -i + dh_installdocs -i + dh_installexamples -i + dh_installdebconf -i + dh_installinit -n -i + dh_installman -i + dh_installcron -i + dh_link -i + dh_strip -i + dh_compress -X.pdf -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installchangelogs ChangeLog -a + dh_installdocs -a + dh_installexamples -a + dh_installmenu -a + dh_installcron -a + dh_installdebconf -a + dh_installinit -n -a + dh_installman -a + dh_link -a + dh_strip -a + dh_compress -X.pdf -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- freepops-0.2.9.orig/debian/README.Debian +++ freepops-0.2.9/debian/README.Debian @@ -0,0 +1,7 @@ +freepops for Debian +--------------------- + +/etc/default/freepops is the configuration file. +Here you can specify the bind port for the daemon with the -p option. + + -- Enrico Tassi , Mon, 14 Jan 2005 19:46:38 +0100 --- freepops-0.2.9.orig/debian/freepops.config +++ freepops-0.2.9/debian/freepops.config @@ -0,0 +1,33 @@ +#!/bin/sh + +set -e + +# Source debconf library. +. /usr/share/debconf/confmodule +db_capb backup + +STATE=1 + +while true; do + case $STATE in + 1) + db_input medium freepops/init || true + ;; + 2) + db_input medium freepops/updates || true + ;; + 3) + db_input medium freepops/jail || true + ;; + *) + break + ;; + esac + if db_go; then + STATE=`expr $STATE + 1` + else + STATE=`expr $STATE - 1` + fi +done + +exit 0 --- freepops-0.2.9.orig/debian/po/vi.po +++ freepops-0.2.9/debian/po/vi.po @@ -0,0 +1,111 @@ +# Vietnamese translation for FreePOPs. +# Copyright © 2010 Free Software Foundation, Inc. +# Clytie Siddall , 2005-2010. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops 0.2.9-4.1\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2010-02-13 17:59+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\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.8\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Tự động khởi chạy freepopsd một lần khởi động ?" + +# msgid "" +# The FreePOPs daemon can be started automatically after each boot for you. +# By default it will bind on port 2000, but you can change this behaviour +# editing /etc/default/freepops +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Trình nền FreePOPs có khả năng được tự động khởi chạy sau mỗi lần khởi động " +"máy. Mặc định là nó đóng kết tới cổng 2000. Cũng có thể sửa đổi giá trị này " +"trong tập tin « /etc/default/freepops »." + +# msgid "Create a chroot jail for freepops?" +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Tạo một tù gốc khác (chroot jail) cho FreePOPs ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"Cũng có khả năng khởi chạy trình FreePOPs trong môi trường chroot để tăng " +"cấp bảo mật của hệ thống." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Gốc khác (chroot jail) sẽ được tạo trong thư mục « /var/lib/freepops/chroot-" +"jail/ ». Văn lệnh sở khởi bình thường sẽ khởi chạy trình nền bằng cách gọi " +"văn lệnh tên « start.sh » ở cấp gốc của gốc khác." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Gỡ bỏ bản cập nhật cục bộ khi nâng cấp ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Tiến ích « freepops-updater-fltk » hay « freepops-updater-dialog » sẽ cài " +"đặt các bản cập nhật cục bộ vào thư mục « /var/lib/freepops/lua_updates »." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Bản cập nhật như vậy thường được hợp nhất trong bản phát hành FreePOPs mới, " +"hoặc có thể được tải về lại bằng cách chạy bộ cập nhật. Vì thế có thể gỡ bỏ " +"an toàn các bản cập nhật kiểu này khi nâng cấp gói." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Những mô-đun được lưu vào « /var/lib/freepops/lua_updates » có mức ưu tiên " +"cao hơn những điều trong « /usr/share/frepops/lua ». Vì vậy khuyên bạn gỡ bỏ " +"những điều trước, để tránh sử dụng mô-đun cũ, nếu bạn không dự định duy trì " +"những bản sửa đổi cục bộ bất chấp trạng thái nâng cấp về FreePOPs." --- freepops-0.2.9.orig/debian/po/pt.po +++ freepops-0.2.9/debian/po/pt.po @@ -0,0 +1,106 @@ +# Portuguese translation of freepops' debconf messages. +# Copyright (C) 2007 +# This file is distributed under the same license as the freepops package. +# Ricardo Silva , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-01 10:35+0100\n" +"Last-Translator: Ricardo Silva \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Iniciar o freepopsd automaticamente após cada arranque?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"O daemon do FreePOPs pode ser iniciado automaticamente em cada arranque. Por " +"omissão vai-se ligar ao porto 2000. Esta configuração pode ser modificada " +"alterando o ficheiro /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Criar uma 'prisão' chroot para o FreePOPs?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"O FreePOPs pode ser lançado num ambiente chroot para melhorar a segurança do " +"sistema." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"A prisão será criada em /var/lib/freepops/chroot-jail/. O script de " +"inicialização (init script) tratará de lançar o daemon chamando o start.sh " +"na raiz da cadeia chroot." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Remover alterações locais aquando da actualização do sistema?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Os utilitários freepops-updater-fltk ou freepops-updater-dialog irão " +"instalar actualizações locais em /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Essas actualizações são normalmente integradas em lançamentos posteriores do " +"FreePOPs ou podem ser novamente obtidos correndo o actualizador. Portanto " +"podem ser removidos com segurança quando o pacote é actualizado." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Os módulos guardados em /var/lib/freepops/lua_updates têm uma prioridade " +"maior do que os que estão em /usr/share/freepops/lua. É portanto recomendado " +"que os remova de forma a evitar usar módulos desactualizados, a não ser que " +"pretenda congelar as modificações locais independentemente das actualizações " +"do FreePOPs." --- freepops-0.2.9.orig/debian/po/tr.po +++ freepops-0.2.9/debian/po/tr.po @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Mert Dirik , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops 0.2.7-1\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2008-06-27 00:05+0200\n" +"Last-Translator: Mert Dirik \n" +"Language-Team: Debian L10n Turkish \n" +"Language: \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" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "\"freepopsd\" her önyüklemede başlatılsın mı?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"FreePOPs hizmeti her önyüklemede otomatik olarak başlatılabilir. FreePOPs, " +"öntanımlı olarak 2000 numaralı porta bağlanır. Bu ayar /etc/default/freepops " +"dosyası düzenlenerek değiştirilebilir." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "FreePOPs için chroot kafesi oluşturulsun mu?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"Sistemin güvenliğini artırmak için FreePOPs kafeslenmiş chroot ortamında " +"çalıştırabilir." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Kafes /var/lib/freepops/chroot-jail/ konumunda oluşturulacak. \"init\" " +"betiği, FreePOPs hizmetini chroot kafesinin kök dizinindeki start.sh " +"betiğini kullanarak başlatacak." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Yükseltme sırasında yerel güncellemeler kaldırılsın mı?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"\"freepops-updater-fltk\" ya da \"freepops-updater-dialog\" araçları yerel " +"güncellemeleri /var/lib/freepops/lua_updates konumuna kuracak." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Bu güncellemeler genellikle ya sonraki FreePOPs sürümlerine eklenir, ya da " +"güncelleyiciyi tekrar çalıştırılarak indirebilir. Bu nedenle; güncellemeler, " +"paket yükseltildiğinde rahatlıkla kaldırılabilir." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"\"/var/lib/freepops/lua_updates\" konumundaki modüller \"/usr/share/freepops/" +"lua\" konumundakilerden daha yüksek önceliğe sahiptir. Bu nedenle, eskimiş " +"modülleri kullanmaktan kaçınmak için \"/var/lib/freepops/lua_updates\" " +"konumundaki modülleri kaldırmanız önerilir. (Eğer FreePOPs yükseltmelerine " +"rağmen yerel değişiklikleri korumak niyetindeyseniz bunu yapmak " +"istemeyebilirsiniz.)" --- freepops-0.2.9.orig/debian/po/ar.po +++ freepops-0.2.9/debian/po/ar.po @@ -0,0 +1,104 @@ +# translation of freepops.po to Arabic +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Ossama M. Khayat , 2007, 2009. +msgid "" +msgstr "" +"Project-Id-Version: freepops\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2009-12-10 19:17+0300\n" +"Last-Translator: Ossama M. Khayat \n" +"Language-Team: Arabic \n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=6; plural=n==1 ? 0 : n==0 ? 1 : n==2 ? 2: n%100>=3 && " +"n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "هل تريد تشغيل freepopsd عند تشغيل جهازك؟" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"يمكن تشغيل عفريت FreePOPs آلياً عقب كل عملية إقلاع. بطبيعة الحال، سوف تقوم " +"بالإصغاء للمنفذ 2000. يمكن تعديل هذا الإعداد بتعديل الملف /etc/default/" +"freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "هل تريد إنشاء سجن chroot لاستخدام FreePOPs؟" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "يمكن تشغيل FreePOPs في بيئة chroot لتحسين أمن النظام." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"سيتم إنشاء السجن في /var/lib/freepops/chroot-jail/. تقوم عملية init بعد ذلك " +"بتشغيل العفريت عبر نداء النص البرمجي المسمى start.sh في جذر سجن chroot." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "هل تريد إزالة التحديثات المحلية عند الترقية؟" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"ستقوم البرامج المساعدة freepops-updater-fltk أو freepops-updater-dialog " +"بتثبيت التحديثات المحلية في /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"تكون هذه التحديثات عادة في إصدارات FreePOPs اللاحقة أو يمكن تنزيلها بتشغيل " +"برنامج التحديث. لذا، يمكنك إزالتها بأمان عند ترقية الحزمة." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"الوحدات المحفوظة في /var/lib/freepops/lua_updates لها أولوية أعلى من تلك " +"التي في /usr/share/frepops/lua. وبالتالي فمن المستحسن إزالة الأولى كي تتجنب " +"استخدام الوحدات القديمة، إلا إن كنت تنوي إبقاء التعديلات المحلية بغض النظر " +"عن ترقيات FreePOPs." --- freepops-0.2.9.orig/debian/po/ml.po +++ freepops-0.2.9/debian/po/ml.po @@ -0,0 +1,114 @@ +# Translation of debconf template of FreePOPs. +# Copyright (C) 2007 FreePOPs' COPYRIGHT HOLDER +# This file is distributed under the same license as the FreePOPs package. +# Sreeraj A, Sreerenj B, 2007 +msgid "" +msgstr "" +"Project-Id-Version:freepops_1.0.13-5_ml\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-04-08 15:17-0400\n" +"Last-Translator: Sreeraj A, Sreerenj B\n" +"Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "ഓരോ തവണ കമ്പ്യൂട്ടര്‍ ആരംഭിച്ചതിന് ശേഷവും ഫ്രീപോപ്സ്ഡി (freepopsd) തുടങ്ങണമോ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"ഓരോ തവണ കമ്പ്യൂട്ടര്‍ ആരംഭിച്ചതിന് ശേഷവും ഫ്രീപോപ്സ് ഡീമണ്‍ (FreePOPs daemon) " +"തുടങ്ങാവുന്നതാണ്. സഹജമായി ഇത് പോര്‍ട്ട് 2000 -വുമായി ബൈന്‍ഡ് ചെയ്യപ്പെടും. ഈ സജ്ജീകരണം /etc/" +"default/freepops രേഖ ചിട്ടപ്പെടുത്തി മാറ്റാവുന്നതാണ്." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "ഫ്രീപോപ്സിനുവേണ്ടി ഒരു സിഎച്ച്റൂട്ട് ജയില്‍ (chroot jail) സൃഷ്ടിയ്ക്കണമോ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"സിസ്റ്റത്തിന്റെ സുരക്ഷിതത്വം മെച്ചപ്പെടുത്തുന്നതിനുവേണ്ടി ഫ്രീപോപ്സ് സിഎച്ച്റൂട്ടഡ് (chrooted) " +"പരിസരത്തില്‍ തുടങ്ങാവുന്നതാണ്. " + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"ഈ ജയില്‍ /var/lib/freepops/chroot-jail/ -ല്‍ സൃഷ്ടിക്കപ്പെടുന്നതായിരിയ്ക്കും. ഇതിന് " +"ശേഷം സാധാരണ ഇനിറ്റ് സ്ക്രിപ്റ്റ് (init script) സിഎച്ച്റൂട്ട് (chroot) ജയിലിന്റെ റൂട്ടിലുള്ള " +"start.sh എന്നു പേരുള്ള സ്ക്രിപ്റ്റിനെ വിളിച്ച് ഡീമണെ തുടങ്ങുന്നതിനുള്ള കാര്യങ്ങള്‍ ശ്രദ്ധിയ്ക്കുുകയും " +"ചെയ്യും." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "പുതുക്കുമ്പോള്‍ പ്രാദേശിക മാറ്റങ്ങള്‍ നീക്കം ചെയ്യണമോ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"ഫ്രീപോപ്സ് -അപ്ഡേറ്റര്‍-എഫ്എല്‍ടികെ (freepops-updater-fltk) യോ ഫ്രീപോപ്സ്-അപ്ഡേറ്റര്‍-ഡയലോഗ് " +"യൂട്ടിലിറ്റികളോ പ്രാദേശിക മാറ്റങ്ങള്‍ /var/lib/freepops/lua_updates ല്‍ ഇന്‍സ്റ്റാള്‍ ചെയ്യും." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"അത്തരം മാറ്റങ്ങള്‍ സാധാരണയായി ഇതിനുശേഷം ഇറങ്ങിയ ഫ്രീപോപ്സ് ലക്കങ്ങളില്‍ " +"കൂട്ടിച്ചേര്‍ക്കപ്പെട്ടിട്ടുണ്ടായിരിയ്ക്കുകയോ അല്ലെങ്കില്‍ പുതുക്കല്‍ ഉപാധി ഉപയോഗിച്ച് ഡൌണ്‍ലോഡ് " +"ചെയ്യുകയോ ചെയ്യാം. അതിനാല്‍ അവ പാക്കേജുകള്‍ പുതുക്കപ്പെടുമ്പോള്‍ സുരക്ഷിതമായി നീക്കം ചെയ്യാം." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +#, fuzzy +#| msgid "" +#| "The modules saved in /var/lib/freepops/lua_updates have a higher priority " +#| "than those from /usr/share/frepops/lua. It is thus recommended to remove " +#| "the former in order to avoid using outdated modules, unless you intend to " +#| "freeze the local modifications regardless of FreePOPs upgrades." +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"/var/lib/freepops/lua_updates-ല്‍ സംരക്ഷിച്ച മൊഡ്യുളുകള്‍ക്ക് /usr/share/frepops/lua -" +"ല്‍ സംരക്ഷിച്ച മൊഡ്യുളുകളേക്കാള്‍ പരിഗണന കൂടുതലായിരിക്കും. നിങ്ങള്‍ ഫ്രീപോപ്സ് (FreePOPs) " +"പുതുക്കലുകള്‍ പരിഗണിക്കാതെ ലോക്കല്‍ മാറ്റങ്ങള്‍ മരവിപ്പിക്കാന്‍ ഉദ്ദേശിക്കാത്തിടത്തോളം /var/lib/" +"freepops/lua_updates നീക്കം ചെയ്യാനാണ് ശുപാര്‍ശ ചെയ്യുന്നത്." --- freepops-0.2.9.orig/debian/po/templates.pot +++ freepops-0.2.9/debian/po/templates.pot @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+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" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" --- freepops-0.2.9.orig/debian/po/ja.po +++ freepops-0.2.9/debian/po/ja.po @@ -0,0 +1,105 @@ +# Copyright (C) 2008 Enrico Tassi +# as freepops Debian package's copyright holder. +# This file is distributed under the same license as the freepops package. +# Hideki Yamane (Debian-JP) , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops 0.2.7-1\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2008-07-30 19:21+0200\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "起動時、自動的に freepopsd を開始しますか?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"FreePOPs デーモンを毎回の起動時に自動的に開始できます。デフォルトではポート " +"2000 を利用します。この設定は /etc/default/freepops を編集することで変更でき" +"ます。" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "FreePOPs を chroot jail で動作させますか?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"chroot された環境で FreePOPs を起動することによって、システムのセキュリティを" +"向上させられる可能性があります。" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"jail は /var/lib/freepops/chroot-jail/ に作られます。通常の起動スクリプトは " +"chroot jail の root にある start.sh と呼ばれるスクリプトを呼び出してデーモン" +"の起動を行います。" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "アップグレードの際にローカルでの更新を削除しますか?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"freepops-updater-fltk ユーティリティや freepops-updater-dialog ユーティリティ" +"は /var/lib/freepops/lua_updates にローカルな更新をインストールします。" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"この様な更新は通常 FreePOPs の新規リリースで統合されたりしますし、更新プログ" +"ラムを実行することで再度ダウンロードできます。つまり、パッケージのアップグ" +"レードの際には、これらを削除しても問題ありません。" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"/var/lib/freepops/lua_updates に保存されるモジュールは /usr/share/freepops/" +"lua より高い優先度を持ちます。そのため、古いモジュールを使わないように以前の" +"ものを削除するのがお勧めです。そうしないと FreePOPs をアップグレードしたのに" +"も関わらずローカルでの変更に縛られるのを選ぶことになります。" --- freepops-0.2.9.orig/debian/po/eu.po +++ freepops-0.2.9/debian/po/eu.po @@ -0,0 +1,107 @@ +# Freepops debconf template basque translation +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Piarres Beobide , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops debconf\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-02 09:57+0200\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Euskara \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 0.11\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Abiaraztearen ondoren freepopsd automatikoki abiarazi?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"FreePOPs deabrua sistema abiaraztean automatikoki abiarazi daiteke. " +"Lehenespen bezala 2000 ataka erabiliko du. Ezarpen hau /etc/default/freepops " +"editatuaz aldatu daiteke." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "FreePoPs-rentzat chroot kaiola bat sortu?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"FreePoPs kaiolan itxitako ingurune batetan abiarazi daiteke sistema " +"segurtasuna hobetzeko." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Kaiola /var/lib/freepops/chroot-jail/-en sortuko da. Abiarazite script " +"arruntak deabrua abiarazteko chroot kaiola barneko erroan dagoen start.sh " +"deitu behar du." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Bertsio berritzean eguneraketa lokalak ezabatu?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"freepops-updater-fltk edo freepops-updater-dialog lanabesek eguneraketa " +"lokalak /var/lib/freepops/lua_updates-en instalatuko dituzte." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Eguneraketa hauek normalean FreePOPs bertsio berriagoetan integraturik " +"edondo dira edo eguneratzailea abiaraziz berriz deskargatu daitezke. Beraz " +"segurtasunik ezabatu daitezke paketea bertsio berritzean." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"/var/lib/freepops/lua_updates-en gordetako moduluek /usr/share/freepops/lua-" +"n gordetako moduluek baino lehentasun handiagoa dute. Horregatik horiek " +"ezabatzea gomendatzen da zaharkituriko moduluak erabiltzen ari ez zarela " +"ziurtatzeko, ez badituzu aldaketa lokalak izoztu nahi FreePoPs eguneraketei " +"jaramonik egin gabe." --- freepops-0.2.9.orig/debian/po/de.po +++ freepops-0.2.9/debian/po/de.po @@ -0,0 +1,107 @@ +# Translation of freepops debconf templates to German +# Copyright (C) Helge Kreutzmann , 2007, 2009. +# This file is distributed under the same license as the freepops package. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops 0.2.9\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2009-01-06 19:50+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Freepopsd automatisch nach jedem Systemstart starten?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Der FreePOPs-Daemon kann nach jedem Systemstart automatisch gestartet " +"werden. Standardmig wird er mit Port 2000 verknpft. Diese Einstellung " +"kann durch Bearbeiten der Datei /etc/default/freepops gendert werden." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Ein Chroot-Jail (abgeschlossene Umgebung) fr FreePOPs erstellen?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"FreePOPs kann in einer Chroot-Umgebung gestartet werden, um die Sicherheit " +"des Systems zu verbessern." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Die abgeschlossene Umgebung (Jail) wird in /var/lib/freepops/chroot-jail/ " +"erstellt. Das regulre Init-Skript wird sich darum kmmern, den Daemon zu " +"starten, indem ein Skript namens start.sh im Wurzelverzeichnis des Chroot-" +"Jails gestartet wird." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Lokale Aktualisierungen beim Upgrade entfernen?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Die Hilfswerkzeuge freepops-updater-fltk und freepops-updater-dialog " +"werden lokale Aktualisierungen in /var/lib/freepops/lua_updates installieren." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Diese Aktualisierungen werden typischerweise in zuknftige FreePOPs-" +"Verffentlichungen integriert oder knnen durch Aufruf des " +"Aktualisierungsprogramms erneut heruntergeladen werden. Daher knnen sie " +"ohne Probleme entfernt werden, wenn ein Upgrade des Pakets durchgefhrt wird." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Die unter /var/lib/freepops/lua_updates gespeicherten Module haben eine " +"hhere Prioritt als die Module aus /usr/share/freepops/lua. Es wird daher " +"empfohlen, erstere zu entfernen, um zu vermeiden, dass veraltete Module " +"verwendet werden, es sei denn, Sie mchten lokale nderungen unabhngig von " +"Upgrades von FreePOPs einfrieren." --- freepops-0.2.9.orig/debian/po/it.po +++ freepops-0.2.9/debian/po/it.po @@ -0,0 +1,143 @@ +# 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 +# tassi , 2004. +# +# +msgid "" +msgstr "" +"Project-Id-Version: freepops\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-01-14 18:45+0100\n" +"Last-Translator: Enrico Tassi \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Avviare freepopsd automaticamente al boot del sistema?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +#, fuzzy +#| msgid "" +#| "The FreePOPs daemon can be started automatically after each boot for you. " +#| "By default it will bind on port 2000, but you can change this behaviour " +#| "editing /etc/default/freepops" +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Il demone FreePOPs pu essere avviato automaticamente in fase di boot. Di " +"default il demone ascolta sulla porta 2000, ma puoi cambiare questo " +"comportamento modificando il file /etc/default/freepops" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +#, fuzzy +#| msgid "Create a chroot jail for freepops?" +msgid "Create a chroot jail for FreePOPs?" +msgstr "Creare una prigione chroot in cui lanciare FreePOPs?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Rimuovere update locali in fase di aggiornamento del pacchetto?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" + +#~ msgid "" +#~ "FreePOPs can be launched in a chrooted environment to improve security. " +#~ "The jail will be created in /var/lib/freepops/chroot-jail/. This will " +#~ "also create a start.sh script in the root of the jail that should be used " +#~ "to launch freepopsd. This is perfectly integrated with the init script, " +#~ "so you have to change nothing to automatically start freepopsd at boot. " +#~ "This feature is mostly untested, you are warned." +#~ msgstr "" +#~ "Per migliorare la sicurezza del sistema FreePOPs pu essere lanciato in " +#~ "una prigione chroot. La prigione verr creata in /var/lib/freepops/chroot-" +#~ "jail/. Inoltre verr generato uno script, chiamato start.sh, nella " +#~ "prigione che dovrebbe essere usato per lancire freepopsd. Tutto ci " +#~ "perfettamente integrato con gli script di init, quindi non devi " +#~ "modificare niente per avere FreePOPs avviato al boot dento la prigione. " +#~ "Questa feature poco testa, uomo avvisato..." + +#~ msgid "" +#~ "freepops-updater-fltk or freepops-updater-dialog can install local " +#~ "updates in /var/lib/freepops/lua_updates. These updates are usually " +#~ "integrated in the next freepops release or can be downloaded again " +#~ "running the updater, so they can be safely removed. Modules placed in /" +#~ "var/lib/freepops/lua_updates have higher priority than the ones in /usr/" +#~ "share/frepops/lua; if you don't remove them you may end up running " +#~ "outdated modules. Anyway the system administrator may use this mechanism " +#~ "to freeze some local modifications with respect to FreePOPs updates." +#~ msgstr "" +#~ "freepops-updater-fltk o freepops-updater-dialog possono installare " +#~ "localmente degli aggiornamentiin /var/lib/freepops/lua_updates. Di solito " +#~ "questi aggiornamenti sono integrati nellarelease successiva del programma " +#~ "o posso essere scaricati nuovamente lanciado l'updater, quindirimuoverli " +#~ "non costituisce nessun problema.I moduli situati in /var/lib/freepops/" +#~ "lua_updates hanno priorit superiore rispetto a quelli in/usr/share/" +#~ "freepops/lua; se non li rimuovi potresti rischiare di utilizzare dei " +#~ "moduli obsleti. L'amministratore potrebbe per utilizzare questo " +#~ "meccanismo per bloccare alcuni moduli, facendolisopravvivere a un update " +#~ "di FreePOPs." --- freepops-0.2.9.orig/debian/po/nl.po +++ freepops-0.2.9/debian/po/nl.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-01 17:35+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "" +"Wilt u dat freepopsd automatisch gestart wordt bij het opstarten van de " +"computer?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Het is mogelijk om de FreePOPs-achtergronddienst automatisch te starten " +"telkens de computer gestart wordt. Standaard bindt deze zich op poort 2000; " +"u kunt deze instelling wijzigen door het bestand /etc/default/freepops aan " +"te passen." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Wilt u een chroot-gevangenis aanmaken voor freepops?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"Om beveiliging van dit systeem te verhogen kan FreePOPs kan gestart worden " +"in een chroot-omgeving. " + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"De gevangenis wordt aangemaakt in /var/lib/freepops/chroot-jail/ . Het " +"normale init-script handelt het starten van de achtergronddienst af door een " +"script met de naam start.sh aan te roepen in de basismap van de chroot-" +"gevangenis." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Wilt u lokale updates verwijderen tijdens opwaarderen?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"De hulpprogramma's freepops-updater-fltk en freepops-updater-dialog " +"installeren lokale updates in /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Zo'n updates worden gewoonlijk geïntegreerd met verdere FreePOPs uitgaven, " +"of kunnen opnieuw opgehaald worden door de updater nogmaals uit te voeren " +"wanneer het pakket opgewaardeerd is." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"De in /var/lib/freepops/lua_updates opgeslagen modules hebben een hogere " +"prioriteit dan deze in /usr/share/freepops/lua. Het is dan ook aangeraden om " +"deze eerste te verwijderen en zo te voorkomen dat er verouderde modules " +"gebruikt worden (tenzij u de lokale aanpassingen wilt bewaren onafhankelijk " +"van FreePOPs-opwaarderingen)." + +#~ msgid "" +#~ "FreePOPs can be launched in a chrooted environment to improve security. " +#~ "The jail will be created in /var/lib/freepops/chroot-jail/. This will " +#~ "also create a start.sh script in the root of the jail that should be used " +#~ "to launch freepopsd. This is perfectly integrated with the init script, " +#~ "so you have to change nothing to automatically start freepopsd at boot. " +#~ "This feature is mostly untested, you are warned." +#~ msgstr "" +#~ "Om de veiligheid te verhogen kan FreePOPs opgestart worden in een chroot-" +#~ "omgeving. De gevangenis wordt aangemaakt in /var/lib/freepops/chroot-" +#~ "jail/. Hierbij wordt er ook een script 'start.sh' aangemaakt in de " +#~ "basismap van de gevangenis waarmee u freepopsd kunt opstarten. Dit is " +#~ "perfect geïntegreerd met het initscript en u hoeft dus niets te " +#~ "veranderen om freepopsd automatisch op te starten bij elke systeemstart. " +#~ "Deze feature is voor het grootste deel ongetest, u bent gewaarschuwd. " --- freepops-0.2.9.orig/debian/po/ta.po +++ freepops-0.2.9/debian/po/ta.po @@ -0,0 +1,104 @@ +# translation of freepop.po to TAMIL +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: freepop\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-01 17:17+0530\n" +"Last-Translator: Dr.T.Vasudevan \n" +"Language-Team: TAMIL \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "freepopsd தானியங்கியாக ஒவ்வொரு கணினி துவக்கத்திலும் துவக்க வேண்டுமா? " + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"ப்ரீபாப்ஸ் கிங்கரனை தானியங்கியாக ஒவ்வொரு கணினி துவக்கத்திலும் துவக்க இயலும். முன்னிருப்பாக " +"இது 2000 துறையை பிணைக்கும். இந்த அமைப்பை /etc/default/freepops கோப்பை திருத்தி " +"மாற்றலாம். " + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "ப்ரீபாப்ஸ் க்கு சிரூட் சிறை ஒன்றை உருவாக்கலாமா?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "கணினியின் பாதுகாப்பை அதிகமாக்க ப்ரீபாப்ஸ் ஐ சிரூட் சூழலில் துவக்க இயலும்." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"சிறை /var/lib/freepops/chroot-jail/ இல் உருவாக்கப்படும். வழக்கமான இனிட் குறு நிரல் " +"start.sh குறுநிரலை அழைப்பதன் மூலம் அந்த கிங்கரனை துவக்குவதை கவனித்துக் கொள்ளும்." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "மேம்படுத்தலின் போது உள்ளமை இற்றைப்படுத்தலை நீக்கவா? " + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"ப்ரீபாப்ஸ் இற்றைப்படுத்தல் எஃபெல்டிகே (freepops-updater-fltk) அல்லது ப்ரீபாப்ஸ் " +"இற்றைப்படுத்தல் உரையாடல் பயன்பாடுகள் உள்ளமை இற்றைப்படுத்தலை /var/lib/freepops/" +"lua_updates கோப்பில் செய்யும்." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"அத்தகைய இற்றைப்படுத்தல்கள் வழக்கமாக அடுத்த ப்ரீபாப்ஸ் பதிப்புகளுடன் ஒருங்கிணைக்கப்படும் அல்லது " +"இற்றைப்படுத்தியை இயக்கி தரவிறக்கிக் கொள்ளலாம். அதனால் பொதி மேம்படுத்தும் போது தாராளமாக " +"நீக்கப்படலாம். " + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"/var/lib/freepops/lua_updates இல் சேமித்த கூறுகள் /usr/share/freepops/lua வில் " +"உள்ளவற்றை விட முக்கியத்துவம் வாய்ந்தவை. ஆகவே நீங்கள் ப்ரீபாப்ஸ் மேம்படுத்தல் செய்தாலும் உள்ளமை " +"மாற்று அமைப்புகளை அப்படியே வைத்துக் கொள்ள முடிவு செய்தால் ஒழிய பழைய கூறுகளை " +"பயன்படுத்துவதை தவிர்க்க முந்தயவற்றை நீக்கிவிடலாம்." --- freepops-0.2.9.orig/debian/po/POTFILES.in +++ freepops-0.2.9/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] freepops.templates --- freepops-0.2.9.orig/debian/po/fi.po +++ freepops-0.2.9/debian/po/fi.po @@ -0,0 +1,103 @@ +msgid "" +msgstr "" +"Project-Id-Version: freepops_0.2.6-1\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-12-18 21:15+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Finnish\n" +"X-Poedit-Country: Finland\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Käynnistetäänkö freepopsd automaattisesti käynnistettäessä tietokone?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"FreePOPs-taustaohjelma voidaan käynnistää automaattisesti käynnistettäessä " +"tietokone. Oletuksena se kuuntelee porttia 2000. Tätä asetusta voidaan " +"muuttaa muokkaamalla tiedostoa /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Luodaanko FreePOPsille chroot-vankila?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"FreePOPs voidaan ajaa chroot-ympäristössä järjestelmän turvallisuuden " +"parantamiseksi." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Vankila luodaan hakemistoon /var/lib/freepops/chroot-jail/. Tavallinen " +"käynnistyskomentosarja pitää tällöin huolen taustaohjelman käynnistämisestä " +"kutsumalla chroot-vankilan juuressa olevaa ”start.sh”-komentosarjaa." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Poistetaanko paikalliset päivitykset päivitettäessä?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Työkalut freepops-updater-fltk ja freepops-updater-dialog asentavat " +"paikalliset päivitykset hakemistoon /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Tällaiset päivitykset yleensä sisällytetään myöhempiin FreePOPsin versioihin " +"tai voidaan ladata uudelleen ajamalla päivittäjä. Niinpä ne voidaan " +"turvallisesti poistaa, kun paketti päivitetään." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Hakemistoon /var/lib/freepops/lua_updates tallennetuilla moduuleilla on " +"korkeampi prioriteetti kuin hakemiston /usr/share/freepops/lua moduuleilla. " +"Täten on suositeltavaa poistaa ensin mainittu, jotta käytössä ei ole vanhoja " +"moduuleita, ellei tarkoituksena ole säilyttää paikallisia muutoksia " +"FreePOPsin päivityksistä huolimatta." --- freepops-0.2.9.orig/debian/po/cs.po +++ freepops-0.2.9/debian/po/cs.po @@ -0,0 +1,113 @@ +# +# 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: freepops\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-01 12:39+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Spustit freepopsd automaticky při každém zavádění systému?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Daemon FreePOPs se může spouštět automaticky při každém startu systému. Ve " +"výchozím nastavení se naváže na port 2000, ale můžete to změnit úpravou " +"konfiguračního souboru /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Vytvořit pro FreePOPs chrootované vězení?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"FreePOPs můžete spouštět v chrootovaném prostředí a o něco tak zvýšit " +"bezpečnost systému." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Vězení bude vytvořeno ve /var/lib/freepops/chroot-jail/. Init skript se pak " +"postará o spuštění daemona zavoláním skriptu start.sh v kořenu chrootovaného " +"vězení." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Odstranit při aktualizaci lokální aktualizace?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Nástroje freepops-updater-fltk a freepops-updater-dialog instalují lokální " +"aktualizace do /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Tuto aktualizace se obvykle stávají součástí novějších vydání FreePOPs, " +"případně mohou být znovu stáhnuty pomocí aktualizačního nástroje. Je tedy " +"bezpečné tyto aktualizace při instalaci novějšího balíku smazat." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Moduly uložené ve /var/lib/freepops/lua_updates mají přednost před těmi v /" +"usr/share/freepops/lua. Abyste předešli použití zastaralých modulů, je " +"doporučeno ty první smazat. (Pokud ovšem z nějakého důvodu nechcete používat " +"právě ty z /var/lib/freepops/lua_updates.)" --- freepops-0.2.9.orig/debian/po/da.po +++ freepops-0.2.9/debian/po/da.po @@ -0,0 +1,104 @@ +# Danish translation freepops. +# Copyright (C) 2010 freepops & nedenstående oversættere. +# This file is distributed under the same license as the freepops package. +# Joe Hansen , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2010-06-13 17:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Start freepopsd automatisk efter hver opstart?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Dæmonen FreePOPs kan startes automatisk efter hver opstart. Som standard vil " +"den binde sig til port 2000. Denne indstilling kan ændres ved at redigere " +"filen /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Opret et chrootfængsel til FreePOPs?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"FreePOPs kan startes i et chrooted miljø for at forbedre systemets sikkerhed." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Fængslet vil blive oprettet i /var/lib/freepops/chroot-jail/. Det regulære " +"initskript vil så tage sig af opstart af dæmonen ved at kalde et skript med " +"navnet start.sh i roden af chrootfængslet." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Fjern lokale opdateringer ved opgradering?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Værktøjerne freepops-updater-fltk eller freepops-updater-dialog vil " +"installere lokale opdateringer i /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Sådanne opdateringer er normalt integreret i senere FreePOPs' udgivelser " +"eller kan hentes igen ved at køre opdateringshåndteringen. De kan derfor " +"uden problemer fjernes, når pakken er opgraderet." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Modulerne gemt i /var/lib/freepops/lua_updates har en højere prioritet end " +"dem fra /usr/share/freepops/lua. Det anbefales derfor at fjerne den " +"tidligere for at undgå brug af udgåede moduler, med mindre du forventer at " +"låse de lokale ændringer uanset FreePOPs' opgraderinger." --- freepops-0.2.9.orig/debian/po/zh_CN.po +++ freepops-0.2.9/debian/po/zh_CN.po @@ -0,0 +1,100 @@ +# Chinese translations for freepops package +# freepops 软件包的简体中文翻译. +# Copyright (C) 2009 THE freepops'S COPYRIGHT HOLDER +# This file is distributed under the same license as the freepops package. +# Ji ZhengYu , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops HEAD\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2009-12-12 16:53+0800\n" +"Last-Translator: Ji ZhengYu \n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "是否每次开机后都自行启动 freepopsd ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"FreePOPs 服务可在每次开机后自行启动。默认情况下,它将会绑定至端口 2000。此设" +"置可以通过编辑/etc/default/freepops 文件来更改。" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "是否为FreePOPs 创建一个chroot 环境?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "FreePOPs 可以在chroot 环境中启动以改善系统安全性。" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"可以在/var/lib/freepops/chroot-jail/ 中创建chroot 环境。然后常规的启动脚本就" +"会通过调用chroot 环境根目录下一个名为start.sh 的脚本来启动服务。" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "升级时是否删除本地更新数据?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"freepops-updater-fltk 或freepops-updater-dialog 工具将在/var/lib/freepops/" +"lua_updates 中安装本地更新数据。" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"这些更新数据通常整合在新版FreePOPs 中,或者也可以通过运行升级器重新下载。因" +"此,在升级软件包时可以放心地删除它们。" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"保存于/var/lib/freepops/lua_updates 中的模块比保存于/usr/share/freepops/lua " +"中的拥有更高的优先级。因此建议删除前者,以避免使用过旧的模块。除非您打算永久" +"保留本地修改而无所谓升级。" --- freepops-0.2.9.orig/debian/po/fr.po +++ freepops-0.2.9/debian/po/fr.po @@ -0,0 +1,116 @@ +# translation of fr.po to French +# 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. +# +# Christian Perrier , 2007. +# Jean-Luc Coulon , 2002-2006 +msgid "" +msgstr "" +"Project-Id-Version: fr\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-13 08:32+0200\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Faut-il lancer freepopsd automatiquement au démarrage du système ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Le démon FreePOPs peut être lancé automatiquement au démarrage du système. " +"Par défaut, il sera lié au port 2000 mais cela peut être changé en modifiant " +"le fichier /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "" +"Faut-il créer un environnement sécurisé (« chroot jail ») pour FreePOPs ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"FreePOPs peut être lancé depuis un environnement sécurisé (« chroot jail ») " +"pour améliorer la sécurité du système." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"L'environnement sécurisé sera créé dans /var/lib/freepops/chroot-jail/. Le " +"script de démarrage lancera alors le démon via un script appelé « start." +"sh », situé à la racine de cet environnement sécurisé." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Faut-il supprimer les mises à jour locales lors de la mise à niveau ?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Les utilitaires « freepops-updater-fltk » et « freepops-updater-dialog » " +"installent des mises à jour dans le répertoire /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Ces mises à jour sont en général intégrées dans les versions ultérieures de " +"Free POPs ou peuvent être téléchargées à nouveau avec ces utilitaires. Il " +"est donc sans danger de les supprimer lors de la mise à niveau du paquet." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Les modules conservés dans /var/lib/freepops/lua_updates ont une priorité " +"supérieure à ceux de /usr/share/freepops/lua. Il est donc recommandé de les " +"supprimer afin d'éviter l'utilisation de modules périmés, à moins de vouloir " +"geler des modifications locales quels que soient les changements apportés " +"lors des mises à niveau de FreePOPs." --- freepops-0.2.9.orig/debian/po/sv.po +++ freepops-0.2.9/debian/po/sv.po @@ -0,0 +1,127 @@ +# 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: freepops 0.0.31-1\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-06 12:20+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Starta freepopsd automatiskt efter varje uppstart?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"FreePOPs-demonen kan startas automatiskt efter varje uppstart. Som standard " +"kommer den att binda sig till port 2000. Den här inställningen kan ändras " +"genom att redigera filen /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Skapa ett chroot-fängelse för FreePOPs?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"FreePOPs kan startas i en chrootad miljö för att förbättra säkerheten i " +"systemet." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Fängelset kommer att skapas i /var/lib/freepops/chroot-jail/. Det vanliga " +"initieringsskriptet kommer att ta hand om uppstarten av demonen genom att " +"anropa ett skript som heter start.sh i roten av chroot-fängelset." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Ta bort lokala uppdateringar vid uppgradering?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Verktygen freepops-updater-fltk eller freepops-updater-dialog kommer att " +"installera lokala uppdateringar i /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Sådana uppdateringar är vanligtvis integrerade i framtida utgågor av " +"FreePOPs eller kan hämtas ner igen genom att köra uppdateraren. Därför kan " +"de med säkerhet tas bort när paketet uppgraderas." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Modulerna som sparas i /var/lib/freepops/lua_updates har en högre prioritet " +"än de från /usr/share/frepops/lua. Det är därför rekommenderat att ta bort " +"den tidigare för att undvika att använda utdaterade moduler, såvida du inte " +"tänker frysa de lokala ändringarna oavsett uppgraderingarna för FreePOPs." + +#~ msgid "" +#~ "FreePOPs can be launched in a chrooted environment to improve security. " +#~ "The jail will be created in /var/lib/freepops/chroot-jail/. This will " +#~ "also create a start.sh script in the root of the jail that should be used " +#~ "to launch freepopsd. This is perfectly integrated with the init script, " +#~ "so you have to change nothing to automatically start freepopsd at boot. " +#~ "This feature is mostly untested, you are warned." +#~ msgstr "" +#~ "FreePOPs kan startas i ett chrootad miljö för att öka säkerheten. " +#~ "Fängelset kommer att skapas i /var/lib/freepops/chroot-jail/. Detta " +#~ "kommer också skapa ett skript start.sh i roten på fängelset som ska " +#~ "användas för att starta freepopsd. Detta är perfekt integrerat med init-" +#~ "skriptet så du behöver inte ändra något för att automatiskt starta " +#~ "freepopsd vid uppstart. Denna funktion är mestadels otestad så du är nu " +#~ "varnad." --- freepops-0.2.9.orig/debian/po/ru.po +++ freepops-0.2.9/debian/po/ru.po @@ -0,0 +1,107 @@ +# translation of freepops_debconf_ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2007. +msgid "" +msgstr "" +"Project-Id-Version: 0.2.2-2\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-03 21:00+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Запускать freepopsd автоматически при включении машины?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Демон FreePOPs может запускаться автоматически при включении машины. По " +"умолчанию, он подключается к порту 2000. Эту настройку можно изменить " +"отредактировав файл /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Создать окружение chroot для FreePOPs?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"Для большей безопасности системы FreePOPs можно запускать в окружении chroot." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Окружение будет создано в /var/lib/freepops/chroot-jail/. Стандартный " +"сценарий инициализации позаботится о старте демона из запустит сценарий " +"start.sh в корне окружения chroot." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Удалить локальные обновления?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Утилиты freepops-updater-fltk или freepops-updater-dialog устанавливают " +"локальные обновления в /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Эти обновления обычно входят в следующую версию FreePOPs или могут быть " +"скачаны снова при запуске программы обновления. Поэтому их можно спокойно " +"удалить при обновлении пакета." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Модули, сохранённые в /var/lib/freepops/lua_updates, имеют более высокий " +"приоритет чем имеющиеся в /usr/share/freepops/lua. Поэтому рекомендуется " +"удалить их, чтобы избежать использования устаревших модулей, если только вы " +"не собираетесь оставить их, несмотря на обновления FreePOPs." --- freepops-0.2.9.orig/debian/po/gl.po +++ freepops-0.2.9/debian/po/gl.po @@ -0,0 +1,105 @@ +# Galician translation of freepops's debconf templates +# This file is distributed under the same license as the freepops package. +# Jacobo Tarrio , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-01 19:40+0200\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "¿Iniciar freepopsd automaticamente despois de iniciar o ordenador?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"O servizo FreePOPs pódese iniciar automaticamente despois de cada inicio. " +"Por defecto, hase vincular ao porto 2000. Esta configuración pódese " +"modificar editando o ficheiro /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "¿Crear unha gaiola chroot para FreePOPs?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"FreePOPs pódese iniciar nun ambiente chroot para mellorar a seguridade do " +"sistema." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"Hase crear a gaiola en /var/lib/freepops/chroot-jail/. O script de inicio " +"habitual hase encargar de iniciar o servizo executando un script chamado " +"\"start.sh\" na raíz da gaiola chroot." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "¿Eliminar as actualizacións locais ao actualizar?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"As utilidades freepops-updater-fltk ou freepops-updater-dialog han instalar " +"as actualizacións locais en /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Esas actualizacións adoitan integrarse nas versións posteriores de FreePOPs " +"ou pódense descargar de novo executando o actualizador. Polo tanto, pódense " +"eliminar de xeito seguro ao actualizar o paquete." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Os módulos gravados en /var/lib/freepops/lua_updates teñen unha prioridade " +"superior á dos de /usr/share/freepops/lua. Polo tanto, recoméndase que " +"elimine aquel directorio para evitar empregar módulos anticuados, a menos " +"que pretenda conxelar as modificacións locais independentemente das " +"actualizacións de FreePOPs." --- freepops-0.2.9.orig/debian/po/es.po +++ freepops-0.2.9/debian/po/es.po @@ -0,0 +1,172 @@ +# freepops po-debconf translation to Spanish +# Copyright (C) 2005 Software in the Public Interest +# This file is distributed under the same license as the freepops package. +# +# Changes: +# - Initial translation +# César Gómez Martín +# +# - Revision and sync +# Rudy Godoy Guillén , 2007 +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Equipo de traducción al español, por favor, lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: freepops 0.2.2\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-05-14 09:24-0500\n" +"Last-Translator: César Gómez Martín \n" +"Language-Team: Debian l10n spanish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Spanish\n" +"X-Poedit-Country: SPAIN\n" +"X-Poedit-SourceCharset: utf-8\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "" +"¿Desea iniciar freepopsd automáticamente después de cada arranque del " +"sistema?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"Puede iniciar automáticamente el demonio FreePOPs en cada arranque del " +"sistema. Por omisión se le asignará el puerto 2000. Puede cambiar esta " +"configuración editando /etc/default/freepops" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "¿Desea crear un entorno enjaulado para FreePOPs?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"Para mejorar la seguridad, FreePOPs se puede ejecutar en un entorno " +"enjaulado." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"La jaula se creará en /var/lib/freepops/chroot-jail/. Luego, el programa " +"init se encargará de ejecutar el demonio invocando un programa llamado " +"«start.sh» en la raíz de la jaula." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "¿Desea eliminar actualizaciones locales cuando actualice?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"freepops-updater-fltk o freepops-updater-dialog pueden instalar " +"actualizaciones locales en «/var/lib/freepops/lua_updates»." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Estas actualizaciones están usualmente integradas en la próxima versión de " +"FreePOPs o se pueden descargar nuevamente ejecutando el actualizador, de " +"modo que se pueden eliminar sin problema." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Los módulos almacenados en /var/lib/freepops/lua_updates tienen mayor " +"prioridad que aquellos en /usr/share/frepops/lua; si no los elimina podría " +"estar ejecutando módulos desactualizados. De cualquier forma el " +"administrador del sistema podría utilizar este mecanismo para bloquear " +"algunas modificaciones locales en lo que respecta a actualizaciones de " +"FreePOPs." + +#~ msgid "" +#~ "FreePOPs can be launched in a chrooted environment to improve security. " +#~ "The jail will be created in /var/lib/freepops/chroot-jail/. This will " +#~ "also create a start.sh script in the root of the jail that should be used " +#~ "to launch freepopsd. This is perfectly integrated with the init script, " +#~ "so you have to change nothing to automatically start freepopsd at boot. " +#~ "This feature is mostly untested, you are warned." +#~ msgstr "" +#~ "Para mejorar la seguridad, FreePOPs se puede ejecutar en un entorno " +#~ "enjaulado. La jaula se creará en /var/lib/freepops/chroot-jail/. Esto " +#~ "también creará un script «start.sh» en la raíz de la jaula, este script " +#~ "se deberá usar para iniciar freepopsd. Esto está perfectamente integrado " +#~ "con el programa de inicio (init), por lo que no tiene que cambiar nada " +#~ "para iniciar freepopsd automáticamente en el arranque del sistema. Esta " +#~ "característica no está bien probada, queda advertido." + +#~ msgid "" +#~ "freepops-updater-fltk or freepops-updater-dialog can install local " +#~ "updates in /var/lib/freepops/lua_updates. These updates are usually " +#~ "integrated in the next freepops release or can be downloaded again " +#~ "running the updater, so they can be safely removed. Modules placed in /" +#~ "var/lib/freepops/lua_updates have higher priority than the ones in /usr/" +#~ "share/frepops/lua; if you don't remove them you may end up running " +#~ "outdated modules. Anyway the system administrator may use this mechanism " +#~ "to freeze some local modifications with respect to FreePOPs updates." +#~ msgstr "" +#~ "freepops-updater-fltk o freepops-updater-dialog pueden instalar " +#~ "actualizaciones locales en «/var/lib/freepops/lua_updates». Estas " +#~ "actualizaciones están usualmente integradas en la próxima versión de " +#~ "freepops o se pueden descargar nuevamente ejecutando el actualizador, de " +#~ "modo que se pueden eliminar sin problema. Los módulos ubicados en /var/" +#~ "lib/freepops/lua_updates tienen mayor prioridad que aquellos en /usr/" +#~ "share/frepops/lua; si no los elimina podría estar ejecutando módulos " +#~ "desactualizados. De cualquier forma el administrador del sistema podrúa " +#~ "utilizar este mecanismo para bloquear algunas modificaciones locales en " +#~ "lo que respecta a actualizaciones de FreePOPs." --- freepops-0.2.9.orig/debian/po/pt_BR.po +++ freepops-0.2.9/debian/po/pt_BR.po @@ -0,0 +1,110 @@ +# freepops Brazilian Portuguese translation +# Copyright (C) 2007 André Luís Lopes +# This file is distributed under the same license as the freepops package. +# André Luís Lopes , 2007. +# Eder L. Marques (frolic) , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: freepops-0.2.5-1\n" +"Report-Msgid-Bugs-To: gareuselesinge@debian.org\n" +"POT-Creation-Date: 2007-05-01 12:07+0200\n" +"PO-Revision-Date: 2007-10-23 16:28-0200\n" +"Last-Translator: Eder L. Marques (frolic) \n" +"Language-Team: l10n Portuguese \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"pt_BR utf-8\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "Start freepopsd automatically after each boot?" +msgstr "Iniciar o freepopsd automaticamente após cada inicialização?" + +#. Type: boolean +#. Description +#: ../freepops.templates:2001 +msgid "" +"The FreePOPs daemon can be started automatically after each boot. By " +"default, it will bind to port 2000. This setting may be changed by editing " +"the /etc/default/freepops file." +msgstr "" +"O daemon FreePOPs pode ser iniciado automaticamente após cada inicialização. " +"Por padrão, ele escutará na porta 2000. Esta configuração pode ser " +"modificada através da edição do arquivo /etc/default/freepops." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "Create a chroot jail for FreePOPs?" +msgstr "Criar uma jaula chroot para o FreePOPs?" + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"FreePOPs can be launched in a chrooted environment to improve the system's " +"security." +msgstr "" +"O FreePOPs pode ser executado em um ambiente chroot para aumentar a " +"segurança do sistema." + +#. Type: boolean +#. Description +#: ../freepops.templates:3001 +msgid "" +"The jail will be created in /var/lib/freepops/chroot-jail/. The regular init " +"script will then take care of launching the daemon by calling a script named " +"start.sh at the root of the chroot jail." +msgstr "" +"A jaula será criada em /var/lib/freepops/chroot-jail/. O init script " +"habitual irá cuidar da execução do daemon chamando um script nomeado start." +"sh na raiz da jaula chroot." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "Remove local updates on upgrade?" +msgstr "Remover atualizações locais em processos de atualização?" + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The freepops-updater-fltk or freepops-updater-dialog utilities will install " +"local updates in /var/lib/freepops/lua_updates." +msgstr "" +"Os utilitários freepops-updater-fltk ou freepops-updater-dialog instalarão " +"atualizações locais em /var/lib/freepops/lua_updates." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"Such updates are usually integrated in further FreePOPs releases or can be " +"downloaded again by running the updater. Therefore, they may safely be " +"removed when the package is upgraded." +msgstr "" +"Tais atualizações são geralmente integradas em futuras versões do FreePOPs " +"ou podem ser baixadas novamente executando o atualizador. Conseqüentemente, " +"elas podem ser removidas com segurança quando o pacote é atualizado." + +#. Type: boolean +#. Description +#: ../freepops.templates:4001 +msgid "" +"The modules saved in /var/lib/freepops/lua_updates have a higher priority " +"than those from /usr/share/freepops/lua. It is thus recommended to remove " +"the former in order to avoid using outdated modules, unless you intend to " +"freeze the local modifications regardless of FreePOPs upgrades." +msgstr "" +"Os módulos salvos em /var/lib/freepops/lua_updates têm uma prioridade maior " +"que aqueles em /usr/share/freepops/lua. Sendo assim, recomenda-se remover o " +"primeiro a fim de evitar o uso de módulos desatualizados, a menos que você " +"tenha a intenção de congelar as modificações locais independente das " +"atualizações do FreePOPs."