debian/0000755000000000000000000000000011432516756007200 5ustar debian/config0000644000000000000000000000151611322161627010362 0ustar #!/bin/sh # config script for BindGraph # # by Jose Luis Tallon . /usr/share/debconf/confmodule db_version 2.0 db_title "BindGraph" set -e case "$1" in configure|reconfigure) if [ -f /etc/default/bindgraph ]; then . /etc/default/bindgraph if [ -n "$DNS_LOG" ]; then db_set bindgraph/logfile "$DNS_LOG" fi fi db_input medium bindgraph/start_on_boot || true db_go # BIND_VERSION=`dpkg -l bind9 | awk '{if($2=="bind9")print $3;}'` # if [ -n "$BIND_VERSION" ]; then # # Seems BIND9 is installed. Display config note # db_input medium bindgraph/configure_bind || true # fi db_input medium bindgraph/logfile || true db_go db_input medium bindgraph/stay_on_purge || true db_go ;; *) echo "config called with unknown argument \$1'" >&2 exit 0 ;; esac exit 0 debian/stamp-patched0000644000000000000000000000000011361073432011631 0ustar debian/prerm0000644000000000000000000000145711322161627010246 0ustar #! /bin/sh # prerm script for BindGraph # by Jose Luis Tallon set -e # summary of how this script can be called: # * `remove' # * `upgrade' # * `failed-upgrade' # * `remove' `in-favour' # * `deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in remove|deconfigure) ;; upgrade) ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/control0000644000000000000000000000106511432516513010574 0ustar Source: bindgraph Section: admin Priority: extra Maintainer: Jose Luis Tallon Build-Depends: debhelper (>= 7) Build-Depends-Indep: po-debconf (>= 0.8.2) Standards-Version: 3.9.1 Package: bindgraph Architecture: all Depends: libfile-tail-perl, librrds-perl, ${misc:Depends} Recommends: httpd, bind9 Description: DNS statistics RRDtool frontend for BIND9 BindGraph is a very simple DNS statistics RRDtool frontend for BIND9 that produces daily, weekly, monthly and yearly graphs of the DNS server's activity (queries, errors, etc.). debian/examples0000644000000000000000000000001511322161627010724 0ustar rbldnsd.diff debian/rules0000755000000000000000000000363711432516704010262 0ustar #!/usr/bin/make -f # debian/rules for BindGraph # by Jose Luis Tallon, # Based upon work by # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 #include /usr/share/quilt/quilt.make # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) CFLAGS += -g endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif configure: configure-stamp configure-stamp: patch dh_testdir # Add here commands to configure the package. touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir touch build-stamp clean: unpatch debian/po/templates.pot dh_testdir dh_testroot rm -f build-stamp configure-stamp dh_clean debian/po/templates.pot: debian/templates @debconf-updatepo install: build dh_testdir dh_testroot dh_prep dh_installdirs dh_install # lintian overrides... mkdir -p $(CURDIR)/debian/bindgraph/usr/share/lintian/overrides cp debian/lintian-overrides \ $(CURDIR)/debian/bindgraph/usr/share/lintian/overrides/bindgraph # Build architecture-independent files here. binary-indep: build install dh_testdir dh_testroot dh_installdebconf dh_installdocs -n dh_installexamples # dh_installlogrotate dh_installinit dh_installcron dh_installman # dh_installinfo dh_installchangelogs dh_link dh_compress dh_fixperms dh_installdeb # dh_perl dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb # Build architecture-dependent files here. binary-arch: build install # We have nothing to do binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure patch:: unpatch:: debian/docs0000644000000000000000000000000711322161627010037 0ustar README debian/Makefile0000644000000000000000000000005011322161627010622 0ustar # .PHONY: dummy tidy: dummy rm -f *~ debian/lintian-overrides0000644000000000000000000000040511361074777012563 0ustar bindgraph source: maintainer-script-lacks-debhelper-token debian/postinst bindgraph: maintainer-script-lacks-debhelper-token debian/postinst bindgraph: script-with-language-extension usr/sbin/bindgraph.pl bindgraph: binary-without-manpage usr/sbin/bindgraph.pl debian/changelog0000644000000000000000000001576411432516747011067 0ustar bindgraph (0.2a-5.1) unstable; urgency=low * Non-maintainer upload. * Modified debian/postinst to ensure the existence of the directory /var/run/servergraph before its configuration. Closes: #591601 * upgraded Standards-Version to 3.9.1 and compat to 5. * replaced dh_clean -k by dh_prep in debian/rules. -- Georges Khaznadar Tue, 17 Aug 2010 16:29:24 +0200 bindgraph (0.2a-5) unstable; urgency=low * Packaging - Updated to S-V 3.8.3 with no changes - Upgraded to debhelper compatibility level 5 - Converted to using source format "3.0 (quilt)" * Fixed initscript to declare correct LSB dependencies (Closes: #563786) * Upload sponsored by Petter Reinholdtsen. -- Jose Luis Tallon Sat, 20 Mar 2010 21:17:38 +0100 bindgraph (0.2a-4) unstable; urgency=low * Acknowledge l10n NMU (thanks, Christian) (Closes: #491938) * Fix overwritting of user-defined config options on upgrade/reconfig (Closes: #503713) Preserve changes to /etc/default/bindgraph by applying those settings (if available) in debconf before prompting. * Set more strict permissions on /var/log/bind9-query.log if/when we create it (Closes: #490102) * Localization: - Dutch (Closes: #503742) -- Jose Luis Tallon Sun, 16 Nov 2008 22:50:27 +0100 bindgraph (0.2a-3.1) unstable; urgency=low * Non-maintainer upload. * Fix pending l10n issues. Debconf translations: - Swedish. Closes: #491938 - Italian. Closes: #491938 -- Christian Perrier Wed, 22 Oct 2008 20:24:13 +0200 bindgraph (0.2a-3) unstable; urgency=high * Acknowledge NMU - Updated to S-V 3.7.3 with no changes * Bindgraph.cgi already worked with RRDtool 1.2.x since 2a (Closes: #462407) * Reconfigure now updates logfile location (Closes: 318458) * Debconf translations - Vietnamese (Closes: #427204) - Danish (Closes: #427160) - Finish (Closes: #475388) - Traditional Chinese (Closes: #414729) * Remove debconf note 'configure_bind', considered to be abusive. -- Jose Luis Tallon Sun, 09 Mar 2008 01:18:35 +0100 bindgraph (0.2a-2.1) unstable; urgency=high * Non-maintainer upload. * High-urgency upload for RC bugfix. * Guard the call to db_get in the postrm, to avoid failures in the case that debconf has already been removed from the system. Closes: #416660. -- Steve Langasek Wed, 16 May 2007 21:13:58 -0700 bindgraph (0.2a-2) unstable; urgency=low * All localization fixes below prepared by Christian Perrier. Many thanks. * Fix errors in debconf templates. (Closes: #412620) * Debconf translations: - Galician. (Closes: #413359) - German. (Closes: #412619) - Czech. (Closes: #413344) - Russian. (Closes: #413547) - Brazilian Portuguese. (Closes: #413615) - Tamil. (Closes: #413823) - Japanese. (Closes: #413863) - Portuguese. (Closes: #413919) - Romanian. (Closes: #414052) - Spanish. (Closes: #414220) -- Jose Luis Tallon Sun, 11 Mar 2007 14:57:44 +0100 bindgraph (0.2a-1) unstable; urgency=low * Too many fixes for just a regular "debian release" -> "a" release (no new upstream version yet) - Updated to Standards-Version 3.7.2 with no changes * bindgraph.cgi: - Updated to work with newer rrdtool(1.2.x) (Closes: #383490) - Updated to properly parse logfiles (Closes: #375237) * Postinst/postrm: - Fixed purge logic (Closes: #311177) * Depends: - Relaxed pre-depends on debconf to a regular "depends" * Internationalization / Localization - Brazilian portuguese (Closes: #373994) - Portuguese (corrected) (Closes: #381078) - Removed incorrect zh-tw (Closes: #403799) -- Jose Luis Tallon Fri, 8 Dec 2006 15:24:19 +0100 bindgraph (0.2-5) unstable; urgency=low * Acknowledge NMU. Thanks! (Closes: #354619) - Fix broken recommends (Closes: #353101). - Add debconf-2.0 alternative (Closes: #331761). - Remove /etc/default/bindgraph on purge (Closes: #327122). - Add Vietnamese debconf translation (Closes: #313156). * l10n: - Swedish translation (Closes: #331600) - Portuguese translation (Closes: #362982) -- Jose Luis Tallon Thu, 11 May 2006 1:32:26 +0200 bindgraph (0.2-4.1) unstable; urgency=high * Non-maintainer upload. * Fix broken recommends (Closes: #353101). * Add debconf-2.0 alternative (Closes: #331761). * Remove /etc/default/bindgraph on purge (Closes: #327122). * Add Vietnamese debconf translation (Closes: #313156). -- Luk Claes Mon, 27 Feb 2006 20:09:35 +0100 bindgraph (0.2-4) unstable; urgency=medium * Correct upgrade logic to include LOG_FORMAT=bind92 by default in Sarge [RC bug] (Closes: #297639) * Package sponsored by Roberto Lumbreras -- Jose Luis Tallon Fri, 01 Apr 2005 17:43:02 +0200 bindgraph (0.2-3) unstable; urgency=low * Several localization fixes: - Use templates corrected by Christian Perrier. Thanks!(Closes: #295177) - Added Brazilian Portuguese (Closes: #297056) * Correct minor typo in CGI (Closes: #298876) * Package sponsored by Roberto Lumbreras -- Jose Luis Tallon Tue, 01 Mar 2005 00:37:43 +0100 bindgraph (0.2-2) unstable; urgency=low * Added BIND 9.2/9.3 format support to maintainer and init scripts. Default for Sarge is BIND 9.2 (Closes: #293819) * Added upgrade support 0.1 -> 0.2 (log_format) * Added localization: Dutch (Closes: #293970) * Package sponsored by Roberto Lumbreras -- Jose Luis Tallon Sun, 06 Feb 2005 12:54:26 +0100 bindgraph (0.2-1) unstable; urgency=low * New upstream version * Several debconf translations. Thanks to everybody! - French, by Clement Stenac(do include it this time!) (Closes: #268157) - Japanese translation, added once again (Closes: #269002) - Traditional Chinese (Closes: #293090) - Czech (Closes: #293190) - Danish (Closes: #293205) * Change to relative URLs, suggested by (Closes: #270264) * Package sponsored by Roberto Lumbreras -- Jose Luis Tallon Thu, 03 Feb 2004 21:31:26 +0100 bindgraph (0.1-2) unstable; urgency=low * Silly mistake in long description, fixed (Closes: #268065) * French debconf translation, by Clément Stenac (Closes: #268157) * Package sponsored by Roberto Lumbreras -- Jose Luis Tallon Wed, 29 Sep 2004 20:00:26 +0200 bindgraph (0.1-1) unstable; urgency=low * Fullfill ITP (Closes: #256537) - Packaged BindGraph 0.1 - PO-Debconf-based configuration. - Several changes to upstream code to make it more user friendly * Package sponsored by Roberto Lumbreras -- Jose Luis Tallon Sun, 01 Aug 2004 23:08:26 +0200 debian/source/0000755000000000000000000000000011322165142010463 5ustar debian/source/format0000644000000000000000000000001411432515505011675 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000240011322161627011116 0ustar This package was debianized by Jose Luis Tallon on Sat, 29 May 2004 15:31:44 +0200. It was downloaded from http://www.linux.it/~md/software * Upstream Authors: Marco d'Itri Marco Delaurenti * Copyright: copyright (c) 2003 Marco Delaurenti copyright (c) 2003 Marco d'Itri based upon mailgraph, which is copyright (c) 2000, 2001, 2002 David Schweikert released under the GNU General Public License * License: GPL Bindgraph is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/. Debian packaging is Copyright (c) 2004-2007 Jose Luis Tallon , and is released under the GPL v2. debian/compat0000644000000000000000000000000211432516521010364 0ustar 7 debian/templates0000644000000000000000000000145111322161627011111 0ustar Template: bindgraph/start_on_boot Type: boolean Default: true _Description: Should bindgraph start on boot? Bindgraph can start on boot time as a daemon. Then it will monitor your BIND logfile for changes. This is recommended. . The other method is to call bindgraph.pl by hand with the -l parameter. Template: bindgraph/logfile Type: string Default: /var/log/bind9-query.log _Description: Bindgraph log file: Please specify the name of the log file from which data should be pulled to create the databases for bindgraph. If unsure, leave the default value. Template: bindgraph/stay_on_purge Type: boolean Default: true _Description: Remove RRD files on purge? Bindgraph keeps its database files under /var/lib/bindgraph. Please choose whether this directory should be removed completely on purge. debian/README.Debian0000644000000000000000000000274211322161627011235 0ustar BindGraph for Debian ==================== BindGraph gathers statistics about a BIND9 server's activity and presents them in graphical form on a web page. It does this using the excellent RRDTOOL (http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/). Please note that bind9 must be configured to log queries to a file before bindgraph can be used. An example configuration file snippet is provided below: ---- logging { channel "querylog" { file "/var/log/bind/queries.log"; print-time yes; }; category queries { querylog; }; category lame-servers { null; }; }; ---- This will set bind9 to log to "/var/log/bind/queries.log"; Bindgraph must be set up to read from that file. This configuration is stored in the /etc/default/bindgraph file, along with the file format (bind93 for bind9 versions 9.3 or higher, including 9.4) This Debian package installs itself, optionally, as a daemon that will constantly gather the statistics it needs. You really need to turn this option on for it to be of any use. The statistics themselves are served up by a web CGI program, /usr/lib/cgi-bin/bindgraph.cgi. With any normal Debian web server install, this should be accessible as http://localhost/cgi-bin/bindgraph.cgi Upstream (namely Marco D'Itri) is not responsible for *any* bugs introduced in this software -- please do not contact them regarding this matter and do notify me so that they can be solved. Thanks. -- Jose Luis Tallon Sat, 29 May 2004 22:13:08 +0200 debian/watch0000644000000000000000000000022411322161627010216 0ustar # watch file for uscan # version=2 http://www.linux.it/~md/software (?:.*/)?bindgraph-?_?([\w+\d+\.]+|\d+)(\.tar|\.tgz)(\.gz|\.bz2|) debian uupdate debian/dirs0000644000000000000000000000005311361074356010056 0ustar usr/sbin usr/lib/cgi-bin var/lib/bindgraph debian/patches/0000755000000000000000000000000011322161627010616 5ustar debian/patches/bindgraph_cgi.patch0000644000000000000000000000355011322161627014422 0ustar --- bindgraph-0.1.orig/bindgraph.cgi +++ bindgraph-0.1/bindgraph.cgi @@ -7,16 +7,19 @@ # Released under the terms of the GNU General Public License. use RRDs; +use POSIX qw(uname); use strict; my $VERSION = '0.1'; # hostname. will be printed in the HTML page -my $hostname = 'hostname.example.net (please edit bindgraph.cgi)'; +my $hostname = (POSIX::uname())[1]; +#script name, for self reference +my $script_name = 'bindgraph'; # path of the RRD database -my $rrd = '/var/www/as112/rrd/bindgraph.rrd'; +my $rrd = '/var/lib/bindgraph/bindgraph.rrd'; # temporary directory where the images will be saved -my $tmp_dir = '/tmp/bindgraph'; +my $tmp_dir = '/var/cache/bindgraph'; my $xpoints = 620; my $ypoints = 250; @@ -37,7 +40,7 @@ { title => 'Year Graph', seconds => 3600*24*365, }, ); -my @query_t = qw(AAAA CNAME NS ANY _other_ A PTR SOA TKEY); +my @query_t = qw(AAAA CNAME NS ANY _other_ A MX PTR SOA TKEY); my %color = ( MX => 'AA0000', A => 'FF0080', @@ -175,8 +178,8 @@ for my $n (0 .. $#graphs) { $page .= "

$graphs[$n]{title}

\n" - . qq#

bindgraph image $n\n#; + . qq#

$script_name image $n\n#; } # please do not remove this link from the generated page. thank you! @@ -216,11 +219,11 @@ or die_fatal("ERROR: cannot create $tmp_dir: $!"); } - if ($ENV{PATH_INFO} !~ /^\/bindgraph_(small|\d)\.png$/) { + if ($ENV{PATH_INFO} !~ /^\/${script_name}_(small|\d)\.png$/) { die_fatal("ERROR: unknown image $ENV{PATH_INFO}"); } - my $file = "$tmp_dir/$uri/bindgraph_$1.png"; + my $file = "$tmp_dir/$uri/${script_name}_$1.png"; if ($1 eq 'small') { $cache_time = 300; generate_send_graph($file, $graphs[0]{seconds}, $graphs[0]{title}, 1); debian/patches/bindgraph_pl.patch0000644000000000000000000000546111322161627014276 0ustar --- bindgraph-0.1.orig/bindgraph.pl +++ bindgraph-0.1/bindgraph.pl @@ -8,12 +8,12 @@ my $rrdstep = 60; -my $daemon_logfile = 'bindgraph.log'; -my $daemon_rrd_dir = '.'; -my $daemon_pidfile; +my $daemon_logfile = '/var/log/bindgraph.log'; +my $daemon_rrd_dir = '/var/lib/bindgraph'; +my $daemon_pidfile = '/var/run/servergraph/bindgraph.pid'; my $rrd = 'bindgraph.rrd'; -my @query_t = qw(TKEY SOA PTR A AAAA CNAME NS ANY _other_); +my @query_t = qw(TKEY SOA PTR A AAAA CNAME MX NS ANY _other_); ############################################################################## ############################################################################## @@ -238,6 +238,7 @@ my $rrd_inited = 0; my $verbose = 0; +my $ignore_localhost =0; # prototypes sub daemonize(); @@ -255,7 +256,8 @@ Getopt::Long::Configure('no_ignore_case'); GetOptions(\%opt, 'help|h', 'cat|c', 'logfile|l=s', 'version|V', 'year|y=i', 'host=s', 'verbose|v+', 'daemon|d!', - 'daemon_pid=s', 'daemon_rrd=s', 'daemon_log=s' + 'daemon_pid=s', 'ignore_localhost|ignore-localhost', + 'daemon_rrd=s', 'rrd_name|rrd-name=s', 'daemon_log=s' ) or exit 1; usage() if $opt{help} or @ARGV; @@ -265,10 +267,12 @@ } $verbose = $opt{verbose} if $opt{verbose}; + $ignore_localhost = 1 if $opt{ignore_localhost}; $daemon_pidfile = $opt{daemon_pid} if $opt{daemon_pid}; $daemon_logfile = $opt{daemon_log} if $opt{daemon_log}; $daemon_rrd_dir = $opt{daemon_rrd} if $opt{daemon_rrd}; + $rrd = $opt{rrd_name}.".rrd" if defined $opt{rrd_name}; daemonize() if $opt{daemon}; my $host = $opt{host}; @@ -281,9 +285,20 @@ } my $parser = new Parse::Syslog($file, year => $opt{year}, arrayref => 1); + my $client; while (my $sl = $parser->next) { - next if $host and $sl->[1] ne $host; - next if $sl->[2] ne 'named' and $sl->[2] ne 'client'; + next if $host and $sl->[1] ne $host; # syslog-combined mode + if( $sl->[2] eq 'named' ) + { # syslog-style output + next if $sl->[2] ne 'client'; + $client = $sl->[3]; + } + else + { # bind9-query.log style + next if $sl->[1] ne 'client'; + $client = $sl->[2]; + } + next if ( $ignore_localhost and $client=~/127.0.0.1\#/ ); process_line($sl); } } @@ -341,8 +356,6 @@ sub init_rrd($) { my ($m) = @_; - $rrd_inited = 1; - if (-f $rrd) { $this_minute = RRDs::last($rrd) + $rrdstep; my $err = RRDs::error; @@ -383,6 +396,8 @@ my $err = RRDs::error; die "RRDs::create($rrd, ...): $err" if $err; + $rrd_inited = 1; + $this_minute = $m; } @@ -431,6 +446,7 @@ -d, --daemon start in the background --daemon_pid=FILE write the PID to FILE --daemon_rrd=DIR write the RRD to DIR instead of $daemon_rrd_dir + --rrd-name=NAME use NAME.rrd for the RRD files"; --daemon_log=FILE write verbose-log to FILE instead of $daemon_logfile EOM exit 0; debian/init0000644000000000000000000000355711361074470010071 0ustar #!/bin/sh # ### BEGIN INIT INFO # Provides: bindgraph # Required-Start: $syslog $network $remote_fs # Required-Stop: $syslog $remote_fs # Should-Start: $local_fs $named # Should-Stop: $local_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: BIND graph # Description: Create graphs from DNS activity ### END INIT INFO # # initscript for bindgraph # (C) 2006 Jose Luis Tallon # based upon , code by Ian Murdock and others CONFIG=/etc/default/bindgraph DNS_LOG=/var/log/bind9-query.log NAME=bindgraph DESC="DNS Statistics" DAEMON=/usr/sbin/bindgraph.pl PIDFILE=/var/run/servergraph/bindgraph.pid CACHEDIR=/var/cache/bindgraph RRD_DIR=/var/lib/bindgraph RRD_NAME=bindgraph test -x $DAEMON || exit 0 if [ -f $CONFIG ]; then . $CONFIG fi # Just to be sure it is there... pid_dir=`dirname $PIDFILE` test -d $pid_dir || mkdir -p $pid_dir chown daemon:root $pid_dir . /lib/lsb/init-functions if [ -n "$LOG_FORMAT" ]; then FORMAT="--format=${LOG_FORMAT}" fi case "$1" in start) log_daemon_msg "Starting $DESC" "$DAEMON" if start-stop-daemon --start --quiet --exec $DAEMON -N 15 -c daemon:adm -- \ -l $DNS_LOG $FORMAT -d --daemon_rrd=$RRD_DIR --rrd_name=$RRD_NAME $ARGS ; then log_end_msg 0 else log_end_msg $? fi ;; stop) log_daemon_msg "Stopping $DESC: " "$DAEMON" start-stop-daemon --stop --oknodo --pidfile $PIDFILE -c daemon:adm ; st=$? rm -f $PIDFILE log_end_msg $st ;; restart|force-reload) $0 stop sleep 1 $0 start ;; status) if pidofproc -p $PIDFILE $DAEMON ; then log_success_msg "$DAEMON is running" exit 0 else log_success_msg "$DAEMON is not running" exit 3 fi ;; *) log_success_msg "Usage: $0 start|stop|restart|force-reload" exit 0 ;; esac exit 0 debian/po/0000755000000000000000000000000011322161627007605 5ustar debian/po/it.po0000644000000000000000000000462211322161627010565 0ustar # ITALIAN TRANSLATION OF BINDGRAPH'S.PO-DEBCONF FILE # Copyright (C) 2008 THE BINDGRAPH'S COPYRIGHT HOLDER # This file is distributed under the same license as the bindgraph package. # # Vincenzo Campanella , 2008. msgid "" msgstr "" "Project-Id-Version: it\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2008-10-16 07:25+0200\n" "Last-Translator: Vincenzo Campanella \n" "Language-Team: Italian \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 #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Eseguire bindgraph all'avvio del sistema?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Se eseguito all'avvio del sistema come demone, bindgraph monitorerà i file " "di registro di BIND per eventuali modifiche. Questo è raccomandato." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "Il metodo alternativo è l'esecuzione manuale di bindgraph.pl con il " "parametro \"-l\"." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "File di registro di bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Specificare il nome del file di registro i cui dati devono essere utilizzati " "per creare il database per bindgraph. Se non si è sicuri, lasciare il valore " "predefinito." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Rimuovere i file RRD in sede di disinstallazione?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "I file di database di bindgraph si trovano in \"/var/lib/bindgraph\". " "Scegliere se questa directory deve essere completamente eliminata in sede di " "disinstallazione." debian/po/es.po0000644000000000000000000001004311322161627010552 0ustar # bindgraph translation to spanish # Copyright (C) 2007 Free Software Foundation, Inc. # This file is distributed under the same license as the package. # # Changes: # - Initial translation # José Luís Tallon , 2004 # - Last translation # Manuel Porras Peralta , 2007 # # Traductores, si no conoce el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas 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 # # Si tiene dudas o consultas sobre esta traducción consulte con el último # traductor (campo Last-Translator) y ponga en copia a la lista de # traducción de Debian al español () msgid "" msgstr "" "Project-Id-Version: bindgraph 0.2a-1\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-09 21:15+0100\n" "Last-Translator: Manuel Porras Peralta «Venturi» \n" "Language-Team: Debian Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "¿Debe iniciarse bindgraph durante el arranque?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "BindGraph puede iniciarse como demonio durante el arranque. A partir de ese " "momento, monitorizará el archivo de registro de BIND por si hubiera cambios. " "Esta es la opción recomendada." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "La otra forma de utilizar este programa es lanzar «bindgraph.pl» manualmente " "con el parámetro -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Archivo de registro de Bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Especifique el nombre del archivo de registro del que se tomarán los datos " "para crear las bases de datos de bindgraph. Si no está seguro, deje el valor " "predeterminado." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "¿Desea eliminar los archivos RRD al purgar?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "BindGraph guarda sus bases de datos en el directorio «/var/lib/bindgraph». " "Indique si se debe o no eliminar este directorio completamente al purgar el " "paquete." #~ msgid "BIND9 logging required" #~ msgstr "Es necesario activar el registro de BIND9" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "Para que funcione BindGraph hay que activar el registro de BIND." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "Puede consultar la configuración que debe haber en el fichero «named.conf» " #~ "en «/usr/share/doc/bindgraph/README»." #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "¿Qué archivo de registro debe usar BindGraph?" debian/po/ru.po0000644000000000000000000000672311322161627010603 0ustar # translation of bindgraph_debconf_ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2007. msgid "" msgstr "" "Project-Id-Version: 0.2a-1\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-05 21:43+0300\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \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 #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Запускать bindgraph при загрузке компьютера?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph может запускаться во время загрузки машины в виде демона. После " "этого он начинает отслеживать изменения в файле журнала BIND. Это " "рекомендуемый режим." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "Также можно запускать bindgraph.pl by вручную с параметром -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Файл журнала для обработки bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Введите имя файла журнала, из которого будут взяты данные для создания баз " "данных bindgraph. Если непонятно что это, оставьте значение по умолчанию." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Удалять файлы RRD при вычистке?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Bindgraph хранит файлы баз данных в каталоге /var/lib/bindgraph. Укажите, " "нужно ли удалять этот каталог при вычистке." #~ msgid "BIND9 logging required" #~ msgstr "Требуется включить протоколирование в BIND9" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "Для работы bindgraph нужно включить протоколирование в BIND." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "Необходимые параметры для добавления в конфигурационный файл 'named.conf' " #~ "описаны в /usr/share/doc/bindgraph/README." debian/po/templates.pot0000644000000000000000000000320711322161627012331 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" debian/po/fi.po0000644000000000000000000000526511322161627010553 0ustar msgid "" msgstr "" "Project-Id-Version: bindgraph\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2008-04-10 16:19+0200\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \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 #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Tulisiko bindgraph käynnistää käynnistettäessä järjestelmä?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph voidaan käynnistää taustaohjelmana, kun järjestelmä käynnistetään. " "Tällöin se tarkkailee jatkuvasti BINDin lokitiedostojen muutoksia. Tätä " "suositellaan." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "Vaihtoehtoinen tapa on ajaa käsin komentosarja bindgraph.pl parametrin -l " "kanssa." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Bindgraphin lokitiedosto:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Anna sen lokitiedoston nimi, jonka tiedoista bindgraphin tietokannat tulisi " "luoda. Jos olet epävarma, jätä oletusarvo." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Tulisiko RRD-tiedostot poistaa siivottaessa?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Bindgraph säilyttää tietokantatiedostojaan hakemistossa /var/lib/bindgraph. " "Valitse tulisiko tämä hakemisto poistaa kokonaan siivottaessa paketti." #~ msgid "BIND9 logging required" #~ msgstr "BIND9-lokit tarvitaan" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "" #~ "Ohjelman BIND tulee kirjoittaa lokeja, jotta bindgraph voisi toimia." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "Asetukset, jotka tiedostoon ”named.conf” on tehtävä, on selitetty " #~ "(englanniksi) tiedostossa /usr/share/doc/bindgraph/README." debian/po/pt_BR.po0000644000000000000000000000674411322161627011166 0ustar # # 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: bindgraph\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-06 01:07-0300\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: l10n portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "O bindgraph deveria ser iniciado automaticamente?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "O Bindgraph pode iniciar automaticamente junto à inicialização da máquina " "como um serviço (\"daemon\"). Nesse caso ele irá monitorar seu arquivo de " "logs do BIND à procura de mudanças. Esse é o método recomendado." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "O outro método é chamar o script bindgraph.pl manualmente com o parâmetro -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Arquivo de log bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Por favor, especifique o nome do arquivo de log a partir do qual os dados " "para criar as bases de dados para o bindgraph devem ser obtidos. Caso não " "tenha certeza sobre o que informar, deixe o valor padrão." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Remover arquivos RRD na expurgado (\"purge\")?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "O Bindgraph mantém seus arquivos de base de dados sob o diretório /var/lib/" "bindgraph. Por favor, escolha se esse diretório deveria ser removido " "completamente quando o pacote bindgraph for expurgado (\"purge\")?" #~ msgid "BIND9 logging required" #~ msgstr "Logging do BIND9 requerido" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "" #~ "O Bindgraph precisa que o recurso de logging do BIND esteja ativado para " #~ "que o mesmo possa funcionar." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "A configuração requerida no arquivo 'named.conf' é explicada no arquivo /" #~ "usr/share/doc/bindgraph/README." #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "Qual arquivo de log deverá ser utilizado pelo BindGraph ?" debian/po/ta.po0000644000000000000000000000770511322161627010562 0ustar # translation of bindgraf.po to TAMIL # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Dr.T.Vasudevan , 2007. msgid "" msgstr "" "Project-Id-Version: bindgraf\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-07 17:03+0530\n" "Last-Translator: Dr.T.Vasudevan \n" "Language-Team: TAMIL \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 #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "கணினி துவங்கும்போது பின்ட்க்ராப்ஃ துவங்க வேண்டுமா?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "கணினி துவங்கும்போது பின்ட்க்ராப்ஃ ஒரு கிங்கரனாக துவங்க முடியும். பின் அது உங்கள் பின்ட் " "பதிவு ஏட்டை கண்காணிக்க முடியும். இதுவே பரிந்துரைக்கப் படுகிறது." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "மற்ற வழி கைமுறையாக -l அளபுருடன் bindgraph.pl ஐ துவக்குவது." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "பின்ட்க்ராப்ஃ பதிவு ஏடு:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "பின்ட்க்ராப்ஃ க்கு தரவுத்தளம் உருவாக்க தரவை பெறும் பதிவு ஏட்டின் பெயரைத் தரவும். " "நிச்சயமில்லாத போது முன்னிருப்பில் விடவும்." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "சுத்தம் செய்யும் போது ஆர்ஆர்டி கோப்புகளை நீக்கவா?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "பின்ட்க்ராப்ஃ தன் தரவுத்தள கோப்புகளை /var/lib/bindgraph இல் வைத்துள்ளது. தயவுசெய்து " "சுத்தம் செய்யும் போது இந்த அடைவை முழுமையாக நீக்க வேண்டுமா என தேர்ந்தெடுக்கவும்." #~ msgid "BIND9 logging required" #~ msgstr "பின்ட்9 பதிவு தேவை" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "பின்ட்க்ராப்ஃ வேலை செய்ய பின்ட் பதிவு செயல் பட வேண்டும்." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "'named.conf' இல் தேவையான வடிவமைப்பு /usr/share/doc/bindgraph/README இல் " #~ "விளக்கப் பட்டுள்ளது." debian/po/POTFILES.in0000644000000000000000000000004411322161627011360 0ustar [type: gettext/rfc822deb] templates debian/po/sv.po0000644000000000000000000000553311322161627010603 0ustar # Swedish translation for bindgraph # This file is distributed under the same license as the bindgraph package. # Martin Bagge , 2008 # msgid "" msgstr "" "Project-Id-Version: bindgraph\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2008-07-22 20:07+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Starta Bindgraph vid uppstart av systemet?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph kan starta som en tjänst vid systemets uppstart. Då kommer " "Bindgraph att övervaka förändringar i logfilen för BIND. Detta är det " "rekomenderade tillvägagångssättet." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "Den alternativa metoden är att starta bindgraph.pl med växeln -l manuellt." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Logfil för bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Ange namnet på logfilen som innehåller data som ska läsas för att skapa " "databaser för Bindgraph. Om du är oskäer - lämna standardvädet." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Ta bort RRD-filer vid avinstallation?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Bindgraph lagrar sina databasfiler i sökvägen /var/lib/bindgraph. Ange om " "denna katalog ska tas bort helt när paketet avinstalleras." #~ msgid "BIND9 logging required" #~ msgstr "Necessário registo do BIND9" #, fuzzy #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "O BindGraph necessita do registo do BIND activo para funcionar." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "A configuração necessária no 'named.conf' é explicada em /usr/share/doc/" #~ "bindgraph/README." #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "Qual o ficheiro de registo que deve ser usado pelo BindGraph?" debian/po/cs.po0000644000000000000000000000607411322161627010561 0ustar # # 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: bindgraph\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-04 14:52+0100\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Má se bindgraph spouštět při zavádění počítače?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph se může spouštět při zavádění počítače jako daemon. Poté bude " "sledovat změny v logovacím soubor BINDu. Toto je doporučené nastavení." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "Další způsob je spuštění bindgraph.pl ručně s parametrem -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Logovací soubor bindgraphu:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Zadejte logovací soubor, ze kterého se mají načítat data pro databáze " "bindgraphu. Pokud si nejste jisti, ponechejte výchozí nastavení." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Odstranit RRD soubory při vyčištění?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Bindgraph uchovává své databázové soubory ve /var/lib/bindgraph. Zvolte, zda " "se má při kompletním odstranění balíku odstranit i tento adresář." #~ msgid "BIND9 logging required" #~ msgstr "Vyžadováno logování BINDu9" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "Aby Bindgraph pracoval správně, vyžaduje zapnutí logování BINDu." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "Vyžadované nastavení souboru 'named.conf' je popsáno v /usr/share/doc/" #~ "bindgraph/README." debian/po/gl.po0000644000000000000000000000542311322161627010553 0ustar # Galician translation of bindgraph's debconf templates # This file is distributed under the same license as the bindgraph package. # Jacobo Tarrio , 2007. # msgid "" msgstr "" "Project-Id-Version: bindgraph\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-04 15:36+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "¿Debería iniciarse bindgraph co ordenador?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph pode arrincar no inicio do sistema coma un servizo. Despois ha " "monitorizar o ficheiro de rexistro de BIND á espera de cambios. Recoméndase " "facelo." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "O outro método consiste en executar bindgraph.pl á man co parámetro -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Ficheiro de rexistro de bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Introduza o nome do ficheiro de rexistro do que se deben extraer os datos " "para crear as bases de datos de bindgraph. Se non está seguro, deixe o valor " "por defecto." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "¿Eliminar os ficheiros RRD ao purgar?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Bindgraph grava os seus ficheiros de base de datos en /var/lib/bindgraph. " "Indique se quere eliminar totalmente ese directorio ao purgar o paquete." #~ msgid "BIND9 logging required" #~ msgstr "Precísase de rexistro de BIND9" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "" #~ "Bindgraph precisa de que o rexistro de eventos de BIND estea activo para " #~ "funcionar." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "A configuración necesaria en \"named.conf\" explícase en /usr/share/doc/" #~ "bindgraph/README." debian/po/de.po0000644000000000000000000000564111322161627010543 0ustar # translation of po-debconf template to German # This file is distributed under the same license as the bindgraph package. # Copyright (C): # # Matthias Julius , 2007. msgid "" msgstr "" "Project-Id-Version: bindgraph 0.2a-1\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-04 14:09-0500\n" "Last-Translator: Matthias Julius \n" "Language-Team: German \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 #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Soll Bindgraph beim Systemstart gestartet werden?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph kann während des Systemstarts als Daemon starten. In diesem Fall " "wird es Ihre BIND-Logdatei auf Änderungen hin überwachen. Dies wird " "empfohlen." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "Die andere Methode ist, bindgraph.pl von Hand mit dem Parameter -l " "aufzurufen." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Protokolldatei für Bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Bitte geben Sie die Protokolldatei an, von welcher die Daten bezogen werden " "sollen, um die Datenbanken für Bindgraph zu erzeugen. Falls Sie sich nicht " "sicher sind, belassen Sie die Voreinstellung." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "RRD-Dateien beim vollständigen Entfernen löschen?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Bindgraph speichert seine Datenbankdateien unter /var/lib/bindgraph. Bitte " "wählen Sie, ob dieses Verzeichnis gelöscht werden soll, wenn das Paket " "vollständig entfernt wird?" #~ msgid "BIND9 logging required" #~ msgstr "BIND9-Protokollierung erforderlich" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "" #~ "BIND-Protikollierung muss aktiv sein, damit Bindgraph arbeiten kann." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "Die erforderliche Konfiguration in »named.conf« wird in /usr/share/doc/" #~ "bindgraph/README erläutert." debian/po/zh_TW.po0000644000000000000000000000606711322161627011211 0ustar # # 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: bindgraph 0.1-2\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-07 00:00+0800\n" "Last-Translator: Asho Yeh \n" "Language-Team: Chinese (traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Country: TAIWAN\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "希望 BindGraph 開機就啟動嗎?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "BindGraph 可在開機時就能啟動 daemon 服務。然後它會監控您BIND的記錄檔變化。推" "薦使用該功能。" #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "另外呼叫 bindgraph.pl 的方法是手動啟動時加入 -l 參數。" #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Bindgraph記錄檔:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "輸入 bindgraph 的記錄檔名稱,記錄資料會建立 bindgraph 專屬的資料庫。不確定則" "選擇預設值。" #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "完整移除套件時是否要刪除 RRD 檔案?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "BindGraph 保存自用的資料庫檔案在 /var/lib/bindgrap 目錄。完整移除套件時是否要" "刪除該目錄?" #~ msgid "BIND9 logging required" #~ msgstr "需要 BIND9 logging" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "BindGraph 需要 BIND logging 先被啟動才能正常工作。" #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "必要 named.conf 的設定資訊請參閱 /usr/share/doc/bindgraph/README。" #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "請選擇 BindGraph 使用的記錄檔?" debian/po/ro.po0000644000000000000000000000614111322161627010567 0ustar # translation of ro.po to Romanian # Romanian translations for PACKAGE package # Traducerea în limba română pentru pachetul PACKAGE. # Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Eddy Petrisor , 2007. # Eddy Petrișor , 2007. msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-04 23:54+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Bindgraph porneşte odată cu sistemul?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph poate porni la pornirea sistemului, ca serviciu. Apoi va " "monitoriza schimbările din jurnalul lui BIND. Acest lucru este recomandat." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "Cealaltă metodă este apelarea manuală a lui bindgraph.pl cu parametrul -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Fişierul-jurnal al lui Bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Precizaţi numele fişierului-jurnal din care se extrag date pentru a crea " "baza de date pentru bindgrah. În caz de incertitudine, lăsaţi valoarea " "implicită." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Se şterg fişierele RRD la curăţarea pachetului?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Bindgraph îşi ţine fişierele bazei de date în /var/lib/bindgraph. Puteţi " "opta ca acest director să fie şters complet la curăţarea pachetului." #~ msgid "BIND9 logging required" #~ msgstr "Jurnalizarea BIND9 este necesară" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "" #~ "Pentru a funcţiona, Bindgraph are nevoie ca jurnalizarea pentru BIND să " #~ "fie activă." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "Configuraţia necesară în „named.conf” este explicată în /usr/share/doc/" #~ "bindgraph/README." debian/po/fr.po0000644000000000000000000000644711322161627010567 0ustar # translation of fr.po to French # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans# # Developers do not need to manually edit POT or PO files. # # Christian Perrier , 2007. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-01 06:46+0100\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \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 #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Faut-il lancer bindgraph au démarrage?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph peut être lancé en tant que démon au démarrage. Il commencera\n" "alors à surveiller vos journaux de BIND. Ce choix est recommandé." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "L'autre méthode possible est le lancement manuel de bindgraph.pl avec le " "paramétre -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Fichier journal utilisé par bindgraph :" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Veuillez indiquer le journal dont les données serviront à la création des " "bases de données de bindgraph. Si vous n'étes pas sûr, laissez la valeur par " "défaut." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Faut-il supprimer les fichiers RRD lors de la purge??" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Bindgraph garde ses fichiers de bases de données dans le répertoire /var/lib/" "bindgraph. Veuillez confirmer s'il faut complétement supprimer ce répertoire " "lors de la purge." #~ msgid "BIND9 logging required" #~ msgstr "Journalisation de BIND 9 requise" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "" #~ "Bindgraph requiert que la journalisation de BIND soit active afin de " #~ "pouvoir fonctionner." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "La configuration nécessaire du fichier `named.conf' est expliquée dans le " #~ "fichier /usr/share/doc/bindgraph/README." debian/po/vi.po0000644000000000000000000000622611322161627010571 0ustar # Vietnamese translation for bindgraph. # Copyright © 2007 Free Software Foundation, Inc. # Clytie Siddall , 2005-2007. # msgid "" msgstr "" "Project-Id-Version: bindgraph_0.2a-2.1\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-06-02 21:02+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \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 #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "BindGraph có nên khởi chạy khi khởi động máy không?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Trình BindGraph có thể khởi chạy làm trình nền (dæmon) khi khởi động máy, để " "theo dõi tập tin ghi lưu BIND có thay đổi chưa. Tùy chọn này khuyến khích." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "Tùy chọn khác là tự gọi văn lệnh « bindgraph.pl » bằng tham số «-l»." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Tập tin ghi lưu Bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Hãy ghi rõ tên của tập tin ghi lưu từ đó dữ liệu nên được lấy để tạo cơ sở " "dữ liệu cho bindgraph. Chưa chắc thì để lại giá trị mặc định." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Gỡ bỏ tập tin RRD khi tẩy gói không?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "Trình BindGraph lưu các tập tin cơ sở dữ liệu dưới cây thư mục « /var/lib/" "bindgraph ». Hãy chọn nếu thư mục này có nên bị gỡ bỏ hoàn toàn khi tầy gói " "hay không." #~ msgid "BIND9 logging required" #~ msgstr "Cần thiết khả năng ghi lưu BIND9" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "Để chạy được, Bindgraph cần thiết khả năng ghi lưu BIND hoạt động." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "Tài liệu Đọc Đi « /usr/share/doc/bindgraph/README » diễn tả cấu hình cần " #~ "phải tạo trong « named.conf »." #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "Bạn có muốn trình BindGraph dùng tập tin bản ghi nào?" debian/po/pt.po0000644000000000000000000000602211322161627010570 0ustar # Portuguese translation for bindgraph # This file is distributed under the same license as the bindgraph package. # André Costa , 2006 # Miguel Figueiredo , 2007. # msgid "" msgstr "" "Project-Id-Version: bindgraph\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-07 21:44+0000\n" "Last-Translator: André Costa \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Deve o bindgraph iniciar no arranque?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "O Bindgraph pode começar no arranque como um daemon. Então irá monitorizar o " "seu ficheiro de registo BIND por alterações. Isto é recomendado." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "O outro método é chamar manualmente o bindgraph.pl com o parâmetro -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Ficheiro de registo (log) do Bindgraph:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Por favor especifique o nome do ficheiro de registo da partir do qual devem " "ser lidos os dados para criar as bases de dados para o bindgraph. Se não " "tiver a certeza, deixe o valor por omissão." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Eliminar os ficheiros RRD quando remover o pacote e a configuração?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "O Bindgraph mantém os seus ficheiros da base de dados em /var/lib/bindgraph. " "Por favor escolha se este directório deve ser completamente eliminado quando " "remover o pacote e a configuração (purge)?" #~ msgid "BIND9 logging required" #~ msgstr "Necessário registo do BIND9" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "" #~ "O Bindgraph necessita que o registo (log) do BIND esteja activo de modo a " #~ "funcionar." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "A configuração necessária no 'named.conf' é explicada em /usr/share/doc/" #~ "bindgraph/README." #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "Qual o ficheiro de registo que deve ser usado pelo BindGraph?" debian/po/nl.po0000644000000000000000000000653211322161627010564 0ustar # translation of bindgraph_0.2a-3.1.po to Dutch # This file is distributed under the same license as the bindgraph package. # Please see debian/copyright. # # 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. # # Luk Claes , 2005. # Paul Gevers , 2008. msgid "" msgstr "" "Project-Id-Version: bindgraph 0.1-2\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2008-10-16 20:43-0600\n" "Last-Translator: Paul Gevers \n" "Language-Team: Debian l10n Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Moet bindgraph gestart worden bij het opstarten?" #. Type: boolean #. Description #: ../templates:1001 msgid "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND logfile for changes. This is recommended." msgstr "Bindgraph kan als achtergronddienst worden gestart bij het opstarten. Dan zal het uw bind-logbestand controleren op wijzigingen. Dit wordt aanbevolen." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "De andere methode is om bindgraph.pl handmatig aan te roepen met de parameter -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Bindgraph logbestand:" #. Type: string #. Description #: ../templates:2001 msgid "Please specify the name of the log file from which data should be pulled to create the databases for bindgraph. If unsure, leave the default value." msgstr "Welk logbestand moet gebruikt worden bij het aanmaken van de databanken voor bindgraph? Als u onzeker bent, laat dan de standaard staan." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "RRD-bestanden verwijderen bij wissen (purge)?" #. Type: boolean #. Description #: ../templates:3001 msgid "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose whether this directory should be removed completely on purge." msgstr "Bindgraph slaat haar databankbestanden op in /var/lib/bindgraph. Wilt u dat deze map bij het wissen (purge) volledig verwijderd wordt?" #~ msgid "BIND9 logging required" #~ msgstr "BIND9-logging vereist" #, fuzzy #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "BindGraph heeft actieve BIND-logging nodig om te werken." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "De vereiste configuratie in 'named.conf' wordt uitgelegd in /usr/share/" #~ "doc/bindgraph/README." #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "Welk logbestand moet gebruikt worden door BindGraph?" debian/po/ja.po0000644000000000000000000000676511322161627010555 0ustar # # 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: bindgraph 0.2a-1\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-03-08 01:30+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "システム起動時に BindGraph を開始しますか?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "bindGraph はシステム起動時にデーモンとして起動できます。この設定をすると、" "bindgraph は BIND のログファイルの変更を監視します。お勧めです。" #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "" "他の方法としては、-l パラメータ付きで bindgraph.pl を手動で呼び出すというのが" "あります。" #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "bindgraph のログファイル:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "bindgraph 用データベースを作成するために使うログファイル名を入力してくださ" "い。わからない場合は、デフォルトのままにしておいてください。" #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "purge する際に RRD ファイルを削除しますか?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "bindGraph は /var/lib/bindgraph の下にデータベースを保持しています。このディ" "レクトリを purge の際に完全に削除するかどうかを選んでください。" #~ msgid "BIND9 logging required" #~ msgstr "BIND9 のログ機能 (logging) が必要です" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "" #~ "bindGraph がきちんと動くには BIND のログ機能 (logging) が動作している必要" #~ "があります。" #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "'named.conf' 中での必要な設定は、/usr/share/doc/bindgraph/README で説明さ" #~ "れています。" #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "BindGraph はどのログファイルを使いますか?" debian/po/da.po0000644000000000000000000000621311322161627010533 0ustar # # 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. # # Claus Hindsgaul , 2005. # Claus Hindsgaul , 2007. msgid "" msgstr "" "Project-Id-Version: bindgraph debconf\n" "Report-Msgid-Bugs-To: bindgraph@packages.debian.org\n" "POT-Creation-Date: 2008-05-10 14:39+0200\n" "PO-Revision-Date: 2007-06-02 10:11+0200\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should bindgraph start on boot?" msgstr "Skal bindgraph startes under systemopstarten?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Bindgraph can start on boot time as a daemon. Then it will monitor your BIND " "logfile for changes. This is recommended." msgstr "" "Bindgraph kan startes under systemopstarten. S vil den overvge ndringer i " "din BIND-logfil. Dette anbefales." #. Type: boolean #. Description #: ../templates:1001 msgid "The other method is to call bindgraph.pl by hand with the -l parameter." msgstr "Den anden metode er at kalde bindgraph.pl manuelt med tilvalget -l." #. Type: string #. Description #: ../templates:2001 msgid "Bindgraph log file:" msgstr "Bindgraph logfil:" #. Type: string #. Description #: ../templates:2001 msgid "" "Please specify the name of the log file from which data should be pulled to " "create the databases for bindgraph. If unsure, leave the default value." msgstr "" "Angiv navnet p den logfil, hvorfra data til bindgraphs databaser skal " "hentes. Hvis du er usikker, s behold det forvalgte." #. Type: boolean #. Description #: ../templates:3001 msgid "Remove RRD files on purge?" msgstr "Fjern RRD-file ved udrensning?" #. Type: boolean #. Description #: ../templates:3001 msgid "" "Bindgraph keeps its database files under /var/lib/bindgraph. Please choose " "whether this directory should be removed completely on purge." msgstr "" "BindGraph opbevarer sine databasefiler under /var/lib/bindgraph. Angiv om " "denne mappe skal fjernes helt, hvis pakken bliver udrenset ('purged')." #~ msgid "BIND9 logging required" #~ msgstr "BIND9-logning krves" #~ msgid "Bindgraph needs BIND logging to be active in order to work." #~ msgstr "For at bindGraph kan fungere, skal BIND-logning vre aktiv." #~ msgid "" #~ "The required configuration in 'named.conf' is explained in /usr/share/doc/" #~ "bindgraph/README." #~ msgstr "" #~ "Den pkrvede opstning i 'named.conf' er forklaret i /usr/share/doc/" #~ "bindgraph/README." #~ msgid "Which logfile should be used by BindGraph?" #~ msgstr "Hvilken logfil skal BindGraph benytte?" debian/postinst0000644000000000000000000000562011432516275011005 0ustar #!/bin/sh # postinst script for BindGraph # by Jose Luis Tallon . /usr/share/debconf/confmodule db_version 2.0 set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' n-favour' # # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # # quoting from the policy: # Any necessary prompting should almost always be confined to the # post-installation script, and should be protected with a conditional # so that unnecessary prompting doesn't happen if a package's # installation fails and the `postinst' is called with `abort-upgrade', # `abort-remove' or `abort-deconfigure'. RUNDIR=/var/run/servergraph DATADIR=/var/lib/bindgraph CACHEDIR=/var/cache/bindgraph DEFAULTS=/etc/default/bindgraph NAMED_CONF_LOG=/etc/bind/named.conf.logging case "$1" in configure) [ -d $RUNDIR ] || mkdir -p $RUNDIR chown daemon:root $RUNDIR db_get bindgraph/logfile || true LOGFILE="$RET" if [ ! -d $DATADIR ]; then mkdir $DATADIR; fi chown root:adm $DATADIR chmod 775 $DATADIR if [ ! -d $CACHEDIR ]; then mkdir -p $CACHEDIR; fi chown www-data:www-data $CACHEDIR # Solve #293819 BIND_VER="`dpkg -l bind9 | awk '/^ii/ { print $3; }'`" if [ -n $BIND_VER ] && dpkg --compare-versions "$BIND_VER" ge '9.3' ; then log_ver="bind93" ; else log_ver="bind92" ; fi if [ ! -f $DEFAULTS ]; then echo "DNS_LOG=$LOGFILE" > $DEFAULTS echo "LOG_FORMAT=${log_ver}" >> $DEFAULTS fi if [ -z "`egrep "^\s*DNS_LOG\s*=\s*$LOGFILE\s*$" $DEFAULTS`" ]; then # update log file location mv $DEFAULTS $DEFAULTS.tmp grep -v DNS_LOG $DEFAULTS.tmp > $DEFAULTS egrep -v "^\s*DNS_LOG\s*=" $DEFAULTS.tmp > $DEFAULTS echo "DNS_LOG=$LOGFILE" >> $DEFAULTS rm -f $DEFAULTS.tmp fi if [ -n "$2" ]; then # if we are upgrading, update config :-) if [ -z "`egrep "^\s*LOG_FORMAT\s*=" ${DEFAULTS}`" ]; then echo "LOG_FORMAT=${log_ver}" >> $DEFAULTS fi fi if [ ! -f $LOGFILE ]; then # Ensure something is there, so that BindGraph can start touch $LOGFILE chown root:adm $LOGFILE; chmod 640 $LOGFILE fi db_get bindgraph/start_on_boot if [ "$RET" = "true" ]; then update-rc.d bindgraph defaults >/dev/null ; else update-rc.d -f bindgraph remove >/dev/null 2>&1 ; fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \$1'" >&2 exit 1 ;; esac db_get bindgraph/start_on_boot if [ "$RET" = "true" ]; then invoke-rc.d --quiet bindgraph start fi db_stop # NO debhelper tag -- on purpose exit 0 debian/postrm0000644000000000000000000000253111322161627010437 0ustar #!/bin/sh # postrm script for CourierGraph # by Jose Luis Tallon set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' overwrit>r> # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package DATADIR=/var/lib/bindgraph CACHEDIR=/var/cache/bindgraph DEFAULTS=/etc/default/bindgraph case "$1" in purge) if [ -e /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule db_get bindgraph/stay_on_purge if [ "$RET" = "true" ]; then if [ -d $DATADIR ]; then rm -rf $DATADIR else rm -f $DATADIR/bindgraph.rrd fi fi fi rm -rf $CACHEDIR rm -f /etc/default/bindgraph ;; remove) rm -rf $CACHEDIR ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \$1'" >&2 exit 1 esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/install0000644000000000000000000000006411322161627010560 0ustar bindgraph.pl usr/sbin bindgraph.cgi usr/lib/cgi-bin