--- colplot-5.2.0.orig/debian/README.Debian +++ colplot-5.2.0/debian/README.Debian @@ -0,0 +1,27 @@ +colplot can be used either directly from the command line or as a web accessible +cgi script. In order to use colplot from a browser the /usr/share/colplot/site/ +directly needs to be appropriately set up as an accessible DocumentRoot from +your web-serer. Here's is an example configuration for adding an Alias stanz to +an apache virtual server configuration. Add a stanza to your apache +configuration that looks like this: + + Alias /colplot /usr/share/colplot/site + + + AddHandler cgi-script .cgi + AllowOverride None + Options None + Options +followsymlinks +execcgi + + = 2.3> + Require all granted + + + Order Allow,Deny + Allow from all + + + DirectoryIndex index.php + + +You should then be able to access colplot from: http://localhost/colplot --- colplot-5.2.0.orig/debian/README.source +++ colplot-5.2.0/debian/README.source @@ -0,0 +1,6 @@ +This package uses quilt to manage patches to the upstream source code. Patches +are stored in the source package as diffs in debian/patches and applied during +the build. For detailed information please refer to the Debian quilt +documentation: + +/usr/share/doc/quilt/README.source --- colplot-5.2.0.orig/debian/changelog +++ colplot-5.2.0/debian/changelog @@ -0,0 +1,63 @@ +colplot (5.2.0-1.2) unstable; urgency=medium + + * Non-maintainer upload. + * Update Brazilian Portuguese translation. (Closes: #1025725) + * Update Swedish translation. (Closes: #994685 + * debian/compat: deleted. + * debian/copyright: update the copyright of the translators. + * debian/control + - Bump Standards-Version 4.6.2. + - Change from Build-Depends to Build-Depends. + - New format to debhelper-compat and updated level to 13. + + -- Paulo Henrique de Lima Santana (phls) Mon, 19 Jun 2023 01:40:28 -0300 + +colplot (5.2.0-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Sun, 03 Jan 2021 17:49:39 +0100 + +colplot (5.2.0-1) unstable; urgency=medium + + * New upstream 5.2.0 + * added new plot: diskwait to show read/write wait times + * Non-maintainer upload. + * Update Dutch translation (Closes: #821448) + * Add Danish translation (Closes: #830644) + * Update German translation (Closes: #842308) + * Update Italian translation (Closes: #846930) + * Update Portuguese translation (Closes: #858654) + * Update Russian translation (Closes: #883991) + * Add the copyright of the translators to debian/copyright + + -- Troy Heber Thu, 06 Sep 2018 11:24:23 -0600 + +colplot (5.0.1-4) unstable; urgency=low + + * Update the Japanese translation (Closes: #817866) + + -- Troy Heber Fri, 11 Mar 2016 09:14:51 -0700 + +colplot (5.0.1-3) unstable; urgency=medium + + * Only manage apache|lighttpd conf files based on the users selection + (Closes: #814627) + * Update the French translation (Closes: #814828) + + -- Troy Heber Tue, 16 Feb 2016 13:28:51 -0700 + +colplot (5.0.1-2) unstable; urgency=medium + + * Proplery automate colplot site creation + + -- Troy Heber Thu, 11 Feb 2016 12:31:19 -0700 + +colplot (5.0.1-1) unstable; urgency=medium + + * Initial Release, colplot replaces the collectl-utils package (Closes: + #785755) + + -- Troy Heber Fri, 08 May 2015 13:57:21 -0600 --- colplot-5.2.0.orig/debian/colplot.apache.conf +++ colplot-5.2.0/debian/colplot.apache.conf @@ -0,0 +1,18 @@ +Alias /colplot /usr/share/colplot/site + + + AddHandler cgi-script .cgi + DirectoryIndex index.cgi + AllowOverride None + Options None + Options +followsymlinks +execcgi + + = 2.3> + Require all granted + + + Order Allow,Deny + Allow from all + + + --- colplot-5.2.0.orig/debian/colplot.config +++ colplot-5.2.0/debian/colplot.config @@ -0,0 +1,29 @@ +#!/bin/sh + +set -e + +action=$1 +version=$2 + +## Source debconf library +. /usr/share/debconf/confmodule + +if [ "$version" != "" ] ; then + webservers="None" + # Determine if one of the supported webservers is actually configured for colplot + # Both have old style and new style configuration names (in that order) + if [ -e /etc/apache2/conf.d/colplot.conf -o -e /etc/apache2/conf-enabled/colplot.conf ] ; then + webservers="apache2" + fi + if [ -e /etc/lighttpd/conf-enabled/colplot.conf -o -e /etc/lighttpd/conf-enabled/20-colplot.conf ] ; then + webservers="lighttpd" + fi + db_set colplot/webserver "$webservers" +fi + +# which web-server should I use? +db_input high colplot/webserver || true + +db_go || true + +exit 0 --- colplot-5.2.0.orig/debian/colplot.lighttpd.conf +++ colplot-5.2.0/debian/colplot.lighttpd.conf @@ -0,0 +1,5 @@ +# -*- depends: fastcgi-php -*- +# Colplot Alias +alias.url += ( + "/colplot" => "/usr/share/colplot/site", +) --- colplot-5.2.0.orig/debian/colplot.templates +++ colplot-5.2.0/debian/colplot.templates @@ -0,0 +1,18 @@ +# 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: colplot/webserver +Type: select +__Choices: apache2, lighttpd, None +Default: apache2 +_Description: Web server: + Please select the web server for which Colplot should be automatically + configured. + . + Select "None" if you would like to configure the web server manually. --- colplot-5.2.0.orig/debian/control +++ colplot-5.2.0/debian/control @@ -0,0 +1,28 @@ +Source: colplot +Section: admin +Priority: optional +Maintainer: Troy Heber +Build-Depends: debhelper-compat (= 13), quilt (>= 0.40), po-debconf +Standards-Version: 4.6.2 + +Package: colplot +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, collectl, perl, perl-tk, libio-socket-ip-perl, libgetopt-simple-perl, gnuplot (>= 4.4), ucf +Suggests: apache2 +Replaces: collectl-utils +Breaks: collectl-utils +Recommends: apache2 | lighttpd | nginx | httpd +Homepage: http://collectl-utils.sourceforge.net/colplot.html +Description: Utility to plot performance data from collectl + At its core, colplot is nothing more than a script that has intimate knowledge + of collectl plot file and directory format. Based on the types of plots being + requested and some basic formatting options, it will build the necessary + gnuplot commands and automatically run them for you. + . + Colplot can be run either through a web-based interface or a command line. As + this introduction is not intended to be a User's Guide, see the colplot man + page to identify which command line switches map to which web-based options. + Also note that to produce plots on your terminal in command mode you must be + running on a system that supports X terminals or windows. No, that is not a + typo. Colplot does run on PCs. Also note if you direct colplot to write your + plots to a file X is not required. --- colplot-5.2.0.orig/debian/copyright +++ colplot-5.2.0/debian/copyright @@ -0,0 +1,96 @@ +Format: http://dep.debian.net/deps/dep5/ +Upstream-Name: colplot +Source: http://collectl-utils.sourceforge.net/ + +Files: * +Copyright: 2003-2012 Hewlett-Packard Development Company, L.P. +License: GPL-2 or Artistic + +License: GPL-2 + On Debian systems, the complete text of the GNU General Public License can + be found in `/usr/share/common-licenses/GPL-2'. + +License: Artistic + On Debian systems, the complete text of the Artistic Public License can be + found in `/usr/share/common-licenses/Artistic' + +Files: debian/* +Copyright: 2012 Troy Heber + 2023 Paulo Henrique de Lima Santana +License: GPL-2 + +Files: debian/po/cs.po +Copyright: 2012 Miroslav Kure +License: GPL-2 + +Files: debian/po/da.po +Copyright: 2012 Joe Hansen +License: GPL-2 + +Files: debian/po/de.po +Copyright: 2005 Mathias Klein + 2011-2016 Chris Leick +License: GPL-2 + +Files: debian/po/es.po +Copyright: 2005 César Gómez Martín + 2011 Francisco Javier Cuadrado + 2012 Javier Fernández-Sanguino +License: GPL-2 + +Files: debian/po/eu.po +Copyright: 2009 Piarres Beobide + 2011 Ander Goñi + 2012 Iñaki Larrañaga Murgoitio +License: GPL-2 + +Files: debian/po/fr.po +Copyright: 2004, 2011, 2012 Christian Perrier , . +License: GPL-2 + +Files: debian/po/id.po +Copyright: 2011,2012 Mahyuddin Susanto +License: GPL-2 + +Files: debian/po/it.po +Copyright: 2009 Alessandro De Zorzi + 2012, 2016 Beatrice Torracca +License: GPL-2 + +Files: debian/po/ja.po +Copyright: 2008-2011 Hideki Yamane + 2016 Takuma Yamada +License: GPL-2 + +Files: debian/po/nl.po +Copyright: 2004 Luk Claes + 2011-2012 Jeroen Schot + 2016 Frans Spiesschaert +License: GPL-2 + +Files: debian/po/pl.po +Copyright: Micha◈ Ku◈ach +License: GPL-2 + +Files: debian/po/pt_BR.po +Copyright: 2005 André Luís Lopes + 2022 Paulo Henrique de Lima Santana +License: GPL-2 + +Files: debian/po/pt.po +Copyright: 2011, 2012, 2017 Rui Branco +License: GPL-2 + +Files: debian/po/ru.po +Copyright: 2009, 2011, 2012 Yuri Kozlov + 2017 Lev Lamberov , 2017. +License: GPL-2 + +Files: debian/po/sv.po +Copyright: 2005 Daniel Nylander + 2011-2021 Martin Bagge , +License: GPL-2 + +Files: debian/po/vi.po +Copyright: 2005 Clytie Siddall +License: GPL-2 --- colplot-5.2.0.orig/debian/dirs +++ colplot-5.2.0/debian/dirs @@ -0,0 +1,7 @@ +etc +usr/bin +usr/share/man/man1 +usr/share/colplot +usr/share/colplot/plotfiles +usr/share/colplot/site +usr/share/colplot/conf_templates --- colplot-5.2.0.orig/debian/install +++ colplot-5.2.0/debian/install @@ -0,0 +1,13 @@ +colplot.conf etc/ +colplot usr/bin/ +FAQ* usr/share/doc/colplot/ +README usr/share/doc/colplot/ +colplot-help.html usr/share/doc/colplot/ +colplotlib.ph usr/share/colplot/site/ +colplotlib.defs usr/share/colplot/site/ +tiny.ph usr/share/colplot/site/ +oneperpage.ph usr/share/colplot/site/ +colplot-help.html usr/share/colplot/site/ +FAQ* usr/share/colplot/site/ +plotfiles/* usr/share/colplot/plotfiles/ +debian/colplot.*.conf* usr/share/colplot/conf_templates --- colplot-5.2.0.orig/debian/manpages +++ colplot-5.2.0/debian/manpages @@ -0,0 +1 @@ +man1/colplot.1 --- colplot-5.2.0.orig/debian/patches/01_FIX_COLPLOT_WHATIS.patch +++ colplot-5.2.0/debian/patches/01_FIX_COLPLOT_WHATIS.patch @@ -0,0 +1,13 @@ +diff -urpN ori/man1/colplot.1 new/man1/colplot.1 +--- ori/man1/colplot.1 2015-04-28 04:54:09.000000000 -0600 ++++ new/man1/colplot.1 2015-05-19 13:28:08.645453637 -0600 +@@ -1,8 +1,6 @@ + .TH COLPLOT 1 "OCTOBER 2008" LOCAL "colplot" -*- nroff -*- + .SH NAME +- +-.B colplot +-- plots collectl data using gnuplot ++colplot - plots collectl data using gnuplot + + .SH SYNOPSIS + colplot -plot plots [-switches] --- colplot-5.2.0.orig/debian/patches/02_REMOVE_COLLECTL-UTILS_LEFTOVERS.patch +++ colplot-5.2.0/debian/patches/02_REMOVE_COLLECTL-UTILS_LEFTOVERS.patch @@ -0,0 +1,48 @@ +diff -urpN ori/INSTALL new/INSTALL +--- ori/INSTALL 2015-04-28 04:54:08.000000000 -0600 ++++ new/INSTALL 2015-05-19 13:32:08.544169067 -0600 +@@ -1,8 +1,8 @@ + #!/bin/bash + + BINDIR=/usr/bin +-DOCDIR=/usr/share/doc/collectl-utils +-SHRDIR=/usr/share/collectl ++DOCDIR=/usr/share/doc/colplot ++SHRDIR=/usr/share/colplot + + mkdir -p $DOCDIR + mkdir -p $SHRDIR +@@ -14,7 +14,7 @@ cp colplot $BINDIR + cp GPL ARTISTIC $DOCDIR + cp FAQ* README RELEASE* $DOCDIR + cp colplot-help.html $DOCDIR +-cp colplotlib.ph $SHRDIR ++cp colplotlib.ph $SHRDIR + cp colplotlib.defs $SHRDIR + cp tiny.ph oneperpage.ph $SHRDIR + cp colplot-apache.conf $SHRDIR +diff -urpN ori/UNINSTALL new/UNINSTALL +--- ori/UNINSTALL 2015-04-28 04:54:08.000000000 -0600 ++++ new/UNINSTALL 2015-05-19 13:32:46.783963674 -0600 +@@ -28,11 +28,10 @@ fi + # N e w D i r e c t o r y S t r u c t u r e + + BINDIR=/usr/bin +-DOCDIR=/usr/share/doc/collectl +-SHRDIR=/usr/share/collectl ++DOCDIR=/usr/share/doc/colplot ++SHRDIR=/usr/share/colplot + + rm -f $BINDIR/colplot +-rm -f $BINDIR/colmux + rm -f $SHRDIR/colplotlib.defs + rm -f $SHRDIR/colplotlib.ph + rm -f $SHRDIR/tiny.ph +@@ -41,7 +40,6 @@ rm -fr $SHRDIR/plotfiles + rm -fr $DOCDIR + + rm -f /usr/share/man/man1/colplot.1.gz +-rm -f /usr/share/man/man1/colmux.1.gz + + # C l e a n U p W e b S t r u c t u r e + --- colplot-5.2.0.orig/debian/patches/03_FIX_SITE_LOCATION.patch +++ colplot-5.2.0/debian/patches/03_FIX_SITE_LOCATION.patch @@ -0,0 +1,11 @@ +--- ori/colplot 2016-02-11 12:24:33.137160861 -0700 ++++ new/colplot 2016-02-11 12:22:10.266003289 -0700 +@@ -27,7 +27,7 @@ use Compress::Zlib; + + # C o m m o n I n i t i a l i z a t i o n + +-my $LibDir='/usr/share/collectl'; ++my $LibDir='/usr/share/colplot/site'; + + my $Version="5.1.0"; + my $Copyright='Copyright 2004-2014 Hewlett-Packard Development Company, L.P.'; --- colplot-5.2.0.orig/debian/patches/series +++ colplot-5.2.0/debian/patches/series @@ -0,0 +1,3 @@ +01_FIX_COLPLOT_WHATIS.patch +02_REMOVE_COLLECTL-UTILS_LEFTOVERS.patch +03_FIX_SITE_LOCATION.patch --- colplot-5.2.0.orig/debian/po/POTFILES.in +++ colplot-5.2.0/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] colplot.templates --- colplot-5.2.0.orig/debian/po/cs.po +++ colplot-5.2.0/debian/po/cs.po @@ -0,0 +1,69 @@ +# +# 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: colplot 0.8.6f-1\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2012-02-05 21:32+0100\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: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Žádný" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Webový server:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#, fuzzy +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Vyberte webový server, který se má automaticky nastavit pro použití s " +"colplot." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Jestliže chcete nastavit webový server ručně, vyberte „Žádný“." --- colplot-5.2.0.orig/debian/po/da.po +++ colplot-5.2.0/debian/po/da.po @@ -0,0 +1,56 @@ +# Danish translation colplot. +# Copyright (C) 2016 colplot & nedenstående oversættere. +# This file is distributed under the same license as the colplot package. +# Joe Hansen , 2011, 2012, 2016. +# +msgid "" +msgstr "" +"Project-Id-Version: colplot\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2012-01-25 17:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Ingen" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Internetserver:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Vælg venligst internetserveren som Colplot skal konfigureres til automatisk." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Vælg »Ingen« hvis du ønsker at konfigurere din internetserver manuelt." --- colplot-5.2.0.orig/debian/po/de.po +++ colplot-5.2.0/debian/po/de.po @@ -0,0 +1,58 @@ +# German debconf translation of colplot. +# This file is distributed under the same license as the colplot package. +# Copyright (C) 2005 Mathias Klein , +# 2011-2016 Chris Leick . +# +msgid "" +msgstr "" +"Project-Id-Version: colplot 5.0.1-4\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2016-10-27 18:02+0100\n" +"Last-Translator: Chris Leick \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "Lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "keiner" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Webserver:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Bitte wählen Sie den Webserver aus, für den Colplot automatisch eingerichtet " +"werden soll." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "" +"Wählen Sie »keiner«, falls Sie den Webserver manuell einrichten wollen." --- colplot-5.2.0.orig/debian/po/es.po +++ colplot-5.2.0/debian/po/es.po @@ -0,0 +1,86 @@ +# colplot po-debconf translation to Spanish +# Copyright (C) 2005, 2011 Software in the Public Interest +# This file is distributed under the same license as the colplot package. +# +# Changes: +# - Initial translation +# César Gómez Martín +# +# - Updates +# Francisco Javier Cuadrado , 2011 +# Javier Fernández-Sanguino , 2012 +# +# Traductores, si no conocen 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: colplot 0.8.7g-3\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2012-01-21 14:53+0100\n" +"Last-Translator: Javier Fernández-Sanguino \n" +"Language-Team: Debian l10n Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POFile-SpellExtra: colplot Lighttpd colplot\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Ninguno" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Servidor web" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#, fuzzy +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Escoja el servidor web que debería configurarse automáticamente para colplot." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Escoja «Ninguno» si quiere configurar su servidor web manualmente." --- colplot-5.2.0.orig/debian/po/eu.po +++ colplot-5.2.0/debian/po/eu.po @@ -0,0 +1,73 @@ +# translation of templates.po to Euskara +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Piarres Beobide , 2009. +# Ander Goñi , 2011. +# Iñaki Larrañaga Murgoitio , 2012. +msgid "" +msgstr "" +"Project-Id-Version: templates\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2012-02-20 16:03+0100\n" +"Last-Translator: Iñaki Larrañaga Murgoitio \n" +"Language-Team: Basque \n" +"Language: \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=2; plural=n != 1;\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +#, fuzzy +#| msgid "Apache2" +msgid "apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Bat ere ez" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Web-zerbitzaria:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#, fuzzy +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Hautatu web-zerbitzaria (colplot zerbitzariaren arabera automatikoki " +"konfiguratzeko)." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Hautatu \"Bat ere ez\" web-zerbitzaria eskuz konfiguratu nahi baduzu." + +#~ msgid "Which kind of web server should be used by colplot?" +#~ msgstr "Zein web-zerbitzari mota erabili behar du colplotk?" + +#~ msgid "Apache, Apache-SSL, Apache2, All, None" +#~ msgstr "Apache, Apache-SSL, Apache2, Denak, Bat ere ez" --- colplot-5.2.0.orig/debian/po/fr.po +++ colplot-5.2.0/debian/po/fr.po @@ -0,0 +1,61 @@ +# Translation of colplot debconf templates to French +# Copyright (C) 2004-2011 Debian French l10n team +# This file is distributed under the same license as the colplot package. +# +# Translators: +# Christian Perrier , 2004, 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: colplot 0.6.8a-13\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2012-01-25 07:10+0100\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: Lokalize 1.2\n" +"Plural-Forms: Plural-Forms: nplurals=2; plural=n>1;\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "Apache 2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "Lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Aucun" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Serveur web :" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Veuillez choisir le serveur web à reconfigurer automatiquement pour " +"l'utilisation de Colplot." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "" +"Choisissez « Aucun » si vous préférez configurer vous-même le serveur web." --- colplot-5.2.0.orig/debian/po/id.po +++ colplot-5.2.0/debian/po/id.po @@ -0,0 +1,69 @@ +# Translation of colplot debconf templates to Indonesian +# Copyright (C) 2011 Debian Indonesia Translator +# This file is distributed under the same license as the colplot package. +# +# Translators: +# Mahyuddin Susanto , 2011. +msgid "" +msgstr "" +"Project-Id-Version: colplot 0.8.7g-3\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2012-01-27 19:02+0700\n" +"Last-Translator: Mahyuddin Susanto \n" +"Language-Team: Debian Indonesia Translator \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Indonesian\n" +"X-Poedit-Country: INDONESIA\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +#, fuzzy +#| msgid "Apache2" +msgid "apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Tidak ada" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Web server:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#, fuzzy +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Silakan pilih jenis web server yang digunakan oleh colplot untuk pengaturan " +"otomatis." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "" +"Pilih \"Tidak ada\" jika anda menginginkan mengatur pengaturan server web " +"manual." --- colplot-5.2.0.orig/debian/po/it.po +++ colplot-5.2.0/debian/po/it.po @@ -0,0 +1,63 @@ +# Italian debconf translation of colplot. +# Copyright (C) 2016, colplot package copyright holder +# This file is distributed under the same license as the colplot package. +# Alessandro De Zorzi , 2009. +# Beatrice Torracca , 2012, 2016. +msgid "" +msgstr "" +"Project-Id-Version: colplot 0.8.7e\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2016-08-01 15:35+0200\n" +"Last-Translator: Beatrice Torracca \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +#| msgid "Apache2" +msgid "apache2" +msgstr "apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +#| msgid "Lighttpd" +msgid "lighttpd" +msgstr "lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Nessuno" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Server web:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Selezionare il server web per il quale configurare automaticamente Colplot." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Selezionare \"Nessuno\" per configurare il server web manualmente." --- colplot-5.2.0.orig/debian/po/ja.po +++ colplot-5.2.0/debian/po/ja.po @@ -0,0 +1,62 @@ +# Copyright (C) 2008-2011 Sean Finney +# as colplot Debian package's copyright holder. +# This file is distributed under the same license as the colplot package. +# Hideki Yamane , 2008-2011. +# Takuma Yamada , 2016. +# +msgid "" +msgstr "" +"Project-Id-Version: colplot 0.8.7g-2\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2016-03-02 12:46+0900\n" +"Last-Translator: Takuma Yamada \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" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Gtranslator 2.91.6\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "どれでもない" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "ウェブサーバ:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "Colplot が自動的に設定するウェブサーバを選んでください。" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "" +"ウェブサーバを手作業で設定したい場合は「どれでもない」を選んでください。" --- colplot-5.2.0.orig/debian/po/nl.po +++ colplot-5.2.0/debian/po/nl.po @@ -0,0 +1,64 @@ +# Dutch translation of colplot debconf templates. +# Copyright (C) 2004-2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the colplot package. +# Luk Claes , 2004. +# Jeroen Schot , 2011-2012. +# Frans Spiesschaert , 2016. +# +msgid "" +msgstr "" +"Project-Id-Version: colplot 5.0.1-4\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2016-04-04 20:50+0200\n" +"Last-Translator: Frans Spiesschaert \n" +"Language-Team: Debian Dutch l10n Team \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Gtranslator 2.91.6\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +#| msgid "Apache2" +msgid "apache2" +msgstr "apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Geen" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Webserver:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Kies de webserver waarvoor Colplot automatisch geconfigureerd moet worden." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Selecteer \"Geen\" als u de webserver handmatig wilt configureren." --- colplot-5.2.0.orig/debian/po/pl.po +++ colplot-5.2.0/debian/po/pl.po @@ -0,0 +1,66 @@ +# Translation of colplot debconf template to Polish. +# Copyright (C) 2012 +# This file is distributed under the same license as the colplot package. +# +# Michał Kułach , 2012. +msgid "" +msgstr "" +"Project-Id-Version: colplot\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2012-01-25 11:47+0100\n" +"Last-Translator: Michał Kułach \n" +"Language-Team: Polish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.2\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +#, fuzzy +#| msgid "Apache2" +msgid "apache2" +msgstr "Apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Brak" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Serwer WWW:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#, fuzzy +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Proszę wybrać serwer WWW, dla którego colplot powinno zostać automatycznie " +"skonfigurowane." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Proszę wybrać \"Brak\", aby skonfigurować serwer WWW ręcznie." --- colplot-5.2.0.orig/debian/po/pt.po +++ colplot-5.2.0/debian/po/pt.po @@ -0,0 +1,63 @@ +# Portuguese translation of colplot's debconf messages. +# 01-11-2005 - Luís Ferreira - Initial translation +# Rui Branco , 2011, 2012, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: colplot 5.0.1-4\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2017-03-14 13:36+0000\n" +"Last-Translator: Rui Branco \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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Gtranslator 2.91.7\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +#| msgid "Apache2" +msgid "apache2" +msgstr "apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Nenhum" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Servidor Web: " + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#| msgid "" +#| "Please select the web server for which colplot should be automatically " +#| "configured." +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Por favor seleccione o servidor web para o qual o Colplot deve ser " +"automaticamente configurado." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "" +"Seleccione \"Nenhum\" se deseja configurar o seu servidor web manualmente." --- colplot-5.2.0.orig/debian/po/pt_BR.po +++ colplot-5.2.0/debian/po/pt_BR.po @@ -0,0 +1,71 @@ +# +# 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. +# Paulo Henrique de Lima Santana (phls) , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: colplot_5.2.0-1.1\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2022-11-28 23:31-0300\n" +"Last-Translator: Paulo Henrique de Lima Santana (phls) \n" +"Language-Team: Brazilian Portuguese \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"X-Generator: Gtranslator 42.0\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Nenhum" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Servidor web:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Por favor, selecione o servidor web para o qual o Colplot deve ser " +"configurado automaticamente." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "" +"Selecione \"Nenhum\" caso você queira configurar seu servidor web " +"manualmente." --- colplot-5.2.0.orig/debian/po/ru.po +++ colplot-5.2.0/debian/po/ru.po @@ -0,0 +1,67 @@ +# translation of ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the colplot package. +# +# Yuri Kozlov , 2009, 2011, 2012. +# Lev Lamberov , 2017. +msgid "" +msgstr "" +"Project-Id-Version: colplot 0.8.7g-3\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2017-12-10 11:32+0500\n" +"Last-Translator: Lev Lamberov \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: Poedit 2.0.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: select +#. Choices +#: ../colplot.templates:2001 +#| msgid "Apache2" +msgid "apache2" +msgstr "apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "не настраивать" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Веб-сервер:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" +"Выберите веб-сервер, для которого нужно автоматически настроить Сolplot." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Выберите «не настраивать», если хотите настроить веб-сервер вручную." + +#~ msgid "Which kind of web server should be used by colplot?" +#~ msgstr "Тип используемого colplot веб-сервера" + +#~ msgid "Apache, Apache-SSL, Apache2, All, None" +#~ msgstr "Apache, Apache-SSL, Apache2, все, ни одного" --- colplot-5.2.0.orig/debian/po/sv.po +++ colplot-5.2.0/debian/po/sv.po @@ -0,0 +1,58 @@ +# Translation of colplot debconf template to Swedish +# Copyright (C) 2012, 2021 Martin Bagge +# This file is distributed under the same license as the colplot package. +# +# Daniel Nylander , 2005 +# Martin Bagge , 2011-2012 +msgid "" +msgstr "" +"Project-Id-Version: colplot 0.8.6g-1\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2021-09-17 20:18+0200\n" +"Last-Translator: Martin Bagge / brother \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" +"X-Poedit-Language: Swedish\n" +"X-Poedit-Country: Sweden\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "apache2" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "lighttpd" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "Ingen" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "Webbserver:" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "Välj den webbserver som Colplot ska aktivera inställningar för." + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Välj \"Ingen\" om du vill konfigurera din webbserver på egen hand." --- colplot-5.2.0.orig/debian/po/templates.pot +++ colplot-5.2.0/debian/po/templates.pot @@ -0,0 +1,56 @@ +# 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: colplot\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Web server:" +msgstr "" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "" --- colplot-5.2.0.orig/debian/po/vi.po +++ colplot-5.2.0/debian/po/vi.po @@ -0,0 +1,60 @@ +# Vietnamese translation for colplot. +# Copyright © 2005 Free Software Foundation, Inc. +# Clytie Siddall , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: colplot 0.8.6d-1\n" +"Report-Msgid-Bugs-To: colplot@packages.debian.org\n" +"POT-Creation-Date: 2016-02-11 11:28-0700\n" +"PO-Revision-Date: 2005-06-12 20:42+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" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "apache2" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "lighttpd" +msgstr "" + +#. Type: select +#. Choices +#: ../colplot.templates:2001 +msgid "None" +msgstr "" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#, fuzzy +#| msgid "Webserver type" +msgid "Web server:" +msgstr "Loại trình phục vụ Mạng" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +msgid "" +"Please select the web server for which Colplot should be automatically " +"configured." +msgstr "" + +#. Type: select +#. Description +#: ../colplot.templates:2002 +#, fuzzy +#| msgid "" +#| "Select \"None\" if you would like to configure your webserver by hand." +msgid "Select \"None\" if you would like to configure the web server manually." +msgstr "Hãy chọn «Không có» nếu bạn muốn tự cấu hình trình phục vụ Mạng." --- colplot-5.2.0.orig/debian/postinst +++ colplot-5.2.0/debian/postinst @@ -0,0 +1,72 @@ +#!/bin/sh + +set -e + +# Source debconf library. +. /usr/share/debconf/confmodule +db_version 2.0 + +# +# Skip, if we are not in "configure" or "reconfigure" state +# +if [ "$1" != "configure" ] && [ "$1" != "reconfigure" ]; then + exit 0 +fi + +# +# retrieve various configuration options from debconf +# +db_get colplot/webserver +WWWTYPE="$RET" + +# done with debconf... +db_stop + +# Only create link and grant permissions on first install +if [ ! -n "$2" ] ; then + chown -R www-data:www-data /usr/share/colplot/site + ln -sf /usr/bin/colplot /usr/share/colplot/site/index.cgi +fi + +# Update the webserver, if needed +case $WWWTYPE in + apache2) + if [ -e /etc/apache2/conf-available/colplot.conf ] ; then + ucf --debconf-ok /usr/share/colplot/conf_templates/colplot.apache.conf /etc/apache2/conf-available/colplot.conf + ucfr colplot /etc/apache2/conf-available/colplot.conf + if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then + . /usr/share/apache2/apache2-maintscript-helper + apache2_invoke enconf colplot + else + echo "Apache2 not installed, skipping" + fi + else + echo "Apache2 not installed, skipping" + fi + ;; + lighttpd) + ucf --debconf-ok /usr/share/colplot/conf_templates/colplot.lighttpd.conf /etc/lighttpd/conf-available/20-colplot.conf + ucfr colplot /etc/lighttpd/conf-available/20-colplot.conf + if [ -e /etc/lighttpd/conf-available/20-colplot.conf ] ; then + if which lighty-enable-mod >/dev/null 2>&1 ; then + lighty-enable-mod colplot || \ + if [ "$?" != "2" ] ; then exit 1 ; else true ; fi + else + echo "Lighttpd not installed, skipping" + fi + fi + ;; + *) + ;; +esac + +# Always trigger reload of webservers if the configuration is enabled +if [ -e /etc/apache2/conf.d/colplot.conf -o -e /etc/apache2/conf-enabled/colplot.conf ] ; then + invoke-rc.d apache2 reload || true +fi +if [ -e /etc/lighttpd/conf-enabled/20-colplot.conf ] ; then + invoke-rc.d lighttpd reload 3>/dev/null || true +fi + +#DEBHELPER# +exit 0 --- colplot-5.2.0.orig/debian/postrm +++ colplot-5.2.0/debian/postrm @@ -0,0 +1,65 @@ +#!/bin/sh + +set -e + +# +# Skip, if we are not in "remove" or "purge" state +# +if [ "$1" != "remove" ] && [ "$1" != "purge" ]; then + exit 0 +fi + +## Source debconf library +. /usr/share/debconf/confmodule +db_version 2.0 + +# update the webserver, if needed +# apache2 +if [ -e /etc/apache2/conf.d/colplot.conf -o -e /etc/apache2/conf-enabled/colplot.conf ]; then +# Sniplet adjusted from http://wiki.debian.org/Apache/PackagingFor24 + if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then + . /usr/share/apache2/apache2-maintscript-helper + apache2_invoke disconf colplot + elif dpkg-query -f '${Version}' -W 'apache2.2-common' > /dev/null 2>&1 ; then + [ -h /etc/apache2/conf.d/colplot.conf ] && rm /etc/apache2/conf.d/colplot.conf + invoke-rc.d apache2 reload || true + fi +fi +# lighttpd +if which lighty-disable-mod >/dev/null 2>&1 ; then + lighty-disable-mod colplot || true +# We need to take care: bug #446324 + invoke-rc.d lighttpd reload 3>/dev/null || true +fi + +# +# remove or purge the whole package +# +case "$1" in + purge) + # get rid of configuration files and ucf entries + for config_file in \ + /etc/apache2/conf-available/colplot.conf \ + /etc/lighttpd/conf-available/colplot.conf \ + /etc/lighttpd/conf-available/20-colplot.conf + do + if which ucf >/dev/null 2>&1; then + ucf --purge $config_file + fi + if [ -x "`which ucfr 2>/dev/null`" ]; then + ucfr --purge colplot $config_file + fi + for ext in .ucf-new .ucf-old .ucf-dist ""; do + rm -f "$config_file$ext" + done + done + ;; + + remove) + ;; + +esac + +#DEBHELPER# +exit 0 + --- colplot-5.2.0.orig/debian/prerm +++ colplot-5.2.0/debian/prerm @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +# +# Skip, if we are not in "remove" or "purge" state +# +if [ "$1" != "remove" ] && [ "$1" != "purge" ]; then + exit 0 +fi + +## Source debconf library +. /usr/share/debconf/confmodule +db_version 2.0 + +# Remove the site symlink +if [ -e /usr/share/colplot/site/index.cgi ] ; then + rm -f /usr/share/colplot/site/index.cgi +fi + +#DEBHELPER# +exit 0 + --- colplot-5.2.0.orig/debian/rules +++ colplot-5.2.0/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +%: + dh $@ --with quilt + +override_dh_install: + chmod -x $(CURDIR)/oneperpage.ph + chmod -x $(CURDIR)/colplotlib.ph + chmod -x $(CURDIR)/tiny.ph + chmod -x $(CURDIR)/colplotlib.defs + dh_install --- colplot-5.2.0.orig/debian/watch +++ colplot-5.2.0/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://sf.net/collectl-utils/collectl-utils-(.*)\.src\.tar\.gz