popularity-contest-1.57ubuntu1/ 0000755 0000000 0000000 00000000000 12144133670 013546 5 ustar popularity-contest-1.57ubuntu1/README.examples 0000644 0000000 0000000 00000002573 12144133427 016252 0 ustar
This directory contains some scripts used to post-process popularity-contest
entries. You should have a lot of submissions from different users (at
least 100 of them, if possible) for these results to be valid.
To collect results, use procmail or some other mail alias to e-mail
submissions to a file called, say, new-popcon-entries.
You should run popcon-process.sh once a day, or so. It calls prepop.pl to
split the mailbox file into a directory (popcon-entries) with one file per
submission, and only one submission per participant. (Since each
participant makes a submission only once per day, it's very important to
remove duplicates.)
HINT: if you have an account on popcon.debian.org, you can find a pre-processed
popcon-entries directory in /org/popcon.debian.org/popcon-mail. Feel free to
use these files to generate your own statistics.
Now you can do, for example:
cat popcon-entries/*/* | popanal.py
which creates a file named results. Output lines look like this:
is the package name;
is the number of people who use this package regularly;
is the number of people who installed, but don't use this package
regularly;
is the number of people who upgraded this package recently;
is the number of people whose entry didn't contain enough
information (atime and ctime were 0).
popularity-contest-1.57ubuntu1/popcon.pl 0000755 0000000 0000000 00000043304 12144133427 015410 0 ustar #! /usr/bin/perl -wT
use strict;
$ENV{PATH}="/bin:/usr/bin";
my %results=('all' => "../popcon-mail/results", 'stable' => "../popcon-mail/results.stable");
my $popbase = "../www";
my %popcon= ('all' => "", 'stable' => "/stable");
my %popfile=('all' => "all-popcon-results.gz", 'stable' => "stable-popcon-results.gz");
my %poptext=('all' => "All reports", 'stable' => "Stable reports");
my $mirrorbase = "/srv/mirrors/debian";
my $docurlbase = "/";
my %popconver=("1.28" => "sarge", "1.41" => "etch", "1.46" => "lenny",
"1.49" => "squeeze", "1.56" => "wheezy");
my %popver=();
my @dists=("main","contrib","non-free","non-US");
my @fields=("inst","vote","old","recent","no-files");
my %maint=();
my %list_header=(
"maint" => <<"EOF",
# is the developer name;
#
#The fields below are the sum for all the packages maintained by that
#developer:
EOF
"source" => <<"EOF",
# is the source package name;
#
#The fields below are the sum for all the binary packages generated by
#that source package:
EOF
"sourcemax" => <<"EOF");
# is the source package name;
#
#The fields below are the maximum for all the binary packages generated by
#that source package:
EOF
# Progress indicator
sub mark
{
print join(" ",$_[0],times),"\n";
}
# HTML templates
sub htmlheader
{
print HTML <<"EOH";
Debian Popularity Contest
Debian Popularity Contest
EOH
}
sub popconintro
{
my ($name,$page) = @_;
&htmlheader;
print HTML <<"EOF";
The popularity contest project is an attempt to map the usage of
Debian packages. This site publishes the statistics gathered from report
sent by users of the popularity-contest
package. This package sends every week the list of packages installed and the
access time of relevant files to the server via email. Every day the server
anonymizes the result and publishes this survey.
For more information, read the README and the
FAQ .
EOF
for (keys %poptext)
{
if ($_ eq $name) {
print HTML "$poptext{$_} \n";
} else {
print HTML "$poptext{$_} \n";
}
}
print HTML <<"EOF";
EOF
}
sub htmlfooter
{
my ($numsub) = @_;
my $date=gmtime();
print HTML <
inst : number of people who installed this package;
vote : number of people who use this package regularly;
old : number of people who installed, but don't use this package regularly;
recent : number of people who upgraded this package recently;
no-files : number of people whose entry didn't contain enough information (atime
and ctime were 0).
Number of submissions considered: $numsub
To participate in this survey, install the popularity-contest package.
EOF
print HTML <
Made by Bill Allombert . Last generated on $date UTC.
Popularity-contest project by Avery Pennarun, Bill Allombert and Petter Reinholdtsen.
Copyright (C) 2004-2005 SPI ;
See license terms .
EOH
}
# Report generators
sub make_sec
{
my $sec="$_[0]/$_[1]";
-d $sec || system("mkdir","-p","$sec");
}
sub print_by
{
my ($dir,$f)=@_;
print HTML ("$f [gz ] ");
}
sub make_by
{
my ($popcon,$sec,$order,$pkg,$winner,$listp) = @_;
my (%sum, $me);
my @list = sort {$pkg->{$b}->{$order}<=> $pkg->{$a}->{$order} || $a cmp $b } @{$listp};
$winner->{"$sec/$order"}=$list[0];
open DAT , "|-:utf8", "tee $popcon/$sec/by_$order | gzip -c > $popcon/$sec/by_$order.gz";
if (defined($list_header{$sec}))
{
print DAT $list_header{$sec};
$me="";
}
else
{
print DAT <<"EOF";
#Format
#
# is the package name;
EOF
$me="(maintainer)";
}
print DAT << "EOF";
# is the number of people who installed this package;
# is the number of people who use this package regularly;
# is the number of people who installed, but don't use this package
# regularly;
# is the number of people who upgraded this package recently;
# is the number of people whose entry didn't contain enough
# information (atime and ctime were 0).
#rank name inst vote old recent no-files $me
EOF
my $format="%-5d %-30s".(" %5d"x($#fields+1))." %-32s\n";
my $rank=0;
my $p;
for $p (@list)
{
$rank++;
my $m=(defined($list_header{$sec})?"":"($maint{$p})");
printf DAT $format, $rank, $p, (map {$pkg->{$p}->{$_}} @fields), $m;
$sum{$_}+=$pkg->{$p}->{$_} for (@fields);
}
print DAT '-'x66,"\n";
printf DAT $format, $rank, "Total", map {defined($sum{$_})?$sum{$_}:0} @fields, "";
close DAT;
}
sub make
{
my ($popcon, $sec,$pkg,$winner,$list)=@_;
make_sec ($popcon,$sec);
make_by ($popcon, $sec, $_, $pkg, $winner, $list) for (@fields);
}
sub print_pkg
{
my ($pkg)=@_;
return unless (defined($pkg));
my $size=length $pkg;
my $pkgt=substr($pkg,0,20);
print HTML "$pkgt ",
' 'x(20-$size);
}
my %section=();
my %source=();
#Format
#
#
# is the package name;
# is the number of people who use this package regularly;
# is the number of people who installed, but don't use this package
# regularly;
# is the number of people who upgraded this package recently;
# is the number of people whose entry didn't contain enough
# information (atime and ctime were 0).
sub read_result
{
my ($name) = @_;
my $results = $results{$name};
my (%pkg,%maintpkg,%sourcepkg,%sourcemax,%arch,$numsub,%release);
open PKG, "<:utf8","$results" or die "$results not found";
while()
{
my ($type,@values)=split(" ");
if ($type eq "Package:")
{
my @votes = @values;
my $name = shift @votes;
unshift @votes,$votes[0]+$votes[1]+$votes[2]+$votes[3];
$section{$name}='unknown' unless (defined($section{$name}));
$maint{$name}='Not in sid' unless (defined($maint{$name}));
$source{$name}='Not in sid' unless (defined($source{$name}));
for(my $i=0;$i<=$#fields;$i++)
{
my ($f,$v)=($fields[$i],$votes[$i]);
$pkg{$name}->{$f}=$v;
$maintpkg{$maint{$name}}->{$f}+=$v;
$sourcepkg{$source{$name}}->{$f}+=$v;
my($sm)=$sourcemax{$source{$name}}->{$f};
$sourcemax{$source{$name}}->{$f}=$v
if (!defined($sm) || $sm < $v);
}
}
elsif ($type eq "Architecture:")
{
my ($a,$nb)=@values;
$arch{$a}=$nb;
}
elsif ($type eq "Submissions:")
{
($numsub)=@values;
}
elsif ($type eq "Release:")
{
my ($a,$nb)=@values;
$release{$a}=$nb;
}
}
close PKG;
return {'name' => $name,
'pkg' => \%pkg,
'maintpkg' => \%maintpkg,
'sourcepkg' => \%sourcepkg,
'sourcemax' => \%sourcemax,
'arch' => \%arch,
'release' => \%release,
'numsub' => $numsub};
}
sub gen_sections
{
my ($stat) = @_;
my $name = $stat->{'name'};
my %pkg = %{$stat->{'pkg'}};
my %maintpkg = %{$stat->{'maintpkg'}};
my %sourcepkg = %{$stat->{'sourcepkg'}};
my %sourcemax = %{$stat->{'sourcemax'}};
my %arch = %{$stat->{'arch'}};
my %release = %{$stat->{'release'}};
my $numsub = $stat->{'numsub'};
my $popcon = "$popbase$popcon{$name}";
my $popfile = $popfile{$name};
my @pkgs=sort keys %pkg;
my %sections = map {$section{$_} => 1} keys %section;
my @sections = sort keys %sections;
my @maints= sort keys %maintpkg;
my @sources= sort keys %sourcepkg;
my %winner = ();
my ($sec, $dir, $f);
for $sec (@sections)
{
my @list = grep {$section{$_} eq $sec} @pkgs;
make ($popcon, $sec, \%pkg, \%winner, \@list);
}
#There is a hack: '.' is both the current directory and
#the catchall regexp.
for $sec (".",@dists)
{
my @list = grep {$section{$_} =~ /^$sec/ } @pkgs;
make ($popcon, $sec, \%pkg, \%winner, \@list);
}
make ($popcon, "maint", \%maintpkg, \%winner, \@maints);
make ($popcon, "source", \%sourcepkg, \%winner, \@sources);
make ($popcon, "sourcemax", \%sourcemax, \%winner, \@sources);
for $sec (@dists)
{
open HTML , ">:utf8", "$popcon/$sec/index.html";
opendir SEC,"$popcon/$sec";
popconintro($name,"$sec/index.html");
printf HTML ("Statistics for the section %-16s sorted by fields: ",$sec);
print_by (".",$_) for (@fields);
print HTML ("\n
\n");
printf HTML (" First packages in subsections for each fields \n");
printf HTML ("
Statistics for subsections sorted by fields\n
\n");
for $dir (sort readdir SEC)
{
-d "$popcon/$sec/$dir" or next;
$dir !~ /^\./ or next;
printf HTML ("%-16s : ",$dir);
print_by ($dir,$_) for (@fields);
print HTML ("\n");
}
print HTML ("\n \n");
htmlfooter $numsub;
closedir SEC;
close HTML;
}
for $sec (@dists)
{
open HTML , ">:utf8", "$popcon/$sec/first.html";
opendir SEC,"$popcon/$sec";
popconintro($name,"$sec/first.html");
printf HTML ("First package in section %-16s for fields: ",$sec);
for $f (@fields)
{
print_pkg $winner{"$sec/$f"};
}
print HTML ("\n
\n");
printf HTML (" Statistics by subsections sorted by fields \n");
printf HTML ("
First package in subsections for fields\n
\n");
printf HTML ("%-16s : ","subsection");
for $f (@fields)
{
printf HTML ("%-20s ",$f);
}
print HTML ("\n","_"x120,"\n");
for $dir (sort readdir SEC)
{
-d "$popcon/$sec/$dir" or next;
$dir !~ /^\./ or next;
printf HTML ("%-16s : ",$dir);
for $f (@fields)
{
print_pkg $winner{"$sec/$dir/$f"};
}
print HTML ("\n");
}
print HTML ("\n \n");
htmlfooter $numsub;
closedir SEC;
close HTML;
}
open HTML , ">:utf8", "$popcon/index.html";
popconintro($name,"index.html");
printf HTML ("Statistics for the whole archive sorted by fields:
");
print_by (".",$_) for (@fields);
print HTML (" \n
\n");
printf HTML ("Statistics by maintainers sorted by fields:
");
print_by ("maint",$_) for (@fields);
print HTML (" \n \n");
printf HTML ("Statistics by source packages (sum) sorted by fields:
");
print_by ("source",$_) for (@fields);
print HTML (" \n \n");
printf HTML ("Statistics by source packages (max) sorted by fields:
");
print_by ("sourcemax",$_) for (@fields);
print HTML (" \n \n");
printf HTML ("Statistics for sections sorted by fields\n
\n");
for $dir ("main","contrib","non-free","non-US","unknown")
{
-d "$popcon/$dir" or next;
$dir !~ /^\./ or next;
if ($dir eq "unknown")
{
printf HTML ("%-16s : ",$dir);
}
else
{
printf HTML ("%-16s : ",$dir);
}
print_by ($dir,$_) for (@fields);
print HTML ("\n");
}
print HTML <<'EOF';
Statistics per Debian architectures:
EOF
for $f (grep { $_ ne 'unknown' } sort keys %arch)
{
my ($port)=split('-',$f);
$port="$port/";
$port="kfreebsd-gnu/" if ($port eq "kfreebsd/");
printf HTML "%-16s : %-10s graph \n",$f,$arch{$f};
}
if (defined $arch{"unknown"}) {
printf HTML "%-16s : %-10s graph \n","unknown",$arch{"unknown"}
}
print HTML " \n";
print HTML <<'EOF';
EOF
print HTML <<'EOF';
Statistics per popularity-contest releases:
EOF
for $f (grep { $_ ne 'unknown' } sort keys %release)
{
my($name) = $f;
$name = "$f ($popconver{$f})" if (defined($popconver{$f}));
printf HTML "%-25s : %-10s \n",$name,$release{$f};
}
if (defined $release{"unknown"}) {
printf HTML "%-25s : %-10s \n","unknown",$release{"unknown"};
}
print HTML " \n";
print HTML <<'EOF';
EOF
print HTML "
\n";
print HTML "Raw popularity-contest results \n";
htmlfooter $numsub;
close HTML;
}
sub read_packages
{
my ($file,$dist);
for $file ("slink","slink-nonUS","potato","potato-nonUS",
"woody","woody-nonUS", values %popconver)
{
open AVAIL, "<:utf8", "$file.sections" or die "Cannot open $file.sections";
while()
{
my ($p,$sec)=split(' ');
defined($sec) or last;
chomp $sec;
$sec =~ m{^(non-US|contrib|non-free)/} or $sec="main/$sec";
$section{$p}=$sec;
$maint{$p}="Not in sid";
$source{$p}="Not in sid";
}
close AVAIL;
}
mark "Reading legacy packages...";
for $dist ("stable", "testing", "unstable")
{
for (glob("$mirrorbase/dists/$dist/*/binary-*/Packages.gz"))
{
/([^[:space:]]+)/ or die("incorrect package name");
my $file = $1;#Untaint
open AVAIL, "-|:encoding(UTF-8)","zcat $file";
my $p;
while()
{
/^Package: (.+)/ and do {$p=$1;$maint{$p}="bug";$source{$p}=$p;next;};
/^Version: (.+)/ && $p eq "popularity-contest"
and do { $popver{$dist}=$1; next;};
/^Maintainer: ([^()]+) (\(.+\) )*<.+>/
and do { $maint{$p}=join(' ',map{ucfirst($_)} split(' ',lc $1));next;};
/^Source: (\S+)/ and do { $source{$p}=$1;next;};
/^Section: (.+)/ or next;
my $sec = $1;
$sec =~ m{^(non-US|contrib|non-free)/} or $sec="main/$sec";
$section{$p}=$sec;
}
close AVAIL;
}
}
mark "Reading current packages...";
for $dist ("stable", "testing", "unstable")
{
my($v)=$popver{$dist};
$popconver{$v}=defined($popconver{$v})?"$popconver{$v}/$dist":$dist;
}
}
# Main code
read_packages();
mark "Reading packages...";
my %stat = ('all' => read_result('all'),
'stable' => read_result('stable'));
mark "Reading stats...";
for (keys %stat)
{
gen_sections($stat{$_});
}
mark "Building pages";
popularity-contest-1.57ubuntu1/clean-genpkglist 0000755 0000000 0000000 00000001003 12144133427 016715 0 ustar #!/bin/sh
#
# Author: Alain Schroeder
# Date: 2005-07-09
# Modified by Petter Reinholdtsen 2005-07-15
tempname=`tempfile`
temp2=`tempfile`
resultfile=packages
archs="alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc"
mirror="http://ftp.fi.debian.org/debian"
for i in $archs; do
wget "$mirror/dists/Debian3.1r0/main/binary-${i}/Packages.gz" -O "$tempname"
zcat $tempname | grep "^Package: " | sed -e 's/^Package: //' >> $temp2
done
sort -u $temp2 > $resultfile
rm $tempname $temp2;
popularity-contest-1.57ubuntu1/popcon-process.sh 0000755 0000000 0000000 00000003134 12144133427 017060 0 ustar #!/bin/sh
BASEDIR=/srv/popcon.debian.org/popcon-mail
MAILDIR=../Mail
WEBDIR=../www
LOGDIR=$BASEDIR/../logs
BINDIR=$BASEDIR/../bin
DATADIR=$BASEDIR/popcon-entries
SUMMARYDIR=$BASEDIR/all-popcon-results
SUMMARYDIRSTABLE=$BASEDIR/all-popcon-results.stable
# set to 'true' if email submissions should be processed
READMAIL=true
# Remove entries older than # number of days
DAYLIMIT=20
set -e
cd $BASEDIR
umask 0002
# rotate incoming mail spool files
if [ true = "$READMAIL" ] ; then
mv $MAILDIR/survey new-popcon-entries
touch $MAILDIR/survey
chmod go-rwx $MAILDIR/survey
# process entries, splitting them into individual reports
$BINDIR/prepop.pl $LOGDIR/prepop.out 2>&1
fi
# delete outdated entries
rm -f results results.stable
find $DATADIR -type f -mtime +$DAYLIMIT -print0 | xargs -0 rm -f --
# Generate statistics
find $DATADIR -type f | xargs cat \
| nice -15 $BINDIR/popanal.py >$LOGDIR/popanal.out 2>&1
cp results $WEBDIR/all-popcon-results
cp results.stable $WEBDIR/stable/stable-popcon-results
gzip -f $WEBDIR/all-popcon-results
gzip -f $WEBDIR/stable/stable-popcon-results
cp $WEBDIR/all-popcon-results.gz $SUMMARYDIR/popcon-`date +"%Y-%m-%d"`.gz
cp $WEBDIR/stable/stable-popcon-results.gz $SUMMARYDIRSTABLE/popcon-`date +"%Y-%m-%d"`.stable.gz
cd ../popcon-stat
find $SUMMARYDIR -type f -print | sort | $BINDIR/popcon-stat.pl ../www/stat>$LOGDIR/popstat.log 2>&1
find $SUMMARYDIRSTABLE -type f -print | sort | $BINDIR/popcon-stat.pl ../www/stable/stat >> $LOGDIR/popstat.log 2>&1
cd ../popcon-web
$BINDIR/popcon.pl >$LOGDIR/popcon.log 2>$LOGDIR/popcon.errors
popularity-contest-1.57ubuntu1/popcon-largest-unused 0000755 0000000 0000000 00000001037 12144133427 017733 0 ustar #!/bin/sh
#
# Author: Yann Dirson
# License: GPL
datafile=/var/log/popularity-contest
if [ ! -e $datafile ] ; then
echo "warning: Missing required file $datafile."
echo "info: Run 'popularity-contest > $datafile' to generate it."
exit 1
fi
grep '' $datafile | cut -d' ' -f3 |
xargs -r apt-cache -o 'APT::Cache::AllVersions=0' show |
grep -E '^(Package|Installed-Size): ' |
perl -ne 'if (/^Package: (.*)/) { $p = $1 }; if (/^Installed-Size: (.*)/) { print "$1 $p\n"; $p = 'BUG' }' |
sort -rn
popularity-contest-1.57ubuntu1/FAQ 0000644 0000000 0000000 00000011132 12144133427 014076 0 ustar Popularity-contest Frequently Asked Questions.
Q) What information is reported by popularity-contest ?
A) popularity-contest reports the system architecture you use, the version of
popularity-contest you use and the list of packages installed on your
system. For each package, popularity-contest looks at the most recently used
(based on atime) files, and reports the filename, its last access time
(atime) and last change time (ctime). However, some files are not
considered, because they have unreliable atime.
Q) What is considered a 'vote' for a package ?
A) A computer 'vote' for a package if according to the data provided in the
report, a program provided or depending on the package was used less than
thirty days ago. This computation is performed by the popcon server.
Q) What are the privacy considerations for popularity-contest ?
A) Each popularity-contest host is identified by a random 128bit uuid
(MY_HOSTID in /etc/popularity-contest.conf). This uuid is used to
track submissions issued by the same host. It should be kept secret.
The reports are sent by email or HTTP to the popcon server. The
server automatically extracts the report from the email or HTTP and
stores it in a database for a maximum of 20 days or until the host
sends a new report. This database is readable only by Debian
Developers. The emails are readable only by the server admins.
Every day, the server computes a summary and post it on
. This summary
is a merge of all the submissions and does not include uuids.
Known weaknesses of the system:
1) Your submission might be eavesdropped. We evaluate the possibility
to use public-key cryptography to protect the submission while in
transit.
2) Someone who knows that you are very likely to use a particular package
reported by only one person (e.g. you are the maintainer) might infer you
are not at home when the package is not reported anymore. However this is
only a problem if you are gone for more than two weeks if the computer is
shut-down and 23 days if it is let idle.
3) Unofficial and local packages are reported. This can be an issue
due to 2) above, especially for custom-build kernel packages.
We are evaluating how far we can alleviate this problem.
Q) /usr is mounted with 'noatime'.
A) popularity-contest relies on atime to know what packages were used during
the last month. This means you will only report the list of packages
installed without usage information.
Q) When does popularity-contest run ?
A) popularity-contest is run by the daily cron job
"/etc/cron.daily/popularity-contest", but only one day in the week,
which is specified in the configuration file. This day is chosen randomly
to spread the load on the server.
Under the default configuration of cron, this happens at 6:47 in the morning.
This can be changed by editing /etc/crontab but if your computer is not always
turned on, we really recommend you install the anacron package.
If /etc/cron.daily/popularity-contest has not run for more than a week, it will
accept to run any day.
Q) I don't want popcon email to be sent by root! How can I change that ?
A) To send as user 'myuser', edit the function 'do_sendmail' in
/etc/cron.daily/popularity-contest to
do_sendmail()
{
su myuser -s /bin/sh -c "/usr/sbin/sendmail -oi \"$MAILTO\""
}
Q) How can I pass extra options to sendmail ?
A) Add a line in /etc/popularity-contest.conf as follow
MTAOPS="-opt1 -opt2 -opt3"
Q) How can I prevent popularity-contest from sending reports via email?
A) This is not recommended. Reports are sent by email only when the HTTP
submission fails, which is generally caused by a temporary lack of internet
connectivity. By contrast, reports sent by email are stored in the mail server
queue until the internet connectivity is back.
Nevertheless, you can prevent popularity-contest from sending reports via email
by adding
MAILTO=
to /etc/popularity-contest.conf
Q) How can I specify a HTTP proxy server for the HTTP submission ?
Popularity-contest honors the environment variable http_proxy that you can
set in /etc/environment. Alternatively you can specify a proxy server
specifically for popularity-contest by adding a line
HTTP_PROXY="http://:"
to /etc/popularity-contest.conf.
Q) How can I convert the timestamps in the popcon report to human-readable
dates ?
A) The timestamps are just the number of seconds since the epoch, namely
1970-01-01 00:00:00 UTC. You can convert e.g. 1139229934 to a human-readable
date with
date -d '@1139229934'
popularity-contest-1.57ubuntu1/default.conf 0000644 0000000 0000000 00000003274 12144133427 016047 0 ustar # Default config file for Debian's popularity-contest package.
#
# Local overrides are in /etc/popularity-contest.conf
# PARTICIPATE can be one of "yes" or "no".
# If you don't want to participate in the contest, say "no"
# and we won't send messages.
#
# If this option is missing, the default is "no".
#
PARTICIPATE="no"
# MAILTO specifies the address to e-mail statistics to each week.
#
#MAILTO="popcon@ubuntu.com"
# MAILFROM is the forged sender email address you want to use in
# email submitted to the popularity-contest. If this is commented
# out, no From: or Sender: lines will be added to the outgoing mail,
# and it will be your MTA's job to add them. This is usually what
# you want.
#
# If your MTA is misconfigured or impossible to configure correctly,
# and it always generates invalid From: and/or Sender: lines, you
# can force different results by setting MAILFROM here. This can
# cause problems with spam bouncers, so most people should leave it
# commented out.
#
#MAILFROM="root@example.org"
# SUBMITURLS is a space separated list of where to submit
# popularity-contest reports using http.
SUBMITURLS="http://popcon.ubuntu.com/popcon-submit.cgi"
# USEHTTP enables http reporting. Set this to 'yes' to enable it.
USEHTTP="yes"
# HTTP_PROXY allows to specify an HTTP proxy server, the syntax is
# HTTP_PROXY="http://proxy:port". This overrides the environment
# variable http_proxy.
# MY_HOSTID is a secret number that the popularity-contest receiver
# uses to keep track of your submissions. Whenever you send in a
# new entry, it overwrites the last one that had the same HOSTID.
#
# This key was generated automatically so you should normally just
# leave it alone.
#
#MY_HOSTID="_ID_"
popularity-contest-1.57ubuntu1/popcon-submit.cgi 0000755 0000000 0000000 00000005632 12144133427 017042 0 ustar #!/usr/bin/perl -wT
#
# Receive HTTP post request with a file upload, uncompress it if
# needed, and submit it as an email to the popcon collector.
#
# Handle three different submission methods
# - simple post message, where the complete body is the popcon report
# (used by popcon version 1.30).
# - mime-encoded upload with report in compressed form (used by
# popcon version 1.31 and newer).
# - mime-encoded upload with report in uncompressed form (used by
# ubuntu popcon).
use strict;
use CGI;
use Compress::Zlib;
my $email='survey@popcon.ubuntu.com';
my $directsave = 0; # Enable to store on disk instead of sending an email
my $basedir = "/var/lib/popcon";
my $bindir = "$basedir/bin";
$ENV{PATH}="";
print "Content-Type: text/plain\n\n";
if (exists $ENV{REQUEST_METHOD} && $ENV{REQUEST_METHOD} ne "POST")
{
print "Debian Popularity-Contest HTTP-POST submission URL\n";
print "Visit http://popcon.ubuntu.com/ for more info.\n";
exit 0;
}
# Extract post data, handle both simple and multipart way
my @entry;
if (exists $ENV{CONTENT_TYPE} && $ENV{CONTENT_TYPE} =~ m%multipart/form-data%){
# New method, used in popularity-contest after 1.30
my $query = new CGI;
my $fh = $query->upload("popcondata");
if ($fh) {
my $filename = $query->param("popcondata");
my $type = $query->uploadInfo($filename)->{'Content-Type'};
if ("text/plain; charset=utf-8" ne $type &&
"application/octet-stream" ne $type) { # Used by ubuntu script
print "Only 'text/plain; charset=utf-8' and 'application/octet-stream' is supported (not $type)!";
die;
} else {
my $encoding = $query->uploadInfo($filename)->{'Content-Encoding'};
if ("x-gzip" eq $encoding || "gzip" eq $encoding) {
# Uncompress
print "Compressed ($encoding) encoding detected.\n";
my $data;
# $data = join("", <$fh>);
my $len = (stat($fh))[7];
read $fh, $data, $len;
$data = Compress::Zlib::memGunzip($data);
@entry = ($data);
} else { # Pass throught
print "Identity encoding detected.\n";
@entry = <$fh>;
}
}
} else {
print $query->cgi_error;
die;
}
} else {
# Old submit method, used in popularity-contest version 1.30
print "Old method detected.\n";
open GZIP, '/bin/gzip -dc|' or die "gzip";
close STDIN;
open STDIN, "<&GZIP";
@entry = ;
}
my ($id) = $entry[0] =~ m/POPULARITY-CONTEST-0 .+ ID:(\S+) /;
if ($id) {
if ($directsave) {
open(POPCON, "|$bindir/prepop.pl") or die "Unable to pipe to prepop.pl";
print POPCON @entry;
close POPCON;
} else {
open POPCON, "|/usr/lib/sendmail -oi $email" or die "sendmail";
print POPCON <<"EOF";
To: $email
Subject: popularity-contest submission
EOF
print POPCON @entry;
close POPCON;
}
}
if ($id) {
print "Thanks for your submission to Debian Popularity-Contest!\n";
print "DEBIAN POPCON HTTP-POST OK\n";
} else {
print "The submission to Debian Popularity-Contest failed!\n";
}
exit 0;
popularity-contest-1.57ubuntu1/prepop.pl 0000755 0000000 0000000 00000003651 12144133427 015420 0 ustar #!/usr/bin/perl -wT
# Accept popularity-contest entries on stdin and drop them into a
# subdirectory with a name based on their MD5 ID.
#
# Only the most recent entry with a given MD5 ID is kept.
#
$dirname = 'popcon-entries';
$now = time;
$state='initial'; # one of ('initial','accept','reject')
my($file,$mtime);
while(<>)
{
$state eq 'initial' and do
{
/^POPULARITY-CONTEST-0/ or next;
my @line=split(/ +/);
my %field;
for (@line)
{
my ($key, $value) = split(':', $_, 2);
$field{$key}=$value;
};
$id=$field{'ID'};
if (!defined($id) || $id !~ /^([a-f0-9]{32})$/)
{
print STDERR "Bad hostid: $id\n";
$state='reject'; next;
}
$id=$1; #untaint $id
$mtime=$field{'TIME'};
if (!defined($mtime) || $mtime!~/^([0-9]+)$/)
{
print STDERR "Bad mtime $mtime\n";
$state='reject'; next;
}
$mtime=int $1; #untaint $mtime;
$mtime=$now if ($mtime > $now);
my $dir=substr($id,0,2);
unless (-d "$dirname/$dir") {
mkdir("$dirname/$dir",0755) or do {$state='reject';next;};
};
$file="$dirname/$dir/$id";
open REPORT, ">",$file or do {$state='reject';next;};
print REPORT $_;
$state='accept'; next;
};
$state eq 'reject' and do
{
/^From/ or next;
$state='initial';next;
};
$state eq 'accept' and do
{
/^From/ and do
{
close REPORT;
unlink $file;
print STDERR "Bad report $file\n";
$state='initial';
next;
};
print REPORT $_; #accept line.
/^END-POPULARITY-CONTEST-0/ and do
{
close REPORT;
utime $mtime, $mtime, $file;
$state='initial';
next;
};
};
}
if ($state eq 'accept')
{
close REPORT;
unlink $file; #Reject
print STDERR "Bad last report $file\n";
}
popularity-contest-1.57ubuntu1/popanal.py 0000755 0000000 0000000 00000016636 12144133427 015571 0 ustar #!/usr/bin/python
#
# Read Debian popularity-contest submission data on stdin and produce
# some statistics about it.
#
import sys, string, time, glob, gzip
mirrorbase = "/srv/mirrors/debian"
def ewrite(s):
sys.stderr.write("%s\n" % s)
class Vote:
yes = 0
old_unused = 0
too_recent = 0
empty_package = 0
def vote_for(vote, package, entry):
now = time.time()
if entry.atime == 0: # no atime: empty package
vote.empty_package = vote.empty_package + 1
elif now - entry.atime > 30 * 24*3600: # 30 days since last use: old
vote.old_unused = vote.old_unused + 1
elif now - entry.ctime < 30 * 24* 3600 \
and entry.atime - entry.ctime < 24*3600: # upgraded too recently
vote.too_recent = vote.too_recent + 1
else: # otherwise, vote for this package
vote.yes = vote.yes + 1
deplist = {}
provlist = {}
class Stat:
def __init__(self):
self.vote = {}
self.release = {}
self.arch = {}
self.count = 0
def output(self,filename):
out = open(filename, 'w')
out.write("Submissions: %8d\n" % self.count)
releaselist = self.release.keys()
releaselist.sort()
for release in releaselist:
out.write("Release: %-30s %5d\n"
% (release, self.release[release]))
archlist = self.arch.keys()
archlist.sort()
for arch in archlist:
out.write("Architecture: %-30s %5d\n"
% (arch, self.arch[arch]))
pkglist = self.vote.keys()
pkglist.sort()
for package in pkglist:
fv = self.vote[package]
out.write("Package: %-30s %5d %5d %5d %5d\n"
% (package, fv.yes, fv.old_unused,
fv.too_recent, fv.empty_package))
out.close()
stat = Stat()
stat_stable = Stat()
def parse_depends(depline):
l = []
split = string.split(depline, ',')
for d in split:
x = string.split(d)
if (x):
l.append(x[0])
return l
def read_depends(filename):
file = gzip.open(filename, 'r')
package = None
while 1:
line = file.readline()
if line:
if line[0]==' ' or line[0]=='\t': continue # continuation
split = string.split(line, ':')
if not line or split[0]=='Package':
if package and (len(dep) > 0 or len(prov) > 0):
deplist[package] = dep
for d in prov:
if not provlist.has_key(d):
provlist[d] = []
provlist[d].append(package)
if package:
package = None
if line:
package = string.strip(split[1])
dep = []
prov = []
elif split[0]=='Depends' or split[0]=='Requires':
dep = dep + parse_depends(split[1])
elif split[0]=='Provides':
prov = parse_depends(split[1])
if not line: break
class Entry:
atime = 0;
ctime = 0;
mru_file = '';
def __init__(self, atime, ctime, mru_file):
try:
self.atime = long(atime)
self.ctime = long(ctime)
except:
self.atime = self.ctime = 0
self.mru_file = mru_file
class Submission:
# format: {package: [atime, ctime, mru_file]}
entries = {}
start_date = 0
arch = "unknown"
release= "unknown"
# initialize a new entry with known data
def __init__(self, version, owner_id, date):
self.entries = {}
self.start_date = long(date)
# process a line of input from the survey
def addinfo(self, split):
if len(split) < 4:
ewrite('Invalid input line: ' + `split`)
return
self.entries[split[2]] = Entry(split[0], split[1], split[3])
# update the atime of dependency to that of dependant, if newer
def update_atime(self, dependency, dependant):
if not self.entries.has_key(dependency): return
e = self.entries[dependency]
f = self.entries[dependant]
if e.atime < f.atime:
e.atime = f.atime
e.ctime = f.ctime
# we found the last line of the survey: finish it
def done(self, date, st):
st.count = st.count + 1
for package in self.entries.keys():
if deplist.has_key(package):
for d in deplist[package]:
self.update_atime(d, package)
if provlist.has_key(d):
for dd in provlist[d]:
self.update_atime(dd, package)
for package in self.entries.keys():
if not st.vote.has_key(package):
st.vote[package] = Vote()
st.vote[package].vote_for(package, self.entries[package])
if not st.release.has_key(self.release):
st.release[self.release] = 1
else:
st.release[self.release] = st.release[self.release] + 1
ewrite("#%s %s" % (st.release[self.release], self.release))
if not st.arch.has_key(self.arch):
st.arch[self.arch] = 1
else:
st.arch[self.arch] = st.arch[self.arch] + 1
def headersplit(pairs):
header = {}
for d in pairs:
list = string.split(d, ':')
try:
key, value = list
header[key] = value
except:
pass
return header
def read_submissions(stream):
e = None
while 1:
line = stream.readline()
if not line: break
split = string.split(line)
if not split: continue
if split[0]=='POPULARITY-CONTEST-0':
header = headersplit(split[1:])
if not header.has_key('ID') or not header.has_key('TIME'):
ewrite('Invalid header: ' + split[1])
continue
e = None
try:
e = Submission(0, header['ID'], header['TIME'])
except:
ewrite('Invalid date: ' + header['TIME'] + ' for ID ' + header['ID'])
continue
if header.has_key('POPCONVER'):
if header['POPCONVER']=='':
e.release = 'unknown'
else:
e.release = header['POPCONVER']
if header.has_key('ARCH'):
if header['ARCH']=='x86_64':
e.arch = 'amd64'
elif header['ARCH']=='i386-gnu':
e.arch = 'hurd-i386'
elif header['ARCH']=='':
e.arch = 'unknown'
else:
e.arch = header['ARCH']
elif split[0]=='END-POPULARITY-CONTEST-0' and e != None:
header = headersplit(split[1:])
if header.has_key('TIME'):
try:
date = long(header['TIME'])
except:
ewrite('Invalid date: ' + header['TIME'])
continue
e.done(date,stat)
if e.release=='1.49':
e.done(date,stat_stable)
e = None
elif e != None:
e.addinfo(split)
# end of while loop
# main program
for d in glob.glob('%s/dists/stable/*/binary-i386/Packages.gz' % mirrorbase):
read_depends(d)
for d in glob.glob('%s/dists/unstable/*/binary-i386/Packages.gz' % mirrorbase):
read_depends(d)
read_submissions(sys.stdin)
stat.output("results")
stat_stable.output("results.stable")
popularity-contest-1.57ubuntu1/README 0000644 0000000 0000000 00000012255 12144133427 014433 0 ustar
DEBIAN PACKAGE POPULARITY CONTEST - Avery Pennarun
=================================
This package contains a script, /usr/sbin/popularity-contest, which
generates a list of the packages installed on your system, in order of
most-recently-used to least-recently-used. The simplest way to use this
information is to help clean up your hard drive by removing unused packages.
For example,
popularity-contest | grep ''
will show you a list of packages you haven't used in a while. Note that
this output isn't totally accurate: some packages appear "old" but you can't
remove them because other (non-old) packages depend on them. Shared library
packages are particularly bad this way because it's impossible to tell when
a library was last used.
The popularity-contest output looks like this:
POPULARITY-CONTEST-0 TIME:914183330 ID:b92a5fc1809d8a95a12eb3a3c84166dd
914183333 909868335 grep /bin/fgrep
914183333 909868280 findutils /usr/bin/find
914183330 909885698 dpkg-awk /usr/bin/dpkg-awk
914183330 909868577 gawk /usr/bin/gawk
[...more lines...]
END-POPULARITY-CONTEST-0 TIME:914183335
The first and last lines allow you to put more than one set of
popularity-contest results into a single file and then split them up
easily later.
The rest of the lines are package entries, one line for each package
installed on your system. They have the format:
is the name of the Debian package that contains .
is the most recently used program, static library, or header
(.h) file in the package.
and are the access time and creation time of the
on your disk, respectively, represented as the number of
seconds since midnight GMT on January 1, 1970 (i.e. in Unix time_t format).
Linux updates whenever you open the file; was set when you
first installed the package.
is determined by popularity-contest depending on , , and
the current date. can be RECENT-CTIME, OLD, or NOFILES.
RECENT-CTIME means that atime is very close to ctime; it's impossible to
tell whether the package was used recently or not, since is also
updated when is set. Normally, this happens because you have
recently upgraded the package to a new version, resetting the .
OLD means that the is more than a month ago; you haven't used the
package for more than a month.
NOFILES means that no files in the package seemed to be programs, so
, , and are invalid.
PARTICIPATING IN THE PUBLIC SURVEY
==================================
You can help out the Debian Project by sending your popularity-contest
results to us anonymously. With information from enough people, we can
determine which packages are most often used, which are often installed but
not used, and which are nearly never used. That way, we can help people
make decisions about which packages should fit on the first Debian install
CD, for example, or which packages are most important for an FTP mirror site
to keep.
!!!!
SECURITY NOTE: it's impossible to make a submission completely anonymous,
since Internet servers tend to add headers and log messages along the way.
Our receiver program at debian throws away this information as soon as
possible so no one will see it, but if you're really paranoid you might not
want to participate.
!!!!
The popularity-contest package comes with a cron task to send the
information out to us each week. You can change where the submissions go
by editing /etc/popularity-contest.conf. Normally, you will send the
results to:
survey@popcon.debian.org
The result of the survey is available at
http://popcon.debian.org/
You can find some sample analysis scripts in
/usr/share/doc/popularity-contest as part of this package.
RELATED PROJECTS
================
There are several projects trying to count users and machines. First and
foremost is the Linux Counter at http://counter.li.org/. It tries to
estimate the amount of Linux users worldwide. Second, we are aware of
separate popcon installations at Fink, http://fink.opendarwin.org/popcon/
and Ubuntu, http://popcon.ubuntu.com, receiving information about the Ubuntu
users. We are sure there are others.
INSTALLATION PRESEEDING
=======================
The package support preseeding during installation to change the URL
used to submit reports. The template name is
'popularity-contest/submiturls', and it expect one or more space
separated URLs to use when submitting.
QUESTIONS ?
===========
Please look at the FAQ in /usr/share/doc/popularity-contest/FAQ
or for an up-to-date version, online at http://popcon.debian.org/FAQ
FINDING THE SOURCE
==================
This package is being maintained in Subversion using Alioth. The project summary
page is available from .
The project home page is at .
REPORTING BUGS
==============
Report bugs into the Debian Bug Tracking System. See
for instructions. If you want to get in
touch with the popularity contest maintainers, send an email to
popcon-developers@lists.alioth.debian.org.
popularity-contest-1.57ubuntu1/clean-filter 0000755 0000000 0000000 00000002377 12144133427 016052 0 ustar #!/usr/bin/perl
#
# Author: Alain Schroeder
# Date: 2005-07-09
# Modified by Petter Reinholdtsen 2005-07-15
use strict;
my %table;
my $foundentry = 0;
my $ignorecount = 0;
my $debug = 0;
open (PACKAGES, '< packages') or
die ("packages not found. please run clean-genpkglist first\n");
while () {
chomp;
$table{$_} = "1";
}
close PACKAGES;
# Truncate timestamps to the start of the day, to avoid giving out
# timezone information.
sub fuzzy_timestamp {
my $timestamp = shift;
return 86400 * int($timestamp / 86400);
}
while (my $line = ) {
if ($line =~ m/^POPULARITY-CONTEST-0/i) {
$foundentry = 1;
$ignorecount = 0;
$line =~ s/\b(TIME:)(\d+)\b/sprintf("%s%s", $1,fuzzy_timestamp($2))/e;
} elsif ($line =~ m/^END-POPULARITY-CONTEST-0/i) {
$foundentry = 0;
print "# Ignored $ignorecount entries\n";
$line =~ s/\b(TIME:)(\d+)\b/sprintf("%s%s", $1,fuzzy_timestamp($2))/e;
} elsif ($line =~ m/^\d+ \d+ (\S*).*/i && !exists $table{$1}) {
print STDERR "Ignoring package $1\n" if $debug;
$ignorecount++;
next;
} elsif ($line =~ m/^(\d+) (\d+) (\S+) (.+)$/i && exists $table{$3}) {
# Package entry
$line = sprintf("%d %d %s %s\n", fuzzy_timestamp($1),
fuzzy_timestamp($2), $3, $4);
}
print $line;
}
popularity-contest-1.57ubuntu1/popcon-upload 0000755 0000000 0000000 00000006177 12144133427 016267 0 ustar #!/usr/bin/perl -w
# Written by Bill Allombert for the Debian popularity-contest project.
# This file is placed in the public domain.
use strict;
use IO::Socket;
my %opts;
# Not using Getopt::Std to avoid perl-modules dependency
while($#ARGV >= 0 && ($_ = $ARGV[0]) =~ /^-/) {
shift @ARGV;
if (/^-C$/) { $opts{'C'} = 1; next }
if (/^-d$/) { $opts{'d'} = 1; next }
if (/^-u$/) { $opts{'u'} = shift; next }
if (/^-f$/) { $opts{'f'} = shift; next }
&usage("unknown option");
exit 1;
}
sub usage {
print "popcon-upload: error: @_\n" if ($#_ >= 0);
print <<"EOF";
Usage: $0 [-Cd] [-u ] [-f ]
-C send submissions in clear text, and not compressed
-d enable debugging
-u submit to the given URL (default popcon.debian.org)
-f read popcon report from file (default stdin)
EOF
}
my $compressed = 1; # Submit reports in a compressed form?
my ($submiturl) = $opts{'u'} || "http://popcon.debian.org/cgi-bin/popcon.cgi";
my ($file) = $opts{'f'} || "-";
$compressed = 0 if ($opts{'C'});
my ($host) = $submiturl =~ m%http://([^/]+)%;
print "Unable to parse url\n" if ($opts{'d'} && ! $host);
# Configure the proxy:
my ($http_proxy,$proxy,$port,$remote);
$http_proxy=$ENV{'http_proxy'};
if (defined($http_proxy))
{
$http_proxy =~ m{http://([^:]*)(?::([0-9]+))?}
or die ("unrecognized http_proxy");
$proxy=$1; $port=$2;
}
$proxy=$host unless (defined($proxy));
$port=80 unless (defined($port));
# Compress the report:
my ($str,$len);
my $encoding;
if ($compressed) {
open FILE, "gzip -c $file |" or die "gzip -c $file";
$encoding = "x-gzip";
} else {
open FILE, "< $file" or die "reading from '$file'";
$encoding = "identity";
}
$str .= $_ while();
close(FILE);
$len = length($str);
# 30 second timeout on http connections
$SIG{ALRM} = sub { die "timeout in popcon-upload\n" };
alarm(30);
# Connect to server
$remote = IO::Socket::INET->new(Proto => "tcp", PeerAddr => $proxy,
PeerPort => $port);
unless ($remote) { die "cannot connect to $proxy:$port" }
my $boundary = "----------ThIs_Is_tHe_bouNdaRY_\$";
#Content-Length: $len
# text/plain; charset=utf-8
my $ORS = "\r\n"; # Use DOS line endings to make HTTP happy
my $form;
$form .= "--${boundary}$ORS";
$form .= "Content-Disposition: form-data; name=\"popcondata\"; filename=\"popcon-data\"$ORS";
$form .= "Content-Encoding: $encoding$ORS";
$form .= "Content-Type: application/octet-stream$ORS$ORS";
$form .= "$str$ORS";
$form .= "--${boundary}--$ORS";
$form .= "$ORS";
my $formlen = length($form);
#Send data
print $remote "POST $submiturl HTTP/1.1\r\n";
print $remote "User-Agent: popcon-upload\r\n";
print $remote "Host: $host\r\n";
print $remote "Content-Type: multipart/form-data; boundary=$boundary\r\n";
print $remote "Content-Length: $formlen\r\n";
print $remote "\r\n";
print $remote "$form";
#Get answer
my($answer)="";
while(<$remote>)
{
$answer.=$_;
m/Thanks/ and last;
}
close ($remote);
#Check answer
my $status = ($answer =~ m/Thanks/) ? 0 : 1;
print "Failed to upload, answer '$answer'\n" if $status && $opts{'d'};
exit $status;
popularity-contest-1.57ubuntu1/debian/ 0000755 0000000 0000000 00000000000 12144133670 014770 5 ustar popularity-contest-1.57ubuntu1/debian/popularity-contest.8 0000644 0000000 0000000 00000003044 12144133427 020747 0 ustar .\" Hey, Emacs! This is an -*- nroff -*- source file.
.\"
.\"
.TH "POPULARITY-CONTEST" "8" "November 2001" "Debian/GNU Linux" ""
.SH "NAME"
popularity\-contest \- list the most popular Debian packages
.SH "SYNOPSIS"
.B popularity\-contest
.SH "DESCRIPTION"
The
.B popularity\-contest
command gathers information about Debian packages installed on the system,
and prints the name of the most recently used executable program in that
package as well as its last\-accessed time (atime) and last\-attribute\-changed
time (ctime) to stdout.
.PP
When aggregated with the output of
.B popularity\-contest
from many other systems, this information is valuable because it can be used
to determine which Debian packages are commonly installed, used, or
installed and never used. This helps Debian maintainers make decisions such
as which packages should be installed by default on new systems.
.PP
The resulting statistic is available from the project home page
.BR http://popcon.debian.org/ .
.PP
Normally,
.B popularity\-contest
is run from a
.BR cron (8)
job,
.BR /etc/cron.daily/popularity\-contest ,
which automatically submits the results to Debian package maintainers
(only once a week) according to the settings in
.BR /etc/popularity\-contest.conf
and
.BR /usr/share/popularity-contest/default.conf .
.SH "SEE ALSO"
The popularity\-contest FAQ at
.BR /usr/share/doc/popularity\-contest/FAQ
.BR popcon\-largest\-unused (8),
.BR cron (8)
.LP
Additional documentation is in
.BR /usr/share/doc/popularity\-contest/ .
.SH "AUTHOR"
Avery Pennarun .
popularity-contest-1.57ubuntu1/debian/popcon-largest-unused.8 0000644 0000000 0000000 00000000775 12144133427 021330 0 ustar .TH "popcon-largest-unused" "8" "" "Yann Dirson" ""
.SH "NAME"
.LP
popcon\-largest\-unused \- List size of unused packages
.SH "SYNTAX"
.LP
popcon\-largest\-unused
.SH "DESCRIPTION"
.LP
Based on the list of unused packages reported by
popularity\-contest, this program extract the package size
from the APT cache, and list the unused packages sorted
by size.
.SH "FILES"
.LP
\fI/var/log/popularity\-contest\fP
.SH "AUTHORS"
.LP
Yann Dirson
.SH "SEE ALSO"
.LP
popularity\-contest(8)
popularity-contest-1.57ubuntu1/debian/copyright 0000644 0000000 0000000 00000001417 12144133427 016726 0 ustar
This Debian package was both written and designed by Avery Pennarun. Here
is the copyright notice from the popularity-contest script.
#
# Copyright (C) 1998 by Avery Pennarun, for the Debian Project.
# Use, modify, and redistribute modified or unmodified versions in any
# way you wish.
#
The perl version of the popularity-contest script is
Copyright (C) 2003 by Bill Allombert
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
On Debian GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
popularity-contest-1.57ubuntu1/debian/changelog 0000644 0000000 0000000 00000142065 12144133427 016652 0 ustar popularity-contest (1.57ubuntu1) saucy; urgency=low
* Resynchronize with Debian (LP: #1177174), remaining changes:
- Set debconf question priority from "high" to "medium"
- Remove mail-transport-agent recommends
- Branding changes in the description and homepage
- Upload uncompressed reports
- Set submiturls to popcon.ubuntu.com
- Set email addresses to point to ubuntu.com
-- Matthew Fischer Tue, 07 May 2013 18:33:37 -0600
popularity-contest (1.57) unstable; urgency=low
* Please note when reading stats that wheezy was released with 1.56.
* debian/control:
- Fix grammar in Description. Closes: #699538 Thanks Chris Bannister.
* popcon.pl:
- add popcon version of wheezy
[ Christian Perrier ]
[ Debconf translations ]
* Kannada (Mallikarjuna). Closes: #694411
-- Bill Allombert Sun, 05 May 2013 21:21:15 +0200
popularity-contest (1.56ubuntu2) saucy; urgency=low
* Re-add some parts of Ubuntu delta accidentally dropped in previous
upload.
-- Dmitry Shachnev Mon, 06 May 2013 20:11:45 +0400
popularity-contest (1.56ubuntu1) raring; urgency=low
* Resynchronize with Debian, remaining changes:
- Set debconf question priority from "high" to "medium"
- Remove mail-transport-agent recommends
- Branding changes in the description and homepage
- Upload uncompressed reports
- Set submiturls to popcon.ubuntu.com
-- Sebastien Bacher Wed, 05 Dec 2012 19:24:10 +0100
popularity-contest (1.56) unstable; urgency=low
[ Christian Perrier ]
[ Debconf translations ]
* Latvian (Rūdolfs Mazurs). Closes: #674661
* Lithuanian (Rimas Kudelis). Closes: #675629
* Galician (Jorge Barreiro). Closes: #676988
* Welsh (Daffyd Tomos).
* Uyghur (Sahran). Closes: #627009
-- Bill Allombert Tue, 25 Sep 2012 21:13:44 +0200
popularity-contest (1.55) unstable; urgency=low
* popularity-contest: fix multi-arch support:
- Temporarily revert change from 1.53:
'Find package files lists by running dpkg -L by batches.'
(dpkg -L does not provide a stable interface across upgrade).
- Instead add '$package:*.list' to the list of filelists. Closes: #660712
- Reject files in subdirectories of */lib/ since they are read
by ldconfig now.
* FAQ: remove documentation relevant to pre-etch systems.
-- Bill Allombert Tue, 22 May 2012 22:10:42 +0200
popularity-contest (1.54) unstable; urgency=low
[ Bill Allombert ]
* README: mention move to subversion.
* popanal.py: sync with popcon.debian.org version:
- sort packages by name in all-popcon-results to prevent data leak.
Closes: #634474 Thanks Timo Juhani Lindfors for finding this issue.
- add support for generating stats for stable reports.
* popcon.pl, popcon-stat.pl, popcon-process.pl: sync:
- Add support for generating the stable reports part of the website.
* clean-filter: fix typo in error message. Patch from Bryce Nesbitt.
* popcon-stat.pl: Fix y-scale. Closes: #651902 Thanks Ben Hutchings.
* popanal.py, popcon-process.sh, popcon.pl:
- /org->/srv transition for new popcon.debian.org host.
* debian/control:
- Updated Standards-Version from 3.9.2 to 3.9.3. No change needed.
* popcon-largest-unused:
- Do not fail when there are no OLD packages.
Closes: #666771 Thanks Jeffrey Sheinberg
[ Debconf translations ]
* Sinhala; (Danishka Navin). Closes: #640757
* Icelandic (Sveinn í Felli).
* Kannada (Vikram Vincent). Closes: #659342
-- Bill Allombert Wed, 09 May 2012 00:03:32 +0200
popularity-contest (1.53) unstable; urgency=low
* popularity-contest:
- Find package files lists by running dpkg -L by batches. Closes: #622322
This fix an issues with multiarch packages. (sorry for the delay)
* debian/control:
- Updated Standards-Version from 3.9.1 to 3.9.2. No change needed.
-- Bill Allombert Thu, 30 Jun 2011 21:16:58 +0200
popularity-contest (1.52) unstable; urgency=low
* Please note when reading stats that squeeze was released with 1.49.
* Allow cron.daily to run if last run was more than 7 day ago.
Patch from Vagrant Cascadian. Closes: #610876
* FAQ: document how to disable sending report by email. Closes: #502159
Thanks, Ryo Furue.
* prepop.pl popcon-stat.pl popcon-process.sh popcon.pl:
- sync with popcon.debian.org version: rename all-popcon-results.txt.gz to
all-popcon-results.gz to avoid issues with content negotiation.
* popularity-contest:
- Check whether open(pkg.list) succeed.
* debian/cron.daily, FAQ:
- Add variable MTAOPS to pass extra options to sendmail. Closes: #403916.
Thanks Michelle Konzack
* examples/popcon-stat.pl was not executable.
-- Bill Allombert Sun, 03 Apr 2011 17:27:18 +0200
popularity-contest (1.51) unstable; urgency=low
[ Christian Perrier ]
* Really fix Pre-Depends "debconf (>= 1.5.34) | cdebconf (>= 0.106)"
to properly handle Serbian (Latin) debconf translations.
Closes: #610840
-- Bill Allombert Mon, 24 Jan 2011 16:10:12 +0100
popularity-contest (1.50) unstable; urgency=low
[ Christian Perrier ]
* Pre-Depend on debconf (>= 1.5.34) to properly handle Serbian (Latin)
debconf translation
* Translations:
- Serbian (Janos Guljas). Closes: #600123
- Serbian in Latin script (Janos Guljas). Closes: #600124
-- Bill Allombert Thu, 23 Dec 2010 12:24:36 +0100
popularity-contest (1.49) unstable; urgency=low
[ Bill Allombert ]
* popcon.pl:
- sync with popcon.debian.org version: add source (max) ratings.
* debian/control:
- Build-Depends: raise debhelper version to (>=5) to match compat.
- Updated Standards-Version from 3.8.1 to 3.9.1. No change needed.
[ Christian Perrier ]
* Translations:
- Telugu. Closes: #544044
- Italian (Milo Casagrande). Closes: #559503
- Simplified Chinese (苏运强).
- Slovenian (Vanja Cvelbar). Closes: #570103
- Persian added (Vahid Ghaderi). Closes: #587010,#587078
- Kazakh (Sarsenov D.). Closes: #587100
- Bosnian (Safir Secerovic).
-- Bill Allombert Sat, 09 Oct 2010 19:13:27 +0200
popularity-contest (1.48) unstable; urgency=low
[ Bill Allombert ]
* popcon.pl:
- sync with popcon.debian.org version: add release names.
* popularity-contest:
- use "dpkg --print-architecture" instead of
"dpkg --print-installation-architecture". Closes: #529393
* debian/control:
- Updated Standards-Version from 3.8.0 to 3.8.1. No change needed.
* debian/compat:
- Set debhelper compatibility level to 5
[ Christian Perrier ]
* Translations:
- Slovak updated. Closes: #517101
-- Bill Allombert Sun, 14 Jun 2009 18:10:30 +0200
popularity-contest (1.47) unstable; urgency=low
* Please note when reading stats that lenny was released with 1.46.
[ Christian Perrier ]
* Translations:
- Macedonian
- Asturian added. Closes: #511141
- Kazakh added. Closes: #514590
[ Bill Allombert ]
* debian/popularity-contest.8, FAQ:
- Updated to reflect move to /etc/cron.daily. Closes: #500431
Thanks William Dode.
* FAQ: Fix typo reported by Raphael Geissert. Closes: #496605
* debian/preinst, debian/postrm:
- Add 'set -e'.
-- Bill Allombert Fri, 20 Feb 2009 11:33:21 +0100
popularity-contest (1.46) unstable; urgency=low
[ Petter Reinholdtsen ]
* Make sure to reinsert the ID if it is missing in the configuration
file. Based on bug reported by Alf-Tonny Batz.
[ Christian Perrier ]
* Translations:
- Irish. Closes: #480871
- Belarusian. Closes: #483527
- Korean. Closes: #491413
- Georgian. Closes: #498418
[ Bill Allombert ]
* popcon-stat.pl:
- sync with popcon.debian.org version: add graphs restricted to last 3
months.
* Updated standards-version from 3.7.3 to 3.8.0. No change needed.
-- Bill Allombert Mon, 22 Sep 2008 21:01:29 +0200
popularity-contest (1.45) unstable; urgency=low
[ Petter Reinholdtsen ]
* Fix typo in debug message emitted from prepop.pl.
[ Bill Allombert ]
* popcon.pl:
- revert changes introduced in 1.44.
- Use :encoding(UTF-8) instead of :utf8 when reading packages files
- Add query box linking to
* debian/control:
- No more Recommends mime-construct. Closes: #466352.
- Recommends cron | fcron. Closes: #479664.
* Instead of reporting on Sunday, now a random day in the week is
chosen. This spread the load on the server. Closes: #440493, #459910.
-- Petter Reinholdtsen Sun, 11 May 2008 12:20:19 +0200
popularity-contest (1.44) unstable; urgency=low
[ Petter Reinholdtsen ]
* Make sure popanal do not crash when an invalid timestamp is found
in the POPULARITY-CONTEST-0 header.
* Remove code in cron.weekly to sleep a random period of time up to
an hour, to test hypothesis that this was not the reason for the
increase in submissions seen the last few months. Possibly
reopens #440493, #459910.
* Change popcon.pl to handle the fact that
/org/ftp.root/debian/dists/stable/main/binary-*/Packages.gz is not
UTF-8. Otherwise it would croak on a name containing 'ó'.
-- Petter Reinholdtsen Tue, 18 Mar 2008 20:17:48 +0100
popularity-contest (1.43) unstable; urgency=low
[ Christian Perrier ]
* Translations:
- Kannada added. Closes: #422031
- Hebrew updated. Closes: #445532
[ Bill Allombert ]
* Remove popcon-upload-ubuntu and popcon-submit-ubuntu.cgi, dropped
by Ubuntu.
* popularity-contest used files regexp:
- add support for php scripts
- Add missing $ after .pm. Closes: #431535, Thanks Gerfried Fuchs.
* cron.weekly, function run_popcon():
- remove spurious 'sh -c'
- add -s /bin/sh in case nobody has no shell. Closes: #429405, #431867.
* cron.weekly, default.conf, FAQ:
- Add support for HTTP_PROXY. Closes: #365681.
* Apply patch from Johan Walles to treat all mapped files as recently used
(which they obviously are). Closes: #457441, #327693.
[ Petter Reinholdtsen ]
* Add code in cron.weekly to sleep a random period of time up to an
hour, to make sure all clients do not connect at the same time.
Closes: #440493, #459910.
* Updated standards-version from 3.7.2 to 3.7.3. No change needed.
* Include files in subdirectories under */lib/, to avoid files
updated by ldconfig while still counting such packages as used
(Closes: #457432)
* Move homepage URL to the new Homepage control file tag.
-- Petter Reinholdtsen Sun, 13 Jan 2008 14:32:32 +0100
popularity-contest (1.42) unstable; urgency=low
[ Christian Perrier ]
* Translations:
- Catalan minor update. Closes: #416945
- Marathi added. Closes: #416793
[ Bill Allombert ]
* Please note when reading stats that etch was released with 1.41.
-- Bill Allombert Mon, 9 Apr 2007 20:50:55 +0200
popularity-contest (1.41) unstable; urgency=low
* debian/control: Remove first person use from the package description
Closes: #414340. Thanks Filipus Klutiero.
* debian/cron.weekly: call su without -p to keep $HOME sane.
Closes: #414644. Thanks Robert Luberda
-- Bill Allombert Sat, 17 Mar 2007 19:03:31 +0100
popularity-contest (1.40) unstable; urgency=medium
* Medium urgency for i18n only upload.
[ Christian Perrier ]
* Translations
- Updated Basque by Piarres Beobide. Closes: #400911
- Added Malayalam by Praveen. Closes: #401437
- Added Tamil by Senthil Kumar
- Updated Norwegian Nynorsk by Håvard Korsvoll. Closes: #402789
- Updated Esperanto by Serge Leblanc. Closes: #409430
- Updated Slovenian by Matej Kovacic
- Updated Turkish by Recai Oktas. Closes: #406996
[ Petter Reinholdtsen ]
* Minor cleanup to the changelog formatting.
-- Bill Allombert Sun, 11 Feb 2007 15:35:03 +0100
popularity-contest (1.39) unstable; urgency=low
* Translations
- Updated Bosnian by Safir Secerovic. Closes: #396367
- Updated Bulgarian by Damyan Ivanov. Closes: #396530
- Updated Polish by Bartosz Fenski. Closes: #396714
- Updated Punjabi by Amanpreet Singh Alam.
-- Petter Reinholdtsen Thu, 16 Nov 2006 08:41:35 +0100
popularity-contest (1.38) unstable; urgency=medium
* Fix typo in postinst preseeding code (SUBMITRULS -> SUBMITURLS).
* Medium urgency to get this fix quickly into etch.
-- Petter Reinholdtsen Sun, 29 Oct 2006 09:54:57 +0100
popularity-contest (1.37) unstable; urgency=low
* Translations
- Added Gujarati by Kartik Mistry. Closes: #393444
- Added Hindi by Ravishankar Shrivastava
- Updated Gujarati by Arief S Fitrianto.
- Updated Catalan by Jordi Mallach.
- Updated Albanian by Elian Myftiu. Closes: #394699
-- Petter Reinholdtsen Sat, 28 Oct 2006 12:31:42 +0200
popularity-contest (1.36) unstable; urgency=medium
* medium urgency: #386879 fix a missing dependency.
* popularity-contest:
+ Remove support for woody.
+ Report atimes of System.map files in /boot. (Closes: #229237)
* debian/cron.weekly:
+ Remove support for sending compressed email since there is no support
for that feature on the server side, and debian/cron.weekly being a
conffile should be kept simple.
* debian/control:
+ Do not Depends on '| dpkg-awk' for woody support.
+ Remove spurious Build-Depends line.
+ Fix the long description.
* Translations
- Added Wolof by Mouhamadou Mamoune Mbacke. (Closes: #392151)
- Updated Traditional Chinese by Tetralet.
-- Bill Allombert Tue, 10 Oct 2006 18:10:27 +0200
popularity-contest (1.35) unstable; urgency=low
[Petter Reinholdtsen]
* Rewrite argument parsing code in popcon-upload to avoid the
perl-modules dependency and to keep the disk footprint for popcon
small. (Closes: #386879)
* Translations
- Added Bengali by Mahay Alam Khan.
- Updated Hebrew by Lior Kaplan. Closes: #387635
- Updated Brazilian Portuguese by Andre Luis Lopes. Closes: #389098
- Updated Croatian by Josip Rodin. Closes: #389708
- Updated Danish by Claus Hindsgaul. Closes: #390611
- Updated Ukrainian by Eugeniy Meshcheryakov. Closes: #390738
- Updated Hungarian by SZERVÁC Attila. Closes: #390746
- Added Estonian by Siim Põder. Closes: #390973
- Updated Macedonian by Georgi Stanojevski. Closes: #390804
- Updated Norwegian Bokmål from Petter Reinholdtsen.
-- Petter Reinholdtsen Sat, 7 Oct 2006 00:19:23 +0200
popularity-contest (1.34) unstable; urgency=low
[ Bill Allombert ]
* popcon.pl: add support for favicon.
[Petter Reinholdtsen]
* Changed popcon-submit.cgi to only report success when it is able to extract
the submitter ID from the report.
* Changed prepop.pl to only fail if mkdir fails when the directory is
missing in the first place.
* Make sure HTTP headers use \r\n instead of \n as line ending, to
avoid confusing transparent Cisco proxies. Patch from
Richard Burton. (Closes: #379732)
* Check files in ^/boot/ as well, to detect if a kernel package was
used. (Closes: #229237)
* Clarify participation question, to make it easier to understand
for those that do not know what the popularity contest
is. Based on patch from Thijs Kinkhorst. (Closes: #361840)
* Change the default HTTP submission setting, from no to yes. It is
well tested and work fine.
* Remove question about submission method (http/smtp). The HTTP
method is and should be the primary submit method for new
installations, and existing installations will continue to only
use SMTP. This removes the unclear question. (Closes: #317527)
* Remove unused template popularity-contest/hostid-failed.
* Change package description and question text to make it less
debian specific and avoid indication that only Debian packages are
reported (also non-Debian packages are reported). Based on patch
from Ubuntu and input from Christian Perrier.
* Adjust the popularity-contest(8) manual page to only say 'submit',
instead of 'email', to avoid confusing users. (Closes: #341144)
* Update standards-version from 3.6.2 to 3.7.2. No changes needed.
* Add Build-Depends with the same dependencies as
Build-Depends-Indep, to keep lintian happy.
* Add hidden debconf question popularity-contest/submiturls to
support preseeding the submission URL. (Closes: #384144)
* Remove double quotes around $MAILTO to allow users to request a
copy of the email-submitted reports. (Closes: #326593)
* Translations
- Updated Italian (it) by Davide Viti.
- Updated Tagalog (tl) by Eric Pareja.
- Updated Esperanto (eo) by Serge Leblanc.
- Updated German (de) by Jens Seidel.
- Updated Greek (el) by Emmanuel Galatoulas.
- Updated Norwegian Bokmål from Petter Reinholdtsen.
[ Christian Perrier ]
- Updated Khmer by Khoem Sokhem. (Closes: #359672)
- Updated Norwegian Nynorsk by Håvard Korsvoll. (Closes: #367248)
- Added Nepali by Paras Pradhan. (Closes: #369529)
- Added Dzongkha by Pema geyleg. (Closes: #368591)
- Added Thai by Theppitak Karoonboonyanan. (Closes: #367338)
- Updated Italian (typos) by Davide Viti. (Closes: #370010)
- Updated Hungarian by SZERVAC Attila. (Closes: #378371)
- Updated Basque by Piarres Beobide. (Closes: #381845)
- Updated Slovenian by Jure Cuhalev. (Closes: #381862)
- Updated Dutch by Thijs Kinkhorst. (Closes: #381931)
- Updated Galician by Jacobo Tarrio. (Closes: #380594)
[ Mohammed Adnène Trojette ]
* Translations:
- Updated Arabic by Ossama Khayat.
- Updated Czech by Miroslav Kure. (Closes: #380436)
- Updated Dzongkha by Dorji Tashi. (Closes: #368591)
- Updated Finnish by Tapio Lehtonen. (Closes: #380445)
- Updated French by Florentin Duneau.
- Updated Japanese by Kenshi Muto. (Closes: #380475)
- Updated Khmer by Khoem Sokhem. (Closes: #359672)
- Updated Korean by Sunjae Park. (Closes: #380362)
- Updated Lithuanian by Gintautas Miliauskas. (Closes: #380398)
- Updated Nepali by Shyam Krishna Bal. (Closes: #369529)
- Updated Portuguese by Miguel Figueiredo. (Closes: #384885)
- Updated Romanian by Eddy Petrişor. (Closes: #380489)
- Updated Russian by Yuri Kozlov. (Closes: #380429)
- Updated Simplified Chinese by Carlos Z.F. Liu. (Closes: #381002)
- Updated Slovak by Peter Mann. (Closes: #380431)
- Updated Spanish by Rubén Porras. (Closes: #380655)
- Updated Swedish by Daniel Nylander. (Closes: #381049)
- Updated Thai by Theppitak Karoonboonyanan. (Closes: #380358)
- Updated Turkish by Recai Oktaþ. (Closes: #380334)
- Updated Vietnamese by Clytie Siddall. (Closes: #380359)
-- Petter Reinholdtsen Mon, 4 Sep 2006 19:09:06 +0200
popularity-contest (1.33) unstable; urgency=low
[Mohammed Adnène Trojette]
* Translations:
- Updated Brazilian by André Luís Lopes. (Closes: #348107)
- Updated Esperanto by Serge Leblanc. (Closes: #351085)
- Updated Slovenian by Jure Cuhalev. (Closes: #351101)
- Updated Hungarian by Hajnalka Hegedus. (Closes: #353024)
- Updated Korean by Sunjae Park. (Closes: #339013)
- Updated Khmer by Khoem Sokhem. (Closes: #359672)
[Christian Perrier]
- Added Macedonian by Georgi Stanojevski
- Rename the Punjabi translation file name from pa_IN to pa
to fit a decision taken in -i18n
[Bill Allombert]
* FAQ:
- Apply spelling fix by Thijs Kinkhorst, thanks! (Closes: #348329)
- Remove paragraph about 'valid sender domain' since popcon.debian.org
mail-server no more requires it.
- Add question about converting timestamp to date (Closes: #322261)
Thanks Nathan Stratton Treadway.
- Add question "What is considered a 'vote' for a package ?".
(Closes: #321365). Thanks Nathan Stratton Treadway.
* popcon.pl: switch I/O to UTF-8. As a side effect this fix the indenting
(Closes: #333597). Thanks Gürkan Sengün.
* popcon-upload: parse server output for success as it is received instead
of waiting for the socket to close which might happen after the timeout,
thuse reporting spurious failure. (Closes: #350934). Thanks Javier Kohen.
-- Bill Allombert Fri, 7 Apr 2006 15:37:00 +0200
popularity-contest (1.32) unstable; urgency=low
[Petter Reinholdtsen]
* Add variable mirrorbase to popanal.py, to make it easier to set up
a new server.
* Remove listing email as the transport method in the package
description, and make the description independent of the method
used. This reflect the new HTTP transport support. (Closes: #321056)
* Update the FAQ to better reflect the support for HTTP submissions.
* popcon-upload-ubuntu: Replace ubuntulinux.org with ubuntu.com. Patch
from Colin Watson and Ubuntu.
* Correct use of 'su' in cron-script. (Closes: #331438)
* Make it possible to get popcon to only report using HTTP. Patch
from Vagrant Cascadian. (Closes: #325030)
* Added debian/compat to set debhelper compatibility level to 4, and
remove debian/conffiles as it is no longer needed.
* Let popcon-submit.cgi pipe incoming reports through prepop.pl
instead of saving it directly to disk, to make sure the same
sanity checks are done for both HTTP and SMTP reports. Thanks to
Bill Allombert for pointing out the risks of the old approach.
[Bill Allombert]
* Fix server-side scripts to use the Packages.gz files instead of the
Packages file.
[Mohammed Adnène Trojette]
* Translations:
- Updated Romanian by Eddy Petrisor. (Closes: #323225)
- Updated Swedish from Daniel Nylander. (Closes: #332710)
- Updated Tagalog from Eric Pareja. (Closes: #338614)
- Updated Danish from Morten Brix Pedersen. (Closes: #340129)
- Updated Korean from Sunjae Park. (Closes: #343688)
- Updated Greek from George Papamichelakis. (Closes: #344584)
- Updated Catalan from Aleix Badia i Bosch. (Closes: #345228)
- Updated Turkish from Recai Oktas. (Closes: #347713)
[Christian Perrier]
* Translations:
- Added Punjabi translation by Amanpreet Singh Alam
- Updated Dutch translation by bart Cornelis
-- Petter Reinholdtsen Sat, 14 Jan 2006 09:56:05 +0100
popularity-contest (1.31) unstable; urgency=low
[Petter Reinholdtsen]
* Add scripts to clean out non-debian packages from the entries, to
make it possible to publish anonymous raw data. Based on code
from Alain Schroeder.
* Rewrote popcon-upload to submit reports using MIME-encoded file
uploads to match the common practice for browser-based file
uploads. (Closes: #319019)
* Change popcon-submit.cgi to handle uploads in both the old upload
format and the new upload format, as well as the ubuntu
(uncompressed) format.
* Add support in popcon-submit.cgi to save directly to disk instead
of sending emails.
* Change popcon-submit-ubuntu.cgi to make it easier to run with
older python versions, and make sure the reply matches the
"success" string used by popcon-upload.
* Change popcon.pl to read section info from the stable branch as
well, and make sure it keep working even if one of the sections
are empty.
* Use more variables in popcon-process.sh to make it easier to
deploy on other servers.
* Change code for detecting old dpkg version and using dpkg-awk
instead to avoid error message when dpkg-query is missing. Modify
dependency to depend on 'dpkg (>= 1.10) | dpkg-awk'. This should
make sure it work on woody as well.
* Make sure the server scripts are installed uncompressed, for easy
access when setting up a server.
* Translations
- Updated Japanese from Kenshi Muto. (Closes: #317402)
- Updated Russian from Yuri Kozlov. (Closes: #317449)
- Updated Vietnamese from Phan Vinh Thinh. (Closes: #317630)
- Updated German by Dennis Stampfer.
- Updated Albanian by Elian Myftiu. (Closes: #319079)
- Updated Arabic by Ossama M. Khayat.
- Updated Polish by Bartosz Fenski. (Closes: #320132)
-- Petter Reinholdtsen Fri, 29 Jul 2005 01:54:43 +0200
popularity-contest (1.30) unstable; urgency=low
* Add support for reporting using http POST to a list of URLs.
Uploading using content-type text/plain, content-encoding
x-gzip, with 30 second timeout. (Closes: #239097)
* HTTP submissions are enabled by default for new installs, but
disabled by default for upgrades.
* New client script /usr/share/popularity-contest/popcon-upload.
* New server CGI /usr/share/doc/popularity-contest/popcon.cgi.
* Added simple FAQ entry about the http POST feature.
* Code done by Bill Allombert. Patch based on code from Ubuntu,
though reimplemented in perl to avoid python dependency. The
ubuntu versions are included in the source package as
popcon-submit-ubuntu.cgi and popcon-upload-ubuntu.
* Added low priority debconf question asking if http should be used.
Only ask this question if participating.
* Rewrote the participation template text, to only talk about
submissions and not emails, making it neutral to the submission
method used.
* debian/cron.weekly:
- Try to run /usr/share/popularity-contest/popcon-upload if
USEHTTP is enabled
- Do not send email if http POST method was successfull.
- Do not run sendmail if it is not available, to work without
mail-transport-agent. Redused depend on mail-transport-agent to
recommends, as the default for new installs is HTTP, and
existing installations are expected to already have
mail-transport-agent installed.
* Depend on ${misc:Depends} instead of debconf, to get the updated
debconf dependency.
* Rewrote popularity-contest to use dpkg-awk if dpkg-query is
missing. This make it compatible with dpkg versions before 1.10,
getting it to work on woody, sarge, etch and sid. Drop versioned
dependency on dpkg because of this.
* Implemented sending of compressed MIME emails when recommended
package mime-construct is installed. Disabled until the server
side is implemented. (Debian bug #149425)
* Add info in README about the linux counter. (Closes: #259004)
* Updated to Standards-Version 3.6.2. No changes required.
* Translations (Done by Christian Perrier)
- Updated Italian from Cristian Rigamonti
- Updated French from Christian Perrier
- Updated Norwegian Bokmål from Petter Reinholdtsen
- Updated Basque from Iñaki Larranaga Murgoitio
- Updated Galician from Jacobo Tarrío. (Closes: #317135)
- Updated Simplified Chinese from Carlos Z.F. Liu. (Closes: #317136)
- Updated Lithuanian from Gintautas Miliauskas. (Closes: #317139)
- Updated Czech from Miroslav Kure. (Closes: #317141)
- Updated Ukrainian from Eugeniy Meshcheryakov. (Closes: #317151)
- Updated Hebrew from Lior Kaplan. (Closes: #317153)
- Updated Slovak from Peter Mann. (Closes: #317154)
- Updated Portuguese from Miguel Figueiredo. (Closes: #317172)
- Updated Finnish from Tapio Lehtonen. (Closes: #317276)
- Updated Spanish from Ruben Porras. (Closes: #317281)
- Updated Indonesian from Parlin Imanuel. (Closes: #317326)
- Updated Bulgarian from Ognyan Kulev. (Closes: #317328)
-- Petter Reinholdtsen Thu, 7 Jul 2005 20:12:53 +0200
popularity-contest (1.29) unstable; urgency=low
* Please note when reading stats that sarge was released with 1.28.
* debian/rules: Ship popcon-stat.pl as example script.
* popcon.pl: Generate more standard-compliant HTML.
* popularity-contest: Remove extraneous space at end of lines.
Closes: #295763. Thanks Erik Schanze.
* popanal.py: Update warning to match code.
* README.examples: update to reflect current arrangement
* Translations (Done by Christian Perrier)
- Portuguese translation updated by Miguel Figueiredo.
-- Bill Allombert Tue, 7 Jun 2005 16:58:30 +0200
popularity-contest (1.28) unstable; urgency=low
* Update example server-side scripts to popcon.d.o version:
- popcon.pl: Fix typos in index.html header text.
+ Output timings to stdout.
- popanal.py: Catch broken date field in reports.
- popcon-process.sh: redirect popcon.pl output to popcon.log
* Translations (Done by Christian Perrier)
- Added Galician by Jacobo Tarrio. Closes: #296307
- Added Albanian by Elian Myftiu. Closes: #302398
- Added Tagalog by Eric Pareja. Closes: #296409
- Updated Basque from Inaki Larranaga Murgoitio. Closes: #306049
- Added Vietnamese by Phan Vinh Thinh. Closes: #307015
-- Bill Allombert Tue, 3 May 2005 17:27:33 +0200
popularity-contest (1.27) unstable; urgency=low
* Translations
- Corrections in Ukrainian uk.po. Closes: #290752
* popcon-stat.pl, popcon-process.sh: change the interface to avoid
use of xargs which has a length limit.
* popcon.pl: compute statistics for source packages. Closes: #291747.
* FAQ: Fix typo noticed by Thomas Wana.
* debian/rules: use dh_installman instead of dh_installmanpages.
-- Bill Allombert Fri, 18 Feb 2005 18:35:16 +0100
popularity-contest (1.26) unstable; urgency=low
* popcon.pl: Accomodate with kfreebsd-gnu new URL.
+ Add popcon release stats.
* popcon-stat.pl: Unclutter the graph.
+ Generate the popcon release graph.
* FAQ: Document how to not send popcon email by root. Closes: #264593
Thanks Martin Dickopp.
+ Document when popularity-contest run and recommends anacron.
Thanks Martin Rasp.
* debian/control: Suggests: anacron.
* Remove regexp to catch .pyc files since there are not in packages.
Closes: #265360. Thanks Martin v. Loewis.
-- Bill Allombert Fri, 29 Oct 2004 10:20:28 +0200
popularity-contest (1.25) unstable; urgency=low
* Petter Reinholdtsen
- Removed Avery Pennarun as uploader on request from
Jeroen van Wolffelaar (QA).
* Translations
- Initial Bulgarian debconf translation bg.po. Closes: #267586
- Turkish updated. Closes: #267836
- Update German debconf translation de.po
- Russian updated. Closes: #268403
- Norwegian Bokmal and Nynorsk updated : nb.po and nn.po. Closes: #269908
- Korean translation updated ko.po
-- Petter Reinholdtsen Tue, 7 Sep 2004 08:45:49 +0200
popularity-contest (1.24) unstable; urgency=low
* Petter Reinholdtsen
- Let postinst and popcon-process.sh use /bin/sh, and make sure
the notation in postinst is POSIX compatible. Patch from David
Weinehall. (Closes: #260088)
- Change type of popularity-contest/hostid-failed template from
'error' to 'note'. The former is only available in cdebconf.
(Closes: #262426)
* Translations
- Indonesian update. Closes: #261225
- Initial Croatian debconf translation hr.po
- Swedish updated. Closes: #261404
- Initial Romanian debconf translation hr.po by Eddy Petrisor
- Italian updated by Cristian Rigamonti. Closes: #262703
- Traditional Chinese updated by Tetralet. Closes: #263182
- Finnish updated by Tapio Lehtonen. Closes: #263555
- Greek updated by George Papamichelakis. Closes: #265002
- Lithuanian updated by Gintautas Miliauskas. Closes: #265837
- Catalan updated by Aleix Badia i Bosch. Closes: #261540
-- Petter Reinholdtsen Sun, 15 Aug 2004 17:34:28 +0200
popularity-contest (1.23) unstable; urgency=low
* Translations
- Danish update. Closes: #255533
- Ukrainian update. Closes: #255523
- Japanese update: Closes: #255673
- Slovak update. Closes: #255702
- Simplified Chinese update. Closes: #256184
- Hungarian update. Closes: #256487
- Polish update. CLoses: #258558
- Basque update. Closes: #259784
- Arabic added, from Arabeyes repository
-- Petter Reinholdtsen Sat, 24 Jul 2004 19:37:55 +0200
popularity-contest (1.22) unstable; urgency=low
* Update server-side scripts to current popcon.debian.org version:
- popcon.pl: Fix URL for kfreebsd port.
- popanal.py: Take care of broken reports with empty POPCONVER field.
-- Bill Allombert Sun, 20 Jun 2004 10:49:52 +0200
popularity-contest (1.21) unstable; urgency=low
* Translations
- Bosnian update
- Greek update
- Brazilian Portuguese update. Closes: #251954
- Finnish added. Closes: #252302
- Portuguese updated. Closes: #252752
- Lithuanian updated. Closes: #252809
- German update. Closes: #254037
- Dutch update. Closes: #253169
- Traditional Chinese added. Closes: #253256
- Spanish update
- Hebrew update. Closes: #254090
- Czech update. Closes: #254188
- Bosnian update
* Christian Perrier
- Shorten the main template to fit it in one screen
Closes: #250951
* Petter Reinholdtsen
- Remove nb.po/no.po transition code. The duplication is now
handled by po-debconf via dh_installdebconf.
-- Petter Reinholdtsen Sat, 19 Jun 2004 00:10:49 +0200
popularity-contest (1.20) unstable; urgency=low
* Translations
- Basque update. Closes: #243768
- Norwegian Nynorsk update. Closes: #249681
* Change regexp used to find files with relevant atime to handle perl and
python libraries.
-- Bill Allombert Wed, 26 May 2004 12:54:25 +0200
popularity-contest (1.19) unstable; urgency=low
* Translations
- Turkish by Recai Oktas. Closes: #244164
- Russian update. Closes: #245000
- Slovak by Miroslav Kure. Closes: #245672
- French typo corrected.
* Bill Allombert
- Update server-side scripts to current popcon.debian.org version.
- Change popularity-contest to report the popularity-contest version
instead of the Debian release which is not reliable.
- Update FAQ accordingly.
- Fix some typo in FAQ and README.
-- Bill Allombert Fri, 14 May 2004 11:35:30 +0200
popularity-contest (1.18) unstable; urgency=low
* Bill Allombert
- debian/postinst:
+ Fix previous attempt to fix MY_HOSTID being equal to EMPTYID.
+ Fix bogus MY_HOSTID generated by popcon releases affected by #203841.
Closes: #240603
+ Remove check for an impossible error condition.
- Add FAQ:
+ Document valid sender domain problem. Closes: #241383
+ Document the noatime problem. Closes: #239939
- README, debian/popularity.contest.8:
+ Add pointers to the FAQ.
- sync server-side scripts with popcon.debian.org:
+ Address bug #238004 in popcon.pl w.r.t. wording of per-maintainer
reports.
* Translations
- Basque added by Piarres Beobide. Closes: #243768
- French update (removed first person) by Christian Perrier
-- Bill Allombert Fri, 16 Apr 2004 14:25:04 +0200
popularity-contest (1.17) unstable; urgency=medium
* Translations
- Hungarian by VEROK Istvan. Closes: #242288
- Polish by Bartosz Fenski. Closes: #242360
- Dutch by Bart Cornelis. Closes: #242382
- Hebrew by Lior Kaplan
- Indonesian by Parlin Imanuel Toh. Closes: #243296
* Petter Reinholdtsen
- Uploaded with urgency=medium to get the new translations into
Sarge quickly.
-- Petter Reinholdtsen Tue, 13 Apr 2004 10:05:36 +0200
popularity-contest (1.16) unstable; urgency=medium
* Christian Perrier
- Updated Korean debconf translation by Changwoo Ryu
- New Ukrainian debconf translation by Eugeniy Meshcheryakov
Closes: #239348
- Updated Danish debconf translation by Morten Brix Pedersen
Closes: #239824
- Updated Brazilian portuguese translation by Andre Luis Lopes
Closes: #240485
- Updated Spanish debconf translation by Ruben Porras
Closes: #240723
- Updated Swedish debconf translation by Andre Dahlqvist
Closes: #240885
- Updated Italian debconf translation by Cristian Rigamonti
Closes: #241130
- Updated Greek debconf translation by Konstantinos Margaritis
Closes: #241771
* Petter Reinholdtsen
- Uploaded with urgency=medium to get the new translations into
Sarge quickly.
-- Christian Perrier Sat, 3 Apr 2004 09:37:33 +0200
popularity-contest (1.15) unstable; urgency=low
* Bill Allombert
- Invalidate the submissions after 20 days instead of 10.
- Use uuidgen in postinst to get a random HOSTID. (Closes: #237874)
- Add MY_HOSTID sanity chech to popularity-contest.
* Petter Reinholdtsen
- Updated Norwegian Bokmål and Nynorsk debconf translation,
patch from Håvard Korsvoll. (Closes: #238037)
- Added Simplified Chinese debconf translation, patch from
Carlos Z.F. Liu. (Closes: #238302)
- Updated German debconf translation. Patch from Dennis
Stampfer. (Closes: #238953)
- Replace MY_HOSTID on upgrades if it is the empty ID mentioned in
bug #237874.
- Updated Spanish debconf translation. New file from Ruben Porras.
* Christian Perrier
- Updated Japaned debconf translation by Kenshi Muto
- s/are unable to/could not/ in templates. Unfuzzy translations
- Updated Simplified Chinese translation by Carlos Z.F. Liu
- Updated Lithuanian translation by Kęstutis Biliūnas.
- Updated Czech translation by Miroslav Kure. Closes: #239051
- Updated German translation by Dennis Stampfer
- Updated Portuguese translation by Miguel Figueiredo. Closes: #239077
- Added Russian translation by Ruslan Batdalov. Closes: #238210
-- Petter Reinholdtsen Sun, 21 Mar 2004 10:11:41 +0100
popularity-contest (1.14) unstable; urgency=HIGH
* Petter Reinholdtsen
- Urgency HIGH to get the translations into Sarge in time for
the d-i beta3.
- Make symlink from po/no.po to po/nb.po, to make it more
obvious that it is the same file.
- Added Catalan debconf translation received from Aleix
Badia i Bosch. (Closes: #236639)
- Added Italian debconf translation received from
Cristian Rigamonti. (Closes: #236956)
- Added Swedish debconf translation received from
André Dahlqvist. (Closes: #237129)
- Added Lithuanian debconf translation received from
Kęstutis Biliūnas. (Closes: #237288)
- Added Korean debconf translation received from
Changwoo Ryu. (Closes: #237620)
- Added Portuguese debconf translation received from
Miguel Figueiredo. (Closes: #237858)
-- Petter Reinholdtsen Sun, 14 Mar 2004 15:37:51 +0100
popularity-contest (1.13) unstable; urgency=low
* Bill Allombert
- Update server-side scripts to current popcon.debian.org version.
* Petter Reinholdtsen
- Move Norwegian Bokmål debconf translation to nb.po, and
install it using language codes 'nb' and 'no' as part of the
Norwegian language code transition.
- Add info in the README on where to report bugs and how to
reach the developers.
- Use UTF-8 in debconf template.
- Update Brazilian Portuguese debconf translation. Got new file
from Andre Luis Lopes. (Closes: #235387)
- Add Greek debconf translation received from Konstantinos
Margaritis. (Closes: #235448)
- Add Czech debconf translation received from Miroslav Kure
(Closes: #235989)
-- Petter Reinholdtsen Sat, 6 Mar 2004 09:15:43 +0100
popularity-contest (1.12) unstable; urgency=low
* Use dpkg --print-installation-architecture instead of $Config{archname}
to report the platform.
* Update server-side scripts to current popcon.debian.org version.
* Fix sh scripts to avoid non POSIX test options. (Closes: #231958).
* Update French debconf translation, thanks Christian Perrier.
(Closes: #231294)
* Update Dutch debconf translation, thanks Bart Cornelis. (Closes: #229752)
-- Bill Allombert Tue, 10 Feb 2004 17:24:10 +0100
popularity-contest (1.11) unstable; urgency=medium
* Raise the priority of the participation question from medium to
high to make sure it is displayed in the normal Sarge install.
* Add Danish debconf translation, thanks to Morten Brix
Pedersen (Closing: #230022)
* Only generate host ID when it is needed.
* Use quotes for all variables in the config file.
-- Petter Reinholdtsen Sat, 31 Jan 2004 17:39:19 +0100
popularity-contest (1.10) unstable; urgency=low
* Petter Reinholdtsen
- Added Japanese debconf translation thanks to Kenshi
Muto. (Closes: #229538)
- Make sure /etc/popularity-contest.conf is readable by user
nobody, no matter the umask of root.
- Drop the intro note, and show the explanation as part of the
participate question. (Closes: #229573)
- Update Norwegian Bokmål debconf translation.
- Remove the question asking if it is ok to edit MAILTO address,
and move the default values into
/usr/share/popularity-contest/default.conf. (Closes: #229288, #229111)
- Change to use 'dh_perl -d' to only depend on the base perl packages.
* Bill Allombert
- Update server-side scripts to current popcon.debian.org version.
-- Petter Reinholdtsen Mon, 26 Jan 2004 22:05:41 +0100
popularity-contest (1.9) unstable; urgency=low
* Petter Reinholdtsen
- Report error in popcon-largest-unused if
/var/log/popularity-contest is missing.
- Make sure db_input do not fail if the question already was
displayed earlier. (Closes: #229091, #229092, #229112)
-- Petter Reinholdtsen Fri, 23 Jan 2004 09:40:57 +0100
popularity-contest (1.8) unstable; urgency=low
* Petter Reinholdtsen
- Add Dutch debconf template translation (nl.po). File from
Bart Cornelis. (Closes: #217038)
- Add URLs to the project home page in manual page and README file.
- Make it possible to reconfigure this package by calling
'dpkg-reconfigure popularity-contest', to get the code in
base-config working as it should. (Closes: #228535).
This should still fix bug #135273, as the current PARTICIPATE
value is taken from the current config file, and only that
variable is modified if the user using debconf change the value.
- Collect and report the content of /etc/debian_version.
- Start using generic address survey@popcon.debian.org. (Closes: #206830)
- Ask if the submit address should be changed on upgrades and
reconfigures. This should activate the new address on old
installations.
- Updated all translation files with the new question text.
- Started on Norwegian Bokmål debconf translation (no.po).
* Bill Allombert
- control: change exim to exim4. (Closes: #228575)
- Update documentation to refer to popcon.debian.org.
-- Bill Allombert Mon, 22 Jan 2004 09:32:41 -0500
popularity-contest (1.7) unstable; urgency=low
* Petter Reinholdtsen
- Provide 'popcon', to make it easier to find this package by
its common short name. (Closes: #215563)
- Add new program popcon-largest-unused. Script from Yann Dirson,
manual page from Petter Reinholdtsen. (Closes: #127633)
* Bill Allombert
- Rewrite popularity-contest in perl.
No user-visible changes outside speed.
- Don't use dpkg-architecture anymore. (Closes: #212736)
- control: use dpkg-query so depends on dpkg (>= 1.10)
- control: remove gawk and dpkg-awk from dependencies.
- update copyright notice.
-- Bill Allombert Mon, 20 Oct 2003 12:04:33 +0200
popularity-contest (1.6) unstable; urgency=low
* Make new mailing list popcon-developers@lists.alioth.debian.org the
maintainer of this package, to make sure all developers get the
bug reports. Updated uploaders to include the new addresses.
* Added Bill Allombert as co-maintainer and uploader.
-- Petter Reinholdtsen Sat, 18 Oct 2003 10:45:58 +0200
popularity-contest (1.5) unstable; urgency=low
* Set HOME to an existing directory before running
/usr/sbin/popularity-contest, to avoid access problems to ~root/. (Closes:
#212013)
-- Petter Reinholdtsen Mon, 29 Sep 2003 23:32:01 +0200
popularity-contest (1.4) unstable; urgency=low
* Petter Reinholdtsen
- Adding myself as uploader.
- Add link to Alioth summary page in the README.
- Include architecture info in the submissions. (Closes: #148756, #187736)
- Remove useless call to dh_undocumented, previously commented out
by Christian Perrier.
- Updated popanal.py to process the new arch info, and store
resulting summary in results.host_arch and
results.host_gnu_type.
* Acknowledge NMUs. (Closes: #135114, #135273, #136510, #137231,
#172824, #184608, #187871, #197178, #197230, #201704, #203841)
-- Petter Reinholdtsen Sun, 14 Sep 2003 14:25:27 +0200
popularity-contest (1.3-1.3) unstable; urgency=low
* NMU again
* Removed the "Accept here" sentence in debconf templates
as suggested by Joey Hess.
-- Christian Perrier Fri, 29 Aug 2003 11:54:13 +0200
popularity-contest (1.3-1.2) unstable; urgency=low
* NMU.
* Switch to gettext-based debconf templates. Build dependency upon
debhelper versioned. Closes: #197178
* Debconf templates changed for avoiding "if you say yes". Closes: #197230
* Added French debconf templates translation
* Added German debconf templates translation. Closes: #137231
* Added Brazilian Portuguese debconf templates translation. Closes: #187871
* Added Spanish debconf templates translation. Closes: #135114
* Removed trailing dot in description synopsis in debian/control
* Commented call to now useless dh_undocumented in debian/rules
* Get PARTICIPATE value from old config file from potato. Applied
patch from Petter Reinholdtsen. Closes: #172824
* Lowered the question about participating to medium so that the note
is always displayed before asking the question. Closes: #201704
* Removed the trailing ' -' in HOSTID generated from new md5sum
Closes: #203841
* Updated to Standards: 3.6.1 (no change other than above..:-))
-- Christian Perrier Thu, 28 Aug 2003 19:19:50 +0200
popularity-contest (1.3-1.1) unstable; urgency=high
* NMU.
* Do not ship /etc/popularity-contest.conf; don't change it using
debconf if it already exists; don't mark it as a conffile (since we
don't ship it any more). (Closes: #135273)
This should be sufficient to get popularity-contest back into woody.
* #136510 appears to have been fixed in 1.2 or 1.3-1. (Closes: #136510)
(If you want to participate question is now boolean.)
-- Chris Lawrence Mon, 1 Apr 2002 21:21:22 -0600
popularity-contest (1.3-1) unstable; urgency=high
* Change default MAILTO back to apenwarr-survey@debian.org. Oops!
(Closes: #137224)
-- Avery Pennarun Thu, 7 Mar 2002 12:39:49 -0500
popularity-contest (1.2) unstable; urgency=low
* Use debconf.
* use full path in su (Closes: #125701)
* repaired description (Closes: #129539)
* correct handling of sender (sendmail -f) (Closes: #123765)
* Mostly thanks to Erich Schubert
-- Avery Pennarun Thu, 21 Feb 2002 09:11:58 -0500
popularity-contest (1.1-1) unstable; urgency=low
* Allow overriding the From: and Sender: headers in outgoing mail by
adding a new MAIL_FROM variable in /etc/popularity-contest.conf. Also
drop to user "nobody" before running. Closes: #89530, #39501, #69823,
#74809, #57257, #57709, #65218. Okay, this was obviously a popular
request, but if people would just configure their mailers not to use
invalid From: lines by default, they would be a lot happier.
* Added a popularity-contest.8 manpage. Closes: #39501.
* Updated README. Closes: #105668.
-- Avery Pennarun Tue, 6 Nov 2001 21:19:38 -0500
popularity-contest (1.0-1) unstable; urgency=low
* Now runs only once a week instead of once a day. Fixes bug#53768.
* Let sendmail auto-generate the From header. Fixes bug#48195, bug#48200.
* Warnings about Received and Message-Id e-mail lines that may reveal the
sender. Fixes bug#31205.
* Actually even version 0.1-2 saved the popcon results to a log file, so
that fixes bug#44801.
* Uses a more unique ID string than just the hostname, and it persists
across hostname changes.
-- Avery Pennarun Wed, 23 Dec 1998 14:28:37 -0500
popularity-contest (0.1-2) frozen unstable; urgency=low
* Added a missing dependency on mail-transport-agent; fixed bug#31010.
-- Avery Pennarun Wed, 23 Dec 1998 14:28:37 -0500
popularity-contest (0.1) frozen unstable; urgency=low
* Use a valid From_ address for sendmail; fixes bug#30341.
* popularity-contest.8 is a link to the undocumented(8) man page, and we
provide a README file in /usr/doc; downgrades bug#28745.
* Include my post-processing scripts in /usr/doc/popularity-contest/examples
* No longer tries to report on packages that aren't installed.
-- Avery Pennarun Sun, 20 Dec 1998 16:11:02 -0500
popularity-contest (0.00) unstable; urgency=low
* Initial test release.
-- Avery Pennarun Sat, 24 Oct 1998 22:33:58 -0400
popularity-contest-1.57ubuntu1/debian/rules 0000755 0000000 0000000 00000003452 12144133427 016054 0 ustar #!/usr/bin/make -f
# debian/rules file for the Debian popularity-contest package.
# Derived in 1998 by Avery Pennarun from:
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 by Joey Hess.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
build:
dh_testdir
clean:
dh_testdir
dh_testroot
dh_clean
install:
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/tmp.
install -d debian/popularity-contest/usr/sbin/
install -d debian/popularity-contest/etc/
install -d debian/popularity-contest/usr/share/popularity-contest/
install popularity-contest debian/popularity-contest/usr/sbin/
install popcon-upload debian/popularity-contest/usr/share/popularity-contest/
install popcon-largest-unused debian/popularity-contest/usr/sbin/
install -m 644 default.conf debian/popularity-contest/usr/share/popularity-contest/
# Build architecture-independent files here.
binary-indep: build install
dh_testdir
dh_testroot
dh_installdocs README FAQ
dh_installcron
dh_installman debian/popularity-contest.8 debian/popcon-largest-unused.8
dh_installdebconf
dh_installchangelogs
# Compress before the examples are installed for easy access to the
# server scripts
dh_compress
dh_installexamples prepop.pl popcon-process.sh popanal.py popcon.pl popcon-stat.pl popcon-submit.cgi clean-filter clean-genpkglist README.examples
dh_perl -d
dh_strip
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
# Build architecture-dependent files here.
binary-arch: build install
source diff:
@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
popularity-contest-1.57ubuntu1/debian/config 0000644 0000000 0000000 00000001353 12144133427 016162 0 ustar #!/bin/sh
set -e
conffile=/etc/popularity-contest.conf
. /usr/share/debconf/confmodule
if [ -f $conffile ] ; then
# Make sure the config file have the USEHTTP entry
if grep -q USEHTTP $conffile; then
:
else
# Make sure existing installations keep using SMTP as
# before, until the administrator enables HTTP manually.
# [pere 2005-07-07]
echo "USEHTTP=\"no\"" >> $conffile
fi
. $conffile
if [ yes = "$PARTICIPATE" ] ; then
PARTICIPATE=true
else
PARTICIPATE=false
fi
db_set popularity-contest/participate "$PARTICIPATE"
fi
db_input medium popularity-contest/participate || [ $? -eq 30 ]
db_go || true
popularity-contest-1.57ubuntu1/debian/postinst 0000755 0000000 0000000 00000007133 12144133427 016605 0 ustar #!/bin/sh
# Load debconf variables
. /usr/share/debconf/confmodule
conffile=/etc/popularity-contest.conf
set -e
if [ -e $conffile ] ; then
# Fetch current values.
. $conffile
fi
# Get this setting from debconf. It was set based on the content of
# /etc/popularity-contest.conf in the 'config' script, so it should be
# safe to ignore the value fetched by loading the file above. This
# should allow for using debconf to reconfigure the package.
db_get popularity-contest/participate || true
if [ "$RET" = "yes" ] || [ "$RET" = "YES" ] || [ "$RET" = "true" ]; then
PARTICIPATE="yes"
else
PARTICIPATE="no"
fi
# The md5 sum of an empty file
EMPTYID="d41d8cd98f00b204e9800998ecf8427e"
generate_id() {
if [ -x /usr/bin/uuidgen ] ; then
MY_HOSTID=`uuidgen | tr -d -`
else
MY_HOSTID=`dd if=/dev/urandom bs=1k count=1 2>/dev/null | md5sum | sed 's/ -//'''`
fi
}
# Select a random day to submit on, to spread the load over time, unless it is already set.
select_random_day() {
DAY=`bash -c 'echo $(($RANDOM % 7))'`
}
generate_conffile() {
generate_id
select_random_day
cat <<-EOF >$conffile
# Config file for Debian's popularity-contest package.
#
# To change this file, use:
# dpkg-reconfigure popularity-contest
#
# You can also edit it by hand, if you so choose.
#
# See /usr/share/popularity-contest/default.conf for more info
# on the options.
MY_HOSTID="$MY_HOSTID"
PARTICIPATE="$PARTICIPATE"
USEHTTP="yes"
DAY="$DAY"
EOF
# preseeding is only allowed on first time install
db_get popularity-contest/submiturls || true
if [ -n "$RET" ] ; then
echo "SUBMITURLS=\"$RET\"" >> $conffile
fi
# Make sure user nobody can read the file.
chmod a+r $conffile
}
case "$1" in
configure)
if [ ! -e $conffile ]; then
generate_conffile
else
# If MY_HOSTID is not set, add it. This is useful when disk images are prepared
if [ -z "$MY_HOSTID" ] ; then
generate_id
echo "MY_HOSTID=\"$MY_HOSTID\"" >> $conffile
fi
OLDHOSTID="$MY_HOSTID";
case "$MY_HOSTID" in
# Workaround for bug #237874 triggered on hurd. The
# problem was fixed in version 1.15, 2004-03-20.
$EMPTYID) generate_id;;
# Workaround for bug #240603 triggered by md5sums change
# of behaviour with stdin. version 1.17, 2004-04-12.
*-) MY_HOSTID="${MY_HOSTID% -}";;
esac;
# If DAY is not set, add it.
if [ -z "$DAY" ] ; then
select_random_day
echo "DAY=\"$DAY\"" >> $conffile
fi
# Replace only if the content changed, to avoid changing the
# config file date when no change was done.
# Commenting out the obsolete addresses, to use the
# default config from /usr/share/ on hosts where
# the old default was unchanged. Replace the "empty" id.
sedopts=" \
s/^PARTICIPATE=.*$/PARTICIPATE=\"$PARTICIPATE\"/; \
s/^\(MAILTO=\"erich-survey@debian.org\"\)$/#\1/; \
s/^\(MAILTO=\"apenwarr-survey@debian.org\"\)$/#\1/; \
s/^\(MAILTO=\"survey@popcon.debian.org\"\)$/#\1/; \
"
if [ "$OLDHOSTID" != "$MY_HOSTID" ]; then
sedopts="$sedopts \
s/^MY_HOSTID=\"\\?$OLDHOSTID\"\\?/MY_HOSTID=\"$MY_HOSTID\"/; \
"
fi
if sed "$sedopts" < $conffile > $conffile.new &&
! cmp $conffile $conffile.new > /dev/null; then
mv $conffile.new $conffile
# Make sure user nobody can read the file.
chmod a+r $conffile
else
rm $conffile.new
fi
fi
;;
*)
;;
esac
#DEBHELPER#
popularity-contest-1.57ubuntu1/debian/cron.daily 0000644 0000000 0000000 00000004561 12144133427 016763 0 ustar #!/bin/sh
# don't run if this package is removed but not purged
if [ ! -f /usr/sbin/popularity-contest ]; then
exit 0
fi
unset MAILFROM
unset MAILTO
unset MY_HOSTID
unset PARTICIPATE
unset SUBMITURLS
unset USEHTTP
unset MTAOPS
# get configuration information
. /usr/share/popularity-contest/default.conf
. /etc/popularity-contest.conf
# don't run if MAILTO address is blank, and not configured to use HTTP POST!
if [ -z "$MAILTO" ] && [ "yes" != "$USEHTTP" ]; then exit 0; fi
# don't run if PARTICIPATE is "no" or unset!
[ "$PARTICIPATE" = "no" ] || [ -z "$PARTICIPATE" ] && exit 0
if [ -n "$HTTP_PROXY" ]; then
export http_proxy="$HTTP_PROXY";
fi
POPCON=/var/log/popularity-contest
# Only run on the given day, to spread the load on the server a bit
if [ "$DAY" ] && [ "$DAY" != "$(date +%w)" ] ; then
# Ensure that popcon runs at least once in the last week
if [ -f "$POPCON" ] ; then
now=$(date +%s)
lastrun=$(date -r $POPCON +%s)
# 6.5 days, in seconds
week=561600
if [ "$(( $now - $lastrun ))" -le "$week" ]; then
exit 0
fi
fi
fi
# keep old logs
cd /var/log
umask 022
savelog -c 7 popularity-contest >/dev/null
run_popcon()
{
su -s /bin/sh -c "/usr/sbin/popularity-contest" nobody
}
do_sendmail()
{
if [ -n "$MAILFROM" ]; then
sendmail -oi $MTAOPS -f "$MAILFROM" $MAILTO
else
sendmail -oi $MTAOPS $MAILTO
fi
}
# generate the popularity contest data
run_popcon > $POPCON
SUBMITTED=no
# try to post the report through http POST
if [ "$SUBMITURLS" ] && [ "yes" = "$USEHTTP" ]; then
for URL in $SUBMITURLS ; do
if setsid /usr/share/popularity-contest/popcon-upload \
-u $URL -f $POPCON -C 2>/dev/null ; then
SUBMITTED=yes
else
logger -t popularity-contest "unable to submit report to $URL."
fi
done
fi
# try to email the popularity contest data
if [ yes != "$SUBMITTED" ] && [ -n "$MAILTO" ]; then
if [ -x "`which sendmail 2>/dev/null`" ]; then
(
if [ -n "$MAILFROM" ]; then
echo "From: <$MAILFROM>"
echo "Sender: <$MAILFROM>"
fi
echo "To: $MAILTO"
echo "Subject: popularity-contest submission"
echo "MIME-Version: 1.0"
echo "Content-Type: text/plain"
echo
cat $POPCON
) | do_sendmail
SUBMITTED=yes
else
logger -t popularity-contest "unable to submit report using sendmail."
fi
fi
if [ "yes" != "$SUBMITTED" ] ; then
logger -t popularity-contest "unable to submit report."
fi
popularity-contest-1.57ubuntu1/debian/po/ 0000755 0000000 0000000 00000000000 12144133670 015406 5 ustar popularity-contest-1.57ubuntu1/debian/po/mr.po 0000644 0000000 0000000 00000005750 12144133427 016373 0 ustar #
# 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: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-29 12:23+0200\n"
"Last-Translator: Priti Patil \n"
"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai "
"\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "पॅकेज सर्वेक्षणात सहभागी होणार का?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"हि सिस्टिम सर्वात जास्त वापरले गेलेली पॅकेजेसचि आकडेवारी अनामिकपणे वितरण डेव्हलपरकडे पाठवु "
"शकते. हि माहिती कोणती पॅकेजेस प्रथम वितरण सीडीवर उपलब्ध असावीत ह्याचा निर्णय घेण्यास "
"मदत करते."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"जर तुम्ही सहभागी होणार असाल तर, स्वयंचलीत स्क्रिप्ट/परिभाषा आठवडयातुन एकदा क्रियाशील "
"होईल आणि ते वितरण डेव्हलपरकडे पाठविले जाईल. जमा झालेली आकडेवारी http://popcon."
"debian.org/ वर पाहता येईल."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"हा पर्याय \"dpkg-reconfigure लोकप्रियता स्पर्धा\" या आज्ञेद्वारा बदलता येऊ शकतो."
popularity-contest-1.57ubuntu1/debian/po/nb.po 0000644 0000000 0000000 00000004734 12144133427 016355 0 ustar # translation of popularity-contest_debian.po to Norwegian Bokmål
#
# 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.
# Axel Bojer , 2004.
# Petter Reinholdtsen , 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-09-04 18:55MET\n"
"Last-Translator: Petter Reinholdtsen \n"
"Language-Team: Norwegian Bokmål \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Delta i pakkebrukskartleggingen?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Systemet kan anonymt forsyne distribusjonsutviklerne med statistikk "
"om de mest brukte pakkene på dette systemet. Denne informasjonen "
"påvirker avgjørelser som for eksempel hvilke pakker som bør bli med "
"på den første distribusjons-CDen."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Hvis du velger å delta, så vil et automatisk innsendingsskript kjøre en "
"gang i uka for å sende statistikk til distribusjonsutviklerne. Den innsamlede statistikken kan ses på http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr "Dette valget kan senere endres ved å kjøre «dpkg reconfigure popularity-contest»."
popularity-contest-1.57ubuntu1/debian/po/zh_TW.po 0000644 0000000 0000000 00000004576 12144133427 017015 0 ustar # Traditional Chinese translation for popularity-contest
#
# 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: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-30 18:53+0800\n"
"Last-Translator: Tetralet \n"
"Language-Team: Debian-user in Chinese [Big5] \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"debian.org>\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "是否要參加套件使用狀況調查?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"這套系統可以匿名得向負責發行版本的開發人員提交系統中所最常使用的套件的統計資訊。"
"這些資訊將有助於決定像是要將哪些套件放到第一張 Debian 光碟中。"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"如果您決定要參與,自動提交的 Script 將會每週一次,將統計數據傳送給負責發行版本的開發人員。"
"而這些被收集的資料您可以到 http://popcon.debian.org/ 上查閱。"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"您可以在日後執行『dpkg-reconfigure popularity-contest』來修改這些設定。"
popularity-contest-1.57ubuntu1/debian/po/gl.po 0000644 0000000 0000000 00000006212 12144133427 016351 0 ustar # Galician translation of the popularity-contest debconf template
#
# Jacobo Tarrío , 2005.
# Jorge Barreiro , 2012.
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2012-06-11 00:42+0200\n"
"Last-Translator: Jorge Barreiro \n"
"Language-Team: Galician \n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Participar na enquisa de utilización dos paquetes?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"O sistema pódelle fornecer aos desenvolvedores da distribución estatísticas "
"sobre os paquetes máis utilizados neste sistema. Esta información ten "
"influencia sobre decisións como que paquetes van no primeiro CD da "
"distribución."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Se quere participar, o programa de envío automático executarase unha vez por "
"semana, enviándolle estatísticas aos desenvolvedores da distribución. As "
"estatísticas colleitadas pódense ver en http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Esta elección pódese cambiar máis tarde executando \"dpkg-reconfigure "
"popularity-contest\"."
#~ msgid "Generating unique host identifier failed"
#~ msgstr "A xeración do identificador único da máquina fallou"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "O guión de instalación non puido xerar un identificador único de máquina. "
#~ "Este é un erro grave, xa que tódalas máquinas que envían información "
#~ "teñen que ter un identificador único."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Informe deste problema poñéndolle un informe de erro ao paquete "
#~ "popularity-contest, e inclúa información sobre a súa configuración."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "¿Empregar HTTP para enviar os informes?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Se non quere empregar HTTP, hase empregar email no seu canto."
popularity-contest-1.57ubuntu1/debian/po/id.po 0000644 0000000 0000000 00000005657 12144133427 016357 0 ustar # Terjemahan Bahasa Indonesia: popularity-contest
# Parlin Imanuel Toh , 2004
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-10-21 17:39+0700\n"
"Last-Translator: Arief S Fitrianto \n"
"Language-Team: Debian Indonesia \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Berpartisipasi dalam Survey Penggunaan Paket Debian?"
#. Type: boolean
#. Description
#: ../templates:4
msgid "The system may anonymously supply the distribution developers with statistics about the most used packages on this system. This information influences decisions such as which packages should go on the first distribution CD."
msgstr "Anda bisa mendapatkan sistem anda mengirim surat-e anonim ke pengembang Debian yang berisi statistik paket Debian yang paling sering anda gunakan. Informasi ini mempengaruhi keputusan paket-paket mana saja yang sebaiknya dimasukkan dalam CD Debian pertama."
#. Type: boolean
#. Description
#: ../templates:4
msgid "If you choose to participate, the automatic submission script will run once every week, sending statistics to the distribution developers. The collected statistics can be viewed on http://popcon.debian.org/."
msgstr "Jika anda memilih untuk berpartisipasi, script akan dijalankan secara otomatis setiap minggu untuk mengirimkan statistik kepada para pengembang Debian. Statistik yang dikumpulkan dapat dilihat di http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid "This choice can be later modified by running \"dpkg-reconfigure popularity-contest\"."
msgstr "Anda selalu dapat mengubah pilihan anda setelah ini dengan: \"dpkg-reconfigure popularity-contest\""
#~ msgid "Generating unique host identifier failed"
#~ msgstr "Gagal membuat identitas host unik"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "Script instal tidak dapat membuat sebuah identitas host yang unik. Ini "
#~ "merupakan kesalahan fatal, karena semua host yang mengumpulkan informasi "
#~ "perlu memiliki identitas unik."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Silakan laporkan masalah ini sebagai bug atas paket popularity-contest, "
#~ "dan berikan juga informasi tentang konfigurasi anda."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Gunakan HTTP untuk mengirim laporan?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Jika anda tak ingin menggunakan HTTP, surat-e yang akan dipakai."
popularity-contest-1.57ubuntu1/debian/po/ml.po 0000644 0000000 0000000 00000006575 12144133427 016373 0 ustar #
# 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.
# Contributers: Praveen A
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-12-03 18:00+0100\n"
"Last-Translator: Praveen A \n"
"Language-Team: Swatanthra Malayalam Computing \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "പാക്കേജ് ഉപയോഗ സര്വേ യില് പങ്കെടുക്കണോ?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr "ഈ സിസ്റ്റത്തിലെ ഏറ്റവും കൂടുതല് ഉപയോഗിക്കുന്ന പാക്കേജുകളുടെ കണക്കുകള് ഇതു വഴി ഡിസ്ട്രിബ്യൂഷന് ഡെവലപ്പേര്സിന് നിങ്ങളേക്കുറിച്ചുള്ള വിവരങ്ങള് വെളിപ്പെടുത്താതെ തന്നെ ലഭ്യമാക്കിയെക്കാം. ഈ വിവരം ഏത് പാക്കേജുകളാണ് ആദ്യത്തെ സിഡിയില് പോകേണ്ടത് എന്നത് പോലെയുള്ള തീരുമാനങ്ങളെ സ്വാധീനിക്കും."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr "നിങ്ങള് പങ്കെടുക്കാന് തിരഞ്ഞെടുക്കുകയാണെങ്കില് സ്വയമേ സമര്പിക്കുന്ന സ്ക്രിപ്റ്റ് ആഴ്ചയിലൊരു തവണ ഓടി ഡിസ്ട്രിബ്യൂഷന് ഡെവലപ്പേര്സിന് കണക്കുകള് അയക്കും. ശേഖരിച്ച കണക്കുകള് http://popcon.debian.org/ ല് കാണാം."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr "\"dpkg-reconfigure popularity-contest\" എന്നോടിച്ച് ഈ ചോയിസ് പിന്നീട് മാറ്റാവുന്നതാണ്."
popularity-contest-1.57ubuntu1/debian/po/ca.po 0000644 0000000 0000000 00000010073 12144133427 016332 0 ustar # popularity-contest (debconf) translation to Catalan.
# Copyright © 2004, 2005, 2006 Free Software Foundation, Inc.
# Aleix Badia i Bosch , 2005
# Jordi Mallach , 2004, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest-1.36 debconf\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-10-22 16:40+0200\n"
"Last-Translator: Jordi Mallach \n"
"Language-Team: Catalan \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Voleu participar a l'enquesta de popularitat dels paquets?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr "El vostre sistema pot enviar anònimament estadístiques dels paquets més utilitzats en aquest sistema als desenvolupadors de la distribució. Aquesta informació influencia decisions com ara quins paquets hauria d'incloure el primer CD de la distribució."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Si decidiu participar-hi, la seqüència d'enviament automàtic s'executarà "
"un cop a la setmana i enviarà les estadístiques als "
"desenvolupadors de la distribució. Les estadístiques recollides es poden "
"consultar a http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Sempre podeu canviar d'opinió posteriorment: \"dpkg-reconfigure popularity-"
"contest\"."
#~ msgid "Generating unique host identifier failed"
#~ msgstr ""
#~ "S'ha produït un error en la generació de l'identificador d'ordinador únic"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "La seqüència d'instal·lació no ha pogut generar l'identificador "
#~ "d'ordinador únic. És un error fatal, ja que tots els ordinadors que "
#~ "envien informació necessiten un identificador únic."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Informeu d'aquest problema com un error del paquet popularity-contest i "
#~ "adjunteu-hi informació sobre la vostra configuració."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Voleu utilitzar l'HTTP per enviar els informes?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Si no voleu utilitzar l'HTTP, s'utilitzarà el correu electrònic."
#~ msgid ""
#~ "This information helps us make decisions such as which packages should go "
#~ "on the first Debian CD. Also, we can improve future versions of Debian "
#~ "so that the most popular packages are the ones which are installed "
#~ "automatically for new users."
#~ msgstr ""
#~ "Aquesta informació pot ajudar a l'hora de decidir sobre els paquets que "
#~ "haurien d'anar al primer CD de Debian. També ajuda a millorar les futures "
#~ "versions de Debian perquè els paquets més populars s'instal·lin "
#~ "automàticament als nous usuaris."
#~ msgid ""
#~ "(NOTE: e-mail servers add their own tracing information and your data "
#~ "won't be completely anonymous while in transit.)"
#~ msgstr ""
#~ "(Nota: els servidors de correu electrònic afegeixen la seva informació de "
#~ "seguiment i les vostres dades no seran absolutament anònimes durant la "
#~ "transmissió.)"
popularity-contest-1.57ubuntu1/debian/po/te.po 0000644 0000000 0000000 00000005022 12144133427 016355 0 ustar msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2009-07-12 13:23+0530\n"
"Last-Translator: Veeven \n"
"Language-Team: Telugu \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Telugu\n"
"X-Poedit-Country: INDIA\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "ప్యాకేజీల వాడుక సర్వేలో పాల్గొంటారా?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"ఈ వ్యవస్థలోఎక్కువగా ఉపయోగించే ప్యాకేజీల గురించి గణాంకాలను దీని తయారీదార్లకు ఈ వ్యవస్థ అనామకంగా "
"పంపిస్తుంది. ఈ సమాచారం మెదటి పంపిణీ CDలో ఏయే ప్యాకేజీలు ఉండాలో మరియు తదితర నిర్ణయాలకు తోడ్పడుతుంది."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"మీరు పాల్గొనాలని నిశ్చయించుకుంటే, ఈ ఆటోమెటిక్ స్క్రిప్టు వారానికి ఒక సారి నడుస్తూ గణాంకాలను తయారీదార్లకు "
"పంపిస్తుంది. ఇలా సేకరించిన గణాంకాలని http://popcon.debian.org/ వద్ద చూడవచ్చు."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"మీ ఎంపికని తర్వాత ఎప్పుడైనా \"dpkg-reconfigure popularity-contest\" ని నడిపి మార్చుకోవచ్చు."
popularity-contest-1.57ubuntu1/debian/po/el.po 0000644 0000000 0000000 00000006243 12144133427 016353 0 ustar # translation of popularity_el.po to el
#
# 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.
#
# George Papamichelakis , 2004.
# quad-nrg.net , 2006.
msgid ""
msgstr ""
"Project-Id-Version: popularity_el\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-09-04 17:05+0300\n"
"Last-Translator: quad-nrg.net \n"
"Language-Team: el \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: KBabel 1.11.4\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Θέλετε να συμμετάσχετε στην έρευνα χρήσης των πακέτων;"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Το σύστημα μπορεί να διαθέτει ανώνυμα στους προγραμματιστές της διανομής "
"Debian στατιστικά στοιχεία σχετικά με τα περισσότερο χρησιμοποιούμενα πακέτα "
"σ' αυτό.Οι πληροφορίες αυτές επηρεάζουν αποφάσεις όπως πχ. το ποια πακέτα "
"πρέπει να συμπεριλαμβάνονται στο πρώτο CD του Debian."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Αν επιλέξετε να συμμετάσχετε, το σενάριο αυτόματης υποβολής θα εκτελείται "
"μια φορά την εβδομάδα, στέλνοντας στατιστικά στους προγραμματιστές της "
"διανομής τουDebian. Τα στατιστικά στοιχεία που συλλέγονται μπορούν να "
"βρεθούν στον δικτυακό τόπο http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Η επιλογή αυτή μπορεί να τροποποιηθεί αργότερα εκτελώντας την εντολή \"dpkg-"
"reconfigure popularity-contest\"."
popularity-contest-1.57ubuntu1/debian/po/zh_CN.po 0000644 0000000 0000000 00000010054 12144133427 016747 0 ustar #
# 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: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2009-11-17 00:49+0800\n"
"Last-Translator: 苏运强 \n"
"Language-Team: Debian Chinese [GB] \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "您要参加软件包流行度调查吗?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"系统将以匿名方式向发行版开发人员报告本系统中您最常使用的软件包的统计数据。这"
"些信息将会影响关于哪些软件包应该被包含在第一张发行版光盘上的决定。"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"如果您选择参与调查,自动提交脚本程序将会每周自动运行一次,将统计数据发送给发"
"行版开发人员。已收集到的统计数据可以在 http://popcon.debian.org/ 上看到。"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"稍候您也可以通过运行“dpkg-reconfigure popularity-contest”来改变这个选择。"
#~ msgid "Generating unique host identifier failed"
#~ msgstr "无法生成独有的主机标识"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "安装脚本未能生成一个独有的主机标识。这是一个严重错误,所有提交信息的主机都"
#~ "需要有一个独有的标识。"
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "请将此问题作为 popularity-contest 软件包的 bug 报告给维护人员,内容还需要"
#~ "包括你的配置信息。"
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "使用 HTTP 提交报告吗?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "如果您不想使用 HTTP,程序将会启用 email。"
#~ msgid ""
#~ "This information helps us make decisions such as which packages should go "
#~ "on the first Debian CD. Also, we can improve future versions of Debian "
#~ "so that the most popular packages are the ones which are installed "
#~ "automatically for new users."
#~ msgstr ""
#~ "这些信息将帮助我们决定哪些软件包应该放到第一张 Debian 光盘中。当然,我们还"
#~ "能改进未来的 Debian 版本,让最流行的软件包会被自动安装到新用户的系统中。"
#~ msgid ""
#~ "(NOTE: e-mail servers add their own tracing information and your data "
#~ "won't be completely anonymous while in transit.)"
#~ msgstr ""
#~ "(注意:邮件服务器将会添加其自身的跟踪信息,因此您的数据在传输过程中将不会"
#~ "是完全匿名的。)"
popularity-contest-1.57ubuntu1/debian/po/fi.po 0000644 0000000 0000000 00000006410 12144133427 016345 0 ustar # Translation of popularity-contest to Finnish
# 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: Popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-30 12:57+0300\n"
"Last-Translator: Tapio Lehtonen \n"
"Language-Team: Finnish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Osallistutko Debianin pakettimittariin?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Voit sallia koneesi lähettävän nimettömänä Debianin kehittäjille "
"tilastotietoa eniten käytetyistä Debianin paketeista. Tämän tiedon "
"perusteella valitaan esimerkiksi ensimmäiselle Debian-rompulle tulevia "
"paketteja."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Jos päätät osallistua, kerran viikossa suoritettava komentotiedosto lähettää "
"tilastoja jakelun kehittäjille. Kootut tilastot ovat luettavissa osoitteessa "
"http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Voit muuttaa mielesi milloin tahansa: \"dpkg-reconfigure popularity-contest\""
#~ msgid "Generating unique host identifier failed"
#~ msgstr "Yksikäsitteisen konetunnisteen luominen epäonnistui"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "Asennuskomento ei saanut luotua yksikäsitteistä konetunnistetta. Tämä on "
#~ "vakava virhe, kaikilla tietoja lähettävillä koneilla on oltava "
#~ "yksikäsitteinen tunniste."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Tee tästä vikailmoitus popularity-contest-paketista ja liitä siihen "
#~ "tietoa järjestelmästäsi."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Käytetäänkö HTTP:tä tilastojen lähettämiseen?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Ellei käytetä HTTP:tä, käytetään sähköpostia."
popularity-contest-1.57ubuntu1/debian/po/bn.po 0000644 0000000 0000000 00000006323 12144133427 016351 0 ustar # Bengali translation of popularity-contest_debian_po
#
# 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.
#
# Jamil Ahmed , 2006.
# Mahay Alam Khan (মাহে আলম) , 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian_po\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-09-13 19:11+0600\n"
"Last-Translator: Mahay Alam Khan (মাহে আলম) \n"
"Language-Team: Bengali \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "প্যাকেজ ব্যবহারের সার্ভেতে অংশগ্রহন করবেন?"
#. Type: boolean
#. Description
#: ../templates:4
msgid "The system may anonymously supply the distribution developers with statistics about the most used packages on this system. This information influences decisions such as which packages should go on the first distribution CD."
msgstr "ডিস্ট্রিবিউশন ডেভেলপারদের হয়তো অজ্ঞাত পরিচয়ে, এই সিস্টেমে ব্যবহৃত অধিকাংশ প্যাকেজ সম্পর্কে জানানো হতে পারে। ডিস্ট্রিবিউশন সিডির প্রথম সিডিটিতে কি কি প্যাকেজ থাকা উচিত, সেটার সিদ্ধান্ত নিতে এটি করা হয়।"
#. Type: boolean
#. Description
#: ../templates:4
msgid "If you choose to participate, the automatic submission script will run once every week, sending statistics to the distribution developers. The collected statistics can be viewed on http://popcon.debian.org/."
msgstr "আপনি যদি অংশগ্রহন করতে চান, তাহলে পরিসংখ্যান ডেভেলপারের কাছে পাঠানোর নিমিত্তে সয়ংক্রিয় স্ক্রিপ্ট প্রতি সপ্তাহে একবার আপনাআপনি চলবে। সংগৃহিত পরিসংখ্যান http://popcon.debian.org/ সাইটে দেখতে পাওয়া যাবে।"
#. Type: boolean
#. Description
#: ../templates:4
msgid "This choice can be later modified by running \"dpkg-reconfigure popularity-contest\"."
msgstr "\"dpkg-reconfigure popularity-contest\" কমান্ডটি চালিয়ে এই পছন্দটি পরবর্তীতে পরিবর্তন করা যবে।"
popularity-contest-1.57ubuntu1/debian/po/ga.po 0000644 0000000 0000000 00000003551 12144133427 016341 0 ustar msgid ""
msgstr ""
"Project-Id-Version: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2008-05-11 12:23+0200\n"
"Last-Translator: Kevin Scannell \n"
"Language-Team: Irish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Ar mhaith leat suirbhé ar úsáid pacáistí a dhéanamh?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Soláthraíonn an córas staitisticí faoi na pacáistí is mó éilimh orthu "
"d'fhorbróirí Debian. Úsáidtear an t-eolas seo chun cinneadh cé acu pacáistí "
"ba chóir a chur ar chéad dlúthdhiosca an dáilte."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Má roghnaíonn tú an suirbhé a dhéanamh, rithfidh script go huathoibríoch "
"uair amháin sa tseachtain agus seolfaidh sí staitisticí chuig na forbróirí. "
"Is féidir na staitisticí go léir a fheiceáil ag http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Is féidir an rogha seo a athrú amach anseo trí \"dpkg-reconfigure popularity-"
"contest\" a rith."
popularity-contest-1.57ubuntu1/debian/po/ug.po 0000644 0000000 0000000 00000005742 12144133427 016371 0 ustar #
# 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: popularity-contest_debian\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2011-02-15 20:06+0600\n"
"Last-Translator: Sahran \n"
"Language-Team: Uyghur Computer Science Association \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "بوغچا ئىشلىتىشنى تەكشۈرۈشكە قاتنىشامسىز؟"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"سىستېما ئاتسىز ئۇسۇلدا تارقىتىش نەشرىنىڭ ئىجادكارلىرىغا مەزكۇر سىستېمىدىكى "
"ئەڭ كۆپ ئىشلىتىلىدىغان بوغچىلارنىڭ ستاتىستىكا سانلىق مەلۇماتىنى دوكلات "
"قىلىدۇ. بۇ ئۇچۇرلار قايسى بوغچىلارنىڭ تارقىتىلغان نەشرىنىڭ بىرىنچى نۇر "
"دىسكىسىدا بولۇشىغا تەسىر كۆرسىتىدۇ."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"ئەگەر تەكشۈرۈشكە قاتنىشىشنى تاللىسىڭىز، ئۆزلۈكىدىن تاپشۇرۇش قوليازمىسى ھەر "
"ھەپتىدە ئۆزلۈكىدىن بىر قېتىم ئىجرا قىلىنىپ، ستاتىستىكا سانلىق مەلۇماتىنى "
"تارقىتىش نەشرىنىڭ ئىجادكارلىرىغا يوللايدۇ. توپلىغان ستاتىستىكا سانلىق "
"مەلۇماتلىرىنى http://popcon.debian.org/ دىن كۆرۈشكە بولىدۇ."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"سەل تۇرۇپ “dpkg-reconfigure popularity-contest” ئىجرا قىلىش ئارقىلىق بۇ "
"تاللانمىنى ئۆزگەرتكىلى بولىدۇ."
popularity-contest-1.57ubuntu1/debian/po/output 0000644 0000000 0000000 00000000011 12144133427 016661 0 ustar 2 utf8
popularity-contest-1.57ubuntu1/debian/po/he.po 0000644 0000000 0000000 00000005152 12144133427 016345 0 ustar # translation of popularity-contest_debian_po_he.po to Hebrew
#
# 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.
#
# Lior Kaplan , 2007.
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian_po_he\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2007-10-06 17:38+0200\n"
"Last-Translator: Lior Kaplan \n"
"Language-Team: Hebrew \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:4
msgid "Participate in the package usage survey?"
msgstr "להשתתף בסקר השימוש בחבילות?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"המערכת יכולה לספק באופן אנונימי מידע למפתחי ההפצה לגבי סטטיסטיקת שימוש "
"בחבילות על מערכת זאת. מידע זה משפיע על החלטות כמו איזה חבילות יופיעו על "
"הדיסק הראשון של ההפצה."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"אם בחרת להשתתף, סקריפט השליחה האוטומטי ירוץ פעם בשבוע וישלח את המידע למפתחי "
"ההפצה. הסטטיסטיקה הנאספת ניתנת לצפייה בכתובת: http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"בחירה זאת ניתנת לשינוי בעתיד על ידי הרצת הפקודה \"dpkg-reconfigure "
"popularity-contest\""
popularity-contest-1.57ubuntu1/debian/po/sl.po 0000644 0000000 0000000 00000006674 12144133427 016401 0 ustar # translation of sl.po to Slovenian
#
# 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.
# Jure Cuhalev , 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: sl\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2010-02-16 14:58+0100\n"
"Last-Translator: Vanja Cvelbar \n"
"Language-Team: Slovenian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Želite sodelovati v anketi o uporabi programskih paketov?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Vaš sistem lahko anonimno oskrbuje razvijalce distribucije s statistikami o "
"programskih paketih, ki jih najbolj uporabljate na vašem sistemu. Ta "
"informacija vpliva na odločitev kateri paketi so vključeni na prvem CD-ju "
"distribucije."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"V primeru, da se odločite sodelovati, bo skripta vsak teden samodejno "
"poslala statistike razvijalcem distribucije. Zbrana statistika je na ogled "
"na http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Vašo odločitev lahko vedno spremenite z: \"dpkg-reconfigure popularity-"
"contest\"."
#~ msgid "Generating unique host identifier failed"
#~ msgstr "Ustvarjanje enoznačnega identifikatorja računalnika ni uspelo"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "Namestitvena skripta ni uspela ustvariti enoznačnega identifikatorja "
#~ "računalnika. To je kritična napaka saj ga potrebujejo vsi sodelujoči "
#~ "računalniki."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Prosimo poročajte o tej težavi v obliki hrošča paketa popularity-contest "
#~ "in vključite informacije o vaši konfiguraciji."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Uporabim HTTP za pošiljanje poročil?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Če ne želite uporabiti HTTP, bo uporabljena elektronska pošta."
popularity-contest-1.57ubuntu1/debian/po/sr.po 0000644 0000000 0000000 00000004604 12144133427 016376 0 ustar # Serbian/Cyrillic messages for popularity-contest.
# Copyright (C) 2010 Software in the Public Interest, Inc.
# This file is distributed under the same license as the popularity-contest package.
# Janos Guljas , 2010.
# Karolina Kalic , 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest 1.48\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2010-08-09 00:07+0100\n"
"Last-Translator: Janos Guljas \n"
"Language-Team: Serbian\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Учествовати у статистици популарности пакета?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Систем може анонимно да доставља податке програмерима дистрибуције о пакетим "
"акоји се највише користе на систему. Ова информација утиче на одлуку, као "
"што је, који пакети ће бити на првом инсталационом диску."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Ако изаберете да учествујете, аутоматска скрипта ће слати статистику једном "
"недељно програмерима дистрибуције. Сакупљена статистика може да се види на "
"http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Овај избор се можете променити помоћу „dpkg-reconfigure popularity-contest“."
popularity-contest-1.57ubuntu1/debian/po/sr@latin.po 0000644 0000000 0000000 00000004031 12144133427 017520 0 ustar # Serbian/Latin messages for popularity-contest.
# Copyright (C) 2010 Software in the Public Interest, Inc.
# This file is distributed under the same license as the popularity-contest package.
# Janos Guljas , 2010.
# Karolina Kalic , 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest 1.48\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2010-08-09 00:07+0100\n"
"Last-Translator: Janos Guljas \n"
"Language-Team: Serbian\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Učestvovati u statistici popularnosti paketa?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Sistem može anonimno da dostavlja podatke programerima distribucije o "
"paketim akoji se najviše koriste na sistemu. Ova informacija utiče na "
"odluku, kao što je, koji paketi će biti na prvom instalacionom disku."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Ako izaberete da učestvujete, automatska skripta će slati statistiku jednom "
"nedeljno programerima distribucije. Sakupljena statistika može da se vidi na "
"http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Ovaj izbor se možete promeniti pomoću „dpkg-reconfigure popularity-contest“."
popularity-contest-1.57ubuntu1/debian/po/km.po 0000644 0000000 0000000 00000006106 12144133427 016360 0 ustar # translation of km.po to Khmer
# eng vannak , 2006.
# auk piseth , 2006.
# auk piseth , 2006.
# Khoem Sokhem , 2006.
# translation of popularity-contest_debian_po_km.po to
msgid ""
msgstr ""
"Project-Id-Version: km\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-31 08:21+0700\n"
"Last-Translator: Khoem Sokhem \n"
"Language-Team: Khmer \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "ចូលរួមក្នុងការស្ទង់មតិក្នុងប្រើកញ្ចប់ ?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"ប្រព័ន្ធអាចផ្ដល់ទៅអ្នកអភិវឌ្ឍន៍ចែកចាយដោយអនាមិករួមជាមួយនឹងស្ថិតិអំពីកញ្ចប់ដែលបានប្រើច្រើនបំផុតនៅក្នុង"
"ប្រព័ន្ធ ។ ព័ត៌មាននេះមានឥទ្ធិពលលើការសម្រេចចិត្ត ដូចជាកញ្ចប់មួយណាគួរនៅលើគេក្នុងការចែកចាយស៊ីឌី ។"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"ប្រសិនបើអ្នកជ្រើសដើម្បីចូលរួម ស្គ្រីបចែកចាយដោយស្វ័យប្រវត្តិនឹងរត់ម្ដងក្នុងមួយ សប្ដាហ៍ ការផ្ញើស្ថិតិទៅ"
"អភិវឌ្ឍន៍ចែកចាយ ។ ស្ថិតិដែលបានប្រមូលផ្ដុំអាចត្រូវបានមើលនៅលើ http://popcon.debian.org/ ។"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"ជម្រើសនេះអាចត្រូវបានកែប្រែនៅពេលក្រោយដោយរត់ \"dpkg-reconfigure popularity-contest"
"\" ។"
popularity-contest-1.57ubuntu1/debian/po/POTFILES.in 0000644 0000000 0000000 00000000044 12144133427 017161 0 ustar [type: gettext/rfc822deb] templates
popularity-contest-1.57ubuntu1/debian/po/nl.po 0000644 0000000 0000000 00000004726 12144133427 016370 0 ustar #
# 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: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-08-07 13:19+0200\n"
"Last-Translator: Thijs Kinkhorst \n"
"Language-Team: debian-l10n-dutch \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
# Description
# Description
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Wilt u meewerken aan het onderzoek naar het gebruik van pakketten?"
# Description
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"U kunt uw systeem instellen zodat anonieme statistieken naar de "
"ontwikkelaars van de distributie verstuurd worden. Deze statistieken hebben "
"betrekking op welke pakketten het meest gebruikt worden, en benvloeden "
"beslissingen zoals welke paketten op de eerste installatie-CD terecht komen."
# Description
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Indien u wilt deelnemen zal eenmaal per week een script uitgevoerd worden "
"dat de statistieken naar de ontwikkelaars stuurt. De verzamelde statistieken "
"kunnen bekeken worden op http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"U kunt uw keuze altijd nog herzien via het commando 'dpkg-reconfigure "
"popularity-contest'"
popularity-contest-1.57ubuntu1/debian/po/mk.po 0000644 0000000 0000000 00000005750 12144133427 016364 0 ustar # translation of popularity-contest_debian_po_mk.po to Macedonian
# translation of popularity-contest_debian_po.po to
#
# 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.
#
# Georgi Stanojevski , 2006.
# Arangel Angov , 2008.
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian_po_mk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2008-09-26 12:42+0200\n"
"Last-Translator: Arangel Angov \n"
"Language-Team: Macedonian \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:4
msgid "Participate in the package usage survey?"
msgstr "Сакате ли да учествувате во анкетата за користење на пакети?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Можете да направите Вашиот систем анонимно да доставува статистики до "
"развојните тимови за најчесто користените пакети. Овие информации влијаат на "
"одлуките кои пакети ќе се стават на првиот диск од дистрибуцијата."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Ако одлучите да учествувате, скриптата за автоматско поставување ќе се "
"извршува еднаш неделно и ќе праќа статистики од развојниот тим на "
"дистрибуцијата. Собраните податоци можат да се гледаат на http://popcon."
"debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Изборот може да биде променет подоцна со „dpkg-reconfigure popularity-"
"contest“."
popularity-contest-1.57ubuntu1/debian/po/wo.po 0000644 0000000 0000000 00000005002 12144133427 016370 0 ustar # translation of popularity-contest_debian_po.po to Wolof
#
# 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.
# Mouhamadou Mamoune Mbacke , 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian_po\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-09-14 09:57+0000\n"
"Last-Translator: Mouhamadou Mamoune Mbacke \n"
"Language-Team: Wolof \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Ndax dangay bokk ci gëstu biñuy def ci ñiy fëfandikoo paket bi?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr "Sistem bi mannaa jox ñiy liggéey distribusioŋ bi ay estatistik yu aju ci paket yi ñuy gëna jëfandikoo ci sistem bi. Yoo xamxam dana am jeexiit ci yenn dogal yiñuy jël yu deme neki yan paket ñooy nekk ci CD bu jëkk bu distribusioŋ bi."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr "Boo bëgée bokk, konn amna ab eskript boo xam ne ayakbis gune danañu yónnée ay estatistik jëmaleko ci ñiy liggéey distribusioŋ bi. Estatistik yiñu dajale maneesnaleena gis ci http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr "Bii tann dangako mana soppiwaat ginnaaw bi boo doxalee \"dpkg-reconfigure popularity-contest\"."
popularity-contest-1.57ubuntu1/debian/po/ko.po 0000644 0000000 0000000 00000003741 12144133427 016364 0 ustar # Sunjae Park , 2005 - 2006.
# Changwoo Ryu , 2005, 2008.
#
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2008-07-19 17:14+0900\n"
"Last-Translator: Changwoo Ryu \n"
"Language-Team: Korean \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "패키지 인기 투표에 참여하시겠습니까?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"가장 많이 사용하는 패키지에 대한 통계를 배포판 개발자들에게 익명으로 보낼 수 "
"있습니다. 이 정보는 첫번째 배포판 CD에 어떤 패키지를 넣을 것인가와 같은 결정"
"을 하는 데 이용합니다."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"참가하시면 매 주 자동으로 스크립트를 실행해서 배포판 개발자들에게 통계 자료"
"를 제출합니다. 수집한 통계자료는 http://popcon.debian.org/에서 볼 수 있습니"
"다."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"이 결정은 다음 명령을 실행하면 언제든지 변경할 수 있습니다: \"dpkg-"
"reconfigure popularity-contest\""
popularity-contest-1.57ubuntu1/debian/po/kn.po 0000644 0000000 0000000 00000005352 12144133427 016363 0 ustar # Vikram Vincent , 2007, 2012.
# Language-Team: Kannada \n
#
msgid ""
msgstr ""
"Project-Id-Version: Popularity-contest debian\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2012-11-18 19:39+0530\n"
"Last-Translator: Mallikarjuna \n"
"Language-Team: Kannada \n"
"Language: Kannada\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Kannada\n"
"X-Poedit-Country: india\n"
"X-Poedit-SourceCharset: utf-8\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "ಪ್ಯಾಕೇಜ್ ಬಳಕೆಯ ಬಗ್ಗೆ ಸಮೀಕ್ಷೆಯಲ್ಲಿ ಪಾಲ್ಗೊಳ್ಳುತ್ತೀರಾ ?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"ಈ ತಂತ್ರಾಂಶವು ಯಾವ್ಯಾವ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಎಷ್ಟು ಬಳಸಲಾಗಿದೆ ಎಂಬ ಮಾಹಿತಿಯನ್ನು ಮಾತ್ರ ತಯಾರಕರಿಗೆ "
"ನೀಡುತ್ತದೆ. ಇದನ್ನು ಕೇವಲ ಯಾವ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಮೊದಲ ಹಂಚಿಕೆ (ಡಿಸ್ಟ್ರಿಬ್ಯೂಷನ್) ಸೀಡೀಯಲ್ಲಿ "
"ಹಂಚಬೇಕು ಎಮ್ಬ ನಿರ್ಧಾರಕ್ಕೆ ಬಳಸಲಾಗುತ್ತದೆ."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"ಭಾಗವಹಿಸಲು ನೀವು ಒಪ್ಪಿದಲ್ಲಿ, ವಾರಕ್ಕೊಮ್ಮೆ ಬಳಕೆಯ ಮಾಹಿತಿಯನ್ನು ತಯಾರಕರಿಗೆ ಕಳಿಸಲಾಗುತ್ತದೆ.ಆ "
"ಮಾಹಿತಿಯನ್ನು http://popcon.debian.orgಯಲ್ಲಿ ನೋಡಬಹುದು."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"ಈ ಆಯ್ಕೆಯನ್ನು ನಂತರ ಬದಲಿಸಬಹುದು.ಆಯ್ಕೆ ಬದಲಿಸಲು ಕೆಳಗಿನ ಕಮಾಂಡ್ ಟೈಪ್ ಮಾಡಿ.\"dpkg-"
"reconfigure popularity-contest\""
popularity-contest-1.57ubuntu1/debian/po/lv.po 0000644 0000000 0000000 00000004733 12144133427 016376 0 ustar #
# 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.
#
# Rūdolfs Mazurs , 2012.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2012-05-25 01:13+0300\n"
"Last-Translator: Rūdolfs Mazurs \n"
"Language-Team: Latvian \n"
"Language: lv\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%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
"X-Generator: Lokalize 1.4\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Piedalīties pakotņu izmantošanas aptaujā?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Sistēma var anonīmi dot distribūcijas izstrādātājiem statistiku par "
"visvairāk lietotajām pakotnēm uz sistēmas. Šī informācija ietekmē lēmumus "
"par to, kādās pakotnes iekļaut pirmajā distribūcijas CD."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Ja izvēlēsities piedalīties, automātiskais sūtīšanas skripts tiks palaists "
"katru nedēļu, sūtot statistiku distribūcijas izstrādātājiem. Ievākto "
"statistiku var redzēt vietnē http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Šo izvēli var vēlāk mainīt ar komandu \"dpkg-reconfigure popularity-contest"
"\"."
popularity-contest-1.57ubuntu1/debian/po/de.po 0000644 0000000 0000000 00000005045 12144133427 016342 0 ustar #
# 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.
# Erich Schubert , 2003
# Dennis Stampfer , 2004
# Jens Seidel , 2006
#
msgid ""
msgstr ""
"Project-Id-Version: popularity contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-08-03 18:50+0200\n"
"Last-Translator: Jens Seidel \n"
"Language-Team: Debian German \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "An der Paketverwendungserfassung teilnehmen?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Das System kann anonym Statistiken über die am meisten verwendeten Pakete "
"auf diesem System an die Distributions-Entwickler schicken lassen. Diese "
"Informationen beeinflussen beispielsweise die Entscheidungen, welche Pakete "
"auf die erste CD kommen."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Wenn Sie sich entscheiden teilzunehmen, wird das automatische "
"Übertragungsprogramm wöchentlich ausgeführt und Statistiken an die "
"Distributions-Entwickler senden. Die vollständigen Statistiken können unter "
"http://popcon.debian.org/ eingesehen werden."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Die Wahl kann später durch Ausführen von »dpkg-reconfigure popularity-"
"contest« geändert werden."
popularity-contest-1.57ubuntu1/debian/po/pa.po 0000644 0000000 0000000 00000006205 12144133427 016351 0 ustar # translation of pa.po to Punjabi
#
# 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.
#
# Amanpreet Singh Alam , 2005.
# A S Alam , 2006.
msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-11-06 09:44+0530\n"
"Last-Translator: A S Alam \n"
"Language-Team: Punjabi \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=2; plural=(n != 1);\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "ਕੀ ਡੇਬੀਅਨ ਪੈਕੇਜ ਹਰਮਨ ਪਿਆਰਾ ਪ੍ਰਤੀਯੋਗਤਾ ਵਿੱਚ ਭਾਗ ਲੈਣਾ ਹੈ?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"ਤੁਸੀਂ ਆਪਣੇ ਸਿਸਟਮ ਉੱਤੇ ਆਪਣੇ ਵਲੋਂ ਆਮ ਵਰਤੇ ਡੇਬੀਅਨ ਪੈਕੇਜਾਂ ਬਾਰੇ ਜਾਣਕਾਰੀ ਨੂੰ ਡੇਬੀਅਨ ਖੋਜੀਆਂ ਨੂੰ ਭੇਜ ਸਕਦੇ "
"ਹੋ। ਇਹ ਜਾਣਕਾਰੀ ਨੂੰ ਡੇਬੀਅਨ ਦੀ ਪਹਿਲੀ CD ਉੱਤੇ ਰੱਖੇ ਜਾਣ ਵਾਲੇ ਪੈਕੇਜ ਦੀ ਚੋਣ ਕਰਨ ਸਮੇਂ ਵਰਤਿਆ "
"ਜਾਵੇਗਾ।"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"ਜੇਕਰ ਤੁਸੀਂ ਭਾਗ ਲੈਣ ਦੀ ਚੋਣ ਕੀਤੀ ਤਾਂ ਹਰੇਕ ਹਫ਼ਤੇ ਇਹ ਸਵੈ-ਚਾਲਤ ਭੇਜਣ ਸਕਰਿਪਟ ਚੱਲੇਗੀ ਅਤੇ ਡੇਬੀਅਨ "
"ਖੋਜੀਆਂ ਨੂੰ ਅੰਕੜੇ ਭੇਜੇਗੀ। ਇੱਕਠੇ ਕੀਤੇ ਅੰਕੜੇ ਤੁਸੀਂ http://popcon.debian.org/ ਉੱਤੇ ਵੇਖ ਸਕਦੇ ਹੋ।"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"ਤੁਸੀਂ ਇਹ ਫੈਸਲਾ ਕਰਨ ਉਪਰੰਤ ਕਦੇ ਵੀ ਆਪਣਾ ਮਨ ਬਦਲ ਸਕਦੇ ਹੋ \"dpkg-reconfigure popularity-"
"contest\""
popularity-contest-1.57ubuntu1/debian/po/ta.po 0000644 0000000 0000000 00000006053 12144133427 016356 0 ustar # package name popularity-contest_debian_po
# translation of ta.po to Tamil
# Tamil messages for debian-installer.
# Copyright (C) 2003 Software in the Public Interest, Inc.
#
#
# Senthil Kumar ,2006
msgid ""
msgstr ""
"Project-Id-Version: ta\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-12-13 10:15+0530\n"
"Last-Translator: Senthil Kumar \n"
"Language-Team: Tamil \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "கட்டு உபயோகம் குறித்த அளவீட்டீல் பங்கு பெறுகிறீர்களா ? "
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr "இந்த அமைப்பில் அதிகம் உபயோகிக்கபட்ட கட்டுகள் பற்றிய புள்ளி விவரங்களை இந்த அமைப்பு நீங்கள்" "அறியாவண்ணம் விநியோக உருவாக்குனர்களுக்கு அனுப்பக்கூடும். இந்தகவல் எந்த கட்டுகள் முதலில் விநியோக" "குறுந்தகட்டில் இடம் பெறுவது என முடிவு செய்ய வழிவகுக்கும்"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr "நீங்கள் பங்கு பெறுகிறீர்களெனில், தானியங்கி சமர்பிக்கும் உரை வாரமொரு முறை செயல்படுத்தப்பட்டு,"
"புள்ளிவிவரம் விநியோக உருவாக்குனர்களுக்கு அனுப்பப்படும். இவ்வண்ணம் சேகரிக்கப்பட்ட புள்ளிவிவரங்களை"
"பின்வரும் இணையத்தள முகவரியில் காணலாம் http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr "பின்பு இந்த தேர்வினை மாற்ற \"dpkg-reconfigure popularity- கட்டளையை இயக்கம்."
"contest\"."
popularity-contest-1.57ubuntu1/debian/po/be.po 0000644 0000000 0000000 00000005640 12144133427 016341 0 ustar # translation of popularity-contest_debian_po.po to Belarusian
#
# 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.
#
# Pavel Piatruk , 2007.
# Hleb Rubanau , 2007
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian_po\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2007-10-24 03:00+0300\n"
"Last-Translator: Hleb Rubanau \n"
"Language-Team: Belarusian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: vim\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Ці ўдзельнічаць у складанні рэйтынгу пакетаў?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Сістэма можа ананімна дасылаць распрацоўшчыкам дыстрыбутыву статыстыку "
"праграмных пакетаў, якія найбольш часта ўжываюцца на гэтым камп'ютары. Гэтыя "
"звесткі ўплываюць, напрыклад, на рашэнні аб тым, якія пакеты варта змяшчаць "
"на першым дыску дыстрыбутыву."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Калі Вы вырашыце ўдзельнічаць, адпаведны скрыпт будзе штотыдзень дасылаць "
"статыстыку распрацоўшчыкам дыстрыбутыву. Супольныя вынікі можна паглядзець "
"па адрасе http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Зроблены зараз выбар пазней можна змяніць запускам \"dpkg-reconfigure "
"popularity-contest\"."
popularity-contest-1.57ubuntu1/debian/po/cs.po 0000644 0000000 0000000 00000006566 12144133427 016370 0 ustar #
# 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: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-30 10:01+0200\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:4
msgid "Participate in the package usage survey?"
msgstr "Připojit se k průzkumu o nejpopulárnější balíky?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Systém může anonymně posílat vývojářům distribuce statistiku o nejvíce "
"využívaných balících na tomto systému. Tyto informace pomáhají vývojářům v "
"rozhodování, které balíky by měly být umístěny na prvním instalačním CD."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Pokud se rozhodnete připojit, automatický skript bude jednou týdně odesílat "
"statistiku zpět vývojářům distribuce. Zpracované statistiky si můžete "
"prohlédnout na http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Své rozhodnutí můžete kdykoliv změnit, stačí spustit: \"dpkg-reconfigure "
"popularity-contest\"."
#~ msgid "Generating unique host identifier failed"
#~ msgstr "Vytváření jednoznačné identifikace počítače selhalo"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "Instalační skript nemohl vytvořit jednoznačný identifikátor počítače. "
#~ "Toto je osudová chyba, protože každý počítač posílající informace musí "
#~ "mít jednoznačnou identifikaci."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Nahlaste to prosím jako chybu proti balíku popularity-contest a uveďte "
#~ "informace o své konfiguraci."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Použít pro odesílání HTTP?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Nebudete-li chtít pro odesílání použít HTTP, použije se email."
popularity-contest-1.57ubuntu1/debian/po/si.po 0000644 0000000 0000000 00000005606 12144133427 016370 0 ustar #
# 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.
#
# Danishka Navin , 2011.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2011-09-05 12:44+0530\n"
"Last-Translator: Danishka Navin \n"
"Language-Team: American English \n"
"Language: en_US\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=2; plural=(n != 1);\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "පැකේජ භාවිත සමීක්ෂණයට සහභාගී වේද?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"පද්ධතිය නිකුතු සංවර්ධකයන් හට ඇවැසි භාවිත පැකේජ නිර්නාමිකව සැපයීමට ඉඩ ඇත. මෙම තොරතුරු කුමන "
"පැකේජය CD තැටිය සමඟ ලැබේදැයි තීරණය කරයි."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"ඔබ සහභාගී වීමට තෝරාගත්තේ නම්. සංවර්ධකයන්ට තොරතුරු ලබාදෙන ස්වයංක්රීය ඇතුළත් කිරීම් විධානාවලියක් "
"සැම සතියකම ධාවනය වනු ඇත. එක් කරගත් තොරතුරු http://popcon.debian.org/ හීදී දැකිය හැක."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"මෙම තෝරාගැනීම පසුව \"dpkg-reconfigure popularity-contest\" වෙනස් කිරීම මගින් සැකසිය "
"හැක."
popularity-contest-1.57ubuntu1/debian/po/vi.po 0000644 0000000 0000000 00000006551 12144133427 016373 0 ustar # Vietnamese translation of popularity-contest_debian.
# Copyright © 2006 Free Software Foundation, Inc.
# Phan Vinh Thinh , 2005.
# Clytie Siddall , 2006.
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-29 23:04+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.6fc1\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Tham gia vào Cuộc thi phổ biến gói Debian không?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Có thể gửi thư điện tử giấu tên cho các nhà phát triển bản phát hành thống "
"kê về những gói chương trình thường dùng trên hệ thống này. Thông tin này "
"giúp giải quyết một số vấn đề như chọn gói chương trình cho đĩa CD bản phát "
"hành đầu tiên."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Nếu quyết định tham gia, một tập lệnh đệ trình sẽ tự động chạy hàng tuần, để "
"gửi thống kê tới các nhà phát triển bản phát hành. Có thể xem thống kế được "
"tập hợp tại « http://popcon.debian.org/ »."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Luôn luôn có thể thay đổi ý muốn sau này bằng cách chạy lệnh cấu hình lại: « "
"dpkg-reconfigure popularity-contest »."
#~ msgid "Generating unique host identifier failed"
#~ msgstr "Tạo tên duy nhất cho máy không thành công"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "Tập lệnh cài đặt không tạo được tên duy nhất cho máy. Đây là một lỗi "
#~ "nặng, vì mỗi máy gửi thông tin phải có một tên duy nhất như vậy."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Xin hãy báo cáo vấn đề này như một lỗi bug đến cho Gói Popularity "
#~ "Contest, cùng với thông tin về cấu hình."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Dùng HTTP để đệ trình thông báo không?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Nếu bạn không muốn dùng HTTP thì sẽ dùng thư điện tử thay vào đó."
popularity-contest-1.57ubuntu1/debian/po/ar.po 0000644 0000000 0000000 00000005406 12144133427 016355 0 ustar # translation of popularity-contest_debian_po.po to Arabic
#
# 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.
#
# Abdulaziz Al-Arfaj , 2004.
# Ossama M. Khayat , 2005, 2006.
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian_po\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-08-04 01:01+0300\n"
"Last-Translator: Ossama M. Khayat \n"
"Language-Team: Arabic \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "هل تريد المشاركة في مسابقة شعبيّة حزم دبيان؟"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"يمكنك أن تجعل نظامك يرسل بسريّة إحصائيّاتٍ عن حزم ديبيان الأكثر استعمالاً عندك "
"إلى مطوّري ديبيان. هذه المعلومات تؤثّر على القرارات مثل أيّ الحزم يفترض أن توضع "
"على قرص المدمج الأوّل لدبيان."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"إذا اخترت المشاركة فنصّ التّسليم البرمجي الآلي سيعمل أسبوعيّاً مرسلاً الإحصائيّات "
"إلى مطوّري ديبيان. يمكن الاطلاع على الاحصائيات عبر الموقع: http://popcon."
"debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"يمكنك دائماً تغيير رأيك بعد اتّخاذ هذا بتنفذ الأمر \"dpkg-reconfigure "
"popularity-contest\""
popularity-contest-1.57ubuntu1/debian/po/ru.po 0000644 0000000 0000000 00000006263 12144133427 016403 0 ustar # translation of popularity-contest_ru.po to Russian
# translation of popularity-contest-debconf_ru.po to Russian
# translation of popularity-contest-debconf_ru.po to Русский язык
#
# 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.
# Nikolai Prokoschenko , 2004.
# Yuri Kozlov , 2004, 2005, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest-debconf_ru\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-30 10:20+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.9.1\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:4
msgid "Participate in the package usage survey?"
msgstr "Участвовать в опросе популярности пакетов?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Система может отправлять разработчикам дистрибутива анонимные электронные "
"сообщения с информацией о наиболее часто используемых вами пакетах в "
"системе. Эта информация повлияет на то, какие пакеты попадут на первый CD "
"диск дистрибутива."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Если у вы примете участие, автоматический сценарий будет еженедельно "
"отправлять статистику разработчикам дистрибутива. Собранную статистику можно "
"посмотреть на http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Вы всегда можете изменить своё решение, выполнив команду: \"dpkg-reconfigure "
"popularity-contest\"."
popularity-contest-1.57ubuntu1/debian/po/sk.po 0000644 0000000 0000000 00000003673 12144133427 016374 0 ustar # Peter Mann , 2006.
# Ivan Masár , 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2009-02-25 17:11+0100\n"
"Last-Translator: Ivan Masár \n"
"Language-Team: Slovak \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Pripojiť sa k prehľadu najpoužívanejších balíkov?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Môžete nechať systém, aby anonymne poskytol vývojárom distribúcie štatistiku "
"o najviac používaných balíkoch na vašom systéme. Táto informácia pomôže v "
"rozhodovaní, ktoré balíky by mali byť na prvom distribučnom CD."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Ak sa zúčastníte tohto prehľadu, raz týždenne sa spustí automatický skript, "
"ktorý odošle štatistiku vývojárom distribúcie. Prehľad štatistických údajov "
"si môžete pozrieť na http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Svoje rozhodnutie môžete kedykoľvek zmeniť spustením príkazu „dpkg-"
"reconfigure popularity-contest“."
popularity-contest-1.57ubuntu1/debian/po/sq.po 0000644 0000000 0000000 00000006677 12144133427 016411 0 ustar # Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
#
#
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian 1.36\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-10-22 18:36+0200\n"
"Last-Translator: Elian Myftiu \n"
"Language-Team: Debian L10n Albanian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Dëshiron të marrësh pjesë në anketën e paketë-përdorimit?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Sistemi mund t'i dërgojë në mënyrë anonime zhvilluesve statistikat e "
"paketave më të përdorshme të sistemit tënd. Këto të dhëna ndikojnë në "
"vendime si p.sh. cilat paketa duhet të përfundojnë në CD-në e parë të "
"shpërndarjes."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Nëse vendos të marrësh pjesë, një script automatik do xhirojë një herë në "
"javë, duke i dërguar statistikat zhvilluesve të shpërndarjes. Statistikat e "
"mbledhura mund të shihen në http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Kjo zgjedhje mund të ndryshohet më vonë duke shtypur \"dpkg-reconfigure "
"popularity-contest\""
#~ msgid "Generating unique host identifier failed"
#~ msgstr "Gjenerimi i identifikuesit të veçantë për kompjuterin dështoi"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "Script-i i instalimit nuk mundi të gjeneronte identifikuesin e veçantë "
#~ "për komjuterin. Ky është një gabim fatal, pasi të gjithë kompjuterat që "
#~ "dërgojnë të dhëna duhet të kenë një të tillë."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Të lutem njofto këtë problem si një \"bug\" ndaj paketës popularity-"
#~ "contest, dhe përfshi të dhëna rreth konfigurimit tënd."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Të përdor HTTP për të dërguar të dhënat?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Nëse nuk dëshiron të përdorësh HTTP, do përdoret email-i."
popularity-contest-1.57ubuntu1/debian/po/es.po 0000644 0000000 0000000 00000011117 12144133427 016356 0 ustar #
# 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: popularity-contest 1.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-31 15:28+0200\n"
"Last-Translator: Ruben Porras \n"
"Language-Team: ES \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Desea participar en la encuesta sobre el uso de los paquetes?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Puede hacer que su sistema enve annimamente estadsticas a los "
"desarrolladores sobre los paquetes que ms usa. Esta informacin tiene "
"influencia sobre ciertas decisiones, como qu paquetes deben incluirse en el "
"primer CD de la distribucin."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Si elige participar, el script de envo se ejecutar automticamente una vez "
"a la semana, mandando estadsticas a los desarrolladores. Las estadsticas "
"se pueden consultar en http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"La eleccin siempre puede cambiar con la orden dpkg-reconfigure popularity-"
"contest"
#~ msgid "Generating unique host identifier failed"
#~ msgstr "Fall la generacin del identificador de sistema"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "El script de instalacin no pudo generar un identificador de puesto "
#~ "nico. Esto es un error fatal, ya que todos los sistemas que enven "
#~ "informacin necesitan un identificador nico."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Por favor, avise del problema enviando un informe de fallo al paquete "
#~ "popularity-contest, incluyendo informacin acerca de su configuracin."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Usar HTTP para enviar los informes?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Si no quiere usar HTTP, se usar el correo electrnico en su lugar."
#~ msgid ""
#~ "This information helps us make decisions such as which packages should go "
#~ "on the first Debian CD. Also, we can improve future versions of Debian "
#~ "so that the most popular packages are the ones which are installed "
#~ "automatically for new users."
#~ msgstr ""
#~ "Esta informacin nos ayuda a tomar decisiones, como qu paquetes deben ir "
#~ "en el primer CD de Debian. Tambin servir para mejorar versiones futuras "
#~ "de Debian, haciendo que los paquetes ms populares sean los que se "
#~ "instalen automticamente para los nuevos usuarios."
#~ msgid ""
#~ "(NOTE: e-mail servers add their own tracing information and your data "
#~ "won't be completely anonymous while in transit.)"
#~ msgstr ""
#~ "(NOTA: los servidores de correo electrnico aaden cierta informacin de "
#~ "rastreo, por lo que los datos no sern completamente annimos mientras "
#~ "estn en trnsito.)"
#~ msgid ""
#~ "If you choose to participate, the automatic submission script will run "
#~ "once every week automatically."
#~ msgstr ""
#~ "Si elige participar, popularity-contest se ejecutar automticamente una "
#~ "vez a la semana."
#~ msgid "Do you want to participate?"
#~ msgstr "Quiere participar?"
popularity-contest-1.57ubuntu1/debian/po/th.po 0000644 0000000 0000000 00000011500 12144133427 016356 0 ustar # Thai translation of popularity-contest.
# Copyright (C) 2006 Software in the Public Interest, Inc.
# This file is distributed under the same license as the popularity-contest package.
# Theppitak Karoonboonyanan , 2006.
#
# 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: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-07-29 20:25+0700\n"
"Last-Translator: Theppitak Karoonboonyanan \n"
"Language-Team: Thai \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "เข้าร่วมการสำรวจการใช้งานแพกเกจหรือไม่?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"ระบบของคุณอาจให้ข้อมูลสถิติแบบนิรนามกับนักพัฒนาดิสทริบิวชัน เกี่ยวกับแพกเกจที่คุณใช้มากที่สุดได้ "
"ข้อมูลดังกล่าวจะมีผลต่อการตัดสินใจบางอย่าง เช่น "
"การคัดเลือกแพกเกจที่จะเข้าไปอยู่ในซีดีแผ่นแรกของดิสทริบิวชัน เป็นต้น"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"ถ้าคุณเลือกที่จะเข้าร่วม สคริปต์ส่งข้อมูลอัตโนมัติจะทำงานสัปดาห์ละครั้ง "
"โดยส่งข้อมูลสถิติไปยังนักพัฒนาดิสทริบิวชัน ซึ่งข้อมูลสถิติที่รวบรวมไว้ทั้งหมดสามารถดูได้ที่ http://"
"popcon.debian.org/"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"การเลือกนี้ สามารถเปลี่ยนได้ในภายหลัง โดยเรียกคำสั่ง \"dpkg-reconfigure popularity-"
"contest\""
#~ msgid "Generating unique host identifier failed"
#~ msgstr "สร้างชื่อเอกลักษณ์ของเครื่องไม่สำเร็จ"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "สคริปต์ติดตั้งไม่สามารถสร้างชื่อเอกลักษณ์ของเครื่องได้ ปัญหานี้สำคัญ "
#~ "เพราะทุกเครื่องที่ส่งข้อมูลต้องมีชื่อเอกลักษณ์อ้างอิง"
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "กรุณารายงานปัญหานี้ต่อแพกเกจ popularity-contest โดยแนบข้อมูลการตั้งค่าของคุณไปด้วย"
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "จะใช้ HTTP ในการส่งรายงานหรือไม่?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "ถ้าคุณไม่ต้องการใช้ HTTP ก็จะใช้อีเมลแทน"
popularity-contest-1.57ubuntu1/debian/po/bs.po 0000644 0000000 0000000 00000004600 12144133427 016352 0 ustar #
# 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: popularity-contest_debian\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-10-31 15:29+0100\n"
"Last-Translator: Safir Secerovic \n"
"Language-Team: Bosnian \n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Da li želite sudjelovati u anketi o korištenju paketa?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Sistem može anonimno poslati razvijateljima distribucije satistike o "
"najčešće korištenim paketima na ovom sistemu. Ova informacije utiču na "
"odluke poput one koji bi se paketi trebali nalaziti na prvom CD-u "
"distribucije."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Ako odlučite sudjelovati, skripta za automatsko podnošenje podataka će se "
"pokretati jednom sedmično i slati statistike razvijateljima distribucije. "
"Prikupljene statistike se mogu vidjeti na http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Ovu odluku možete kasnije promijeniti pokretanjem \"dpkg-reconfigure "
"popularity-contest\"."
popularity-contest-1.57ubuntu1/debian/po/eu.po 0000644 0000000 0000000 00000004034 12144133427 016360 0 ustar # translation of eu.po to librezale
# Inaki Larranaga Murgoitio , 2005.
# Piarres Beobide , 2006.
msgid ""
msgstr ""
"Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-11-29 15:45+0100\n"
"Last-Translator: Piarres Beobide \n"
"Language-Team: librezale \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=2; plural=(n != 1)\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Paketeen erabilpen galdeketan parte hartzea nahi duzu?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Sistema honek anonimoki garatzaileei posta elektronikoz sistema honetan "
"gehien erabiltzen diren paketeen estatistikak bidaliko dizkie. Informazio honek erabakiak hartzen "
"lagunduko du, aurreneko CDak edukiko dituen paketeen zerrenda osatzen "
"adibidez."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Parte hartzea hautatu baduzu, astean behin bidalketa automatiko script-a "
"exekutatuko da, garatzaileei estatistikak bidaliaz. Jasotako "
"estatististikak hemen ikus daitezke:http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Nahi duzunean erabakiz alda dezakezu, honakoa exekutatuz: \"dpkg-reconfigure "
"popularity-contest\""
popularity-contest-1.57ubuntu1/debian/po/sv.po 0000644 0000000 0000000 00000010304 12144133427 016374 0 ustar #
# 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: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-08-01 19:45+0100\n"
"Last-Translator: Daniel Nylander \n"
"Language-Team: Swedish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Delta i en kartlggning om anvndandet av Debianpaket?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Du kan lta ditt system anonymt skicka e-post till Debianutvecklarna med "
"statistik om de mest anvnda paketen p detta system. Denna information "
"influerar de val som grs om vilka paket som ska hamna p den frsta Debian-"
"CD:n."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Om du vljer att delta kommer det automatiska inlmningsskriptet att kras "
"automatiskt veckovis och skicka statistik till Debianutvecklarna. Den "
"insamlade statistiken kan ses p http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Du kan alltid ndra detta val senare genom att kra \"dpkg-reconfigure "
"popularity-contest\"."
#~ msgid "Generating unique host identifier failed"
#~ msgstr "Generering av unik vrdidentifierare misslyckades"
#~ msgid ""
#~ "The install script could not generate a unique host identifier. This is a "
#~ "fatal error, as all hosts submitting information need to have an unique "
#~ "identifier."
#~ msgstr ""
#~ "Installationsskriptet kunde inte generera en unik vrdidentifierare. "
#~ "Detta r ett desdigert fel eftersom alla vrdar som skickar information "
#~ "mste ha en unik identifierare."
#~ msgid ""
#~ "Please report this problem as a bug against the popularity-contest "
#~ "package, and include information about your configuration."
#~ msgstr ""
#~ "Rapportera detta problem som en bugg i paketet popularity-contest och "
#~ "inkludera information om din konfiguration."
#~ msgid "Use HTTP to submit reports?"
#~ msgstr "Anvnda HTTP fr att skicka rapporter?"
#~ msgid "If you do not want to use HTTP, email is used instead."
#~ msgstr "Om du inte vill anvnda HTTP kommer istllet e-post att anvndas."
#~ msgid ""
#~ "This information helps us make decisions such as which packages should go "
#~ "on the first Debian CD. Also, we can improve future versions of Debian "
#~ "so that the most popular packages are the ones which are installed "
#~ "automatically for new users."
#~ msgstr ""
#~ "Denna information hjälper oss att göra val om exempelvis vilka paket "
#~ "som ska läggas på den första Debian-cd:n. Vi kan också förbättra "
#~ "framtida versioner av Debian så att de mest populära paketen är de som "
#~ "installeras automatiskt för nya användare."
#~ msgid ""
#~ "(NOTE: e-mail servers add their own tracing information and your data "
#~ "won't be completely anonymous while in transit.)"
#~ msgstr ""
#~ "(NOTERA: e-postservrar lägger till sin egen spårningsinformation och "
#~ "din data kommer inte att vara helt anonym under transporten.)"
popularity-contest-1.57ubuntu1/debian/po/bg.po 0000644 0000000 0000000 00000005575 12144133427 016352 0 ustar # translation of popularity-contest_debian_po_bg.po to Bulgarian
# 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.
#
# Ognyan Kulev , 2005.
# Damyan Ivanov , 2006.
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2006-11-01 13:04+0200\n"
"Last-Translator: Damyan Ivanov \n"
"Language-Team: Bulgarian \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:4
msgid "Participate in the package usage survey?"
msgstr "Участие в анкетата за популярността на пакетите?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"Системата Ви може да изпраща анонимно ел.поща до "
"разработчиците на дистрибуцията с информация кои са най-често използваните "
"пакети. Тази информация влияе на решения като например кои пакети да се "
"включат в първия компактдиск на дистрибуцията."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Ако изберете да участвате, специална програма ще изпраща статистиката "
"до разработчиците на дистрибуцията веднъж седмично. "
"Събраните данни са на разположение на адрес http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Винаги можете да промените решението си по-късно, като изпълните "
"„dpkg-reconfigure popularity-contest“."
popularity-contest-1.57ubuntu1/debian/po/ast.po 0000644 0000000 0000000 00000004765 12144133427 016551 0 ustar #
# 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: popularity-contest_debian\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2009-01-06 21:16+0100\n"
"Last-Translator: astur \n"
"Language-Team: Asturian \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-Poedit-Language: Asturian\n"
"X-Poedit-Country: SPAIN\n"
#. Type: boolean
#. Description
#: ../templates:4
msgid "Participate in the package usage survey?"
msgstr "Participar na encuesta sobro l'usu de paquete?"
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"The system may anonymously supply the distribution developers with "
"statistics about the most used packages on this system. This information "
"influences decisions such as which packages should go on the first "
"distribution CD."
msgstr ""
"El sistema de suministra de mou anónimu a desendolcadores de la "
"distribución, les estadístiques sobro los paquetes más usaos. Esta "
"información inflúi en decisiones tales como qué paquetes tendríen de dir nel "
"primer CD de distribución."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"If you choose to participate, the automatic submission script will run once "
"every week, sending statistics to the distribution developers. The collected "
"statistics can be viewed on http://popcon.debian.org/."
msgstr ""
"Si decides participar, la presentación automática de secuencia de comandos "
"executaráse una vegada a la selmana, unviando les estadístiques a los "
"desendolcadores de la distribución. Les estadístiques recoyíes puen vese en "
"http://popcon.debian.org/."
#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"This choice can be later modified by running \"dpkg-reconfigure popularity-"
"contest\"."
msgstr ""
"Esta elleición pue camudase más sero executando \"dpkg-reconfigure "
"popularity-contest\"."
popularity-contest-1.57ubuntu1/debian/po/is.po 0000644 0000000 0000000 00000005041 12144133427 016361 0 ustar # translation of popularity-contest_debian_po.po to Icelandic
#
# 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.
#
# Sveinn í Felli , 2011.
msgid ""
msgstr ""
"Project-Id-Version: popularity-contest_debian_po\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-29 12:23+0200\n"
"PO-Revision-Date: 2011-12-27 18:47+0000\n"
"Last-Translator: Sveinn í Felli