diff --git a/debian/changelog b/debian/changelog index 14c92e618d66c1bf52f72cdda21fbcb6d5f6fc4b..45a090e031901e703bc4a8f2d21dace6d027a113 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +libapache2-mod-python (3.3.1-8) unstable; urgency=medium + + [ Emilio Pozuelo Monfort ] + * Unconditionally enable the Apache module upon first install, instead + of asking the user through debconf. Closes: #512755. + * Remove debconf templates and build magic because of the above change. + + [ Sandro Tosi ] + * debian/patches/10_bts521965.dpatch + - fix a FTBFS due to new apr (> 1.3.x); thanks to Daniel Schepler for the + report; Closes: #521965 (RC hence urgency=medium) + * debian/control + - bump Standards-Version to 3.8.2 (no changes needed) + * debian/libapache2-mod-python.postinst + - use 'dpkg --compare-versions' + + -- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Wed, 08 Jul 2009 00:16:42 +0200 + libapache2-mod-python (3.3.1-7) unstable; urgency=low [ Sandro Tosi ] diff --git a/debian/control b/debian/control index 6b1e6bad4840d66f7d88696fd59f9925c6c94d45..e579b52c9ea81c22edf64ad91b6d7f8299d9332d 100644 --- a/debian/control +++ b/debian/control @@ -3,17 +3,17 @@ Section: python Priority: optional Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Uploaders: Robert S. Edmonds <edmonds@debian.org> -Build-Depends: debhelper (>= 5.0.38), debconf, autoconf, python-dev (>= 2.4.3-11), - apache2-threaded-dev (>= 2.2.3-1), dpatch, python-central (>= 0.5.6), po-debconf +Build-Depends: debhelper (>= 5.0.38), autoconf, python-dev (>= 2.4.3-11), + apache2-threaded-dev (>= 2.2.3-1), dpatch, python-central (>= 0.5.6) XS-Python-Version: current Vcs-Svn: svn://svn.debian.org/python-modules/packages/libapache2-mod-python/trunk/ Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/libapache2-mod-python/trunk/ Homepage: http://www.modpython.org/ -Standards-Version: 3.8.0 +Standards-Version: 3.8.2 Package: libapache2-mod-python Architecture: any -Depends: ${misc:Depends}, ${python:Depends}, debconf | debconf-2.0, ${shlibs:Depends}, apache2.2-common, apache2 +Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}, apache2.2-common, apache2 Suggests: libapache2-mod-python-doc Provides: ${python:Provides}, libapache2-mod-python${python:Versions} Replaces: libapache2-mod-python2.4 (<< 3.2.8-3), libapache2-mod-python2.3 (<< 3.2.8-3) diff --git a/debian/libapache2-mod-python.config b/debian/libapache2-mod-python.config deleted file mode 100644 index cf44f6d0d9a5001f33dbc62330e09a977f86c434..0000000000000000000000000000000000000000 --- a/debian/libapache2-mod-python.config +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -e - -# Source debconf library -. /usr/share/debconf/confmodule - -if [ -e /etc/apache2/mods-enabled/python.load ]; then - db_set libapache2-mod-python/enable_module true -else - # We want to enable the module by default during initial configuration - if [ "$1" = "configure" ] ; then - db_set libapache2-mod-python/enable_module true - else - db_set libapache2-mod-python/enable_module false - fi -fi - -# Enable the Apache 2 module? -db_input medium libapache2-mod-python/enable_module || true -db_go diff --git a/debian/libapache2-mod-python.postinst b/debian/libapache2-mod-python.postinst index 034e1f14893ffdc338a17b9be1ecb55be0666305..80fe6ecdbbdb788865b0834d70529c7b4df83232 100644 --- a/debian/libapache2-mod-python.postinst +++ b/debian/libapache2-mod-python.postinst @@ -1,24 +1,52 @@ #!/bin/sh - set -e -# Source debconf library -. /usr/share/debconf/confmodule +#DEBHELPER# + +OLDENABLED=/etc/apache2/mods-enabled/mod_python.load +OLDAVAILABLE=/etc/apache2/mods-available/mod_python.load + +# Before 3.3.1-3, the module had a different name, so if we are upgrading +# from such an old package, re-enable the module if it was enabled +if dpkg --compare-versions "$2" lt-nl "3.3.1-3"; then + test -L $OLDENABLED && rm -f $OLDENABLED && a2enmod python >/dev/null || true + test -e $OLDAVAILABLE && rm -f $OLDAVAILABLE +fi + -# mod_python.load renamed to python.load in 3.3.1-3 -test -L /etc/apache2/mods-enabled/mod_python.load && rm -f /etc/apache2/mods-enabled/mod_python.load -test -e /etc/apache2/mods-available/mod_python.load && rm -f /etc/apache2/mods-available/mod_python.load +reload_apache() +{ + if apache2ctl configtest 2>/dev/null; then + if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d apache2 force-reload || exit $? + else + /etc/init.d/apache2 force-reload || exit $? + fi + else + echo "Your apache2 configuration is broken, so we're not restarting it for you." + fi +} PYTHON_LOAD=/etc/apache2/mods-enabled/python.load -if [ "$1" = "configure" -o "$1" = "reconfigure" ]; then - db_get libapache2-mod-python/enable_module - if [ "$RET" = "true" ]; then - test ! -e $PYTHON_LOAD -o -L $PYTHON_LOAD && ln -sf ../mods-available/python.load $PYTHON_LOAD - else - test -L $PYTHON_LOAD && rm -f $PYTHON_LOAD - fi + +# Inspired in libapache2-mod-php5.postinst + +if [ "$1" = "configure" -a -n "$2" ]; then + # Upgrading from a previous version. Only restart apache + # if the python mod is enabled + if [ -e $PYTHON_LOAD ]; then + reload_apache + fi + exit 0 fi -#DEBHELPER# + +if [ "$1" = "configure" ]; then + # Not upgrading from a previous version, enable the module + if [ -e /etc/apache2/apache2.conf ]; then + a2enmod python >/dev/null || true + reload_apache + fi +fi exit 0 diff --git a/debian/libapache2-mod-python.postrm b/debian/libapache2-mod-python.postrm index d9f90752e0679aa1463174b34e185e3b50c24eed..5aa8f69d575fe10d66764cce6a6076ce42ec218f 100644 --- a/debian/libapache2-mod-python.postrm +++ b/debian/libapache2-mod-python.postrm @@ -3,9 +3,7 @@ set -e if [ "$1" = "remove" -o "$1" = "purge" ]; then - if [ -L /etc/apache2/mods-enabled/python.load ]; then - rm -f /etc/apache2/mods-enabled/python.load - fi + a2dismod python fi # mod_python.load renamed to python.load in 3.3.1-3 diff --git a/debian/libapache2-mod-python.templates b/debian/libapache2-mod-python.templates deleted file mode 100644 index f149c8272d3b995f7c98c20874694bbd4bff7506..0000000000000000000000000000000000000000 --- a/debian/libapache2-mod-python.templates +++ /dev/null @@ -1,20 +0,0 @@ -# These templates have been reviewed by the debian-l10n-english -# team -# -# If modifications/additions/rewording are needed, please ask -# debian-l10n-english@lists.debian.org for advice. -# -# Even minor modifications require translation updates and such -# changes should be coordinated with translators and reviewers. - -Template: libapache2-mod-python/enable_module -Type: boolean -_Description: Enable the Apache 2 mod_python module? - The mod_python module must be enabled if hosted web sites are using - its features. - . - If you choose this option, a symbolic link for mod_python will be created - in /etc/apache2/mods_enabled/. If you refuse this option, this link - will be removed if it exists. - . - Apache 2 must be restarted manually after changing this option. diff --git a/debian/patches/00list b/debian/patches/00list index 906f4505d1560960a7fb9deebd80972dc604376e..80ebce3137b4e8d27776f75ecd63f3594a432bd1 100644 --- a/debian/patches/00list +++ b/debian/patches/00list @@ -1,3 +1,4 @@ 01_configure 02_makefile 03_includes +10_bts521965 diff --git a/debian/patches/10_bts521965.dpatch b/debian/patches/10_bts521965.dpatch new file mode 100644 index 0000000000000000000000000000000000000000..501c66879b87ec106097f3fec1b42ba16096ffc5 --- /dev/null +++ b/debian/patches/10_bts521965.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 10_bts521965.dpatch by Sandro Tosi <morph@debian.org> +## +## DP: fix a FTBFS due to new apr > 1.3.x (bb is the bucket brigade) +## DP: From: http://www.modpython.org/pipermail/mod_python/2008-October/025724.html + +@DPATCH@ +diff -urNad libapache2-mod-python~/src/connobject.c libapache2-mod-python/src/connobject.c +--- libapache2-mod-python~/src/connobject.c 2006-12-03 05:36:37.000000000 +0100 ++++ libapache2-mod-python/src/connobject.c 2009-07-07 11:39:36.000000000 +0200 +@@ -139,7 +139,7 @@ + bytes_read = 0; + + while ((bytes_read < len || len == 0) && +- !(b == APR_BRIGADE_SENTINEL(b) || ++ !(b == APR_BRIGADE_SENTINEL(bb) || + APR_BUCKET_IS_EOS(b) || APR_BUCKET_IS_FLUSH(b))) { + + const char *data; diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in deleted file mode 100644 index 60a7b6d013e3e4d50df04f9a136bfcf7ac3f6b28..0000000000000000000000000000000000000000 --- a/debian/po/POTFILES.in +++ /dev/null @@ -1 +0,0 @@ -[type: gettext/rfc822deb] libapache2-mod-python.templates diff --git a/debian/po/cs.po b/debian/po/cs.po deleted file mode 100644 index f3833e998e92c2e60101659e89e8c168122e3f09..0000000000000000000000000000000000000000 --- a/debian/po/cs.po +++ /dev/null @@ -1,58 +0,0 @@ -# -# 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: libapache2-mod-python\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-26 21:49+0100\n" -"Last-Translator: Miroslav Kure <kurem@debian.cz>\n" -"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Povolit modul mod_python pro Apache 2?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"Pokud chcete na webových stránkách používat modul mod_python, musíte jej " -"nejprve povolit." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Odpovíte-li na tuto otázku kladně, v /etc/apache2/mods_enabled/ se pro " -"mod_python vytvoří symbolický odkaz. Odpovíte-li ne, bude symbolický odkaz " -"smazán." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "Po změně této volby musíte ještě ručně restartovat Apache 2." diff --git a/debian/po/de.po b/debian/po/de.po deleted file mode 100644 index 6f33f1ee1ef2331e9870278526de718e94bffe69..0000000000000000000000000000000000000000 --- a/debian/po/de.po +++ /dev/null @@ -1,53 +0,0 @@ -# translation of po-debconf template to German -# This file is distributed under the same license as the libapache2-mod-python package. -# Copyright (C): -# -# Matthias Julius <mdeb@julius-net.net>, 2006, 2007. -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python 3.3.1-3\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-14 22:20-0500\n" -"Last-Translator: Matthias Julius <mdeb@julius-net.net>\n" -"Language-Team: German <debian-l10n-german@lists.debian.org>\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 -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Mod_python-Modul für Apache 2 aktivieren?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"Das mod_python-Modul muss aktiviert sein, falls gehostete Websites dessen " -"Fähigkeiten nutzen." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Falls Sie diese Option wählen, wird ein symbolischer Link in /etc/apache2/" -"mods_enabled/ angelegt. Falls Sie diese Option ablehnen, wird der Link " -"entfernt, sofern er existiert." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "" -"Apache 2 muss manuell neu gestartet werden, nachdem diese Option geändert " -"wurde." diff --git a/debian/po/es.po b/debian/po/es.po deleted file mode 100644 index eebc86bbddbd9161bbb9e62d2f90e051455a8110..0000000000000000000000000000000000000000 --- a/debian/po/es.po +++ /dev/null @@ -1,70 +0,0 @@ -# libapache2-mod-python po-debconf translation to Spanish -# Copyright (C) 2007, 2008 Software in the Public Interest -# This file is distributed under the same license as the beep package. -# -# Changes: -# - Initial translation -# Manuel Porras Peralta, 2007 -# - Updates: -# Francisco Javier Cuadrado <fcocuadrado@gmail.com>, 2008 -# -# 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 y normas 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: libapache2-mod-python 3.3.1-5\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2008-11-17 20:02+0100\n" -"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n" -"Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "¿Desea activar el módulo «mod_python» de Apache 2?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "The mod_python module must be enabled if hosted web sites are using its features." -msgstr "El módulo «mod_python» se debe activar si los sitios web están usando sus funcionalidades." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "If you choose this option, a symbolic link for mod_python will be created in /etc/apache2/mods_enabled/. If you refuse this option, this link will be removed if it exists." -msgstr "Si elige esta opción, se creará un enlace enlace simbólico para «mod_python» en «/etc/apache2/mods_enabled/». Si no elige esta opción, este enlace simbólico se eliminará si existiese." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "Tendrá que reiniciar manualmente Apache 2 después de cambiar esta opción." - -#~ msgid "" -#~ "You need to enable the module to use websites written for mod_python." -#~ msgstr "" -#~ "Necesita activar el módulo para usar sitios web escritos para " -#~ "«mod_python»." - diff --git a/debian/po/eu.po b/debian/po/eu.po deleted file mode 100644 index a4f17048552eb84c73bef5381d5b2317f74c4a66..0000000000000000000000000000000000000000 --- a/debian/po/eu.po +++ /dev/null @@ -1,53 +0,0 @@ -# translation of libapache2-mod-python debconf template to Euskara -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Xabier Bilbao <xabidu@gmail.com>, 2008. -# Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>, 2008. -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2008-07-18 23:45+0200\n" -"Last-Translator: Xabier Bilbao <xabidu@gmail.com>\n" -"Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\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 -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Gaitu Apache 2 mod_python modulua?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"Mod_python moduluak gaiturik egon behar du ostataturiko webguneek haren " -"eginbideak erabiltzen badituzte." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Aukera hau hautatzen baduzu, mod_python-entzako esteka sinboliko bat " -"sortuko da /etc/apache2/mods_enabled/ direktorioan. Aukerari uko egiten " -"badiozu, ezabatu egingo da esteka hau (halako estekarik badago)." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "Apache 2 eskuz berrabiarazi behar da aukera hau aldatu ondoren." - diff --git a/debian/po/fi.po b/debian/po/fi.po deleted file mode 100644 index 7f4542f95b5ad3228a8c66e2d4a10ca3face562c..0000000000000000000000000000000000000000 --- a/debian/po/fi.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python 3.3.1-3\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-13 19:15+0200\n" -"Last-Translator: Esko Arajärvi <edu@iki.fi>\n" -"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\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 -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Aktivoidaanko Apache 2:n mod_python-moduuli?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"mod_python-moduulin tulee olla aktivoituna, jos isännöidyt verkkosivut " -"käyttävät sen ominaisuuksia." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Jos valitsen tämän vaihtoehdon, hakemistoon /etc/apache2/mods_enabled/ " -"tehdään symbolinen linkki mod_pythonia varten. Jos et valitse tätä, linkki " -"poistetaan, jos se on olemassa." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "" -"Apache 2 tulee käynnistää käsin uudelleen, kun tätä valintaa on muutettu." diff --git a/debian/po/fr.po b/debian/po/fr.po deleted file mode 100644 index 6bcb00008346924cd68abbdd3d065216b3f32f58..0000000000000000000000000000000000000000 --- a/debian/po/fr.po +++ /dev/null @@ -1,58 +0,0 @@ -# -# 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: libapache2-mod-python 3.2.8\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-13 15:36+0100\n" -"Last-Translator: Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>\n" -"Language-Team: French <debian-l10n-french@lists.debian.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Faut-il activer le module mod_python pour Apache2 ?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"Le module mod_python devra être activé pour pouvoir utiliser des sites web " -"qui utilisent ses fonctionnalités." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Si vous choisissez cette option, un lien symbolique sera créé pour " -"mod_python dans /etc/apache2/mods-enabled/. Ce lien sera supprimé dans le " -"cas contraire." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "Apache2 devra être redémarré après la modification de cette option." diff --git a/debian/po/gl.po b/debian/po/gl.po deleted file mode 100644 index 00305c5453ced60c8049bca21c52f1bd67490419..0000000000000000000000000000000000000000 --- a/debian/po/gl.po +++ /dev/null @@ -1,56 +0,0 @@ -# Galician translation of libapache2-mod-python's debconf templates -# This file is distributed under the same license as the libapache2-mod-python package. -# Jacobo Tarrio <jtarrio@debian.org>, 2007, 2008. -# -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2008-05-13 00:29+0100\n" -"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n" -"Language-Team: Galician <proxecto@trasno.net>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "¿Activar o módulo mod_python de Apache 2?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"É necesario activar o módulo mod_python se ten sitios web hospedados que " -"empregan as súas características." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Se escolle esta opción, hase crear unha ligazón simbólica para mod_python " -"en /etc/apache2/mods_enabled/. Se rexeita esta opción, hase eliminar esta " -"ligazón se existe." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "" -"É necesario reiniciar Apache 2 manualmente despois de cambiar esta opción." - -#~ msgid "" -#~ "You need to enable the module to use websites written for mod_python." -#~ msgstr "" -#~ "Ten que activar o módulo para empregar sitios web escritos para " -#~ "mod_python." diff --git a/debian/po/it.po b/debian/po/it.po deleted file mode 100644 index de1e8eb280e303adf2d2ff41e5bc013436388648..0000000000000000000000000000000000000000 --- a/debian/po/it.po +++ /dev/null @@ -1,52 +0,0 @@ -# Italian (it) translation of debconf templates for libapache2-mod-python -# Copyright (C) 2006 Software in the Public Interest -# This file is distributed under the same license as the libapache2-mod-python package. -# Luca Monducci <luca.mo@tiscali.it>, 2006, 2007. -# -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python 3.3.1 italian debconf templates\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-17 13:34+0100\n" -"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n" -"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Attivare il modulo mod_python per Apache 2?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"È necessario attivare il modulo mod_python se si ospitano siti web che usano " -"le sue funzionalità." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Se si accetta, verrà creato un link simbolico per mod_python in /etc/apache2/" -"mods_enabled/. Qualora si rifiuti, il link simbolico, se presente, verrà " -"rimosso." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "" -"Apache 2 deve essere riavviato manualmente dopo la modifica di questa " -"opzione." diff --git a/debian/po/ja.po b/debian/po/ja.po deleted file mode 100644 index 6e71783712122a6918719cd25940bde94be817f2..0000000000000000000000000000000000000000 --- a/debian/po/ja.po +++ /dev/null @@ -1,74 +0,0 @@ -# -# 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: libapache2-mod-python 3.3.1-3\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-12 09:11+0900\n" -"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n" -"Language-Team: Japanese <debian-japanese@lists.debian.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Apache2 の mod_python モジュールを有効にしますか?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"運用している web サイトが mod_python の機能を使っている場合、mod_python モ" -"ジュールを有効にする必要があります。" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"このオプションを有効にした場合、/etc/apache2/mods-enabled/ に mod_python のシ" -"ンボリックリンクが作成されます。無効にした場合、シンボリックリンクは削除され" -"ます。" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "このオプションを変更後、Apache2 を手動で再起動する必要があります。" - -#~ msgid "" -#~ "You need to enable the module to use websites written for mod_python." -#~ msgstr "" -#~ "mod_python を使うように書かれた web サイトの為にはモジュールを有効にする必" -#~ "要があります。" - -#~ msgid "" -#~ "Choosing to enable the module creates a symbolic link for mod_python in /" -#~ "etc/apache2/mods_enabled/, chosing to not enable the module removes that " -#~ "link." -#~ msgstr "" -#~ "モジュールを有効にするのを選択すると、/etc/apache2/mods_enabled/ に " -#~ "mod_python へのシンボリックリンクが作成されます。有効にしないとこのリンク" -#~ "は削除されます。" diff --git a/debian/po/nl.po b/debian/po/nl.po deleted file mode 100644 index ac14c7ec563ee5fe014c7405fbb9ac5ea40c6c2c..0000000000000000000000000000000000000000 --- a/debian/po/nl.po +++ /dev/null @@ -1,51 +0,0 @@ -# Dutch libapache2-mod-python po-debconf translation, -# Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the libapache2-mod-python package. -# Vincent Zweije <zweije@xs4all.nl>, 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python 3.3.1-6\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2009-01-27 20:27+0000\n" -"Last-Translator: Vincent Zweije <zweije@xs4all.nl>\n" -"Language-Team: Debian-Dutch <debian-l10n-dutch@lists.debian.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=iso-8859-1\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "De Apache 2 mod_python module activeren?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"De mod_python-module dient te worden geactiveerd indien websites op deze " -"machine hier gebruik van willen maken." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Activeren van de module maakt een symbolische koppeling aan voor mod_python " -"in /etc/apache2/mods_enabled/; niet activeren van de module verwijdert de " -"koppeling." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "" -"Na wijzigen van deze optie dient apache 2 handmatig te worden herstart." \ No newline at end of file diff --git a/debian/po/pl.po b/debian/po/pl.po deleted file mode 100644 index 3c5fabb948c52e4daa483ab8a7e7270d9c36b522..0000000000000000000000000000000000000000 --- a/debian/po/pl.po +++ /dev/null @@ -1,51 +0,0 @@ -# translation of libapache2-mod-python.po to Polish -# Copyright (C) 2007 -# This file is distributed under the same license as the PACKAGE package. -# -# Wojciech Zareba <wojtekz@comp.waw.pl>, 2007. -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-26 11:34+0100\n" -"Last-Translator: Wojciech Zareba <wojtekz@comp.waw.pl>\n" -"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\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 -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Czy włączyć moduł mod_python dla Apache 2?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"Moduł mod_python musi być włączony, jeśli obsługiwane strony www używają " -"jego funkcjonalności." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Jeśli wybierzesz tę opcję, zostanie utworzony link symboliczny dla " -"mod_python w katalogu /etc/apache2/mods_enabled/. Jeśli odrzucisz, link " -"zostanie usunięty, jeśli jest." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "Apache 2 musi być zrestartowane ręcznie po zmianie tej opcji." diff --git a/debian/po/pt.po b/debian/po/pt.po deleted file mode 100644 index 198ebe8ba62cd0373b2e0da6b27be95bc967c912..0000000000000000000000000000000000000000 --- a/debian/po/pt.po +++ /dev/null @@ -1,58 +0,0 @@ -# Portuguese translation for libapache-mod-python debconf messages. -# Copyright (C) 2007 Pedro Ribeiro <p.m42.ribeiro@gmail.com> -# This file is distributed under the same license as the libapache-mod-pyhton package. -# Pedro Ribeiro <p.m42.ribeiro@gmail.com>, 2007 -# -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python_3.2.10\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-12 22:12+0000\n" -"Last-Translator: Pedro Ribeiro <p.m42.ribeiro@gmail.com>\n" -"Language-Team: Portuguese <traduz@debianpt.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-Language: Portuguese\n" -"X-Poedit-Country: PORTUGAL\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Activar o módulo mod_python do Apache 2?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"O módulo mod_python necessita de estar activado se os sites alojados " -"utilizaram as suas funcionalidades." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Se escolher esta opção, será criada uma ligação simbólica para mod_python " -"em /etc/apache2/mods_enabled/. Se recusar esta opção, essa ligação será " -"removida se existir." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "O Apache 2 tem que ser manualmente reiniciado após mudar esta opção." - -#~ msgid "" -#~ "You need to enable the module to use websites written for mod_python." -#~ msgstr "" -#~ "Precisa de activar o módulo para alojar websites escritos para o " -#~ "mod_python." diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po deleted file mode 100644 index ab39efd931a857b8b828bd78d94d1425da00084b..0000000000000000000000000000000000000000 --- a/debian/po/pt_BR.po +++ /dev/null @@ -1,53 +0,0 @@ -# libapache2-mod-python Brazilian Portuguese translation -# Copyright (C) 2008 libapache2-mod-python's PACKAGE COPYRIGHT HOLDER -# This file is distributed under the same license as the libapache2-mod-python package. -# André Luís Lopes <andrelop@debian.org>, 2007. -# Eder L. Marques (frolic) <frolic@debian-ce.org>, 2008. -# -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2008-08-19 15:58-0300\n" -"Last-Translator: Eder L. Marques (frolic) <frolic@debian-ce.org>\n" -"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." -"org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"pt_BR utf-8\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Habilitar o módulo mod_python do Apache 2?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"O módulo mod_python precisa ser habilitado se sites web hospedados estão " -"usando suas funcionalidades." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Se você escolher esta opção, uma ligação simbólica para mod_python será " -"criada em /etc/apache2/mods_enabled/. Se você recusar esta opção, esta " -"ligação será removida se ela existir." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "O Apache 2 precisa ser reiniciado manualmente após alterar esta opção." diff --git a/debian/po/ru.po b/debian/po/ru.po deleted file mode 100644 index e0c5741564bf01d861d398510d5c06608147d25c..0000000000000000000000000000000000000000 --- a/debian/po/ru.po +++ /dev/null @@ -1,53 +0,0 @@ -# translation of 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 <kozlov.y@gmail.com>, 2007. -msgid "" -msgstr "" -"Project-Id-Version: 3.3.1-3\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2007-11-18 09:36+0300\n" -"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n" -"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\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 -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Включить модуль mod_python для Apache 2?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"Если размещаемые на машине сайты используют модуль mod_python, то его нужно " -"включить." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Если вы ответите утвердительно, в каталоге /etc/apache2/mods_enabled/ для " -"mod_python будет создана символическая ссылка. Если ответ будет " -"отрицательный, такая ссылка будет удалена (если она существует)." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "После изменения данной настройки Apache 2 нужно перезапустить вручную." diff --git a/debian/po/sk.po b/debian/po/sk.po deleted file mode 100644 index 98e7e9aa0205523ca6d669be782b0c3e51dc845c..0000000000000000000000000000000000000000 --- a/debian/po/sk.po +++ /dev/null @@ -1,42 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python 3.3.1-2\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2008-05-29 08:59+0100\n" -"Last-Translator: Ivan Masár <helix84@centrum.sk>\n" -"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Zapnúť modul Apache 2 mod_python?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "The mod_python module must be enabled if hosted web sites are using its features." -msgstr "Modul mod_python musí byť zapnutý ak ho využívajú hosťované webstránky." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "If you choose this option, a symbolic link for mod_python will be created in /etc/apache2/mods_enabled/. If you refuse this option, this link will be removed if it exists." -msgstr "Ak zvolíte zapnúť tento modul, vytvorí sa symbolický odkaz mod_python v /etc/apache2/mods_enabled/. Ak nezvolíte zapnúť, tento odkaz sa odstráni (ak existuje)." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "Po zmene tejto voľby budete musieť manuálne reštartovať Apache 2." - -#~ msgid "" -#~ "You need to enable the module to use websites written for mod_python." -#~ msgstr "" -#~ "Aby ste mohli používať webstránky napísané pre mod_python, musíte zapnúť " -#~ "tento modul." - diff --git a/debian/po/sv.po b/debian/po/sv.po deleted file mode 100644 index 1c3b7aa7d3eb0d1bd294b1e98bdc1a30246298c9..0000000000000000000000000000000000000000 --- a/debian/po/sv.po +++ /dev/null @@ -1,66 +0,0 @@ -# Translators, if you are not familiar with the PO format, gettext -# documentation is worth reading, especially sections dedicated to -# this format, e.g. by running: -# info -n '(gettext)PO Files' -# info -n '(gettext)Header Entry' -# Some information specific to po-debconf are available at -# /usr/share/doc/po-debconf/README-trans -# or http://www.debian.org/intl/l10n/po-debconf/README-trans -# Developers do not need to manually edit POT or PO files. -# , fuzzy -# -# -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python 3.1.3-3\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2008-07-14 12:55+0100\n" -"Last-Translator: Martin Bagge <brother@bsnet.se>\n" -"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-Language: Swedish\n" -"X-Poedit-Country: Sweden\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Aktiva Apache 2-modulen mod_python?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" -"Modulen mod_python måste aktiveras om webbplatser på systemet använder någon " -"av dess funktioner." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" -"Om du svara ja på denna fråga kommer en symbolisk länk att skapas för " -"mod_python i /etc/apache2/mods_enabled/. Om du svarar nej kommer länken tas " -"bort om den redan finns." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "NOTERA: Du behöver starta om Apache 2 manuellt efter denna ändring." - -#, fuzzy -#~ msgid "" -#~ "You need to enable the module to use websites written for mod_python." -#~ msgstr "" -#~ "Ska modulen mod_python aktiveras i din Apache 2-konfiguration? Du behöver " -#~ "aktivera modulen för att använda websidor skriva för mod_python." diff --git a/debian/po/templates.pot b/debian/po/templates.pot deleted file mode 100644 index 2f8cafb0dc29cd3b2e828f9ccc704da5bbcbb5c9..0000000000000000000000000000000000000000 --- a/debian/po/templates.pot +++ /dev/null @@ -1,46 +0,0 @@ -# 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 <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"The mod_python module must be enabled if hosted web sites are using its " -"features." -msgstr "" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "" -"If you choose this option, a symbolic link for mod_python will be created " -"in /etc/apache2/mods_enabled/. If you refuse this option, this link will be " -"removed if it exists." -msgstr "" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "" diff --git a/debian/po/tr.po b/debian/po/tr.po deleted file mode 100644 index 0b08036d1b348f37f80af44740395dd88b8aa5fa..0000000000000000000000000000000000000000 --- a/debian/po/tr.po +++ /dev/null @@ -1,43 +0,0 @@ -# Turkish translation of libapache2-mod-python debconf template. -# Copyright (C) 2008 -# This file is distributed under the same license as the libapache2-mod-python package. -# Mert Dirik <mertdirik@gmail.com>, 2008. -# -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python 3.3.1-3\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2008-07-18 00:50+0200\n" -"Last-Translator: Mert Dirik <mertdirik@gmail.com>\n" -"Language-Team: Debian L10n Turkish <debian-l10n-turkish@lists.debian.org>\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-Poedit-Language: Turkish\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Apache 2 mod_python modülü etkinleştirilsin mi?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "The mod_python module must be enabled if hosted web sites are using its features." -msgstr "Eğer ev sahipliği yaptığınız siteler mod_python özelliklerini kullanıyorsa bu modül etkinleştirilmelidir." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "If you choose this option, a symbolic link for mod_python will be created in /etc/apache2/mods_enabled/. If you refuse this option, this link will be removed if it exists." -msgstr "Eğer bu seçeneği seçerseniz /etc/apache2/mods_enabled/ konumunda mod_python için bir sembolik bağlantı oluşturulacak. Eğer bu seçeneği kabul etmezseniz bu bağlantı önceden mevcutsa bile kaldırılacak." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "Bu seçenek değiştirildikten sonra Apache 2 elle yeniden başlatılmalıdır." - diff --git a/debian/po/vi.po b/debian/po/vi.po deleted file mode 100644 index e8fbfebd9cfcb8753c208d1a1f7062a1490b5df1..0000000000000000000000000000000000000000 --- a/debian/po/vi.po +++ /dev/null @@ -1,56 +0,0 @@ -# Vietnamese Translation for libapache2-mod-python. -# Copyright © 2007 Free Software Foundation, Inc. -# Clytie Siddall <clytie@riverland.net.au>, 2005-2007. -# -msgid "" -msgstr "" -"Project-Id-Version: libapache2-mod-python 3.3.1-3.1\n" -"Report-Msgid-Bugs-To: Source: libapache2-mod-python@packages.debian.org\n" -"POT-Creation-Date: 2007-11-11 19:39+0000\n" -"PO-Revision-Date: 2008-07-19 22:08+0930\n" -"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" -"Language-Team: Vietnamese <vi-VN@googlegroups.com>\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.6.3b1\n" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Enable the Apache 2 mod_python module?" -msgstr "Bật mô-đun « mod_python » của Apache 2 không?" - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "The mod_python module must be enabled if hosted web sites are using its features." -msgstr "Mô-đun mod_python phải được hiệu lực nếu trang Web đang sử dụng tính năng của nó." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "If you choose this option, a symbolic link for mod_python will be created in /etc/apache2/mods_enabled/. If you refuse this option, this link will be removed if it exists." -msgstr "Bật tùy chọn này thì một liên kết tượng trưng cho mod_python sẽ được tạo trong thư mục «/etc/apache2/mods-enabled/». Không thì liên kết này bị gỡ bỏ nếu nó đã có." - -#. Type: boolean -#. Description -#: ../libapache2-mod-python.templates:2001 -msgid "Apache 2 must be restarted manually after changing this option." -msgstr "Apache 2 phải được khởi chạy lại một cách thủ công sau khi thay đổi tùy chọn này." - -#~ msgid "" -#~ "You need to enable the module to use websites written for mod_python." -#~ msgstr "" -#~ "Bạn cần phải hiệu lực mô-đun này để sử dụng nơi Mạng nào được viết cho « " -#~ "mod_python »." -#~ msgid "" -#~ "Choosing to enable the module creates a symbolic link for mod_python in /" -#~ "etc/apache2/mods_enabled/, chosing to not enable the module removes that " -#~ "link." -#~ msgstr "" -#~ "Việc chọn bật mô-đun này tạo một liên kết tượng trưng cho « mod_python » " -#~ "trong thư mục « /etc/apache2/mods_enabled/ »; không thì liên kết đó bị gỡ " -#~ "bỏ." - diff --git a/debian/rules b/debian/rules index aaab5d4a6b5d93542501db85ec83dcf02ef0da8a..36b48441640e47425267a52dba582c160922aa8b 100755 --- a/debian/rules +++ b/debian/rules @@ -39,8 +39,6 @@ clean: unpatch [ ! -f Makefile ] || $(MAKE) distclean rm -f config.log configure src/include/mod_python.h - debconf-updatepo - dh_clean install: build @@ -68,7 +66,6 @@ install: build binary-indep: build install dh_testdir -i dh_testroot -i - dh_installdebconf -i dh_installdocs -i dh_installexamples -i dh_installmenu -i @@ -87,7 +84,6 @@ binary-arch: build install dh_testdir -a dh_testroot -a dh_pycentral -plibapache2-mod-python - dh_installdebconf -a dh_installdocs -a dh_installexamples -a dh_installmenu -a