[SCM] Debian packaging of libhtml-mason-perl branch, master, updated. debian/1%1.46-1-9-g1be3c96

Florian Schlichting fschlich at zedat.fu-berlin.de
Sun Nov 13 02:08:47 UTC 2011


The following commit has been merged in the master branch:
commit 31e2d8e7325cd6827d04830e6533d936c36a3de2
Author: Florian Schlichting <fschlich at zedat.fu-berlin.de>
Date:   Fri Nov 11 22:52:35 2011 +0000

    kill -examples debconf stuff

diff --git a/debian/libhtml-mason-perl-examples.config b/debian/libhtml-mason-perl-examples.config
deleted file mode 100644
index ee7ae97..0000000
--- a/debian/libhtml-mason-perl-examples.config
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/bash
-
-set -e
-
-dc_true() {
-    db_get "$1"
-    [ "$RET" = "true" ]
-}
-
-. /usr/share/debconf/confmodule
-
-found_apache1="no"
-found_existing="no"
-
-for variant in "" "perl" "ssl"; do
-
-APACHE_CONF_DIR=/etc/apache${variant:+-${variant}}/conf.d
-APACHE_CONF_FRAGMENT=$APACHE_CONF_DIR/libhtml-mason-perl-examples.conf
-APACHE_CTL=/usr/sbin/apache${variant:+-${variant}}ctl
-
-if [ -d $APACHE_CONF_DIR -a -x $APACHE_CTL ]; then
-    found_apache1="yes"
-    if [ -f $APACHE_CONF_FRAGMENT ]; then
-	found_existing="yes"
-    fi
-fi
-
-done
-
-APACHE2_CONF_DIR=/etc/apache2/conf.d
-APACHE2_CONF_FRAGMENT=$APACHE2_CONF_DIR/libhtml-mason-perl-examples.conf
-APACHE2_CTL=/usr/sbin/apache2ctl
-
-if [ -d $APACHE2_CONF_DIR -a -x $APACHE2_CTL ]; then
-    found_apache2="yes"
-    if [ -f $APACHE2_CONF_FRAGMENT ]; then
-	found_existing="yes"
-    fi
-fi
-
-if [ "$found_apache1" = "yes" -o "$found_apache2" = "yes" ]; then
-    db_input medium libhtml-mason-perl/install_examples || true
-    db_go || true
-    if [ "$found_existing" = "yes" ] || dc_true libhtml-mason-perl/install_examples; then
-	db_input medium libhtml-mason-perl/auto_restart_apache || true
-    fi
-fi
-
-db_go || true
diff --git a/debian/libhtml-mason-perl-examples.postinst b/debian/libhtml-mason-perl-examples.postinst
deleted file mode 100644
index 80d1f90..0000000
--- a/debian/libhtml-mason-perl-examples.postinst
+++ /dev/null
@@ -1,100 +0,0 @@
-#!/bin/bash
-
-set -e
-
-##DEBHELPER##
-
-if [ -n "$_DEBIAN_DEBUG_MASON_EXAMPLES" ]; then
-    vflag="-v"
-else
-    vflag=""
-fi
-vecho() {
-    if [ -n "$_DEBIAN_DEBUG_MASON_EXAMPLES" ]; then echo "DebianMason: $*" >&2; fi
-}
-vcmd() {
-    if [ -n "$_DEBIAN_DRYRUN_MASON_EXAMPLES" ]; then
-	echo "DebianMason<cmd>: $*" >&2
-    else
-	command "$@"
-    fi
-}
-
-cp_or_gunzip() {
-    if [ -f "$1.gz" ]; then
-	vcmd gzip $vflag -dc <"$1.gz" >"$2"
-    else
-	vcmd cp $vflag "$1" "$2"
-    fi
-}
-
-dc_true() {
-    db_get "$1"
-    vecho "debconf: $1=$RET"
-    [ "$RET" = "true" ]
-}
-
-. /usr/share/debconf/confmodule
-
-# Check for apache-perl/apache-ssl ?
-EXAMPLE_DOCROOT=/var/www/mason_example
-
-case "$1" in
-
-configure)
-
-for variant in "" "perl" "ssl" "apache2"; do
-
-if [ "$variant" = "apache2" ]; then
-    APACHE_CONF_DIR=/etc/apache2/conf.d
-    APACHE_CTL=/usr/sbin/apache2ctl
-    APACHE_CONF_SOURCE=/usr/share/doc/libhtml-mason-perl-examples/examples/mason_apache2_example.conf
-    APACHE_INIT_SCRIPT=apache2
-else
-    APACHE_CONF_DIR=/etc/apache${variant:+-${variant}}/conf.d
-    APACHE_CTL=/usr/sbin/apache${variant:+-${variant}}ctl
-    APACHE_CONF_SOURCE=/usr/share/doc/libhtml-mason-perl-examples/examples/mason_example.conf
-    APACHE_INIT_SCRIPT=apache${variant:+-${variant}}
-fi
-
-APACHE_CONF_FRAGMENT=$APACHE_CONF_DIR/libhtml-mason-perl-examples.conf
-vecho variant=$variant APACHE_INIT_SCRIPT=$APACHE_INIT_SCRIPT APACHE_CONF_DIR=$APACHE_CONF_DIR APACHE_CTL=$APACHE_CTL
-
-# Only if apache is installed
-if [ -d $APACHE_CONF_DIR -a -x $APACHE_CTL ]; then
-    if [ ! -f $APACHE_CONF_FRAGMENT ] && dc_true libhtml-mason-perl/install_examples; then
-        # If the configs are not installed, and the user wants them
-	vecho Installing in $APACHE_CONF_DIR
-	if [ -f $APACHE_CONF_DIR/libhtml-mason-perl ]; then
-            # If 1.25-2 era config found, just use that
-	    vcmd mv $vflag -- $APACHE_CONF_DIR/libhtml-mason-perl $APACHE_CONF_FRAGMENT
-	else
-	    cp_or_gunzip $APACHE_CONF_SOURCE $APACHE_CONF_FRAGMENT
-	fi
-	if [ -d /usr/lib/cgi-bin ]; then
-	    cp_or_gunzip /usr/share/doc/libhtml-mason-perl-examples/examples/mason_example.cgi /usr/lib/cgi-bin/mason_example.cgi
-	    vcmd chmod $vflag 0755 /usr/lib/cgi-bin/mason_example.cgi
-	fi
-	vcmd cp -R $vflag /usr/share/doc/libhtml-mason-perl-examples/examples/mason_example /var/www
-	vcmd find $EXAMPLE_DOCROOT -name '*.gz' | xargs gunzip $vflag -f --
-	if [ -x $APACHE_CTL ] && dc_true libhtml-mason-perl/auto_restart_apache; then
-	    invoke-rc.d $APACHE_INIT_SCRIPT reload || true
-	fi
-    elif [ -f $APACHE_CONF_FRAGMENT ] && ! dc_true libhtml-mason-perl/install_examples; then
-	# If the configs are installed, and the user doesn't want them
-	vecho Uninstalling from $APACHE_CONF_DIR
-	vcmd rm $vflag -f $APACHE_CONF_FRAGMENT
-	vcmd rm $vflag -f /usr/lib/cgi-bin/mason_example.cgi
-	vcmd rm -rf $vflag $EXAMPLE_DOCROOT
-	if [ -x $APACHE_CTL ] && dc_true libhtml-mason-perl/auto_restart_apache; then
-	    invoke-rc.d $APACHE_INIT_SCRIPT reload || true
-	fi
-    fi
-fi
-
-done
-
-;;
-esac
-
-exit 0
diff --git a/debian/libhtml-mason-perl-examples.postrm b/debian/libhtml-mason-perl-examples.postrm
deleted file mode 100644
index 88d5434..0000000
--- a/debian/libhtml-mason-perl-examples.postrm
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-
-set -e
-
-if [ -n "$_DEBIAN_DEBUG_MASON_EXAMPLES" ]; then
-    vflag="-v"
-else
-    vflag=""
-fi
-vecho() {
-    if [ -n "$_DEBIAN_DEBUG_MASON_EXAMPLES" ]; then echo "DebianMason: $*" >&2; fi
-}
-
-dc_true() {
-    db_get "$1"
-    vecho "debconf: $1=$RET"
-    [ "$RET" = "true" ]
-}
-
-if [ -f /usr/share/debconf/confmodule ]; then
-    . /usr/share/debconf/confmodule
-fi
-
-EXAMPLE_DOCROOT=/var/www/mason_example
-
-for variant in "" "perl" "ssl"; do
-
-APACHE_CONF_DIR=/etc/apache${variant:+-${variant}}/conf.d
-APACHE_CONF_FRAGMENT=$APACHE_CONF_DIR/libhtml-mason-perl-examples.conf
-APACHE_CTL=/usr/sbin/apache${variant:+-${variant}}ctl
-
-# We need to remove the examples even if we aren't being purged, since
-# otherwise the "PerlModule" lines will break the Apache config.
-
-if [ -f $APACHE_CONF_FRAGMENT ]; then
-    rm $vflag -f $APACHE_CONF_FRAGMENT /usr/lib/cgi-bin/mason_example.cgi
-    rm -rf $vflag $EXAMPLE_DOCROOT
-    if [ -x $APACHE_CTL ] && dc_true libhtml-mason-perl/auto_restart_apache; then
-	$APACHE_CTL graceful || true
-    fi
-fi
-
-done
-
-##DEBHELPER##
-
-exit 0
diff --git a/debian/libhtml-mason-perl-examples.templates b/debian/libhtml-mason-perl-examples.templates
deleted file mode 100644
index 5d00977..0000000
--- a/debian/libhtml-mason-perl-examples.templates
+++ /dev/null
@@ -1,14 +0,0 @@
-Template: libhtml-mason-perl/install_examples
-Type: boolean
-Default: true
-_Description: Install example Mason components in /var/www/mason_example?
- To help you get started with HTML::Mason, some example components can be
- installed and enabled in /var/www/mason_example, and you can visit them at
- http://localhost/mason_example/ in your web browser.
-
-Template: libhtml-mason-perl/auto_restart_apache
-Type: boolean
-Default: true
-_Description: Automatically reload Apache configuration?
- After installing or removing the example Mason components, the Apache
- configuration needs to be reloaded for them to be accessible.
diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in
deleted file mode 100644
index d32805a..0000000
--- a/debian/po/POTFILES.in
+++ /dev/null
@@ -1 +0,0 @@
-[type: gettext/rfc822deb] libhtml-mason-perl-examples.templates
diff --git a/debian/po/cs.po b/debian/po/cs.po
deleted file mode 100644
index 8ebfe4d..0000000
--- 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: libhtml-mason-perl\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-04-06 13:39+0100\n"
-"PO-Revision-Date: 2005-07-04 17:12+0200\n"
-"Last-Translator: Miroslav Kure <kurem at debian.cz>\n"
-"Language-Team: Czech <debian-l10n-czech at 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
-#: ../libhtml-mason-perl-examples.templates:4
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr "Instalovat ukázkové komponenty Masonu do /var/www/mason_example?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"Pro snadnější start s HTML::Mason si můžete nainstalovat ukázkové "
-"komponenty do /var/www/mason_example a poté je zkoumat webovým prohlížečem "
-"na http://localhost/mason_example/."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid "Automatically reload Apache configuration?"
-msgstr "Nahrát konfiguraci Apache automaticky?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"Po (od)instalaci ukázkových komponent Masonu musíte znovu nahrát konfiguraci "
-"Apache, aby se změna opravdu projevila."
diff --git a/debian/po/da.po b/debian/po/da.po
deleted file mode 100644
index d29adc8..0000000
--- a/debian/po/da.po
+++ /dev/null
@@ -1,52 +0,0 @@
-# Danish translation libhtml-mason-perl.
-# Copyright (C) 2010 libhtml-mason-perl & nedenstående oversættere.
-# This file is distributed under the same license as libhtml-mason-perl package.
-# Joe Hansen <joedalton2 at yahoo.dk>, 2010.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: libhtml-mason-perl\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-25 10:29+0100\n"
-"PO-Revision-Date: 2010-11-28 17:30+01:00\n"
-"Last-Translator: Joe Hansen <joedalton2 at yahoo.dk>\n"
-"Language-Team: Danish <debian-l10n-danish at 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
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr "Installer eksempler på Masonkomponenter i /var/www/mason_example?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"For at hjælpe dig i gang med HTML::Mason, kan nogle eksempelkomponenter "
-"installeres og aktiveres i /var/www/mason_example, og du kan besøge dem på "
-"http://localhost/mason_example/ i din internetbrowser."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid "Automatically reload Apache configuration?"
-msgstr "Genindlæs automatisk Apachekonfiguration?"
-
-# de bliver vel ikke tilgængelige hvis de er fjernet!!! vist en lille engelsk fejl her.
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"Efter installation eller fjernelse af eksempelkomponenterne i Mason "
-"skal Apachekonfigurationen genindlæses, for at de bliver tilgængelige."
-
diff --git a/debian/po/de.po b/debian/po/de.po
deleted file mode 100644
index ab3c2d1..0000000
--- a/debian/po/de.po
+++ /dev/null
@@ -1,54 +0,0 @@
-# translation of po-debconf template to German
-# Copyright (C) 2006, Matthias Julius
-# This file is distributed under the same license as the libhtml-mason-perl package.
-#
-# Matthias Julius <mdeb at julius-net.net>, 2006.
-msgid ""
-msgstr ""
-"Project-Id-Version: libhtml-mason-perl 1:1.35-1\n"
-"Report-Msgid-Bugs-To: libhtml-mason-perl at packages.debian.org\n"
-"POT-Creation-Date: 2006-11-12 04:32+0100\n"
-"PO-Revision-Date: 2006-11-27 23:05-0500\n"
-"Last-Translator: Matthias Julius <mdeb at julius-net.net>\n"
-"Language-Team: German <debian-l10n-german at 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
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr "Beispiele für Mason-Komponenten in /var/www/mason_example installieren?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"Um Ihnen am Anfang zu helfen, können einige Beispielkomponenten in "
-"/var/www/mason_example installiert und aktiviert werden. Sie können diese "
-"unter http://localhost/mason_example in Ihrem Web-Browser aufrufen."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid "Automatically reload Apache configuration?"
-msgstr "Apache-Konfiguration automatisch neu laden?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"Nach der Installation oder dem Entfernen der Beispielkomponenten für Mason "
-"muss die Apache-Konfiguration neu geladen werden, um diese verfügbar zu "
-"machen."
-
-
diff --git a/debian/po/es.po b/debian/po/es.po
deleted file mode 100644
index 20d8fc7..0000000
--- a/debian/po/es.po
+++ /dev/null
@@ -1,76 +0,0 @@
-# libhtml-mason-perl po-debconf translation to Spanish
-# Copyright (C) 2005 Software in the Public Interest
-# This file is distributed under the same license as the libhtml-mason-perl package.
-# 
-# Changes:
-#  - Initial translation
-#         César Gómez Martín <cesar.gomez at gmail.com>
-# 
-#   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: libhtml-mason-perl 1:1.31.01-1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 04:32+0100\n"
-"PO-Revision-Date: 2005-12-09 10:27+0100\n"
-"Last-Translator: César Gómez Martín <cesar.gomez at gmail.com>\n"
-"Language-Team: Debian l10n spanish <debian-l10n-spanish at 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: Spanish\n"
-"X-Poedit-Country: SPAIN\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr ""
-"¿Desea instalar los componentes de ejemplo de Mason en /var/www/"
-"mason_example?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"Para ayudarle a comenzar con HTML::Mason, se pueden instalar y habilitar "
-"algunos componentes de ejemplo en /var/www/mason_example, y puede visitarlos "
-"en http://localhost/mason_example/ con su navegador."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid "Automatically reload Apache configuration?"
-msgstr "¿Desea recargar automáticamente la configuración de Apache?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"Después de instalar o eliminar los componentes de ejemplo de Mason se "
-"necesita recargar la configuración de Apache para ellos para que estén "
-"accesibles."
diff --git a/debian/po/fr.po b/debian/po/fr.po
deleted file mode 100644
index 3b91685..0000000
--- a/debian/po/fr.po
+++ /dev/null
@@ -1,60 +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: PACKAGE VERSION\n"
-"POT-Creation-Date: 2004-04-06 13:39+0100\n"
-"PO-Revision-Date: 2004-04-06 22:48+0100\n"
-"Last-Translator: Christian Perrier <bubulle at debian.org>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr ""
-"Faut-il installer les exemples de composants Mason dans /var/www/"
-"mason_example ?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"Pour débuter plus facilement avec HTML::Mason, certains exemples de "
-"composants peuvent être installés et activés dans le répertoire /var/www/"
-"mason_example. Vous pourrez alors les essayer à l'adresse http://localhost/"
-"mason_example/ avec votre navigateur."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid "Automatically reload Apache configuration?"
-msgstr "Faut-il recharger la configuration d'Apache ?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"Après l'installation des exemples de composants de Mason, la configuration "
-"d'Apache doit être rechargée avec la commande « apachectl graceful »."
diff --git a/debian/po/ja.po b/debian/po/ja.po
deleted file mode 100644
index 3494f5a..0000000
--- a/debian/po/ja.po
+++ /dev/null
@@ -1,60 +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: libhtml-mason-perl 1:1.26-1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-04-06 13:39+0100\n"
-"PO-Revision-Date: 2004-07-04 21:24+0900\n"
-"Last-Translator: Hideki Yamane <henrich at samba.gr.jp>\n"
-"Language-Team: Japanese <debian-japanese at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=EUC-JP\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr ""
-"Mason ¥³¥ó¥Ý¡¼¥Í¥ó¥ÈÎã¤ò /var/www/mason_example ¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹¤«?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"HTML::Mason ¤ò»Ï¤á¤ë¼ê½õ¤±¤È¤·¤Æ¡¢¥³¥ó¥Ý¡¼¥Í¥ó¥È¤ÎÎ㤬 /var/www/"
-"mason_example ¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ìÍ­¸ú¤Ë¤Ê¤ê¡¢web ¥Ö¥é¥¦¥¶¤Ç http://localhost/"
-"mason_example/ ¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤¹¡£"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid "Automatically reload Apache configuration?"
-msgstr "¼«Æ°Åª¤Ë Apache ¤ÎÀßÄê¤òºÆÆɤ߹þ¤ß¤·¤Þ¤¹¤«?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"Mason ¥³¥ó¥Ý¡¼¥Í¥ó¥ÈÎã¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Þ¤¿¤Ïºï½ü¸å¡¢¥¢¥¯¥»¥¹¤Ç¤­¤ë¤è¤¦¤Ë "
-"Apache ¤ÎÀßÄê¤òºÆÆɤ߹þ¤ß¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£"
diff --git a/debian/po/nl.po b/debian/po/nl.po
deleted file mode 100644
index b5d4313..0000000
--- a/debian/po/nl.po
+++ /dev/null
@@ -1,42 +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 at ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: libhtml-mason-perl\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-13 19:41+0100\n"
-"PO-Revision-Date: 2007-03-07 20:19+0100\n"
-"Last-Translator: Bart Cornelis <cobaco at skolelinux.no>\n"
-"Language-Team: debian-l10n-dutch <debian-l10n-dutch at 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: Dutch\n"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr "Wilt u voorbeeldcomponenten voor Mason installeren in /var/www/mason_example?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid "To help you get started with HTML::Mason, some example components can be installed and enabled in /var/www/mason_example, and you can visit them at http://localhost/mason_example/ in your web browser."
-msgstr "Om u op te weg te helpen met HTML::Mason kunnen er enkele voorbeeldcomponenten geïnstalleerd worden in /var/www/mason_example; u kunt deze dan benaderen in uw webbrowser op het adres http://localhost/mason_example/ ."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid "Automatically reload Apache configuration?"
-msgstr "Wilt u de Apache-configuratie automatisch herladen?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid "After installing or removing the example Mason components, the Apache configuration needs to be reloaded for them to be accessible."
-msgstr "Na het installeren of verwijderden van de Mason-voorbeeldcomponenten dient de Apache-configuratie herladen zodat deze componenten toegankelijk zullen zijn."
-
diff --git a/debian/po/pt.po b/debian/po/pt.po
deleted file mode 100644
index 51ac693..0000000
--- a/debian/po/pt.po
+++ /dev/null
@@ -1,50 +0,0 @@
-# Portuguese translation for libhtml-mason-perl debconf messages
-# Copyright (C) 2007 Luís Picciochi
-# This file is distributed under the same license as the libhtml-mason-perl
-# Luís Picciochi, 2007.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: libhtml-mason-perl 1:1.35-3"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-04-01 04:31+0200\n"
-"PO-Revision-Date: 2007-04-10 00:58+0000\n"
-"Last-Translator: Luís Picciochi <Pitxyoki at Gmail.com>\n"
-"Language-Team: Portuguese <traduz at debianpt.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr "Instalar exemplos de componentes Mason em /var/www/mason_example?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"Para o ajudar a começar com o HTML::Mason, alguns exemplos de componentes "
-"podem ser instalados e activados em /var/www/mason_example, e poderá consultá-"
-"-los no seu browser em http://localhost/mason_example/ ."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid "Automatically reload Apache configuration?"
-msgstr "Recarregar automaticamente a configuração do Apache?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"Depois de instalar ou remover os exemplos de componentes Mason, é necessário "
-"recarregar a configuração do Apache para os tornar acessíveis."
diff --git a/debian/po/ru.po b/debian/po/ru.po
deleted file mode 100644
index 96cb6b0..0000000
--- 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 <yuray at komyakino.ru>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: libhtml-mason-perl 1:1.39-1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-26 04:33+0200\n"
-"PO-Revision-Date: 2009-07-17 18:20+0400\n"
-"Last-Translator: Yuri Kozlov <yuray at komyakino.ru>\n"
-"Language-Team: Russian <debian-l10n-russian at 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
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr "Установить примеры компонентов Mason в /var/www/mason_example?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:1001
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"Чтобы понять как использовать HTML::Mason, можно установить примеры компонентов "
-"в /var/www/mason_example; после этого зайдите по адресу http://localhost/mason_example/ "
-"из веб-браузера."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid "Automatically reload Apache configuration?"
-msgstr "Перезагрузить настройки Apache?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:2001
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"После установки или удаления примеров компонентов Mason, требуется "
-"перезагрузить изменившиеся настройки Apache."
-
diff --git a/debian/po/sv.po b/debian/po/sv.po
deleted file mode 100644
index 0f490d6..0000000
--- a/debian/po/sv.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.
-# , fuzzy
-# 
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: libhtml-mason-perl 1:1.31.01-1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-04-06 13:39+0100\n"
-"PO-Revision-Date: 2005-10-11 18:09+0200\n"
-"Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
-"Language-Team: Swedish <sv at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr "Installera exempel för Mason-komponenter i /var/www/mason_example?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-"För att hjälpa dig igång med HTML::Mason kommer några exempelkomponenter att "
-"installeras och aktiveras i /var/www/mason_example och du kan besöka dom på "
-"http://localhost/mason_example/ i din webläsare."
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid "Automatically reload Apache configuration?"
-msgstr "Automatiskt ladda om Apache-konfigurationen?"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
-"Efter installation eller borttagning av Mason's exempelkomponenter måste Apache-konfigurationen "
-"laddas om för att de ska vara tillgängliga."
-
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
deleted file mode 100644
index 2060357..0000000
--- a/debian/po/templates.pot
+++ /dev/null
@@ -1,54 +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: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-04-06 13:39+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:4
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid "Automatically reload Apache configuration?"
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../libhtml-mason-perl-examples.templates:12
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr ""
diff --git a/debian/po/vi.po b/debian/po/vi.po
deleted file mode 100644
index 7752347..0000000
--- a/debian/po/vi.po
+++ /dev/null
@@ -1,45 +0,0 @@
-# Vietnamese Translation for libhtml-mason-perl.
-# Copyright © 2005 Free Software Foundation, Inc.
-# Clytie Siddall <clytie at riverland.net.au>, 2005.
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: libhtml-mason-perl 1/1.26-1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-04-06 13:39+0100\n"
-"PO-Revision-Date: 2005-06-06 23:08+0930\n"
-"Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
-"Language-Team: Vietnamese <gnomevi-list at lists.sourceforge.net>\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
-#:../libhtml-mason-perl-examples.templates:4
-msgid "Install example Mason components in /var/www/mason_example?"
-msgstr "Cài đặt các thành phần Mason thí dụ vào «/var/www/mason_example» không?"
-
-#.Type: boolean
-#.Description
-#:../libhtml-mason-perl-examples.templates:4
-msgid ""
-"To help you get started with HTML::Mason, some example components can be "
-"installed and enabled in /var/www/mason_example, and you can visit them at "
-"http://localhost/mason_example/ in your web browser."
-msgstr "Để giúp đỡ bạn bắt đầu dùng HTML::Mason, có một số thành phần Mason thí dụ mà bạn có thể cài đặt và hiệu lực vào «/var/www/mason_example», và bạn có thể tham gia chúng bằng cách nhập địa chỉ «http://localhost/mason_example/» vào trình duyệt Mạng (localhost có nghĩa là máy địa phương của bạn)."
-
-#.Type: boolean
-#.Description
-#:../libhtml-mason-perl-examples.templates:12
-msgid "Automatically reload Apache configuration?"
-msgstr "Tự động tải lại cấu hình Apache không?"
-
-#.Type: boolean
-#.Description
-#:../libhtml-mason-perl-examples.templates:12
-msgid ""
-"After installing or removing the example Mason components, the Apache "
-"configuration needs to be reloaded for them to be accessible."
-msgstr "Sau khi cài đặt hay loại bỏ những thành phần Mason thí dụ, cần phải tải lại cấu hình Apache, để có thể truy cập những điều mới này."

-- 
Debian packaging of libhtml-mason-perl



More information about the Pkg-perl-cvs-commits mailing list