From: Frank Lichtenheld Date: Sun, 21 Oct 2007 23:42:24 +0000 (+0000) Subject: Merge commit 'origin/master' into debian-master X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=44c93c3f354ded054d8e07e77a59ee2a5ba4a9fc;hp=0d85baeffdbee362e50be7df7d5910be85a81191;p=deb%2Fpackages.git Merge commit 'origin/master' into debian-master --- diff --git a/bin/debtags-xgettext b/bin/debtags-xgettext new file mode 100755 index 0000000..a7f718b --- /dev/null +++ b/bin/debtags-xgettext @@ -0,0 +1,87 @@ +#! /usr/bin/perl -w + +# copied from webwml/english/po/wmlxgettext.pl and +# changed to a crude intltool replacement +# Copyright © 2002-2003 Denis Barbier +# Copyright © 2007 Frank Lichtenheld +# +# 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. +use strict; + +my $messages = {}; +my @msgids = (); + +sub escape { + my $text = shift; + $text =~ s/\\/\\\\/g; + $text =~ s/"/\\"/g; + $text =~ s/\n/\\n/g; + $text =~ s/\t/\\t/g; + return $text; +} + +sub processFile { + my $file = shift; + my ($text, $comment); + my (@messages) = (); + my (%msgids) = (); + + open(IN, "<", $file) || die "Unable to open $file\n"; + local ($/) = ""; + while () { + my %data = (); + chomp; + s/\n /\377/g; + while (/^(\S+):\s*(.*)\s*$/mg) { + my ($key, $value) = ($1, $2); + $value =~ s/\377/\n /g; + $key =~ tr [A-Z] [a-z]; + $data{$key} = $value; + } + next unless $data{description}; + my $comment = ''; + if ($data{facet}) { + $comment = "Facet: $data{facet}"; + } elsif ($data{tag}) { + $comment = "Tag: $data{tag}"; + } else { + die "Neither Facet nor Tag found."; + } + + my ($short, $long) = split /\n/, $data{description}, 2; + + $short = escape($short); + push (@msgids, $short); + push (@{$messages->{$short}}, $comment.", short desc", $file); + + if ($long) { + $long = escape($long); + push (@msgids, $long); + push (@{$messages->{$long}}, $comment.", long desc", $file); + } + } + close(IN); +} + +foreach (@ARGV) { + processFile($_); +} + +print "msgid \"\"\nmsgstr \"\"\n". + "\"Content-Type: text/plain; charset=UTF-8\\n\"\n". + "\"Content-Transfer-Encoding: 8bit\\n\"\n\n"; + +foreach my $msgid (@msgids) { + next unless $messages->{$msgid}; + while (@{$messages->{$msgid}}) { + $_ = shift(@{$messages->{$msgid}}); + s/\n/\n#. /g; + print "#. ".$_."\n" if $_; + print "#: ".shift(@{$messages->{$msgid}})."\n"; + } + print "msgid \"$msgid\"\nmsgstr \"\"\n\n"; + undef $messages->{$msgid}; +} diff --git a/bin/newpkg_info b/bin/newpkg_info index 37b7290..b55b45d 100755 --- a/bin/newpkg_info +++ b/bin/newpkg_info @@ -13,6 +13,7 @@ use Packages::Search qw( :all ); my $suite = $ARGV[0] or die "Fatal Error: No suite given"; my $start_time = time; +my $debug = 1; tie my %packages, 'DB_File', "$DBDIR/packages_small.db", O_RDONLY, 0666, $DB_BTREE @@ -27,22 +28,30 @@ sub get_iso_date { return sprintf( "%04s-%02s-%02s", $year, $month, $day ); } -open CHANGES, '>', "$TOPDIR/files/packages/newpkg_info.new" +my $packagesdir = "$TOPDIR/files/packages"; +open CHANGES, '>', "$packagesdir/newpkg_info_$suite.new" or die "Fatal Error: Couldn't open CHANGES file: $!"; -for (my $age = 0; $age < 7; $age++) { - my (%old, %changes); +my (%add, %del); +my $lastday; +for (my $age = 7; $age >= 0; $age--) { + my (%old); my $newday = get_iso_date( $age ); my $oldday = get_iso_date( $age+1 ); - open OLD, '<', "$TOPDIR/files/packages/package_names_$suite.$oldday" - or do { - warn "Warning: Couldn't open OLD file $TOPDIR/files/packages/package_names_$suite.$oldday: $!\n"; - next; - }; - open NEW, '<', "$TOPDIR/files/packages/package_names_$suite.$newday" - or do { - warn "Warning: Couldn't open NEW file $TOPDIR/files/packages/package_names_$suite.$newday: $!\n"; - next; - }; + -d "$packagesdir/$oldday" or do { + warn "Warning: No information available for $oldday\n"; + next unless $lastday; + $oldday = $lastday; + }; + -d "$packagesdir/$newday" or do { + warn "Warning: No information available for $newday\n"; + next; + }; + $lastday = $newday; + warn "Process: age=$age oldday=$oldday newday=$newday\n" if $debug; + open OLD, '<', "$packagesdir/$oldday/package_names_$suite" + or die "Error: Couldn't open OLD file $packagesdir/$oldday/package_names_$suite: $!\n"; + open NEW, '<', "$packagesdir/$newday/package_names_$suite" + or die "Error: Couldn't open NEW file $packagesdir/$newday/package_names_$suite: $!\n"; while () { chomp; $old{$_} = 1; @@ -54,28 +63,44 @@ for (my $age = 0; $age < 7; $age++) { # we assume here that the input contains no dupes! delete $old{$_}; } else { - $changes{$_} = 1; + if (exists $del{$_}) { + delete $del{$_}; + warn "Re-Added: $_\n" if $debug; + } else { + $add{$_} = $age; + warn "Added: $_ (age $age)\n" if $debug; + } } } close NEW; foreach (keys %old) { - $changes{$_} = -1; + if (exists $add{$_}) { + delete $add{$_}; + warn "Deleted again: $_\n" if $debug; + } else { + $del{$_} = $age; + warn "Deleted: $_ (age $age)\n" if $debug; + } } - my %archives = map { $_ => 1 } qw( us security ); - foreach (sort keys %changes) { - my $entry = []; - if ($changes{$_} == 1) { - $entry = read_entry_simple( \%packages, $_, \%archives, $suite); - die "Fatal Error: Can't find entry for package $_\n" - unless @$entry; - shift @$entry; # remove virtual pkg info - } - print CHANGES join(" ", $_, $age, @$entry)."\n"; - print "Wrote entry: ".join(" ", $_, $age, @$entry)."\n"; +} +my %archives = map { $_ => 1 } qw( us security ); +foreach (sort (keys %add, keys %del)) { + my $entry = []; + my $age = 0; + if (exists $add{$_}) { + $entry = read_entry_simple( \%packages, $_, \%archives, $suite); + die "Fatal Error: Can't find entry for package $_\n" + unless @$entry; + shift @$entry; # remove virtual pkg info + $age = $add{$_}; + } else { + $age = $del{$_}; } + print CHANGES join(" ", $_, $age, @$entry)."\n"; + print "Wrote entry: ".join(" ", $_, $age, @$entry)."\n"; } close CHANGES; -rename("$TOPDIR/files/packages/newpkg_info.new", - "$TOPDIR/files/packages/newpkg_info"); +rename("$packagesdir/newpkg_info_$suite.new", + "$packagesdir/newpkg_info_$suite"); diff --git a/bin/parse-debtags-voc b/bin/parse-debtags-voc index b639156..7e1453c 100755 --- a/bin/parse-debtags-voc +++ b/bin/parse-debtags-voc @@ -22,16 +22,18 @@ use lib './lib'; $| = 1; +use POSIX; use DB_File; use File::Path; use Data::Dumper; use HTML::Entities; use URI::Escape; +use Locale::gettext; use Deb::Versions; use Packages::Template; -use Packages::Config qw( $TOPDIR ); -use Packages::CGI; +use Packages::Config qw( $TOPDIR @LANGUAGES $LOCALES); +use Packages::I18N::Locale; &Packages::Config::init( './' ); my $debtagsdir = "$TOPDIR/files/debtags"; my $wwwdir = "$TOPDIR/www/about"; @@ -44,6 +46,23 @@ delete $ENV{'LANGUAGE'}; delete $ENV{'LANG'}; delete $ENV{'LC_ALL'}; delete $ENV{'LC_MESSAGES'}; +bindtextdomain ( 'debtags', $LOCALES ); +textdomain( 'debtags' ); + +sub process_desc { + my ($desc) = @_; + + if ($desc) { + $desc = encode_entities($desc); + + $desc =~ s,((ftp|http|https)://[\S~-]+?/?)((\>\;)?[)]?[']?[:.\,]?(\s|$)),$1$3,go; # syntax highlighting -> ']; + $desc =~ s/\A //o; + $desc =~ s/\n /\n/sgo; + $desc =~ s/\n.\n/\n

\n/go; + $desc =~ s/(((\n|\A) [^\n]*)+)/\n

$1\n<\/pre>/sgo;
+    }
+    return $desc;
+}
 
 print "Parsing Vocabulary...\n";
 tie %voc_db, "DB_File", "$debtagsdir/vocabulary.db.new",
@@ -72,18 +91,23 @@ while () {
 	warn "Duplicated key found: $voc_key\n";
 	next;
     }
-    my ($sdesc,$ldesc) = split /\n/, encode_entities($data{description}), 2;
-
-    if ($ldesc) {
-	$ldesc =~ s,((ftp|http|https)://[\S~-]+?/?)((\>\;)?[)]?[']?[:.\,]?(\s|$)),$1$3,go; # syntax highlighting -> '];
-	$ldesc =~ s/\A //o;
-	$ldesc =~ s/\n /\n/sgo;
-	$ldesc =~ s/\n.\n/\n

\n/go; - $ldesc =~ s/(((\n|\A) [^\n]*)+)/\n

$1\n<\/pre>/sgo;
-    }
-    $data{html_description} = [ $sdesc, $ldesc||"" ];
+    my ($sdesc,$ldesc) = split /\n/, $data{description}, 2;
 
+    $data{html_description} = [ encode_entities($sdesc), process_desc($ldesc)||"" ];
     $voc_db{$voc_key} = $sdesc || "";
+
+    foreach my $lang (@LANGUAGES) {
+	my $locale = get_locale( $lang );
+	setlocale ( LC_ALL, $locale ) or do {
+	    warn "couldn't set locale ($lang/$locale)\n";
+	    next;
+	};
+
+	my $sdesc_trans = dgettext( 'debtags', $sdesc );
+	$voc_db{"$voc_key-$lang"} = $sdesc_trans
+	    if $sdesc_trans and $sdesc_trans ne $sdesc;
+    }
+
     $voc{$voc_key} = \%data;
 }
 
diff --git a/bin/parse-packages b/bin/parse-packages
index 6e27c3a..61d6b84 100755
--- a/bin/parse-packages
+++ b/bin/parse-packages
@@ -157,7 +157,7 @@ for my $suite (@SUITES) {
 		$subsections{$suite}{$subsection}++;
 		$priorities{$suite}{$data{priority}}++;
 		my $pkgitem = "$archive $suite $data{'architecture'} ".
-			"$section $subsection $data{'priority'} $data{'version'} $sdescr\0";
+			"$section $subsection $data{'priority'} $data{'version'} $data{'description-md5'} $sdescr\0";
 		my $previtem = ($packages_small{$data{'package'}}{$suite}{$data{'architecture'}}
 		    ||= $pkgitem);
 		$packages_small{$data{'package'}}{$suite}{$data{'architecture'}} = $pkgitem
@@ -303,7 +303,7 @@ for (my $i=1; $i<= $#descriptions; $i++) {
 		}
 	    }
 	    if ($tags) {
-		foreach my $t (split /, /, $tags) {
+		foreach my $t (split m/, /, $tags) {
 		    if ($doc->add_term($t)) {
 			warn "can't add term $t: $!\n";
 		    }
diff --git a/cron.d/500update_mo b/cron.d/500update_mo
index 073e842..9676466 100755
--- a/cron.d/500update_mo
+++ b/cron.d/500update_mo
@@ -44,7 +44,7 @@ templates/rfc822/search.tmpl
 templates/rss/newpkg.tmpl
 templates/txt/index.tmpl
 "
-podomains="pdo templates sections langs"
+podomains="pdo templates sections langs debtags"
 
 # Update pot
 #
@@ -53,19 +53,16 @@ xgettext_opts="--language=Perl --keyword=N_ --keyword=_g --foreign-user --add-co
 
 echo gettextfiles=$gettextfiles
 echo templatefiles=$templatefiles
-xgettext $xgettext_opts -d pdo -o ${podir}/pdo.pot ${gettextfiles}
-$topdir/bin/ttxgettext templates ${templatefiles} >${podir}/templates.pot
-xgettext $xgettext_opts -d sections -o ${podir}/sections.pot ${libdir}/Packages/Sections.pm
-xgettext $xgettext_opts -d langs -o ${podir}/langs.pot ${libdir}/Packages/I18N/LanguageNames.pm
+xgettext $xgettext_opts -d pdo -o ${podir}/pdo.pot.new ${gettextfiles}
+xgettext $xgettext_opts -d sections -o ${podir}/sections.pot.new ${libdir}/Packages/Sections.pm
+xgettext $xgettext_opts -d langs -o ${podir}/langs.pot.new ${libdir}/Packages/I18N/LanguageNames.pm
+$topdir/bin/ttxgettext templates ${templatefiles} >${podir}/templates.pot.new
+if [ -f files/debtags/vocabulary ]; then
+    $topdir/bin/debtags-xgettext files/debtags/vocabulary >${podir}/debtags.pot.new
+fi
 
 cd $podir
 
-# normalize paths in .pot files
-for domain in ${podomains}
-do
-  perl -p -i -e "s,^#:\s*\Q${topdir}\E,#: .,go" ${domain}.pot
-done
-
 # Create missing po files
 #
 for lang in ${polangs}
@@ -76,20 +73,31 @@ do
   done
 done
 
-# Update po
-#
-for lang in ${polangs} 
+# normalize paths in .pot files
+for domain in ${podomains}
 do
-  for domain in ${podomains}
-  do
-    cp ${domain}.${lang}.po ${domain}.${lang}.po.tmp
-    msgmerge --previous --quiet --sort-by-file -o ${domain}.${lang}.po ${domain}.${lang}.po.tmp ${domain}.pot
-    rm ${domain}.${lang}.po.tmp
-    # normalize paths in .po files
-    perl -p -i -e "s,^#:\s*\Q${topdir}\E,#: .,go" ${domain}.${lang}.po
-  done
+  perl -p -i -e "s,^#:\s*\Q${topdir}\E,#: .,go" ${domain}.pot.new
+  if [ ! -f ${domain}.pot.new ] || diff -I"POT-Creation-Date" -q ${domain}.pot.new ${domain}.pot >/dev/null 2>&1
+  then
+      echo "${domain}.pot unchanged"
+      rm ${domain}.pot.new
+  else
+      echo "${domain}.pot changed"
+      mv ${domain}.pot.new ${domain}.pot
+      # Update po
+      for lang in ${polangs} 
+      do
+	echo "  update ${domain}.${lang}.po"
+	cp ${domain}.${lang}.po ${domain}.${lang}.po.tmp
+	msgmerge --previous --quiet --sort-by-file -o ${domain}.${lang}.po ${domain}.${lang}.po.tmp ${domain}.pot
+	rm ${domain}.${lang}.po.tmp
+        # normalize paths in .po files
+	perl -p -i -e "s,^#:\s*\Q${topdir}\E,#: .,go" ${domain}.${lang}.po
+      done
+  fi
 done
 
+echo
 # Update mo
 #
 test -d ${localedir} || mkdir -p ${localedir}
diff --git a/cron.d/600prepare_newpkg b/cron.d/600prepare_newpkg
index f722cb2..23cd8b8 100755
--- a/cron.d/600prepare_newpkg
+++ b/cron.d/600prepare_newpkg
@@ -2,14 +2,18 @@
 
 . `dirname $0`/../config.sh
 
-packagesdir=${filesdir}/packages
-test -d ${packagesdir} || mkdir -p ${packagesdir}
-
-LANG=C cat ${filesdir}/db/package_names_sid.txt \
-    | sort | uniq > ${packagesdir}/package_names_sid.$(date -I)
-LANG=C cat ${filesdir}/db/source_names_sid.txt \
-    | sort | uniq > ${packagesdir}/source_names_sid.$(date -I)
+isodate=$(date -I)
+packagesdir="${filesdir}/packages/${isodate}"
+test -d "${packagesdir}" || mkdir -p "${packagesdir}"
 
 cd $topdir
+for dist in $dists
+do
+    echo newpkg info for $dist
+    LANG=C cat "${filesdir}/db/package_names_${dist}.txt" \
+	| sort | uniq > "${packagesdir}/package_names_${dist}"
+    LANG=C cat "${filesdir}/db/source_names_${dist}.txt" \
+	| sort | uniq > "${packagesdir}/source_names_${dist}"
 
-./bin/newpkg_info sid
+    ./bin/newpkg_info ${dist}
+done
diff --git a/lib/Packages/DoFilelist.pm b/lib/Packages/DoFilelist.pm
index f76efb9..5855042 100644
--- a/lib/Packages/DoFilelist.pm
+++ b/lib/Packages/DoFilelist.pm
@@ -4,10 +4,7 @@ use strict;
 use warnings;
 
 use POSIX;
-use URI::Escape;
-use HTML::Entities;
 use DB_File;
-use Benchmark ':hireswallclock';
 use Exporter;
 
 use Deb::Versions;
diff --git a/lib/Packages/DoIndex.pm b/lib/Packages/DoIndex.pm
index 1c8f52a..416f3db 100644
--- a/lib/Packages/DoIndex.pm
+++ b/lib/Packages/DoIndex.pm
@@ -34,7 +34,7 @@ sub send_file {
 	fatal_error( sprintf( _g( "more than one suite specified for show_static (%s)" ), "@{$opts->{suite}}" ) );
     }
     if (@{$opts->{subsection}} > 1) {
-	fatal_error( sprintf( _g( "more than one suite specified for show_static (%s)" ), "@{$opts->{suite}}" ) );
+	fatal_error( sprintf( _g( "more than one subsection specified for show_static (%s)" ), "@{$opts->{suite}}" ) );
     }
 
     my $wwwdir = "$TOPDIR/www";
diff --git a/lib/Packages/DoNewPkg.pm b/lib/Packages/DoNewPkg.pm
index 60e6876..e5b9e88 100644
--- a/lib/Packages/DoNewPkg.pm
+++ b/lib/Packages/DoNewPkg.pm
@@ -3,10 +3,7 @@ package Packages::DoNewPkg;
 use strict;
 use warnings;
 
-use Benchmark ':hireswallclock';
-use HTML::Entities;
 use POSIX;
-use XML::RSS;
 use CGI ();
 use Exporter;
 our @ISA = qw( Exporter );
@@ -25,7 +22,7 @@ sub do_newpkg {
 	fatal_error( _g( "suite not valid or not specified" ) );
     }
     if (@{$opts->{suite}} > 1) {
-	fatal_error( sprintf( _g( "more than one suite specified for show (%s)" ), "@{$opts->{suite}}" ) );
+	fatal_error( sprintf( _g( "more than one suite specified for newpkg (%s)" ), "@{$opts->{suite}}" ) );
     }
 
     my $sort_func = sub { $_[0][0] cmp $_[1][0] };
@@ -39,9 +36,13 @@ sub do_newpkg {
 	$opts->{section}[0] : undef;
 
     my @new_pkgs;
-    #FIXME: move to Packages::DB?
-    open NEWPKG, '<', "$TOPDIR/files/packages/newpkg_info"
-	or die "can't read newpkg_info file: $!";
+    open NEWPKG, '<', "$TOPDIR/files/packages/newpkg_info_$suite"
+	or do {
+	    warn "can't read newpkg_info_$suite: $!";
+	    fatal_error( sprintf( _g("no newpkg information found for suite %s"),
+				  $suite) );
+	    return;
+    };
     while () {
 	chomp;
 	my @data = split /\s/, $_, 10;
diff --git a/lib/Packages/DoSearch.pm b/lib/Packages/DoSearch.pm
index c1b6dfd..31e110d 100644
--- a/lib/Packages/DoSearch.pm
+++ b/lib/Packages/DoSearch.pm
@@ -5,8 +5,6 @@ use warnings;
 
 use Benchmark ':hireswallclock';
 use DB_File;
-use URI::Escape;
-use HTML::Entities;
 use Exporter;
 our @ISA = qw( Exporter );
 our @EXPORT = qw( do_search );
@@ -90,7 +88,7 @@ sub do_search {
 	unless ($opts->{source}) {
 	    foreach (@results) {
 		my ($pkg_t, $archive, $suite, $arch, $section, $subsection,
-		    $priority, $version, $desc) = @$_;
+		    $priority, $version, $desc_md5, $desc) = @$_;
 
 		my ($pkg) = $pkg_t =~ m/^(.+)/; # untaint
 		if ($arch ne 'virtual') {
@@ -99,7 +97,7 @@ sub do_search {
 		    $sect{$pkg}{$suite}{$version} = $section;
 		    $archives{$pkg}{$suite}{$version} ||= $archive;
 
-		    $desc{$pkg}{$suite}{$version} = $desc;
+		    $desc{$pkg}{$suite}{$version} = [ $desc_md5, $desc ];
 		} else {
 		    $provided_by{$pkg}{$suite} = [ split /\s+/, $desc ];
 		}
@@ -199,9 +197,22 @@ sub process_package {
 	    my @versions = version_sort keys %{$pkgs->{$suite}};
 	    $suite{section} = $sect->{$suite}{$versions[0]};
 	    $suite{subsection} = $subsect->{$suite}{$versions[0]};
-	    $suite{desc} = $desc->{$suite}{$versions[0]};
+	    my $desc_md5 = $desc->{$suite}{$versions[0]}[0];
+	    $suite{desc} = $desc->{$suite}{$versions[0]}[1];
 	    $suite{versions} = [];
-		
+
+	    my $trans_desc = $desctrans{$desc_md5};
+	    my %sdescs;
+	    if ($trans_desc) {
+		my %trans_desc = split /\000|\001/, $trans_desc;
+		while (my ($l, $d) = each %trans_desc) {
+		    $d =~ s/\n.*//os;
+
+		    $sdescs{$l} = $d;
+		}
+		$suite{trans_desc} = \%sdescs;
+	    }
+
 	    foreach my $v (@versions) {
 		my %version;
 		$version{version} = $v;
diff --git a/lib/Packages/DoSearchContents.pm b/lib/Packages/DoSearchContents.pm
index debbbb2..93a2026 100644
--- a/lib/Packages/DoSearchContents.pm
+++ b/lib/Packages/DoSearchContents.pm
@@ -5,8 +5,6 @@ use warnings;
 
 use Benchmark ':hireswallclock';
 use DB_File;
-use URI::Escape;
-use HTML::Entities;
 use Exporter;
 our @ISA = qw( Exporter );
 our @EXPORT = qw( do_search_contents );
diff --git a/lib/Packages/DoShow.pm b/lib/Packages/DoShow.pm
index bf84444..0c65ec1 100644
--- a/lib/Packages/DoShow.pm
+++ b/lib/Packages/DoShow.pm
@@ -12,7 +12,8 @@ use Exporter;
 
 use Deb::Versions;
 use Packages::Config qw( $DBDIR @SUITES @ARCHIVES @SECTIONS
-			 @ARCHITECTURES %FTP_SITES @DDTP_LANGUAGES);
+			 @ARCHITECTURES %FTP_SITES
+			 @LANGUAGES @DDTP_LANGUAGES);
 use Packages::I18N::Locale;
 use Packages::CGI qw( :DEFAULT make_url make_search_url );
 use Packages::DB;
@@ -88,7 +89,7 @@ sub do_show {
 		    for my $entry (@results) {
 			debug( join(":", @$entry), 1 ) if DEBUG;
 			my (undef, $archive, undef, $arch, $section, $subsection,
-			    $priority, $version, $provided_by) = @$entry;
+			    $priority, $version, undef, $provided_by) = @$entry;
 			
 			if ($arch ne 'virtual') {
 			    my %data = split /\000/, $packages_all{"$pkg $arch $version"};
@@ -179,7 +180,8 @@ sub do_show {
 			my $trans_desc = $desctrans{$desc_md5};
 			if ($trans_desc) {
 			    my %trans_desc = split /\000|\001/, $trans_desc;
-			    $contents{used_langs} = ['en', sort keys %trans_desc];
+			    my %all_langs = map { $_ => 1 } (@LANGUAGES, keys %trans_desc);
+			    $contents{used_langs} = [ keys %all_langs ];
 			    debug( "TRANSLATIONS: ".join(" ",keys %trans_desc), 2)
 				if DEBUG;
 			    while (my ($l, $d) = each %trans_desc) {
@@ -422,7 +424,7 @@ sub build_deps {
 
 	    if ($arch_str ||= '') {
 		if ($arch_neg) {
-		    $arch_str = _g("not")." $arch_str";
+		    $arch_str = sprintf( _g("not %s"), "$arch_str" );
 		} else {
 		    $arch_str = $arch_str;
 		}
@@ -438,11 +440,23 @@ sub build_deps {
 	    my $entry = $entries{$p_name} ||
 		read_entry_simple( $packages, $p_name, $opts->{h_archives}, $suite);
 	    my $short_desc = $entry->[-1];
+	    my $desc_md5 = $entry->[-2];
 	    my $arch = $entry->[3];
 	    my $archive = $entry->[1];
 	    my $p_suite = $entry->[2];
 	    if ( $short_desc ) {
 		$rel_alt_out{desc} = $short_desc;
+		my $trans_desc = $desctrans{$desc_md5};
+		if ($trans_desc) {
+		    my %trans_desc = split /\000|\001/, $trans_desc;
+		    my %sdescs;
+		    while (my ($l, $d) = each %trans_desc) {
+			$d =~ s/\n.*//os;
+
+			$sdescs{$l} = $d;
+		    }
+		    $rel_alt_out{trans_desc} = \%sdescs;
+		}
 		$rel_alt_out{suite} = $p_suite;
 		if ( $rel_out{is_old_pkgs} ) {
 		} elsif (defined $entry->[1]) {
@@ -481,10 +495,22 @@ sub pkg_list {
 
 	# we don't deal with virtual packages here because for the
 	# current uses of this function this isn't needed
-	my $short_desc = (read_entry_simple( $packages, $p, $opts->{h_archives}, $suite))->[-1];
+	my $data = read_entry_simple( $packages, $p, $opts->{h_archives}, $suite);
+	my ($desc_md5, $short_desc) = ($data->[-2],$data->[-1]);
 
 	if ( $short_desc ) {
-	    push @$list, { name => $p, desc => $short_desc, available => 1 };
+	    my $trans_desc = $desctrans{$desc_md5};
+	    my %sdescs;
+	    if ($trans_desc) {
+		my %trans_desc = split /\000|\001/, $trans_desc;
+		while (my ($l, $d) = each %trans_desc) {
+		    $d =~ s/\n.*//os;
+
+		    $sdescs{$l} = $d;
+		}
+	    }
+	    push @$list, { name => $p, desc => $short_desc,
+			   trans_desc => \%sdescs, available => 1 };
 	} else {
 	    push @$list, { name => $p, desc => _g("Not available") };
 	}
diff --git a/lib/Packages/Search.pm b/lib/Packages/Search.pm
index d387267..52f451e 100644
--- a/lib/Packages/Search.pm
+++ b/lib/Packages/Search.pm
@@ -74,16 +74,16 @@ sub read_entry_all {
     while (my ($suite, $provides) = each %virt) {
 	next if $suite eq '-';
 	if ($opts->{h_suites}{$suite}) {
-	    push @$results, [ $key, "-", $suite, 'virtual', 'v', 'v', 'v', 'v',
+	    push @$results, [ $key, "-", $suite, 'virtual', 'v', 'v', 'v', 'v', 'v',
 			      $provides];
 	} else {
-	    push @$non_results, [ $key, "-", $suite, 'virtual', 'v', 'v', 'v', 'v',
+	    push @$non_results, [ $key, "-", $suite, 'virtual', 'v', 'v', 'v', 'v', 'v',
 				  $provides];
 	}
     }
 
     foreach (split(/\000/o, $result||'')) {
-	my @data = split ( /\s/o, $_, 8 );
+	my @data = split ( /\s/o, $_, 9 );
 	debug( "Considering entry ".join( ':', @data), 2) if DEBUG;
 	if ($opts->{h_suites}{$data[1]}
 	    && ($opts->{h_archs}{$data[2]} || $data[2] eq 'all')
@@ -123,7 +123,7 @@ sub read_entry_simple {
     # with correctly, but it's adequate enough for now
     return [ $virt{$suite} ] unless defined $result;
     foreach (split /\000/o, $result) {
-	my @data = split ( /\s/o, $_, 8 );
+	my @data = split ( /\s/o, $_, 9 );
 	debug( "use entry: @data", 2 ) if DEBUG && $data[1] eq $suite;
 	return [ $virt{$suite}, @data ] if $data[1] eq $suite;
     }
@@ -209,10 +209,10 @@ sub do_xapian_search {
 	push @tmp, $keyword;
     }
     my $stemmer = Lingua::Stem->new();
-    my $stemmed_keywords = $stemmer->stem( @tmp );
+    my @stemmed_keywords = grep { length($_) } @{$stemmer->stem( @tmp )};
 
     my $db = Search::Xapian::Database->new( $dbpath );
-    my $enq = $db->enquire( OP_OR, @$keywords, @$stemmed_keywords );
+    my $enq = $db->enquire( OP_OR, @$keywords, @stemmed_keywords );
     debug( "Xapian Query was: ".$enq->get_query()->get_description(), 1) if DEBUG;
     my @matches = $enq->matches(0, 999);
 
diff --git a/lib/Packages/Template.pm b/lib/Packages/Template.pm
index be71d15..60cabd6 100644
--- a/lib/Packages/Template.pm
+++ b/lib/Packages/Template.pm
@@ -11,6 +11,7 @@ use URI::Escape ();
 use Benchmark ':hireswallclock';
 
 use Packages::CGI;
+use Packages::Config qw( @LANGUAGES );
 use Packages::I18N::Locale;
 use Packages::I18N::Languages;
 use Packages::I18N::LanguageNames;
@@ -53,7 +54,7 @@ sub new {
 	VARIABLES => $vars,
 	COMPILE_EXT => '.ttc',
 	%$options,
-    } ) or fatal_error( sprintf( _g( "Initialization of Template Engine failed: %s" ), $Template::ERROR ) );
+    } ) or die sprintf( "Initialization of Template Engine failed: %s", $Template::ERROR );
     $self->{format} = $format;
     $self->{vars} = $vars;
 
@@ -74,7 +75,7 @@ sub page {
 
     #use Data::Dumper;
     #die Dumper($self, $action, $page_content);
-    $page_content->{used_langs} ||= [ 'en' ];
+    $page_content->{used_langs} ||= \@LANGUAGES;
     $page_content->{langs} = languages( $page_content->{lang}
 					|| $self->{vars}{lang} || 'en',
 					@{$page_content->{used_langs}} );
diff --git a/po/debtags.de.po b/po/debtags.de.po
new file mode 100644
index 0000000..e3eb5d7
--- /dev/null
+++ b/po/debtags.de.po
@@ -0,0 +1,3544 @@
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Facet: accessibility, short desc
+#: files/debtags/vocabulary
+msgid "Accessibility Support"
+msgstr ""
+
+#. Tag: accessibility::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Systems"
+msgstr ""
+
+#. Tag: accessibility::input, long desc
+#: files/debtags/vocabulary
+msgid " Applies to input methods for non-latin languages as well as special input\n systems."
+msgstr ""
+
+#. Tag: accessibility::ocr, short desc
+#: files/debtags/vocabulary
+msgid "Text Recognition (OCR)"
+msgstr ""
+
+#. Tag: accessibility::ocr, long desc
+#: files/debtags/vocabulary
+msgid " Optical Character Recognition"
+msgstr ""
+
+#. Tag: accessibility::screen-magnify, short desc
+#: files/debtags/vocabulary
+msgid "Screen Magnification"
+msgstr ""
+
+#. Tag: accessibility::screen-reader, short desc
+#: files/debtags/vocabulary
+msgid "Screen Reading"
+msgstr ""
+
+#. Tag: accessibility::speech, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::speech, short desc
+#: files/debtags/vocabulary
+msgid "Speech Synthesis"
+msgstr ""
+
+#. Tag: accessibility::speech-recognition, short desc
+#: files/debtags/vocabulary
+msgid "Speech Recognition"
+msgstr ""
+
+#. Tag: accessibility::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, short desc
+#: files/debtags/vocabulary
+msgid "Need an extra tag"
+msgstr ""
+
+#. Tag: accessibility::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, long desc
+#: files/debtags/vocabulary
+msgid " The package can be categorised along this facet, but the right tag for it is\n missing.\n .\n Mark a package with this tag to signal the vocabulary maintainers of cases\n where the current tag set is lacking."
+msgstr ""
+
+#. Facet: admin, short desc
+#: files/debtags/vocabulary
+msgid "System Administration"
+msgstr ""
+
+#. Tag: admin::accounting, short desc
+#: files/debtags/vocabulary
+msgid "Accounting"
+msgstr ""
+
+#. Tag: admin::automation, short desc
+#: files/debtags/vocabulary
+msgid "Automation and scheduling"
+msgstr ""
+
+#. Tag: admin::automation, long desc
+#: files/debtags/vocabulary
+msgid " Automating the execution of software in the system."
+msgstr ""
+
+#. Tag: admin::backup, short desc
+#: files/debtags/vocabulary
+msgid "Backup and Restoration"
+msgstr ""
+
+#. Tag: admin::benchmarking, short desc
+#: files/debtags/vocabulary
+msgid "Benchmarking"
+msgstr ""
+
+#. Tag: admin::boot, short desc
+#: files/debtags/vocabulary
+msgid "System Boot"
+msgstr ""
+
+#. Tag: admin::cluster, short desc
+#: files/debtags/vocabulary
+msgid "Clustering"
+msgstr ""
+
+#. Tag: admin::configuring, short desc
+#: files/debtags/vocabulary
+msgid "Configuration Tool"
+msgstr ""
+
+#. Tag: admin::file-distribution, short desc
+#: files/debtags/vocabulary
+msgid "File Distribution"
+msgstr ""
+
+#. Tag: admin::filesystem, short desc
+#: files/debtags/vocabulary
+msgid "Filesystem Tool"
+msgstr ""
+
+#. Tag: admin::filesystem, long desc
+#: files/debtags/vocabulary
+msgid " Creation, maintenance, and use of filesystems"
+msgstr ""
+
+#. Tag: admin::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics and Recovery"
+msgstr ""
+
+#. Tag: admin::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Recovering lost or damaged data.\n This tag will be split into admin::recovery\n and security::forensics."
+msgstr ""
+
+#. Tag: admin::hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Support"
+msgstr "Hardware-Unterstützung"
+
+#. Tag: admin::install, short desc
+#: files/debtags/vocabulary
+msgid "System installation"
+msgstr ""
+
+#. Tag: admin::issuetracker, short desc
+#: files/debtags/vocabulary
+msgid "Issue tracker"
+msgstr ""
+
+#. Tag: admin::kernel, short desc
+#: files/debtags/vocabulary
+msgid "Kernel or Modules"
+msgstr ""
+
+#. Tag: admin::logging, short desc
+#: files/debtags/vocabulary
+msgid "Logging"
+msgstr ""
+
+#. Tag: admin::login, short desc
+#: files/debtags/vocabulary
+#. Tag: use::login, short desc
+#: files/debtags/vocabulary
+msgid "Login"
+msgstr ""
+
+#. Tag: admin::login, long desc
+#: files/debtags/vocabulary
+msgid " Logging into the system"
+msgstr ""
+
+#. Tag: admin::monitoring, short desc
+#: files/debtags/vocabulary
+#. Tag: use::monitor, short desc
+#: files/debtags/vocabulary
+msgid "Monitoring"
+msgstr ""
+
+#. Tag: admin::package-management, short desc
+#: files/debtags/vocabulary
+msgid "Package Management"
+msgstr ""
+
+#. Tag: admin::power-management, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::power, short desc
+#: files/debtags/vocabulary
+msgid "Power Management"
+msgstr ""
+
+#. Tag: admin::recovery, short desc
+#: files/debtags/vocabulary
+msgid "Data recovery"
+msgstr ""
+
+#. Tag: admin::user-management, short desc
+#: files/debtags/vocabulary
+msgid "User Management"
+msgstr ""
+
+#. Tag: admin::virtualization, short desc
+#: files/debtags/vocabulary
+msgid "Virtualization"
+msgstr ""
+
+#. Tag: admin::virtualization, long desc
+#: files/debtags/vocabulary
+msgid " This is not hardware emulation, but rather those facilities that allow to\n create many isolated compartments inside the same system."
+msgstr ""
+
+#. Facet: biology, short desc
+#: files/debtags/vocabulary
+#. Tag: field::biology, short desc
+#: files/debtags/vocabulary
+msgid "Biology"
+msgstr ""
+
+#. Facet: biology, long desc
+#: files/debtags/vocabulary
+msgid " How is the package related to the field of biology."
+msgstr ""
+
+#. Tag: biology::emboss, short desc
+#: files/debtags/vocabulary
+msgid "EMBOSS"
+msgstr ""
+
+#. Tag: biology::emboss, long desc
+#: files/debtags/vocabulary
+msgid " Packages related to the European Molecular Biology Open Software Suite."
+msgstr ""
+
+#. Tag: biology::format:aln, short desc
+#: files/debtags/vocabulary
+msgid "Clustal/ALN"
+msgstr ""
+
+#. Tag: biology::format:aln, long desc
+#: files/debtags/vocabulary
+msgid " Used in multiple alignment of biological sequences."
+msgstr ""
+
+#. Tag: biology::format:nexus, short desc
+#: files/debtags/vocabulary
+msgid "Nexus"
+msgstr ""
+
+#. Tag: biology::format:nexus, long desc
+#: files/debtags/vocabulary
+msgid " Popular format for phylogenetic trees."
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, short desc
+#: files/debtags/vocabulary
+msgid "Nucleic acids"
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of nucleic acids: \n DNA, RNA but also non-natural nucleic acids such as PNA or LNA."
+msgstr ""
+
+#. Tag: biology::peptidic, short desc
+#: files/debtags/vocabulary
+msgid "Proteins"
+msgstr ""
+
+#. Tag: biology::peptidic, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of aminoacids: peptides and proteins."
+msgstr ""
+
+#. Facet: culture, short desc
+#: files/debtags/vocabulary
+msgid "Culture"
+msgstr ""
+
+#. Facet: culture, long desc
+#: files/debtags/vocabulary
+msgid " The culture for which the package provides special support"
+msgstr ""
+
+#. Tag: culture::afrikaans, short desc
+#: files/debtags/vocabulary
+msgid "Afrikaans"
+msgstr ""
+
+#. Tag: culture::arabic, short desc
+#: files/debtags/vocabulary
+msgid "Arabic"
+msgstr ""
+
+#. Tag: culture::basque, short desc
+#: files/debtags/vocabulary
+msgid "Basque"
+msgstr ""
+
+#. Tag: culture::bengali, short desc
+#: files/debtags/vocabulary
+msgid "Bengali"
+msgstr ""
+
+#. Tag: culture::bokmaal, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Bokmaal"
+msgstr ""
+
+#. Tag: culture::bosnian, short desc
+#: files/debtags/vocabulary
+msgid "Bosnian"
+msgstr ""
+
+#. Tag: culture::brazilian, short desc
+#: files/debtags/vocabulary
+msgid "Brazilian"
+msgstr ""
+
+#. Tag: culture::bulgarian, short desc
+#: files/debtags/vocabulary
+msgid "Bulgarian"
+msgstr ""
+
+#. Tag: culture::catalan, short desc
+#: files/debtags/vocabulary
+msgid "Catalan"
+msgstr ""
+
+#. Tag: culture::chinese, short desc
+#: files/debtags/vocabulary
+msgid "Chinese"
+msgstr ""
+
+#. Tag: culture::czech, short desc
+#: files/debtags/vocabulary
+msgid "Czech"
+msgstr ""
+
+#. Tag: culture::croatian, short desc
+#: files/debtags/vocabulary
+msgid "Croatian"
+msgstr ""
+
+#. Tag: culture::danish, short desc
+#: files/debtags/vocabulary
+msgid "Danish"
+msgstr ""
+
+#. Tag: culture::dutch, short desc
+#: files/debtags/vocabulary
+msgid "Dutch"
+msgstr ""
+
+#. Tag: culture::esperanto, short desc
+#: files/debtags/vocabulary
+msgid "Esperanto"
+msgstr ""
+
+#. Tag: culture::estonian, short desc
+#: files/debtags/vocabulary
+msgid "Estonian"
+msgstr ""
+
+#. Tag: culture::faroese, short desc
+#: files/debtags/vocabulary
+msgid "Faroese"
+msgstr ""
+
+#. Tag: culture::farsi, short desc
+#: files/debtags/vocabulary
+msgid "Farsi"
+msgstr ""
+
+#. Tag: culture::finnish, short desc
+#: files/debtags/vocabulary
+msgid "Finnish"
+msgstr ""
+
+#. Tag: culture::french, short desc
+#: files/debtags/vocabulary
+msgid "French"
+msgstr ""
+
+#. Tag: culture::german, short desc
+#: files/debtags/vocabulary
+msgid "German"
+msgstr ""
+
+#. Tag: culture::greek, short desc
+#: files/debtags/vocabulary
+msgid "Greek"
+msgstr ""
+
+#. Tag: culture::hebrew, short desc
+#: files/debtags/vocabulary
+msgid "Hebrew"
+msgstr ""
+
+#. Tag: culture::hindi, short desc
+#: files/debtags/vocabulary
+msgid "Hindi"
+msgstr ""
+
+#. Tag: culture::hungarian, short desc
+#: files/debtags/vocabulary
+msgid "Hungarian"
+msgstr ""
+
+#. Tag: culture::icelandic, short desc
+#: files/debtags/vocabulary
+msgid "Icelandic"
+msgstr ""
+
+#. Tag: culture::irish, short desc
+#: files/debtags/vocabulary
+msgid "Irish (Gaeilge)"
+msgstr ""
+
+#. Tag: culture::italian, short desc
+#: files/debtags/vocabulary
+msgid "Italian"
+msgstr ""
+
+#. Tag: culture::japanese, short desc
+#: files/debtags/vocabulary
+msgid "Japanese"
+msgstr ""
+
+#. Tag: culture::korean, short desc
+#: files/debtags/vocabulary
+msgid "Korean"
+msgstr ""
+
+#. Tag: culture::mongolian, short desc
+#: files/debtags/vocabulary
+msgid "Mongolian"
+msgstr ""
+
+#. Tag: culture::nynorsk, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Nynorsk"
+msgstr ""
+
+#. Tag: culture::norwegian, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian"
+msgstr ""
+
+#. Tag: culture::polish, short desc
+#: files/debtags/vocabulary
+msgid "Polish"
+msgstr ""
+
+#. Tag: culture::portuguese, short desc
+#: files/debtags/vocabulary
+msgid "Portuguese"
+msgstr ""
+
+#. Tag: culture::punjabi, short desc
+#: files/debtags/vocabulary
+msgid "Punjabi"
+msgstr ""
+
+#. Tag: culture::romanian, short desc
+#: files/debtags/vocabulary
+msgid "Romanian"
+msgstr ""
+
+#. Tag: culture::russian, short desc
+#: files/debtags/vocabulary
+msgid "Russian"
+msgstr ""
+
+#. Tag: culture::serbian, short desc
+#: files/debtags/vocabulary
+msgid "Serbian"
+msgstr ""
+
+#. Tag: culture::slovak, short desc
+#: files/debtags/vocabulary
+msgid "Slovak"
+msgstr ""
+
+#. Tag: culture::spanish, short desc
+#: files/debtags/vocabulary
+msgid "Spanish"
+msgstr ""
+
+#. Tag: culture::swedish, short desc
+#: files/debtags/vocabulary
+msgid "Swedish"
+msgstr ""
+
+#. Tag: culture::taiwanese, short desc
+#: files/debtags/vocabulary
+msgid "Taiwanese"
+msgstr ""
+
+#. Tag: culture::tajik, short desc
+#: files/debtags/vocabulary
+msgid "Tajik"
+msgstr ""
+
+#. Tag: culture::tamil, short desc
+#: files/debtags/vocabulary
+msgid "Tamil"
+msgstr ""
+
+#. Tag: culture::thai, short desc
+#: files/debtags/vocabulary
+msgid "Thai"
+msgstr ""
+
+#. Tag: culture::turkish, short desc
+#: files/debtags/vocabulary
+msgid "Turkish"
+msgstr ""
+
+#. Tag: culture::ukrainian, short desc
+#: files/debtags/vocabulary
+msgid "Ukrainian"
+msgstr ""
+
+#. Tag: culture::uzbek, short desc
+#: files/debtags/vocabulary
+msgid "Uzbek"
+msgstr ""
+
+#. Tag: culture::welsh, short desc
+#: files/debtags/vocabulary
+msgid "Welsh"
+msgstr ""
+
+#. Facet: devel, short desc
+#: files/debtags/vocabulary
+msgid "Software Development"
+msgstr ""
+
+#. Tag: devel::bugtracker, short desc
+#: files/debtags/vocabulary
+msgid "Bug Tracking"
+msgstr ""
+
+#. Tag: devel::buildtools, short desc
+#: files/debtags/vocabulary
+msgid "Build Tool"
+msgstr ""
+
+#. Tag: devel::code-generator, short desc
+#: files/debtags/vocabulary
+msgid "Code Generation"
+msgstr ""
+
+#. Tag: devel::code-generator, long desc
+#: files/debtags/vocabulary
+msgid " Parser, lexer and other code generators"
+msgstr ""
+
+#. Tag: devel::compiler, short desc
+#: files/debtags/vocabulary
+msgid "Compiler"
+msgstr ""
+
+#. Tag: devel::debian, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::debian, short desc
+#: files/debtags/vocabulary
+msgid "Debian"
+msgstr ""
+
+#. Tag: devel::debian, long desc
+#: files/debtags/vocabulary
+msgid " Tools, documentation, etc. of use primarily to Debian developers."
+msgstr ""
+
+#. Tag: devel::debugger, short desc
+#: files/debtags/vocabulary
+msgid "Debugging"
+msgstr ""
+
+#. Tag: devel::doc, short desc
+#: files/debtags/vocabulary
+#. Tag: role::documentation, short desc
+#: files/debtags/vocabulary
+msgid "Documentation"
+msgstr ""
+
+#. Tag: devel::docsystem, short desc
+#: files/debtags/vocabulary
+msgid "Literate Programming"
+msgstr ""
+
+#. Tag: devel::docsystem, long desc
+#: files/debtags/vocabulary
+msgid " Tools and auto-documenters"
+msgstr ""
+
+#. Tag: devel::ecma-cli, short desc
+#: files/debtags/vocabulary
+msgid "ECMA CLI"
+msgstr ""
+
+#. Tag: devel::ecma-cli, long desc
+#: files/debtags/vocabulary
+msgid " Tools and libraries for development with implementations of \n the ECMA CLI (Common Language Infrastructure), like Mono\n or DotGNU Portable.NET."
+msgstr ""
+
+#. Tag: devel::editor, short desc
+#: files/debtags/vocabulary
+msgid "Source Editor"
+msgstr ""
+
+#. Tag: devel::examples, short desc
+#: files/debtags/vocabulary
+msgid "Examples"
+msgstr ""
+
+#. Tag: devel::ide, short desc
+#: files/debtags/vocabulary
+msgid "IDE"
+msgstr ""
+
+#. Tag: devel::ide, long desc
+#: files/debtags/vocabulary
+msgid " Integrated Development Environment"
+msgstr ""
+
+#. Tag: devel::interpreter, short desc
+#: files/debtags/vocabulary
+msgid "Interpreter"
+msgstr ""
+
+#. Tag: devel::i18n, short desc
+#: files/debtags/vocabulary
+msgid "Internationalization"
+msgstr ""
+
+#. Tag: devel::lang:ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada Development"
+msgstr ""
+
+#. Tag: devel::lang:c, short desc
+#: files/debtags/vocabulary
+msgid "C Development"
+msgstr ""
+
+#. Tag: devel::lang:c++, short desc
+#: files/debtags/vocabulary
+msgid "C++ Development"
+msgstr ""
+
+#. Tag: devel::lang:c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C# Development"
+msgstr ""
+
+#. Tag: devel::lang:fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran Development"
+msgstr ""
+
+#. Tag: devel::lang:haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell Development"
+msgstr ""
+
+#. Tag: devel::lang:java, short desc
+#: files/debtags/vocabulary
+msgid "Java Development"
+msgstr ""
+
+#. Tag: devel::lang:ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/JavaScript Development"
+msgstr ""
+
+#. Tag: devel::lang:lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp Development"
+msgstr ""
+
+#. Tag: devel::lang:lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua Development"
+msgstr ""
+
+#. Tag: devel::lang:ml, short desc
+#: files/debtags/vocabulary
+msgid "ML Development"
+msgstr ""
+
+#. Tag: devel::lang:objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective-C Development"
+msgstr ""
+
+#. Tag: devel::lang:ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml Development"
+msgstr ""
+
+#. Tag: devel::lang:octave, short desc
+#: files/debtags/vocabulary
+msgid "GNU Octave Development"
+msgstr ""
+
+#. Tag: devel::lang:pascal, short desc
+#: files/debtags/vocabulary
+msgid "Pascal Development"
+msgstr ""
+
+#. Tag: devel::lang:perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl Development"
+msgstr ""
+
+#. Tag: devel::lang:php, short desc
+#: files/debtags/vocabulary
+msgid "PHP Development"
+msgstr ""
+
+#. Tag: devel::lang:pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike Development"
+msgstr ""
+
+#. Tag: devel::lang:prolog, short desc
+#: files/debtags/vocabulary
+msgid "Prolog Development"
+msgstr ""
+
+#. Tag: devel::lang:python, short desc
+#: files/debtags/vocabulary
+msgid "Python Development"
+msgstr ""
+
+#. Tag: devel::lang:r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R Development"
+msgstr ""
+
+#. Tag: devel::lang:ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby Development"
+msgstr ""
+
+#. Tag: devel::lang:scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme Development"
+msgstr ""
+
+#. Tag: devel::lang:sql, short desc
+#: files/debtags/vocabulary
+msgid "SQL"
+msgstr ""
+
+#. Tag: devel::lang:tcl, short desc
+#: files/debtags/vocabulary
+msgid "Tcl Development"
+msgstr ""
+
+#. Tag: devel::library, short desc
+#: files/debtags/vocabulary
+msgid "Libraries"
+msgstr ""
+
+#. Tag: devel::machinecode, short desc
+#: files/debtags/vocabulary
+msgid "Machine Code"
+msgstr ""
+
+#. Tag: devel::machinecode, long desc
+#: files/debtags/vocabulary
+msgid " Assemblers and other machine-code development tools."
+msgstr ""
+
+#. Tag: devel::modelling, short desc
+#: files/debtags/vocabulary
+msgid "Modelling"
+msgstr ""
+
+#. Tag: devel::modelling, long desc
+#: files/debtags/vocabulary
+msgid " Programs and libraries that support creation of software models\n with modelling languages like UML or OCL."
+msgstr ""
+
+#. Tag: devel::packaging, short desc
+#: files/debtags/vocabulary
+msgid "Packaging"
+msgstr ""
+
+#. Tag: devel::packaging, long desc
+#: files/debtags/vocabulary
+msgid " Tools for packaging software."
+msgstr ""
+
+#. Tag: devel::prettyprint, short desc
+#: files/debtags/vocabulary
+msgid "Prettyprint"
+msgstr ""
+
+#. Tag: devel::prettyprint, long desc
+#: files/debtags/vocabulary
+msgid " Code pretty-printing and indentation/reformatting."
+msgstr ""
+
+#. Tag: devel::profiler, short desc
+#: files/debtags/vocabulary
+msgid "Profiling"
+msgstr ""
+
+#. Tag: devel::profiler, long desc
+#: files/debtags/vocabulary
+msgid " Profiling and optimization tools."
+msgstr ""
+
+#. Tag: devel::rcs, short desc
+#: files/debtags/vocabulary
+msgid "Revision Control"
+msgstr ""
+
+#. Tag: devel::rcs, long desc
+#: files/debtags/vocabulary
+msgid " RCS (Revision Control System) and SCM (Software Configuration Manager)"
+msgstr ""
+
+#. Tag: devel::rpc, short desc
+#: files/debtags/vocabulary
+msgid "RPC"
+msgstr ""
+
+#. Tag: devel::rpc, long desc
+#: files/debtags/vocabulary
+msgid " Remote Procedure Call, Network transparent programming"
+msgstr ""
+
+#. Tag: devel::runtime, short desc
+#: files/debtags/vocabulary
+msgid "Runtime Support"
+msgstr ""
+
+#. Tag: devel::runtime, long desc
+#: files/debtags/vocabulary
+msgid " Runtime environments of various languages and systems."
+msgstr ""
+
+#. Tag: devel::testing-qa, short desc
+#: files/debtags/vocabulary
+msgid "Testing and QA"
+msgstr ""
+
+#. Tag: devel::testing-qa, long desc
+#: files/debtags/vocabulary
+msgid " Tools for software testing and quality assurance."
+msgstr ""
+
+#. Tag: devel::ui-builder, short desc
+#: files/debtags/vocabulary
+#. Facet: interface, short desc
+#: files/debtags/vocabulary
+msgid "User Interface"
+msgstr ""
+
+#. Tag: devel::ui-builder, long desc
+#: files/debtags/vocabulary
+msgid " Tools for designing user interfaces."
+msgstr ""
+
+#. Tag: devel::web, short desc
+#: files/debtags/vocabulary
+msgid "Web"
+msgstr ""
+
+#. Tag: devel::web, long desc
+#: files/debtags/vocabulary
+msgid " Web-centric frameworks, CGI libraries and other web-specific development\n tools."
+msgstr ""
+
+#. Tag: educational, short desc
+#: files/debtags/vocabulary
+msgid "[Edu] Educational Software"
+msgstr ""
+
+#. Facet: field, short desc
+#: files/debtags/vocabulary
+msgid "Field"
+msgstr ""
+
+#. Tag: field::arts, short desc
+#: files/debtags/vocabulary
+msgid "Arts"
+msgstr ""
+
+#. Tag: field::astronomy, short desc
+#: files/debtags/vocabulary
+msgid "Astronomy"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, short desc
+#: files/debtags/vocabulary
+msgid "Bioinformatics"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, long desc
+#: files/debtags/vocabulary
+msgid " Sequence analysis software."
+msgstr ""
+
+#. Tag: field::biology:molecular, short desc
+#: files/debtags/vocabulary
+msgid "Molecular biology"
+msgstr ""
+
+#. Tag: field::biology:molecular, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to molecular cloning and related wet biology."
+msgstr ""
+
+#. Tag: field::biology:structural, short desc
+#: files/debtags/vocabulary
+msgid "Structural biology"
+msgstr ""
+
+#. Tag: field::biology:structural, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to model tridimentional structures."
+msgstr ""
+
+#. Tag: field::chemistry, short desc
+#: files/debtags/vocabulary
+msgid "Chemistry"
+msgstr ""
+
+#. Tag: field::electronics, short desc
+#: files/debtags/vocabulary
+msgid "Electronics"
+msgstr ""
+
+#. Tag: field::electronics, long desc
+#: files/debtags/vocabulary
+msgid " Circuit editors and other electronics-related software"
+msgstr ""
+
+#. Tag: field::finance, short desc
+#: files/debtags/vocabulary
+msgid "Financial"
+msgstr ""
+
+#. Tag: field::finance, long desc
+#: files/debtags/vocabulary
+msgid " Accounting and financial software"
+msgstr ""
+
+#. Tag: field::genealogy, short desc
+#: files/debtags/vocabulary
+msgid "Genealogy"
+msgstr ""
+
+#. Tag: field::geography, short desc
+#: files/debtags/vocabulary
+msgid "Geography"
+msgstr ""
+
+#. Tag: field::geology, short desc
+#: files/debtags/vocabulary
+msgid "Geology"
+msgstr ""
+
+#. Tag: field::linguistics, short desc
+#: files/debtags/vocabulary
+msgid "Linguistics"
+msgstr ""
+
+#. Tag: field::mathematics, short desc
+#: files/debtags/vocabulary
+msgid "Mathematics"
+msgstr ""
+
+#. Tag: field::medicine, short desc
+#: files/debtags/vocabulary
+msgid "Medicine"
+msgstr ""
+
+#. Tag: field::medicine:imaging, short desc
+#: files/debtags/vocabulary
+msgid "Medical Imaging"
+msgstr ""
+
+#. Tag: field::physics, short desc
+#: files/debtags/vocabulary
+msgid "Physics"
+msgstr ""
+
+#. Tag: field::religion, short desc
+#: files/debtags/vocabulary
+msgid "Religion"
+msgstr ""
+
+#. Tag: field::statistics, short desc
+#: files/debtags/vocabulary
+msgid "Statistics"
+msgstr ""
+
+#. Facet: game, short desc
+#: files/debtags/vocabulary
+msgid "Games and Amusement"
+msgstr ""
+
+#. Tag: game::adventure, short desc
+#: files/debtags/vocabulary
+msgid "Adventure"
+msgstr ""
+
+#. Tag: game::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Action and Arcade"
+msgstr ""
+
+#. Tag: game::board, short desc
+#: files/debtags/vocabulary
+msgid "Board"
+msgstr ""
+
+#. Tag: game::board:chess, short desc
+#: files/debtags/vocabulary
+msgid "Chess"
+msgstr ""
+
+#. Tag: game::card, short desc
+#: files/debtags/vocabulary
+msgid "Card"
+msgstr ""
+
+#. Tag: game::demos, short desc
+#: files/debtags/vocabulary
+msgid "Demo"
+msgstr ""
+
+#. Tag: game::fps, short desc
+#: files/debtags/vocabulary
+msgid "First person shooter"
+msgstr ""
+
+#. Tag: game::mud, short desc
+#: files/debtags/vocabulary
+msgid "Multiplayer RPG"
+msgstr ""
+
+#. Tag: game::mud, long desc
+#: files/debtags/vocabulary
+msgid " MUDs, MOOs, and other multiplayer RPGs"
+msgstr ""
+
+#. Tag: game::platform, short desc
+#: files/debtags/vocabulary
+msgid "Platform"
+msgstr ""
+
+#. Tag: game::puzzle, short desc
+#: files/debtags/vocabulary
+msgid "Puzzle"
+msgstr ""
+
+#. Tag: game::rpg, short desc
+#: files/debtags/vocabulary
+msgid "Role-playing"
+msgstr ""
+
+#. Tag: game::rpg:rogue, short desc
+#: files/debtags/vocabulary
+msgid "Rogue-Like RPG"
+msgstr ""
+
+#. Tag: game::rpg:rogue, long desc
+#: files/debtags/vocabulary
+msgid " Games like Nethack, Angband etc."
+msgstr ""
+
+#. Tag: game::simulation, short desc
+#: files/debtags/vocabulary
+msgid "Simulation"
+msgstr ""
+
+#. Tag: game::sport, short desc
+#: files/debtags/vocabulary
+msgid "Sport games"
+msgstr ""
+
+#. Tag: game::sport:racing, short desc
+#: files/debtags/vocabulary
+msgid "Racing"
+msgstr ""
+
+#. Tag: game::strategy, short desc
+#: files/debtags/vocabulary
+msgid "Strategy"
+msgstr ""
+
+#. Tag: game::tetris, short desc
+#: files/debtags/vocabulary
+msgid "Tetris-like"
+msgstr ""
+
+#. Tag: game::toys, short desc
+#: files/debtags/vocabulary
+msgid "Toy or Gimmick"
+msgstr ""
+
+#. Tag: game::typing, short desc
+#: files/debtags/vocabulary
+msgid "Typing Tutor"
+msgstr ""
+
+#. Facet: hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Enablement"
+msgstr ""
+
+#. Tag: hardware::camera, short desc
+#: files/debtags/vocabulary
+msgid "Digital Camera"
+msgstr ""
+
+#. Tag: hardware::detection, short desc
+#: files/debtags/vocabulary
+msgid "Hardware detection"
+msgstr ""
+
+#. Tag: hardware::embedded, short desc
+#: files/debtags/vocabulary
+msgid "Embedded"
+msgstr ""
+
+#. Tag: hardware::emulation, short desc
+#: files/debtags/vocabulary
+msgid "Emulation"
+msgstr ""
+
+#. Tag: hardware::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Devices"
+msgstr ""
+
+#. Tag: hardware::input:joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick"
+msgstr ""
+
+#. Tag: hardware::input:keyboard, short desc
+#: files/debtags/vocabulary
+msgid "Keyboard"
+msgstr ""
+
+#. Tag: hardware::input:mouse, short desc
+#: files/debtags/vocabulary
+msgid "Mouse"
+msgstr ""
+
+#. Tag: hardware::joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick (legacy)"
+msgstr ""
+
+#. Tag: hardware::hamradio, short desc
+#: files/debtags/vocabulary
+msgid "Ham Radio"
+msgstr ""
+
+#. Tag: hardware::laptop, short desc
+#: files/debtags/vocabulary
+msgid "Laptop"
+msgstr ""
+
+#. Tag: hardware::modem, short desc
+#: files/debtags/vocabulary
+msgid "Modem"
+msgstr ""
+
+#. Tag: hardware::modem:dsl, short desc
+#: files/debtags/vocabulary
+msgid "xDSL Modem"
+msgstr ""
+
+#. Tag: hardware::opengl, short desc
+#: files/debtags/vocabulary
+msgid "Requires video hardware acceleration"
+msgstr ""
+
+#. Tag: hardware::power:ups, short desc
+#: files/debtags/vocabulary
+msgid "UPS"
+msgstr ""
+
+#. Tag: hardware::power:ups, long desc
+#: files/debtags/vocabulary
+msgid " Uninterruptible Power Supply"
+msgstr ""
+
+#. Tag: hardware::power:acpi, short desc
+#: files/debtags/vocabulary
+msgid "ACPI Power Management"
+msgstr ""
+
+#. Tag: hardware::power:apm, short desc
+#: files/debtags/vocabulary
+msgid "APM Power Management"
+msgstr ""
+
+#. Tag: hardware::printer, short desc
+#: files/debtags/vocabulary
+msgid "Printer"
+msgstr ""
+
+#. Tag: hardware::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Image-scanning hardware"
+msgstr ""
+
+#. Tag: hardware::storage, short desc
+#: files/debtags/vocabulary
+msgid "Storage"
+msgstr ""
+
+#. Tag: hardware::storage:cd, short desc
+#: files/debtags/vocabulary
+msgid "CD"
+msgstr ""
+
+#. Tag: hardware::storage:cd, long desc
+#: files/debtags/vocabulary
+msgid " Compact Disc"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, short desc
+#: files/debtags/vocabulary
+msgid "DVD"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, long desc
+#: files/debtags/vocabulary
+msgid " Digital Versatile Disc"
+msgstr ""
+
+#. Tag: hardware::storage:floppy, short desc
+#: files/debtags/vocabulary
+msgid "Floppy disk"
+msgstr ""
+
+#. Tag: hardware::usb, short desc
+#: files/debtags/vocabulary
+msgid "USB"
+msgstr ""
+
+#. Tag: hardware::usb, long desc
+#: files/debtags/vocabulary
+msgid " Universal Serial Bus"
+msgstr ""
+
+#. Tag: hardware::video, short desc
+#: files/debtags/vocabulary
+msgid "Graphics and Video"
+msgstr ""
+
+#. Facet: made-of, short desc
+#: files/debtags/vocabulary
+msgid "Made Of"
+msgstr ""
+
+#. Facet: made-of, long desc
+#: files/debtags/vocabulary
+msgid " The languages or data formats used to make the package"
+msgstr ""
+
+#. Tag: made-of::data:dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionary"
+msgstr ""
+
+#. Tag: made-of::data:font, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::font, short desc
+#: files/debtags/vocabulary
+msgid "Font"
+msgstr ""
+
+#. Tag: made-of::data:html, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::html, short desc
+#: files/debtags/vocabulary
+msgid "HTML Hypertext Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:icons, short desc
+#: files/debtags/vocabulary
+msgid "Icons"
+msgstr ""
+
+#. Tag: made-of::data:info, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::info, short desc
+#: files/debtags/vocabulary
+msgid "Documentation in Info format"
+msgstr ""
+
+#. Tag: made-of::data:man, short desc
+#: files/debtags/vocabulary
+msgid "Manuals in nroff format"
+msgstr ""
+
+#. Tag: made-of::data:pdf, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::pdf, short desc
+#: files/debtags/vocabulary
+msgid "PDF Documents"
+msgstr ""
+
+#. Tag: made-of::data:postscript, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::postscript, short desc
+#: files/debtags/vocabulary
+msgid "Postscript"
+msgstr ""
+
+#. Tag: made-of::data:sgml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::sgml, short desc
+#: files/debtags/vocabulary
+msgid "SGML, Standard Generalized Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:svg, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::svg, short desc
+#: files/debtags/vocabulary
+msgid "SVG, Scalable Vector Graphics"
+msgstr ""
+
+#. Tag: made-of::data:tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX, LaTeX and DVI"
+msgstr ""
+
+#. Tag: made-of::data:vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:xml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::xml, short desc
+#: files/debtags/vocabulary
+msgid "XML"
+msgstr ""
+
+#. Tag: interface::3d, short desc
+#: files/debtags/vocabulary
+msgid "Three-Dimensional"
+msgstr ""
+
+#. Tag: interface::commandline, short desc
+#: files/debtags/vocabulary
+msgid "Command Line"
+msgstr "Kommandozeile"
+
+#. Tag: interface::daemon, short desc
+#: files/debtags/vocabulary
+msgid "Daemon"
+msgstr ""
+
+#. Tag: interface::daemon, long desc
+#: files/debtags/vocabulary
+msgid " Runs in background, only a control interface is provided, usually on\n commandline."
+msgstr ""
+
+#. Tag: interface::framebuffer, short desc
+#: files/debtags/vocabulary
+msgid "Framebuffer"
+msgstr ""
+
+#. Tag: interface::shell, short desc
+#: files/debtags/vocabulary
+msgid "Command Shell"
+msgstr ""
+
+#. Tag: interface::svga, short desc
+#: files/debtags/vocabulary
+msgid "Console SVGA"
+msgstr ""
+
+#. Tag: interface::text-mode, short desc
+#: files/debtags/vocabulary
+msgid "Text-based Interactive"
+msgstr ""
+
+#. Tag: interface::web, short desc
+#: files/debtags/vocabulary
+#. Facet: web, short desc
+#: files/debtags/vocabulary
+msgid "World Wide Web"
+msgstr ""
+
+#. Tag: interface::x11, short desc
+#: files/debtags/vocabulary
+msgid "X Window System"
+msgstr ""
+
+#. Facet: implemented-in, short desc
+#: files/debtags/vocabulary
+msgid "Implemented in"
+msgstr "Implementiert in"
+
+#. Tag: implemented-in::ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada"
+msgstr ""
+
+#. Tag: implemented-in::c, short desc
+#: files/debtags/vocabulary
+msgid "C"
+msgstr ""
+
+#. Tag: implemented-in::c++, short desc
+#: files/debtags/vocabulary
+msgid "C++"
+msgstr ""
+
+#. Tag: implemented-in::c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C#"
+msgstr ""
+
+#. Tag: implemented-in::fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran"
+msgstr ""
+
+#. Tag: implemented-in::haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell"
+msgstr ""
+
+#. Tag: implemented-in::java, short desc
+#: files/debtags/vocabulary
+msgid "Java"
+msgstr ""
+
+#. Tag: implemented-in::ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/Javascript"
+msgstr ""
+
+#. Tag: implemented-in::lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp"
+msgstr ""
+
+#. Tag: implemented-in::lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua"
+msgstr ""
+
+#. Tag: implemented-in::ml, short desc
+#: files/debtags/vocabulary
+msgid "ML"
+msgstr ""
+
+#. Tag: implemented-in::objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective C"
+msgstr ""
+
+#. Tag: implemented-in::ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml"
+msgstr ""
+
+#. Tag: implemented-in::perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl"
+msgstr ""
+
+#. Tag: implemented-in::php, short desc
+#: files/debtags/vocabulary
+msgid "PHP"
+msgstr ""
+
+#. Tag: implemented-in::pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike"
+msgstr ""
+
+#. Tag: implemented-in::python, short desc
+#: files/debtags/vocabulary
+msgid "Python"
+msgstr ""
+
+#. Tag: implemented-in::r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R"
+msgstr ""
+
+#. Tag: implemented-in::ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby"
+msgstr ""
+
+#. Tag: implemented-in::scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme"
+msgstr ""
+
+#. Tag: implemented-in::shell, short desc
+#: files/debtags/vocabulary
+msgid "sh, bash, ksh, tcsh and other shells"
+msgstr ""
+
+#. Tag: implemented-in::tcl, short desc
+#: files/debtags/vocabulary
+msgid "TCL Tool Command Language"
+msgstr ""
+
+#. Facet: junior, short desc
+#: files/debtags/vocabulary
+msgid "Junior Applications"
+msgstr ""
+
+#. Facet: junior, long desc
+#: files/debtags/vocabulary
+msgid " Applications recommended for younger users"
+msgstr ""
+
+#. Tag: junior::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Arcade games"
+msgstr ""
+
+#. Tag: junior::games-gl, short desc
+#: files/debtags/vocabulary
+msgid "3D games"
+msgstr ""
+
+#. Tag: junior::meta, short desc
+#: files/debtags/vocabulary
+msgid "Metapackages"
+msgstr ""
+
+#. Facet: mail, short desc
+#: files/debtags/vocabulary
+msgid "Electronic Mail"
+msgstr ""
+
+#. Tag: mail::filters, short desc
+#: files/debtags/vocabulary
+msgid "Filters"
+msgstr ""
+
+#. Tag: mail::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP Protocol"
+msgstr ""
+
+#. Tag: mail::list, short desc
+#: files/debtags/vocabulary
+msgid "Mailing Lists"
+msgstr ""
+
+#. Tag: mail::notification, short desc
+#: files/debtags/vocabulary
+msgid "Notification"
+msgstr ""
+
+#. Tag: mail::notification, long desc
+#: files/debtags/vocabulary
+msgid " Software that notifies users about status of mailbox."
+msgstr ""
+
+#. Tag: mail::pop, short desc
+#: files/debtags/vocabulary
+msgid "POP3 Protocol"
+msgstr ""
+
+#. Tag: mail::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP Protocol"
+msgstr ""
+
+#. Tag: mail::delivery-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Delivery Agent"
+msgstr ""
+
+#. Tag: mail::delivery-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that delivers mail to users' mailboxes."
+msgstr ""
+
+#. Tag: mail::transport-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Transport Agent"
+msgstr ""
+
+#. Tag: mail::transport-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that routes and transmits mail accross the system and the network."
+msgstr ""
+
+#. Tag: mail::user-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail user agent"
+msgstr ""
+
+#. Tag: mail::user-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that allows users to access e-mail."
+msgstr ""
+
+#. Facet: office, short desc
+#: files/debtags/vocabulary
+msgid "Office and business"
+msgstr ""
+
+#. Tag: office::finance, short desc
+#: files/debtags/vocabulary
+msgid "Finance"
+msgstr ""
+
+#. Tag: office::groupware, short desc
+#: files/debtags/vocabulary
+msgid "Groupware"
+msgstr ""
+
+#. Tag: office::presentation, short desc
+#: files/debtags/vocabulary
+msgid "Presentation"
+msgstr ""
+
+#. Tag: office::project-management, short desc
+#: files/debtags/vocabulary
+msgid "Project management"
+msgstr ""
+
+#. Tag: office::spreadsheet, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::spreadsheet, short desc
+#: files/debtags/vocabulary
+msgid "Spreadsheet"
+msgstr ""
+
+#. Facet: works-with, short desc
+#: files/debtags/vocabulary
+msgid "Works with"
+msgstr ""
+
+#. Facet: works-with, long desc
+#: files/debtags/vocabulary
+msgid " These tags describe what is the kind of data (or even processes, or people)\n that the package can work with."
+msgstr ""
+
+#. Tag: works-with::3dmodel, short desc
+#: files/debtags/vocabulary
+msgid "3D Model"
+msgstr ""
+
+#. Tag: works-with::archive, short desc
+#: files/debtags/vocabulary
+msgid "Archive"
+msgstr ""
+
+#. Tag: works-with::audio, short desc
+#: files/debtags/vocabulary
+msgid "Audio"
+msgstr ""
+
+#. Tag: works-with::bugs, short desc
+#: files/debtags/vocabulary
+msgid "Bugs or Issues"
+msgstr ""
+
+#. Tag: works-with::db, short desc
+#: files/debtags/vocabulary
+msgid "Databases"
+msgstr ""
+
+#. Tag: works-with::dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionaries"
+msgstr ""
+
+#. Tag: works-with::dtp, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Publishing (DTP)"
+msgstr ""
+
+#. Tag: works-with::fax, short desc
+#: files/debtags/vocabulary
+msgid "Faxes"
+msgstr ""
+
+#. Tag: works-with::file, short desc
+#: files/debtags/vocabulary
+msgid "Files"
+msgstr ""
+
+#. Tag: works-with::font, short desc
+#: files/debtags/vocabulary
+msgid "Fonts"
+msgstr ""
+
+#. Tag: works-with::im, short desc
+#: files/debtags/vocabulary
+msgid "Instant Messages"
+msgstr ""
+
+#. Tag: works-with::im, long desc
+#: files/debtags/vocabulary
+msgid " The package can connect to some IM network (or networks)."
+msgstr ""
+
+#. Tag: works-with::logfile, short desc
+#: files/debtags/vocabulary
+msgid "System Logs"
+msgstr ""
+
+#. Tag: works-with::mail, short desc
+#: files/debtags/vocabulary
+msgid "Email"
+msgstr ""
+
+#. Tag: works-with::music-notation, short desc
+#: files/debtags/vocabulary
+msgid "Music Notation"
+msgstr ""
+
+#. Tag: works-with::network-traffic, short desc
+#: files/debtags/vocabulary
+msgid "Network traffic"
+msgstr ""
+
+#. Tag: works-with::network-traffic, long desc
+#: files/debtags/vocabulary
+msgid " Routers, shapers, sniffers, firewalls and other tools\n that work with a stream of network packets."
+msgstr ""
+
+#. Tag: works-with::people, short desc
+#: files/debtags/vocabulary
+msgid "People"
+msgstr ""
+
+#. Tag: works-with::pim, short desc
+#: files/debtags/vocabulary
+msgid "Personal Information"
+msgstr ""
+
+#. Tag: works-with::image, short desc
+#: files/debtags/vocabulary
+msgid "Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, short desc
+#: files/debtags/vocabulary
+msgid "Raster Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, long desc
+#: files/debtags/vocabulary
+msgid " Images made of dots, such as photos and scans"
+msgstr ""
+
+#. Tag: works-with::image:vector, short desc
+#: files/debtags/vocabulary
+msgid "Vector Image"
+msgstr ""
+
+#. Tag: works-with::image:vector, long desc
+#: files/debtags/vocabulary
+msgid " Images made of lines, such as graphs or most clipart"
+msgstr ""
+
+#. Tag: works-with::software:package, short desc
+#: files/debtags/vocabulary
+msgid "Packaged software"
+msgstr ""
+
+#. Tag: works-with::software:running, short desc
+#: files/debtags/vocabulary
+msgid "Running programs"
+msgstr ""
+
+#. Tag: works-with::software:source, short desc
+#: files/debtags/vocabulary
+msgid "Source code"
+msgstr ""
+
+#. Tag: works-with::text, short desc
+#: files/debtags/vocabulary
+msgid "Text"
+msgstr ""
+
+#. Tag: works-with::unicode, short desc
+#: files/debtags/vocabulary
+msgid "Unicode"
+msgstr ""
+
+#. Tag: works-with::unicode, long desc
+#: files/debtags/vocabulary
+msgid " Please do not tag programs with simple unicode support,\n doing so would make this tag useless.\n Ultimately all applications should have unicode support."
+msgstr ""
+
+#. Tag: works-with::video, short desc
+#: files/debtags/vocabulary
+msgid "Video and Animation"
+msgstr ""
+
+#. Facet: works-with-format, short desc
+#: files/debtags/vocabulary
+msgid "Supports Format"
+msgstr ""
+
+#. Tag: works-with-format::bib, short desc
+#: files/debtags/vocabulary
+msgid "BibTeX"
+msgstr ""
+
+#. Tag: works-with-format::bib, long desc
+#: files/debtags/vocabulary
+msgid " BibTeX list of references"
+msgstr ""
+
+#. Tag: works-with-format::dvi, short desc
+#: files/debtags/vocabulary
+msgid "TeX DVI"
+msgstr ""
+
+#. Tag: works-with-format::dvi, long desc
+#: files/debtags/vocabulary
+msgid " DeVice Independent page description file, usually generated\n by TeX or LaTeX."
+msgstr ""
+
+#. Tag: works-with-format::ldif, short desc
+#: files/debtags/vocabulary
+msgid "LDIF"
+msgstr ""
+
+#. Tag: works-with-format::ldif, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML 3D Model"
+msgstr ""
+
+#. Tag: works-with-format::vrml, long desc
+#: files/debtags/vocabulary
+msgid " Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: works-with-format::iso9660, short desc
+#: files/debtags/vocabulary
+msgid "ISO 9660 CD Filesystem"
+msgstr ""
+
+#. Tag: works-with-format::tar, short desc
+#: files/debtags/vocabulary
+msgid "Tar Archives"
+msgstr ""
+
+#. Tag: works-with-format::zip, short desc
+#: files/debtags/vocabulary
+msgid "Zip Archives"
+msgstr ""
+
+#. Tag: works-with-format::mp3, short desc
+#: files/debtags/vocabulary
+msgid "MP3 Audio"
+msgstr ""
+
+#. Tag: works-with-format::mpc, short desc
+#: files/debtags/vocabulary
+msgid "Musepack Audio"
+msgstr ""
+
+#. Tag: works-with-format::oggvorbis, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Vorbis Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, short desc
+#: files/debtags/vocabulary
+msgid "MS RIFF Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, long desc
+#: files/debtags/vocabulary
+msgid " Wave uncompressed audio format"
+msgstr ""
+
+#. Tag: works-with-format::jpg, short desc
+#: files/debtags/vocabulary
+msgid "JPEG, Joint Picture Expert Group"
+msgstr ""
+
+#. Tag: works-with-format::gif, short desc
+#: files/debtags/vocabulary
+msgid "GIF, Graphics Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::odf, short desc
+#: files/debtags/vocabulary
+msgid "ODF, Open Document Format"
+msgstr ""
+
+#. Tag: works-with-format::png, short desc
+#: files/debtags/vocabulary
+msgid "PNG, Portable Network Graphics"
+msgstr ""
+
+#. Tag: works-with-format::swf, short desc
+#: files/debtags/vocabulary
+msgid "SWF, ShockWave Flash"
+msgstr ""
+
+#. Tag: works-with-format::tiff, short desc
+#: files/debtags/vocabulary
+msgid "TIFF, Tagged Image File Format"
+msgstr ""
+
+#. Tag: works-with-format::docbook, short desc
+#: files/debtags/vocabulary
+msgid "Docbook"
+msgstr ""
+
+#. Tag: works-with-format::man, short desc
+#: files/debtags/vocabulary
+msgid "Manpages"
+msgstr ""
+
+#. Tag: works-with-format::plaintext, short desc
+#: files/debtags/vocabulary
+msgid "Plain text"
+msgstr ""
+
+#. Tag: works-with-format::tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX and LaTeX"
+msgstr ""
+
+#. Tag: works-with-format::oggtheora, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Theora Video"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, short desc
+#: files/debtags/vocabulary
+msgid "RSS Rich Site Summary"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, long desc
+#: files/debtags/vocabulary
+msgid " XML dialect used to describe resources and websites."
+msgstr ""
+
+#. Tag: works-with-format::xml:xslt, short desc
+#: files/debtags/vocabulary
+msgid "XSL Transformations (XSLT)"
+msgstr ""
+
+#. Facet: scope, short desc
+#: files/debtags/vocabulary
+msgid "Scope"
+msgstr ""
+
+#. Tag: scope::utility, short desc
+#: files/debtags/vocabulary
+msgid "Utility"
+msgstr ""
+
+#. Tag: scope::utility, long desc
+#: files/debtags/vocabulary
+msgid " A narrow-scoped program for particular use case or few use cases. It\n only does something 10-20% of users in the field will need. Often has\n functionality missing from related applications."
+msgstr ""
+
+#. Tag: scope::application, short desc
+#: files/debtags/vocabulary
+#. Tag: web::application, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::application, short desc
+#: files/debtags/vocabulary
+msgid "Application"
+msgstr ""
+
+#. Tag: scope::application, long desc
+#: files/debtags/vocabulary
+msgid " Broad-scoped program for general use. It probably has functionality\n for 80-90% of use cases. The pieces that remain are usually to be\n found as utilities."
+msgstr ""
+
+#. Tag: scope::suite, short desc
+#: files/debtags/vocabulary
+msgid "Suite"
+msgstr ""
+
+#. Tag: scope::suite, long desc
+#: files/debtags/vocabulary
+msgid " Comprehensive suite of applications and utilities on the scale of\n desktop environment or base operating system."
+msgstr ""
+
+#. Facet: role, short desc
+#: files/debtags/vocabulary
+msgid "Role"
+msgstr ""
+
+#. Tag: role::program, short desc
+#: files/debtags/vocabulary
+msgid "Program"
+msgstr ""
+
+#. Tag: role::program, long desc
+#: files/debtags/vocabulary
+msgid " Executable computer program."
+msgstr ""
+
+#. Tag: role::shared-lib, short desc
+#: files/debtags/vocabulary
+msgid "Shared Library"
+msgstr ""
+
+#. Tag: role::shared-lib, long desc
+#: files/debtags/vocabulary
+msgid " Shared libraries used by one or more programs."
+msgstr ""
+
+#. Tag: role::plugin, short desc
+#: files/debtags/vocabulary
+msgid "Plugin"
+msgstr ""
+
+#. Tag: role::plugin, long desc
+#: files/debtags/vocabulary
+msgid " Add-on, pluggable program fragments enhancing functionality\n of some program or system."
+msgstr ""
+
+#. Tag: role::debug-symbols, short desc
+#: files/debtags/vocabulary
+msgid "Debugging symbols"
+msgstr ""
+
+#. Tag: role::debug-symbols, long desc
+#: files/debtags/vocabulary
+msgid " Debugging symbols."
+msgstr ""
+
+#. Tag: role::devel-lib, short desc
+#: files/debtags/vocabulary
+msgid "Development Library"
+msgstr ""
+
+#. Tag: role::devel-lib, long desc
+#: files/debtags/vocabulary
+msgid " Library and header files used in software development or building."
+msgstr ""
+
+#. Tag: role::source, short desc
+#: files/debtags/vocabulary
+msgid "Source Code"
+msgstr ""
+
+#. Tag: role::source, long desc
+#: files/debtags/vocabulary
+msgid " Human-readable code of a program, library or a part thereof."
+msgstr ""
+
+#. Tag: role::data, short desc
+#: files/debtags/vocabulary
+msgid "Standalone Data"
+msgstr ""
+
+#. Tag: role::app-data, short desc
+#: files/debtags/vocabulary
+msgid "Application Data"
+msgstr ""
+
+#. Tag: role::metapackage, short desc
+#: files/debtags/vocabulary
+msgid "Metapackage"
+msgstr ""
+
+#. Tag: role::metapackage, long desc
+#: files/debtags/vocabulary
+msgid " Packages that install suites of other packages."
+msgstr ""
+
+#. Facet: security, short desc
+#: files/debtags/vocabulary
+msgid "Security"
+msgstr ""
+
+#. Facet: security, long desc
+#: files/debtags/vocabulary
+msgid " How the package is related to system security"
+msgstr ""
+
+#. Tag: security::antivirus, short desc
+#: files/debtags/vocabulary
+msgid "Anti-Virus"
+msgstr ""
+
+#. Tag: security::authentication, short desc
+#: files/debtags/vocabulary
+msgid "Authentication"
+msgstr ""
+
+#. Tag: security::cryptography, short desc
+#: files/debtags/vocabulary
+msgid "Cryptography"
+msgstr ""
+
+#. Tag: security::cryptography, long desc
+#: files/debtags/vocabulary
+msgid " Cryptographic and privacy-oriented tools."
+msgstr ""
+
+#. Tag: security::firewall, short desc
+#: files/debtags/vocabulary
+#. Tag: network::firewall, short desc
+#: files/debtags/vocabulary
+msgid "Firewall"
+msgstr ""
+
+#. Tag: security::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics"
+msgstr ""
+
+#. Tag: security::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Post-mortem analysis of intrusions."
+msgstr ""
+
+#. Tag: security::ids, short desc
+#: files/debtags/vocabulary
+msgid "Intrusion Detection"
+msgstr ""
+
+#. Tag: security::integrity, short desc
+#: files/debtags/vocabulary
+msgid "File Integrity"
+msgstr ""
+
+#. Tag: security::integrity, long desc
+#: files/debtags/vocabulary
+msgid " Tools to monitor system for changes in filesystem and report changes\n or tools providing other means to check system integrity."
+msgstr ""
+
+#. Tag: security::log-analyzer, short desc
+#: files/debtags/vocabulary
+msgid "Log Analyzer"
+msgstr ""
+
+#. Tag: security::privacy, short desc
+#: files/debtags/vocabulary
+msgid "Privacy"
+msgstr ""
+
+#. Facet: sound, short desc
+#: files/debtags/vocabulary
+msgid "Sound and Music"
+msgstr ""
+
+#. Tag: sound::compression, short desc
+#: files/debtags/vocabulary
+msgid "Compression"
+msgstr ""
+
+#. Tag: sound::midi, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Software"
+msgstr ""
+
+#. Tag: sound::mixer, short desc
+#: files/debtags/vocabulary
+msgid "Mixing"
+msgstr ""
+
+#. Tag: sound::player, short desc
+#: files/debtags/vocabulary
+msgid "Playback"
+msgstr ""
+
+#. Tag: sound::recorder, short desc
+#: files/debtags/vocabulary
+msgid "Recording"
+msgstr ""
+
+#. Tag: sound::sequencer, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Sequencing"
+msgstr ""
+
+#. Facet: special, short desc
+#: files/debtags/vocabulary
+msgid "Service tags"
+msgstr ""
+
+#. Tag: special::auto-inst-parts, short desc
+#: files/debtags/vocabulary
+msgid "Secondary packages users won't install directly"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, short desc
+#: files/debtags/vocabulary
+msgid "NO IPv6 support"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, long desc
+#: files/debtags/vocabulary
+msgid " Use this for packages that cannot yet or will never support IPv6."
+msgstr ""
+
+#. Tag: special::obsolete, short desc
+#: files/debtags/vocabulary
+msgid "Obsolete Packages"
+msgstr ""
+
+#. Tag: special::obsolete, long desc
+#: files/debtags/vocabulary
+msgid " Packages that are not used any longer, also packages only left for upgrade\n purposes (merged / split packages)"
+msgstr ""
+
+#. Tag: special::invalid-tag, short desc
+#: files/debtags/vocabulary
+msgid "Invalid tag"
+msgstr ""
+
+#. Tag: special::invalid-tag, long desc
+#: files/debtags/vocabulary
+msgid " This tag means that the tag database contains a tag which is not present in\n the tag vocabulary.  The presence of this tag indicates a software bug: this\n should never show up."
+msgstr ""
+
+#. Tag: special::not-yet-tagged, short desc
+#: files/debtags/vocabulary
+msgid "!Not yet tagged packages!"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::a, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with a"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::b, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with b"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::c, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with c"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::d, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with d"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::e, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with e"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::f, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with f"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::g, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with g"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::h, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with h"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::i, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with i"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::j, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with j"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::k, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with k"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::l, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with l"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::m, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with m"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::n, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with n"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::o, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with o"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::p, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with p"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::q, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with q"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::r, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with r"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::s, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with s"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::t, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with t"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::u, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with u"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::v, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with v"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::w, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with w"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::x, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with x"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::y, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with y"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::z, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with z"
+msgstr ""
+
+#. Facet: suite, short desc
+#: files/debtags/vocabulary
+msgid "Application Suite"
+msgstr ""
+
+#. Tag: suite::apache, short desc
+#: files/debtags/vocabulary
+msgid "Apache"
+msgstr ""
+
+#. Tag: suite::eclipse, short desc
+#: files/debtags/vocabulary
+msgid "Eclipse"
+msgstr ""
+
+#. Tag: suite::eclipse, long desc
+#: files/debtags/vocabulary
+msgid " Eclipse tool platform and plugins."
+msgstr ""
+
+#. Tag: suite::emacs, short desc
+#: files/debtags/vocabulary
+msgid "Emacs"
+msgstr ""
+
+#. Tag: suite::gforge, short desc
+#: files/debtags/vocabulary
+msgid "GForge"
+msgstr ""
+
+#. Tag: suite::gforge, long desc
+#: files/debtags/vocabulary
+msgid " A collaborative development platform."
+msgstr ""
+
+#. Tag: suite::gimp, short desc
+#: files/debtags/vocabulary
+msgid "The GIMP"
+msgstr ""
+
+#. Tag: suite::gkrellm, short desc
+#: files/debtags/vocabulary
+msgid "GKrellM Monitors"
+msgstr ""
+
+#. Tag: suite::gnome, short desc
+#: files/debtags/vocabulary
+msgid "GNOME"
+msgstr ""
+
+#. Tag: suite::gnu, short desc
+#: files/debtags/vocabulary
+msgid "GNU"
+msgstr ""
+
+#. Tag: suite::gnu, long desc
+#: files/debtags/vocabulary
+msgid " Gnu's Not Unix. The package is part of the official GNU project"
+msgstr ""
+
+#. Tag: suite::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUStep"
+msgstr ""
+
+#. Tag: suite::gnustep, long desc
+#: files/debtags/vocabulary
+msgid "  GNUStep Desktop and WindowMaker"
+msgstr ""
+
+#. Tag: suite::gpe, short desc
+#: files/debtags/vocabulary
+msgid "GPE"
+msgstr ""
+
+#. Tag: suite::gpe, long desc
+#: files/debtags/vocabulary
+msgid "  GPE Palmtop Environment"
+msgstr ""
+
+#. Tag: suite::kde, short desc
+#: files/debtags/vocabulary
+msgid "KDE"
+msgstr ""
+
+#. Tag: suite::mozilla, short desc
+#: files/debtags/vocabulary
+msgid "Mozilla"
+msgstr ""
+
+#. Tag: suite::mozilla, long desc
+#: files/debtags/vocabulary
+msgid " Mozilla Browser and extensions"
+msgstr ""
+
+#. Tag: suite::netscape, short desc
+#: files/debtags/vocabulary
+msgid "Netscape Navigator"
+msgstr ""
+
+#. Tag: suite::netscape, long desc
+#: files/debtags/vocabulary
+msgid " The pre-6.0 versions of netscape browser"
+msgstr ""
+
+#. Tag: suite::openoffice, short desc
+#: files/debtags/vocabulary
+msgid "OpenOffice.org"
+msgstr ""
+
+#. Tag: suite::opie, short desc
+#: files/debtags/vocabulary
+msgid "Open Palmtop (OPIE)"
+msgstr ""
+
+#. Tag: suite::roxen, short desc
+#: files/debtags/vocabulary
+msgid "Roxen"
+msgstr ""
+
+#. Tag: suite::samba, short desc
+#: files/debtags/vocabulary
+msgid "SAMBA"
+msgstr ""
+
+#. Tag: suite::webmin, short desc
+#: files/debtags/vocabulary
+msgid "Webmin"
+msgstr ""
+
+#. Tag: suite::xfce, short desc
+#: files/debtags/vocabulary
+msgid "XFce"
+msgstr ""
+
+#. Tag: suite::xfce, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight desktop environment for X11."
+msgstr ""
+
+#. Tag: suite::xmms, short desc
+#: files/debtags/vocabulary
+msgid "XMMS"
+msgstr ""
+
+#. Tag: suite::xmms2, short desc
+#: files/debtags/vocabulary
+msgid "XMMS 2"
+msgstr ""
+
+#. Tag: suite::zope, short desc
+#: files/debtags/vocabulary
+msgid "ZOPE"
+msgstr ""
+
+#. Tag: suite::zope, long desc
+#: files/debtags/vocabulary
+msgid " The zope (web) publishing platform."
+msgstr ""
+
+#. Facet: protocol, short desc
+#: files/debtags/vocabulary
+msgid "Network Protocol"
+msgstr ""
+
+#. Tag: protocol::db:mysql, short desc
+#: files/debtags/vocabulary
+msgid "MySQL"
+msgstr ""
+
+#. Tag: protocol::db:mysql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing MySQL database server."
+msgstr ""
+
+#. Tag: protocol::db:psql, short desc
+#: files/debtags/vocabulary
+msgid "PostgreSQL"
+msgstr ""
+
+#. Tag: protocol::db:psql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing PostgreSQL database server."
+msgstr ""
+
+#. Tag: protocol::ldap, short desc
+#: files/debtags/vocabulary
+msgid "LDAP"
+msgstr ""
+
+#. Tag: protocol::ldap, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Access Protocol"
+msgstr ""
+
+#. Tag: protocol::atm, short desc
+#: files/debtags/vocabulary
+msgid "ATM"
+msgstr ""
+
+#. Tag: protocol::atm, long desc
+#: files/debtags/vocabulary
+msgid " Asynchronous Transfer Mode, a high speed protocol for communication between\n computers in a network.\n .\n While ATM is used to implement *DSL networks, it has never gained widespread\n use as a technology for building local area networks (LANs), for which it was\n originally intended.\n .\n Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode"
+msgstr ""
+
+#. Tag: protocol::bittorrent, short desc
+#: files/debtags/vocabulary
+msgid "BitTorrent"
+msgstr ""
+
+#. Tag: protocol::bittorrent, long desc
+#: files/debtags/vocabulary
+msgid " BitTorrent is a protocol for peer-to-peer based file distribution over\n network.\n .\n Although the actual data transport happens between BitTorrent clients, one\n central node, the so-called trackers, is needed to keep a list of all clients\n that download or provide the same file.\n .\n Link: http://www.bittorrent.com/\n Link: http://en.wikipedia.org/wiki/BitTorrent"
+msgstr ""
+
+#. Tag: protocol::corba, short desc
+#: files/debtags/vocabulary
+msgid "CORBA"
+msgstr ""
+
+#. Tag: protocol::corba, long desc
+#: files/debtags/vocabulary
+msgid " Common Object Request Broker Architecture, a standard for interoperability\n between programs written in different languages and running on different \n hardware platforms. CORBA includes a client-server network protocol for\n distributed computing.\n .\n With this network protocol, CORBA clients on different computers and written\n in different languages can exchange objects over a CORBA server such as orbit2\n or omniORB.\n .\n Link: http://www.corba.org/"
+msgstr ""
+
+#. Tag: protocol::dhcp, short desc
+#: files/debtags/vocabulary
+msgid "DHCP"
+msgstr ""
+
+#. Tag: protocol::dhcp, long desc
+#: files/debtags/vocabulary
+msgid " Dynamic Host Configuration Protocol, a client-server network protocol for\n automatic assignment of dynamic IP addresses to computers in a TCP/IP network,\n rather than giving each computer a static IP address.\n .\n Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol\n Link: http://www.ietf.org/rfc/rfc2131.txt"
+msgstr ""
+
+#. Tag: protocol::dns, short desc
+#: files/debtags/vocabulary
+msgid "DNS"
+msgstr ""
+
+#. Tag: protocol::dns, long desc
+#: files/debtags/vocabulary
+msgid " Domain Name System, a protocol to request information associated with domain\n names (like \"www.debian.org\"), most prominently the IP address. The protocol\n is used in communication with a DNS server (like BIND).\n .\n For the Internet, there are 13 root DNS servers around the world that keep the\n addresses of all registered domain names and provide this information to the\n DNS servers of Internet service providers.\n .\n Link: http://en.wikipedia.org/wiki/Domain_Name_System"
+msgstr ""
+
+#. Tag: protocol::ethernet, short desc
+#: files/debtags/vocabulary
+msgid "Ethernet"
+msgstr ""
+
+#. Tag: protocol::ethernet, long desc
+#: files/debtags/vocabulary
+msgid " Ethernet is the most popular networking technology for creating local area\n networks (LANs).\n .\n The computers in an Ethernet network communicate over twisted-pair or fibre\n cables and are identified by their MAC address. Several different types of\n Ethernet exist, distinguishable by the maximum connection speed. The most\n widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).\n .\n Link: http://en.wikipedia.org/wiki/Ethernet"
+msgstr ""
+
+#. Tag: protocol::fidonet, short desc
+#: files/debtags/vocabulary
+msgid "FidoNet"
+msgstr ""
+
+#. Tag: protocol::fidonet, long desc
+#: files/debtags/vocabulary
+msgid " FidoNet is a mailbox system that enjoyed large popularity in the 1980s and\n 1990s.\n .\n The communication between the clients and FidoNet servers  was usually carried\n out over the telephone network using modems and could be used for transferring\n messages (comparable to email) and files.\n .\n Link: http://www.fidonet.org/\n Link: http://en.wikipedia.org/wiki/Fidonet"
+msgstr ""
+
+#. Tag: protocol::finger, short desc
+#: files/debtags/vocabulary
+msgid "Finger"
+msgstr ""
+
+#. Tag: protocol::finger, long desc
+#: files/debtags/vocabulary
+msgid " The Name/Finger protocol is a simple network protocol to provide extensive, \n public information about users of a computer, such as email address, telephone\n numbers, full names etc.\n .\n Due to privacy concerns, the Finger protocol is not widely used any more,\n while it widespread distribution in the early 1990s.\n .\n Link: http://en.wikipedia.org/wiki/Finger_protocol\n Link: http://www.ietf.org/rfc/rfc1288.txt"
+msgstr ""
+
+#. Tag: protocol::ftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::ftp, short desc
+#: files/debtags/vocabulary
+msgid "FTP"
+msgstr ""
+
+#. Tag: protocol::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol, a protocol for exchanging and manipulation files over\n networks and extensively used on the Internet.\n .\n The communication between FTP servers and clients uses two channels, the\n control and the data channel. While FTP was originally used with\n authentication only, most FTP servers on the Internet provide anonymous,\n passwordless access. Since FTP does not support encryption, sensitive data\n transfer is carried out over SFTP today.\n .\n Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc0959.txt"
+msgstr ""
+
+#. Tag: protocol::http, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::http, short desc
+#: files/debtags/vocabulary
+msgid "HTTP"
+msgstr ""
+
+#. Tag: protocol::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol, one of the most important protocols for the\n World Wide Web.\n .\n It controls the data transfer between HTTP servers such as Apache and HTTP\n clients, which are web browsers in most cases. HTTP resources are requested\n via URLs (Universal Resource Locators). While HTTP normally only supports file\n transfer from server to client, the protocol supports sending information to\n HTTP servers, most prominently used in HTML forms.\n .\n Link: http://en.wikipedia.org/wiki/Http\n Link: http://www.ietf.org/rfc/rfc2616.txt"
+msgstr ""
+
+#. Tag: protocol::ident, short desc
+#: files/debtags/vocabulary
+msgid "Ident"
+msgstr ""
+
+#. Tag: protocol::ident, long desc
+#: files/debtags/vocabulary
+msgid " The Ident Internet protocol helps to identify or authenticate the user of\n a network connection.\n .\n Link: http://en.wikipedia.org/wiki/Ident"
+msgstr ""
+
+#. Tag: protocol::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP"
+msgstr ""
+
+#. Tag: protocol::imap, long desc
+#: files/debtags/vocabulary
+msgid " Internet Message Access Protocol, a protocol used for accessing email on a\n server from a email client such as KMail or Evolution.\n .\n When using IMAP, emails stay on the server and can be categorized, edited,\n deleted etc. there, instead of having the user download all messages onto\n the local computer, as POP3 does.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol"
+msgstr ""
+
+#. Tag: protocol::ip, short desc
+#: files/debtags/vocabulary
+msgid "IP"
+msgstr ""
+
+#. Tag: protocol::ip, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v4), a core protocol of the Internet protocol suite and\n the very basis of the Internet.\n .\n Every computer that is connected to the Internet has an IP address (a 4-byte\n number, typically represented in dotted notation like 192.25.206.10).\n Internet IP addresses are given out by the Internet Corporation for Assigned\n Names and Numbers (ICANN). Normally, computers on the Internet are not\n accessed by their IP address, but by their domain name.\n .\n Link: http://en.wikipedia.org/wiki/IPv4\n Link: http://www.ietf.org/rfc/rfc791.txt"
+msgstr ""
+
+#. Tag: protocol::ipv6, short desc
+#: files/debtags/vocabulary
+msgid "IPv6"
+msgstr ""
+
+#. Tag: protocol::ipv6, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v6), the next-generation Internet protocol, which overcomes\n the restrictions of IP (v4), like shortage of IP addresses, and is supposed to\n form the new basis of the Internet in the future, replacing IP (v4).\n .\n Many programs already support IPv6 along with IP (v4), although it is still\n seldomly used.\n .\n Link: http://en.wikipedia.org/wiki/IPv6\n Link: http://www.ipv6.org/"
+msgstr ""
+
+#. Tag: protocol::irc, short desc
+#: files/debtags/vocabulary
+msgid "IRC"
+msgstr ""
+
+#. Tag: protocol::irc, long desc
+#: files/debtags/vocabulary
+msgid " Internet Relay Chat, a protocol for text chatting over network, extensively\n used on the Internet. It supports chat rooms, so-called channels, as well as\n private, one-to-one communication.\n .\n IRC servers are organized in networks, so that a client can connect to a\n geographically near IRC server, that itself is connected to other IRC servers\n spread over the whole world.\n .\n The official Debian channel is #debian on the freenode network.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat"
+msgstr ""
+
+#. Tag: protocol::jabber, short desc
+#: files/debtags/vocabulary
+msgid "Jabber"
+msgstr ""
+
+#. Tag: protocol::jabber, long desc
+#: files/debtags/vocabulary
+msgid " The Jabber protocol is an instant messaging protocol on the basis of the XMPP\n protocol. Additionally to private one-to-one communication, it also supports\n chat rooms, and it is used in the Jabber IM network as well as for the IM\n capabilities for the new GoogleTalk network.\n .\n In contrast to other IM networks like MSN, ICQ or AIM, the Jabber servers are\n free software and can be used to create a private chat platform or have an own\n server to connect to the Jabber network.\n .\n Link: http://www.jabber.org\n Link: http://en.wikipedia.org/wiki/Jabber"
+msgstr ""
+
+#. Tag: protocol::kerberos, short desc
+#: files/debtags/vocabulary
+msgid "Kerberos"
+msgstr ""
+
+#. Tag: protocol::kerberos, long desc
+#: files/debtags/vocabulary
+msgid " Kerberos is a authentication protocol for computer networks for secure\n authentication over an otherwise insecure network, using symmetric\n cryptography and a third party service provider, that is trusted both by\n client and server.\n . \n The authentication mechanism provided by Kerberos is mutual, so that not only\n a server can be sure of a client's identity, but also a client can be sure a\n connection to a server is not intercepted.\n .\n Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29\n Link: http://http://www.ietf.org/rfc/rfc4120.txt"
+msgstr ""
+
+#. Tag: protocol::lpr, short desc
+#: files/debtags/vocabulary
+msgid "LPR"
+msgstr ""
+
+#. Tag: protocol::lpr, long desc
+#: files/debtags/vocabulary
+msgid " The Line Printer Daemon protocol, a protocol used for accessing or providing\n network print services in a Unix network, but also used for local setups.\n .\n CUPS, the Common Unix Printing System, was developed to replace the old\n LPD/LPR system, while maintaining backwards compatibility.\n .\n Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol\n Link: http://www.ietf.org/rfc/rfc1179.txt"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, short desc
+#: files/debtags/vocabulary
+msgid "MSN Messenger"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The MSN messenger protocol is the protocol that is used by Microsoft's own\n instant messaging network.\n .\n The protocol is a proprietary protocol. Although Microsoft once send a draft\n of the protocol specification to the IETF, it has since dated out and clients\n that connect to the MSN Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://www.hypothetic.org/docs/msn/"
+msgstr ""
+
+#. Tag: protocol::nfs, short desc
+#: files/debtags/vocabulary
+msgid "NFS"
+msgstr ""
+
+#. Tag: protocol::nfs, long desc
+#: files/debtags/vocabulary
+msgid " Network File System, a protocol originally developed by Sun Microsystems in\n 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a\n distributed file system, allows a user on a client computer to access files\n over a network as easily as if attached to its local disks.\n .\n Link: http://en.wikipedia.org/wiki/Network_File_System"
+msgstr ""
+
+#. Tag: protocol::nntp, short desc
+#: files/debtags/vocabulary
+msgid "NNTP"
+msgstr ""
+
+#. Tag: protocol::nntp, long desc
+#: files/debtags/vocabulary
+msgid " Network News Transfer Protocol, a protocol for reading in writing Usenet\n articles (a Usenet article is comparable with an email), but also used\n among NNTP servers to transfer articles. \n .\n Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc977.txt"
+msgstr ""
+
+#. Tag: protocol::oscar, short desc
+#: files/debtags/vocabulary
+msgid "OSCAR (AIM/ICQ)"
+msgstr ""
+
+#. Tag: protocol::oscar, long desc
+#: files/debtags/vocabulary
+msgid " Open System for CommunicAtion in Realtime, an instant messaging used by\n AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9\n of the ICQ IM network are also instances of the OSCAR protocol.\n .\n OSCAR is a binary proprietary protocol. Since there is no official documentation,\n clients that connect to AIM or ICQ have to rely on information that has\n been reverse-engineered.\n .\n Link: http://en.wikipedia.org/wiki/OSCAR_protocol\n Link: http://www.oilcan.org/oscar/"
+msgstr ""
+
+#. Tag: protocol::pop3, short desc
+#: files/debtags/vocabulary
+msgid "POP3"
+msgstr ""
+
+#. Tag: protocol::pop3, long desc
+#: files/debtags/vocabulary
+msgid " Post Office Protocol, a protocol to download emails from a mail server,\n designed for users that have only intermittent connection to the Internet.\n .\n In contrast to IMAP server, messages that are downloaded via POP3 are not\n supposed to stay on the server afterwards, since POP3 does not support\n multiple mailboxes for one account on the server.\n .\n Link: http://en.wikipedia.org/wiki/Post_Office_Protocol\n Link: http://www.ietf.org/rfc/rfc1939.txt"
+msgstr ""
+
+#. Tag: protocol::radius, short desc
+#: files/debtags/vocabulary
+msgid "RADIUS"
+msgstr ""
+
+#. Tag: protocol::radius, long desc
+#: files/debtags/vocabulary
+msgid " Remote Authentication Dial In User Service, a protocol for authentication,\n authorization and accounting of network access, mostly used by Internet\n service providers handle handle dial-up Internet connections.\n .\n Link: http://en.wikipedia.org/wiki/RADIUS\n Link: http://www.ietf.org/rfc/rfc2865.txt"
+msgstr ""
+
+#. Tag: protocol::sftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::sftp, short desc
+#: files/debtags/vocabulary
+msgid "SFTP"
+msgstr ""
+
+#. Tag: protocol::sftp, long desc
+#: files/debtags/vocabulary
+msgid " SSH File Transfer Protocol, a protocol for secure, encrypting file exchange\n and manipulation over insecure networks, using the SSH protocol.\n .\n SFTP provides a complete set of file system operations, different from its\n predecessor SCP, which only allowed file transfer. It is not, other than the\n name might suggest, the a version of the FTP protocol executed through an\n SSH channel.\n .\n Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol"
+msgstr ""
+
+#. Tag: protocol::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB"
+msgstr ""
+
+#. Tag: protocol::smb, long desc
+#: files/debtags/vocabulary
+msgid " Server Message Block, a protocol for providing file access and printer sharing\n over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File\n System) is a synonym for SMB\n .\n Although SMB is a proprietary protocol, the Samba project reverse-engineered\n the protocol and developed both client and server programs for better\n interoperability in mixed Unix/Windows networks.\n .\n Link: http://en.wikipedia.org/wiki/Server_Message_Block\n Link: http://www.samba.org/"
+msgstr ""
+
+#. Tag: protocol::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP"
+msgstr ""
+
+#. Tag: protocol::smtp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Mail Transfer Protocol, a protocol or for transmitting emails over the\n Internet.\n .\n Every SMTP server utilizes SMTP to hand on emails to the next mail server\n until an email arrives at its destination, from where it is usually retrieved\n via POP3 or IMAP \n .\n Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc2821.txt"
+msgstr ""
+
+#. Tag: protocol::snmp, short desc
+#: files/debtags/vocabulary
+msgid "SNMP"
+msgstr ""
+
+#. Tag: protocol::snmp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Network Management Protocol, a member of the Internet protocol suite\n and used for monitoring or configuring network devices.\n .\n SNMP servers normally run on network equipment like routers.\n .\n Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol\n Link: http://www.ietf.org/rfc/rfc3411.txt"
+msgstr ""
+
+#. Tag: protocol::soap, short desc
+#: files/debtags/vocabulary
+msgid "SOAP"
+msgstr ""
+
+#. Tag: protocol::soap, long desc
+#: files/debtags/vocabulary
+msgid " Simple Object Access Protocol, a protocol for exchanging messages between\n different computers in a network. The messages are encoded in XML and usually\n sent over HTTP.\n .\n SOAP is used to provide APIs to web services, such as the Google API to\n utilize Google's searching engine from client applications.\n .\n Link: http://en.wikipedia.org/wiki/SOAP\n Link: http://www.w3.org/TR/soap/"
+msgstr ""
+
+#. Tag: protocol::ssh, short desc
+#: files/debtags/vocabulary
+msgid "SSH"
+msgstr ""
+
+#. Tag: protocol::ssh, long desc
+#: files/debtags/vocabulary
+msgid " Secure Shell, a protocol for secure, encrypted network connections. SSH can\n be used to execute programs on a remote host with an SSH server over secure\n otherwise insecure protocols through an SSH channel. The main use is, as the\n name suggest, to provide encrypted login and shell access on remote servers.\n .\n SSH authentication can be done with password or, which is the preferred\n mechanism, via asymmetric public/private key cryptography.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Shell"
+msgstr ""
+
+#. Tag: protocol::ssl, short desc
+#: files/debtags/vocabulary
+msgid "SSL/TLS"
+msgstr ""
+
+#. Tag: protocol::ssl, long desc
+#: files/debtags/vocabulary
+msgid " Secure Socket Layer/Transport Layer Security, a protocol that provides \n secure encrypted communication on the Internet. It is used to authenticate\n the identity of a service provider (such as a Internet banking server) and\n to secure the communications channel.\n .\n Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be\n transmitted over SSL/TLS to secure the transmitted data. In this case, an\n \"S\" is added to the protocol name, like HTTPS, FTPS etc.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer"
+msgstr ""
+
+#. Tag: protocol::tcp, short desc
+#: files/debtags/vocabulary
+msgid "TCP"
+msgstr ""
+
+#. Tag: protocol::tcp, long desc
+#: files/debtags/vocabulary
+msgid " Transport Control Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n TCP is used as the transport protocol for many services on the Internet,\n such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.\n .\n Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol\n Link: http://www.ietf.org/rfc/rfc793.txt"
+msgstr ""
+
+#. Tag: protocol::udp, short desc
+#: files/debtags/vocabulary
+msgid "UDP"
+msgstr ""
+
+#. Tag: protocol::udp, long desc
+#: files/debtags/vocabulary
+msgid " User Datagram Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n UDP is not as reliable as TCP, but faster and thus better fit for\n time-sensitive purposes, like the DNS protocol and VoIP.\n .\n Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol\n Link: http://www.ietf.org/rfc/rfc768.txt"
+msgstr ""
+
+#. Tag: protocol::voip, short desc
+#: files/debtags/vocabulary
+msgid "VoIP"
+msgstr ""
+
+#. Tag: protocol::voip, long desc
+#: files/debtags/vocabulary
+msgid " Voice over IP, a general term for protocols that route voice conversations\n over the Internet.\n .\n Popular VoIP protocols are SIP, H.323 and IAX.\n .\n Link: http://en.wikipedia.org/wiki/Voice_over_IP"
+msgstr ""
+
+#. Tag: protocol::webdav, short desc
+#: files/debtags/vocabulary
+msgid "WebDAV"
+msgstr ""
+
+#. Tag: protocol::webdav, long desc
+#: files/debtags/vocabulary
+msgid " Web-based Distributed Authoring and Versioning, a extension of the HTTP\n protocol to support creating and changing documents on an HTTP server. Thus,\n the client can access the documents on an HTTP server as it would those on the\n local file system.\n .\n Link: http://en.wikipedia.org/wiki/WebDAV\n Link: http://www.ietf.org/rfc/rfc2518.txt"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, short desc
+#: files/debtags/vocabulary
+msgid "XML-RPC"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, long desc
+#: files/debtags/vocabulary
+msgid " XML Remote Procedure Call, a simple protocol for remote procedure calls that\n uses XML for encoding and the HTTP protocol for transport.\n .\n SOAP, which is a considerably more sophisticated protocol, was developed from\n XML-RPC.\n .\n Link: http://en.wikipedia.org/wiki/XML-RPC\n Link: http://www.xmlrpc.com/"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, short desc
+#: files/debtags/vocabulary
+msgid "Yahoo! Messenger"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging\n network.\n .\n This a proprietary binary protocol without any official documentation. Clients\n that connect to the Yahoo! Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger\n Link: http://www.venkydude.com/articles/yahoo.htm"
+msgstr ""
+
+#. Facet: filetransfer, short desc
+#: files/debtags/vocabulary
+msgid "File Transfer"
+msgstr ""
+
+#. Tag: filetransfer::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::sftp, long desc
+#: files/debtags/vocabulary
+msgid " Secure File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB and CIFS"
+msgstr ""
+
+#. Tag: filetransfer::smb, long desc
+#: files/debtags/vocabulary
+msgid " Windows file and printer sharing (SMB)"
+msgstr ""
+
+#. Tag: filetransfer::dcc, short desc
+#: files/debtags/vocabulary
+msgid "IRC DCC"
+msgstr ""
+
+#. Tag: filetransfer::dcc, long desc
+#: files/debtags/vocabulary
+msgid " Direct Client to Client protocol used by Internet Relay Chat clients."
+msgstr ""
+
+#. Facet: uitoolkit, short desc
+#: files/debtags/vocabulary
+msgid "Interface Toolkit"
+msgstr ""
+
+#. Tag: uitoolkit::athena, short desc
+#: files/debtags/vocabulary
+msgid "Athena Widgets"
+msgstr ""
+
+#. Tag: uitoolkit::fltk, short desc
+#: files/debtags/vocabulary
+msgid "FLTK"
+msgstr ""
+
+#. Tag: uitoolkit::glut, short desc
+#: files/debtags/vocabulary
+msgid "GLUT"
+msgstr ""
+
+#. Tag: uitoolkit::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUstep"
+msgstr ""
+
+#. Tag: uitoolkit::gtk, short desc
+#: files/debtags/vocabulary
+msgid "GTK"
+msgstr ""
+
+#. Tag: uitoolkit::motif, short desc
+#: files/debtags/vocabulary
+msgid "Lesstif/Motif"
+msgstr ""
+
+#. Tag: uitoolkit::ncurses, short desc
+#: files/debtags/vocabulary
+msgid "Ncurses TUI"
+msgstr ""
+
+#. Tag: uitoolkit::qt, short desc
+#: files/debtags/vocabulary
+msgid "QT"
+msgstr ""
+
+#. Tag: uitoolkit::sdl, short desc
+#: files/debtags/vocabulary
+msgid "SDL"
+msgstr ""
+
+#. Tag: uitoolkit::tk, short desc
+#: files/debtags/vocabulary
+msgid "TK"
+msgstr ""
+
+#. Tag: uitoolkit::wxwidgets, short desc
+#: files/debtags/vocabulary
+msgid "wxWidgets"
+msgstr ""
+
+#. Tag: uitoolkit::xlib, short desc
+#: files/debtags/vocabulary
+msgid "X library"
+msgstr ""
+
+#. Facet: use, short desc
+#: files/debtags/vocabulary
+msgid "Purpose"
+msgstr ""
+
+#. Tag: use::analysing, short desc
+#: files/debtags/vocabulary
+msgid "Analysing"
+msgstr ""
+
+#. Tag: use::analysing, long desc
+#: files/debtags/vocabulary
+msgid " Software for turning data into knowledge."
+msgstr ""
+
+#. Tag: use::browsing, short desc
+#: files/debtags/vocabulary
+msgid "Browsing"
+msgstr ""
+
+#. Tag: use::chatting, short desc
+#: files/debtags/vocabulary
+msgid "Chatting"
+msgstr ""
+
+#. Tag: use::checking, short desc
+#: files/debtags/vocabulary
+msgid "Checking"
+msgstr ""
+
+#. Tag: use::checking, long desc
+#: files/debtags/vocabulary
+msgid " All sorts of checking, checking a filesystem for validity, checking\n a document for incorrectly spelled words, checking a network for \n routing problems. Verifying."
+msgstr ""
+
+#. Tag: use::comparing, short desc
+#: files/debtags/vocabulary
+msgid "Comparing"
+msgstr ""
+
+#. Tag: use::comparing, long desc
+#: files/debtags/vocabulary
+msgid " To find what relates or differs in two or more objects."
+msgstr ""
+
+#. Tag: use::compressing, short desc
+#: files/debtags/vocabulary
+msgid "Compressing"
+msgstr ""
+
+#. Tag: use::configuring, short desc
+#: files/debtags/vocabulary
+#. Tag: network::configuration, short desc
+#: files/debtags/vocabulary
+msgid "Configuration"
+msgstr ""
+
+#. Tag: use::converting, short desc
+#: files/debtags/vocabulary
+msgid "Data Conversion"
+msgstr ""
+
+#. Tag: use::dialing, short desc
+#: files/debtags/vocabulary
+msgid "Dialup Access"
+msgstr ""
+
+#. Tag: use::downloading, short desc
+#: files/debtags/vocabulary
+msgid "Downloading"
+msgstr ""
+
+#. Tag: use::driver, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Driver"
+msgstr ""
+
+#. Tag: use::editing, short desc
+#: files/debtags/vocabulary
+msgid "Editing"
+msgstr ""
+
+#. Tag: use::entertaining, short desc
+#: files/debtags/vocabulary
+msgid "Entertaining"
+msgstr ""
+
+#. Tag: use::filtering, short desc
+#: files/debtags/vocabulary
+msgid "Filtering"
+msgstr ""
+
+#. Tag: use::gameplaying, short desc
+#: files/debtags/vocabulary
+msgid "Game Playing"
+msgstr ""
+
+#. Tag: use::learning, short desc
+#: files/debtags/vocabulary
+msgid "Learning"
+msgstr ""
+
+#. Tag: use::organizing, short desc
+#: files/debtags/vocabulary
+msgid "Data Organisation"
+msgstr ""
+
+#. Tag: use::playing, short desc
+#: files/debtags/vocabulary
+msgid "Playing Media"
+msgstr ""
+
+#. Tag: use::printing, short desc
+#: files/debtags/vocabulary
+msgid "Printing"
+msgstr ""
+
+#. Tag: use::proxying, short desc
+#: files/debtags/vocabulary
+msgid "Proxying"
+msgstr ""
+
+#. Tag: use::routing, short desc
+#: files/debtags/vocabulary
+#. Tag: network::routing, short desc
+#: files/debtags/vocabulary
+msgid "Routing"
+msgstr ""
+
+#. Tag: use::searching, short desc
+#: files/debtags/vocabulary
+msgid "Searching"
+msgstr ""
+
+#. Tag: use::scanning, short desc
+#: files/debtags/vocabulary
+#. Tag: network::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Scanning"
+msgstr ""
+
+#. Tag: use::storing, short desc
+#: files/debtags/vocabulary
+msgid "Storing"
+msgstr ""
+
+#. Tag: use::synchronizing, short desc
+#: files/debtags/vocabulary
+msgid "Synchronisation"
+msgstr ""
+
+#. Tag: use::timekeeping, short desc
+#: files/debtags/vocabulary
+msgid "Time and Clock"
+msgstr ""
+
+#. Tag: use::transmission, short desc
+#: files/debtags/vocabulary
+msgid "Transmission"
+msgstr ""
+
+#. Tag: use::typesetting, short desc
+#: files/debtags/vocabulary
+msgid "Typesetting"
+msgstr ""
+
+#. Tag: use::viewing, short desc
+#: files/debtags/vocabulary
+msgid "Data Visualization"
+msgstr ""
+
+#. Tag: use::text-formatting, short desc
+#: files/debtags/vocabulary
+msgid "Text Formatting"
+msgstr ""
+
+#. Tag: web::appserver, short desc
+#: files/debtags/vocabulary
+msgid "Application Server"
+msgstr ""
+
+#. Tag: web::blog, short desc
+#: files/debtags/vocabulary
+msgid "Blog Software"
+msgstr ""
+
+#. Tag: web::browser, short desc
+#: files/debtags/vocabulary
+msgid "Browser"
+msgstr ""
+
+#. Tag: web::cms, short desc
+#: files/debtags/vocabulary
+msgid "Content Management (CMS)"
+msgstr ""
+
+#. Tag: web::cgi, short desc
+#: files/debtags/vocabulary
+msgid "CGI"
+msgstr ""
+
+#. Tag: web::commerce, short desc
+#: files/debtags/vocabulary
+msgid "E-commerce"
+msgstr ""
+
+#. Tag: web::forum, short desc
+#: files/debtags/vocabulary
+msgid "Forum"
+msgstr ""
+
+#. Tag: web::portal, short desc
+#: files/debtags/vocabulary
+msgid "Portal"
+msgstr ""
+
+#. Tag: web::scripting, short desc
+#: files/debtags/vocabulary
+msgid "Scripting"
+msgstr ""
+
+#. Tag: web::search-engine, short desc
+#: files/debtags/vocabulary
+msgid "Search engine"
+msgstr ""
+
+#. Tag: web::server, short desc
+#: files/debtags/vocabulary
+#. Tag: network::server, short desc
+#: files/debtags/vocabulary
+msgid "Server"
+msgstr ""
+
+#. Tag: web::wiki, short desc
+#: files/debtags/vocabulary
+msgid "Wiki Software"
+msgstr ""
+
+#. Tag: web::wiki, long desc
+#: files/debtags/vocabulary
+msgid " Wiki software, servers, utilities and plug-ins."
+msgstr ""
+
+#. Facet: network, short desc
+#: files/debtags/vocabulary
+msgid "Networking"
+msgstr ""
+
+#. Tag: network::client, short desc
+#: files/debtags/vocabulary
+msgid "Client"
+msgstr ""
+
+#. Tag: network::hiavailability, short desc
+#: files/debtags/vocabulary
+msgid "High Availability"
+msgstr ""
+
+#. Tag: network::load-balancing, short desc
+#: files/debtags/vocabulary
+msgid "Load Balancing"
+msgstr ""
+
+#. Tag: network::service, short desc
+#: files/debtags/vocabulary
+msgid "Service"
+msgstr ""
+
+#. Tag: network::vpn, short desc
+#: files/debtags/vocabulary
+msgid "VPN or Tunneling"
+msgstr ""
+
+#. Facet: x11, short desc
+#: files/debtags/vocabulary
+msgid "X Windowing System"
+msgstr ""
+
+#. Tag: x11::applet, short desc
+#: files/debtags/vocabulary
+msgid "Applet"
+msgstr ""
+
+#. Tag: x11::display-manager, short desc
+#: files/debtags/vocabulary
+msgid "Login Manager"
+msgstr ""
+
+#. Tag: x11::display-manager, long desc
+#: files/debtags/vocabulary
+msgid " Display managers (graphical login screens)"
+msgstr ""
+
+#. Tag: x11::library, short desc
+#: files/debtags/vocabulary
+msgid "Library"
+msgstr ""
+
+#. Tag: x11::screensaver, short desc
+#: files/debtags/vocabulary
+msgid "Screen Saver"
+msgstr ""
+
+#. Tag: x11::terminal, short desc
+#: files/debtags/vocabulary
+msgid "Terminal Emulator"
+msgstr ""
+
+#. Tag: x11::theme, short desc
+#: files/debtags/vocabulary
+msgid "Theme"
+msgstr ""
+
+#. Tag: x11::window-manager, short desc
+#: files/debtags/vocabulary
+msgid "Window Manager"
+msgstr ""
+
+#. Tag: x11::xserver, short desc
+#: files/debtags/vocabulary
+msgid "X Server"
+msgstr ""
+
+#. Tag: bbs, short desc
+#: files/debtags/vocabulary
+msgid "Bulletin Board Systems"
+msgstr ""
+
+#. Tag: data-exchange, short desc
+#: files/debtags/vocabulary
+msgid "Data Exchange"
+msgstr ""
+
+#. Tag: desktop, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Environment"
+msgstr ""
+
+#. Tag: file-formats, short desc
+#: files/debtags/vocabulary
+msgid "File formats"
+msgstr ""
+
+#. Tag: foreignos, short desc
+#: files/debtags/vocabulary
+msgid "Foreign OS and Hardware"
+msgstr ""
+
+#. Tag: net, short desc
+#: files/debtags/vocabulary
+msgid "IP Networking"
+msgstr ""
+
+#. Tag: netcomm, short desc
+#: files/debtags/vocabulary
+msgid "Network and Communication"
+msgstr ""
+
+#. Tag: numerical, short desc
+#: files/debtags/vocabulary
+msgid "Calculation and numerical computation"
+msgstr ""
+
+#. Tag: office, short desc
+#: files/debtags/vocabulary
+msgid "Office software"
+msgstr ""
+
+#. Tag: protocols, short desc
+#: files/debtags/vocabulary
+msgid "IP protocol support"
+msgstr ""
+
+#. Tag: science, short desc
+#: files/debtags/vocabulary
+msgid "Science"
+msgstr ""
+
+#. Tag: system, short desc
+#: files/debtags/vocabulary
+msgid "System software and maintainance"
+msgstr ""
+
+#. Tag: vi, short desc
+#: files/debtags/vocabulary
+msgid "VI editor"
+msgstr ""
+
diff --git a/po/debtags.fi.po b/po/debtags.fi.po
new file mode 100644
index 0000000..c6c289b
--- /dev/null
+++ b/po/debtags.fi.po
@@ -0,0 +1,3544 @@
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Facet: accessibility, short desc
+#: files/debtags/vocabulary
+msgid "Accessibility Support"
+msgstr ""
+
+#. Tag: accessibility::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Systems"
+msgstr ""
+
+#. Tag: accessibility::input, long desc
+#: files/debtags/vocabulary
+msgid " Applies to input methods for non-latin languages as well as special input\n systems."
+msgstr ""
+
+#. Tag: accessibility::ocr, short desc
+#: files/debtags/vocabulary
+msgid "Text Recognition (OCR)"
+msgstr ""
+
+#. Tag: accessibility::ocr, long desc
+#: files/debtags/vocabulary
+msgid " Optical Character Recognition"
+msgstr ""
+
+#. Tag: accessibility::screen-magnify, short desc
+#: files/debtags/vocabulary
+msgid "Screen Magnification"
+msgstr ""
+
+#. Tag: accessibility::screen-reader, short desc
+#: files/debtags/vocabulary
+msgid "Screen Reading"
+msgstr ""
+
+#. Tag: accessibility::speech, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::speech, short desc
+#: files/debtags/vocabulary
+msgid "Speech Synthesis"
+msgstr ""
+
+#. Tag: accessibility::speech-recognition, short desc
+#: files/debtags/vocabulary
+msgid "Speech Recognition"
+msgstr ""
+
+#. Tag: accessibility::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, short desc
+#: files/debtags/vocabulary
+msgid "Need an extra tag"
+msgstr ""
+
+#. Tag: accessibility::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, long desc
+#: files/debtags/vocabulary
+msgid " The package can be categorised along this facet, but the right tag for it is\n missing.\n .\n Mark a package with this tag to signal the vocabulary maintainers of cases\n where the current tag set is lacking."
+msgstr ""
+
+#. Facet: admin, short desc
+#: files/debtags/vocabulary
+msgid "System Administration"
+msgstr ""
+
+#. Tag: admin::accounting, short desc
+#: files/debtags/vocabulary
+msgid "Accounting"
+msgstr ""
+
+#. Tag: admin::automation, short desc
+#: files/debtags/vocabulary
+msgid "Automation and scheduling"
+msgstr ""
+
+#. Tag: admin::automation, long desc
+#: files/debtags/vocabulary
+msgid " Automating the execution of software in the system."
+msgstr ""
+
+#. Tag: admin::backup, short desc
+#: files/debtags/vocabulary
+msgid "Backup and Restoration"
+msgstr ""
+
+#. Tag: admin::benchmarking, short desc
+#: files/debtags/vocabulary
+msgid "Benchmarking"
+msgstr ""
+
+#. Tag: admin::boot, short desc
+#: files/debtags/vocabulary
+msgid "System Boot"
+msgstr ""
+
+#. Tag: admin::cluster, short desc
+#: files/debtags/vocabulary
+msgid "Clustering"
+msgstr ""
+
+#. Tag: admin::configuring, short desc
+#: files/debtags/vocabulary
+msgid "Configuration Tool"
+msgstr ""
+
+#. Tag: admin::file-distribution, short desc
+#: files/debtags/vocabulary
+msgid "File Distribution"
+msgstr ""
+
+#. Tag: admin::filesystem, short desc
+#: files/debtags/vocabulary
+msgid "Filesystem Tool"
+msgstr ""
+
+#. Tag: admin::filesystem, long desc
+#: files/debtags/vocabulary
+msgid " Creation, maintenance, and use of filesystems"
+msgstr ""
+
+#. Tag: admin::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics and Recovery"
+msgstr ""
+
+#. Tag: admin::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Recovering lost or damaged data.\n This tag will be split into admin::recovery\n and security::forensics."
+msgstr ""
+
+#. Tag: admin::hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Support"
+msgstr ""
+
+#. Tag: admin::install, short desc
+#: files/debtags/vocabulary
+msgid "System installation"
+msgstr ""
+
+#. Tag: admin::issuetracker, short desc
+#: files/debtags/vocabulary
+msgid "Issue tracker"
+msgstr ""
+
+#. Tag: admin::kernel, short desc
+#: files/debtags/vocabulary
+msgid "Kernel or Modules"
+msgstr ""
+
+#. Tag: admin::logging, short desc
+#: files/debtags/vocabulary
+msgid "Logging"
+msgstr ""
+
+#. Tag: admin::login, short desc
+#: files/debtags/vocabulary
+#. Tag: use::login, short desc
+#: files/debtags/vocabulary
+msgid "Login"
+msgstr ""
+
+#. Tag: admin::login, long desc
+#: files/debtags/vocabulary
+msgid " Logging into the system"
+msgstr ""
+
+#. Tag: admin::monitoring, short desc
+#: files/debtags/vocabulary
+#. Tag: use::monitor, short desc
+#: files/debtags/vocabulary
+msgid "Monitoring"
+msgstr ""
+
+#. Tag: admin::package-management, short desc
+#: files/debtags/vocabulary
+msgid "Package Management"
+msgstr ""
+
+#. Tag: admin::power-management, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::power, short desc
+#: files/debtags/vocabulary
+msgid "Power Management"
+msgstr ""
+
+#. Tag: admin::recovery, short desc
+#: files/debtags/vocabulary
+msgid "Data recovery"
+msgstr ""
+
+#. Tag: admin::user-management, short desc
+#: files/debtags/vocabulary
+msgid "User Management"
+msgstr ""
+
+#. Tag: admin::virtualization, short desc
+#: files/debtags/vocabulary
+msgid "Virtualization"
+msgstr ""
+
+#. Tag: admin::virtualization, long desc
+#: files/debtags/vocabulary
+msgid " This is not hardware emulation, but rather those facilities that allow to\n create many isolated compartments inside the same system."
+msgstr ""
+
+#. Facet: biology, short desc
+#: files/debtags/vocabulary
+#. Tag: field::biology, short desc
+#: files/debtags/vocabulary
+msgid "Biology"
+msgstr ""
+
+#. Facet: biology, long desc
+#: files/debtags/vocabulary
+msgid " How is the package related to the field of biology."
+msgstr ""
+
+#. Tag: biology::emboss, short desc
+#: files/debtags/vocabulary
+msgid "EMBOSS"
+msgstr ""
+
+#. Tag: biology::emboss, long desc
+#: files/debtags/vocabulary
+msgid " Packages related to the European Molecular Biology Open Software Suite."
+msgstr ""
+
+#. Tag: biology::format:aln, short desc
+#: files/debtags/vocabulary
+msgid "Clustal/ALN"
+msgstr ""
+
+#. Tag: biology::format:aln, long desc
+#: files/debtags/vocabulary
+msgid " Used in multiple alignment of biological sequences."
+msgstr ""
+
+#. Tag: biology::format:nexus, short desc
+#: files/debtags/vocabulary
+msgid "Nexus"
+msgstr ""
+
+#. Tag: biology::format:nexus, long desc
+#: files/debtags/vocabulary
+msgid " Popular format for phylogenetic trees."
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, short desc
+#: files/debtags/vocabulary
+msgid "Nucleic acids"
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of nucleic acids: \n DNA, RNA but also non-natural nucleic acids such as PNA or LNA."
+msgstr ""
+
+#. Tag: biology::peptidic, short desc
+#: files/debtags/vocabulary
+msgid "Proteins"
+msgstr ""
+
+#. Tag: biology::peptidic, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of aminoacids: peptides and proteins."
+msgstr ""
+
+#. Facet: culture, short desc
+#: files/debtags/vocabulary
+msgid "Culture"
+msgstr ""
+
+#. Facet: culture, long desc
+#: files/debtags/vocabulary
+msgid " The culture for which the package provides special support"
+msgstr ""
+
+#. Tag: culture::afrikaans, short desc
+#: files/debtags/vocabulary
+msgid "Afrikaans"
+msgstr ""
+
+#. Tag: culture::arabic, short desc
+#: files/debtags/vocabulary
+msgid "Arabic"
+msgstr ""
+
+#. Tag: culture::basque, short desc
+#: files/debtags/vocabulary
+msgid "Basque"
+msgstr ""
+
+#. Tag: culture::bengali, short desc
+#: files/debtags/vocabulary
+msgid "Bengali"
+msgstr ""
+
+#. Tag: culture::bokmaal, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Bokmaal"
+msgstr ""
+
+#. Tag: culture::bosnian, short desc
+#: files/debtags/vocabulary
+msgid "Bosnian"
+msgstr ""
+
+#. Tag: culture::brazilian, short desc
+#: files/debtags/vocabulary
+msgid "Brazilian"
+msgstr ""
+
+#. Tag: culture::bulgarian, short desc
+#: files/debtags/vocabulary
+msgid "Bulgarian"
+msgstr ""
+
+#. Tag: culture::catalan, short desc
+#: files/debtags/vocabulary
+msgid "Catalan"
+msgstr ""
+
+#. Tag: culture::chinese, short desc
+#: files/debtags/vocabulary
+msgid "Chinese"
+msgstr ""
+
+#. Tag: culture::czech, short desc
+#: files/debtags/vocabulary
+msgid "Czech"
+msgstr ""
+
+#. Tag: culture::croatian, short desc
+#: files/debtags/vocabulary
+msgid "Croatian"
+msgstr ""
+
+#. Tag: culture::danish, short desc
+#: files/debtags/vocabulary
+msgid "Danish"
+msgstr ""
+
+#. Tag: culture::dutch, short desc
+#: files/debtags/vocabulary
+msgid "Dutch"
+msgstr ""
+
+#. Tag: culture::esperanto, short desc
+#: files/debtags/vocabulary
+msgid "Esperanto"
+msgstr ""
+
+#. Tag: culture::estonian, short desc
+#: files/debtags/vocabulary
+msgid "Estonian"
+msgstr ""
+
+#. Tag: culture::faroese, short desc
+#: files/debtags/vocabulary
+msgid "Faroese"
+msgstr ""
+
+#. Tag: culture::farsi, short desc
+#: files/debtags/vocabulary
+msgid "Farsi"
+msgstr ""
+
+#. Tag: culture::finnish, short desc
+#: files/debtags/vocabulary
+msgid "Finnish"
+msgstr ""
+
+#. Tag: culture::french, short desc
+#: files/debtags/vocabulary
+msgid "French"
+msgstr ""
+
+#. Tag: culture::german, short desc
+#: files/debtags/vocabulary
+msgid "German"
+msgstr ""
+
+#. Tag: culture::greek, short desc
+#: files/debtags/vocabulary
+msgid "Greek"
+msgstr ""
+
+#. Tag: culture::hebrew, short desc
+#: files/debtags/vocabulary
+msgid "Hebrew"
+msgstr ""
+
+#. Tag: culture::hindi, short desc
+#: files/debtags/vocabulary
+msgid "Hindi"
+msgstr ""
+
+#. Tag: culture::hungarian, short desc
+#: files/debtags/vocabulary
+msgid "Hungarian"
+msgstr ""
+
+#. Tag: culture::icelandic, short desc
+#: files/debtags/vocabulary
+msgid "Icelandic"
+msgstr ""
+
+#. Tag: culture::irish, short desc
+#: files/debtags/vocabulary
+msgid "Irish (Gaeilge)"
+msgstr ""
+
+#. Tag: culture::italian, short desc
+#: files/debtags/vocabulary
+msgid "Italian"
+msgstr ""
+
+#. Tag: culture::japanese, short desc
+#: files/debtags/vocabulary
+msgid "Japanese"
+msgstr ""
+
+#. Tag: culture::korean, short desc
+#: files/debtags/vocabulary
+msgid "Korean"
+msgstr ""
+
+#. Tag: culture::mongolian, short desc
+#: files/debtags/vocabulary
+msgid "Mongolian"
+msgstr ""
+
+#. Tag: culture::nynorsk, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Nynorsk"
+msgstr ""
+
+#. Tag: culture::norwegian, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian"
+msgstr ""
+
+#. Tag: culture::polish, short desc
+#: files/debtags/vocabulary
+msgid "Polish"
+msgstr ""
+
+#. Tag: culture::portuguese, short desc
+#: files/debtags/vocabulary
+msgid "Portuguese"
+msgstr ""
+
+#. Tag: culture::punjabi, short desc
+#: files/debtags/vocabulary
+msgid "Punjabi"
+msgstr ""
+
+#. Tag: culture::romanian, short desc
+#: files/debtags/vocabulary
+msgid "Romanian"
+msgstr ""
+
+#. Tag: culture::russian, short desc
+#: files/debtags/vocabulary
+msgid "Russian"
+msgstr ""
+
+#. Tag: culture::serbian, short desc
+#: files/debtags/vocabulary
+msgid "Serbian"
+msgstr ""
+
+#. Tag: culture::slovak, short desc
+#: files/debtags/vocabulary
+msgid "Slovak"
+msgstr ""
+
+#. Tag: culture::spanish, short desc
+#: files/debtags/vocabulary
+msgid "Spanish"
+msgstr ""
+
+#. Tag: culture::swedish, short desc
+#: files/debtags/vocabulary
+msgid "Swedish"
+msgstr ""
+
+#. Tag: culture::taiwanese, short desc
+#: files/debtags/vocabulary
+msgid "Taiwanese"
+msgstr ""
+
+#. Tag: culture::tajik, short desc
+#: files/debtags/vocabulary
+msgid "Tajik"
+msgstr ""
+
+#. Tag: culture::tamil, short desc
+#: files/debtags/vocabulary
+msgid "Tamil"
+msgstr ""
+
+#. Tag: culture::thai, short desc
+#: files/debtags/vocabulary
+msgid "Thai"
+msgstr ""
+
+#. Tag: culture::turkish, short desc
+#: files/debtags/vocabulary
+msgid "Turkish"
+msgstr ""
+
+#. Tag: culture::ukrainian, short desc
+#: files/debtags/vocabulary
+msgid "Ukrainian"
+msgstr ""
+
+#. Tag: culture::uzbek, short desc
+#: files/debtags/vocabulary
+msgid "Uzbek"
+msgstr ""
+
+#. Tag: culture::welsh, short desc
+#: files/debtags/vocabulary
+msgid "Welsh"
+msgstr ""
+
+#. Facet: devel, short desc
+#: files/debtags/vocabulary
+msgid "Software Development"
+msgstr ""
+
+#. Tag: devel::bugtracker, short desc
+#: files/debtags/vocabulary
+msgid "Bug Tracking"
+msgstr ""
+
+#. Tag: devel::buildtools, short desc
+#: files/debtags/vocabulary
+msgid "Build Tool"
+msgstr ""
+
+#. Tag: devel::code-generator, short desc
+#: files/debtags/vocabulary
+msgid "Code Generation"
+msgstr ""
+
+#. Tag: devel::code-generator, long desc
+#: files/debtags/vocabulary
+msgid " Parser, lexer and other code generators"
+msgstr ""
+
+#. Tag: devel::compiler, short desc
+#: files/debtags/vocabulary
+msgid "Compiler"
+msgstr ""
+
+#. Tag: devel::debian, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::debian, short desc
+#: files/debtags/vocabulary
+msgid "Debian"
+msgstr ""
+
+#. Tag: devel::debian, long desc
+#: files/debtags/vocabulary
+msgid " Tools, documentation, etc. of use primarily to Debian developers."
+msgstr ""
+
+#. Tag: devel::debugger, short desc
+#: files/debtags/vocabulary
+msgid "Debugging"
+msgstr ""
+
+#. Tag: devel::doc, short desc
+#: files/debtags/vocabulary
+#. Tag: role::documentation, short desc
+#: files/debtags/vocabulary
+msgid "Documentation"
+msgstr ""
+
+#. Tag: devel::docsystem, short desc
+#: files/debtags/vocabulary
+msgid "Literate Programming"
+msgstr ""
+
+#. Tag: devel::docsystem, long desc
+#: files/debtags/vocabulary
+msgid " Tools and auto-documenters"
+msgstr ""
+
+#. Tag: devel::ecma-cli, short desc
+#: files/debtags/vocabulary
+msgid "ECMA CLI"
+msgstr ""
+
+#. Tag: devel::ecma-cli, long desc
+#: files/debtags/vocabulary
+msgid " Tools and libraries for development with implementations of \n the ECMA CLI (Common Language Infrastructure), like Mono\n or DotGNU Portable.NET."
+msgstr ""
+
+#. Tag: devel::editor, short desc
+#: files/debtags/vocabulary
+msgid "Source Editor"
+msgstr ""
+
+#. Tag: devel::examples, short desc
+#: files/debtags/vocabulary
+msgid "Examples"
+msgstr ""
+
+#. Tag: devel::ide, short desc
+#: files/debtags/vocabulary
+msgid "IDE"
+msgstr ""
+
+#. Tag: devel::ide, long desc
+#: files/debtags/vocabulary
+msgid " Integrated Development Environment"
+msgstr ""
+
+#. Tag: devel::interpreter, short desc
+#: files/debtags/vocabulary
+msgid "Interpreter"
+msgstr ""
+
+#. Tag: devel::i18n, short desc
+#: files/debtags/vocabulary
+msgid "Internationalization"
+msgstr ""
+
+#. Tag: devel::lang:ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada Development"
+msgstr ""
+
+#. Tag: devel::lang:c, short desc
+#: files/debtags/vocabulary
+msgid "C Development"
+msgstr ""
+
+#. Tag: devel::lang:c++, short desc
+#: files/debtags/vocabulary
+msgid "C++ Development"
+msgstr ""
+
+#. Tag: devel::lang:c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C# Development"
+msgstr ""
+
+#. Tag: devel::lang:fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran Development"
+msgstr ""
+
+#. Tag: devel::lang:haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell Development"
+msgstr ""
+
+#. Tag: devel::lang:java, short desc
+#: files/debtags/vocabulary
+msgid "Java Development"
+msgstr ""
+
+#. Tag: devel::lang:ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/JavaScript Development"
+msgstr ""
+
+#. Tag: devel::lang:lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp Development"
+msgstr ""
+
+#. Tag: devel::lang:lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua Development"
+msgstr ""
+
+#. Tag: devel::lang:ml, short desc
+#: files/debtags/vocabulary
+msgid "ML Development"
+msgstr ""
+
+#. Tag: devel::lang:objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective-C Development"
+msgstr ""
+
+#. Tag: devel::lang:ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml Development"
+msgstr ""
+
+#. Tag: devel::lang:octave, short desc
+#: files/debtags/vocabulary
+msgid "GNU Octave Development"
+msgstr ""
+
+#. Tag: devel::lang:pascal, short desc
+#: files/debtags/vocabulary
+msgid "Pascal Development"
+msgstr ""
+
+#. Tag: devel::lang:perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl Development"
+msgstr ""
+
+#. Tag: devel::lang:php, short desc
+#: files/debtags/vocabulary
+msgid "PHP Development"
+msgstr ""
+
+#. Tag: devel::lang:pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike Development"
+msgstr ""
+
+#. Tag: devel::lang:prolog, short desc
+#: files/debtags/vocabulary
+msgid "Prolog Development"
+msgstr ""
+
+#. Tag: devel::lang:python, short desc
+#: files/debtags/vocabulary
+msgid "Python Development"
+msgstr ""
+
+#. Tag: devel::lang:r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R Development"
+msgstr ""
+
+#. Tag: devel::lang:ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby Development"
+msgstr ""
+
+#. Tag: devel::lang:scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme Development"
+msgstr ""
+
+#. Tag: devel::lang:sql, short desc
+#: files/debtags/vocabulary
+msgid "SQL"
+msgstr ""
+
+#. Tag: devel::lang:tcl, short desc
+#: files/debtags/vocabulary
+msgid "Tcl Development"
+msgstr ""
+
+#. Tag: devel::library, short desc
+#: files/debtags/vocabulary
+msgid "Libraries"
+msgstr ""
+
+#. Tag: devel::machinecode, short desc
+#: files/debtags/vocabulary
+msgid "Machine Code"
+msgstr ""
+
+#. Tag: devel::machinecode, long desc
+#: files/debtags/vocabulary
+msgid " Assemblers and other machine-code development tools."
+msgstr ""
+
+#. Tag: devel::modelling, short desc
+#: files/debtags/vocabulary
+msgid "Modelling"
+msgstr ""
+
+#. Tag: devel::modelling, long desc
+#: files/debtags/vocabulary
+msgid " Programs and libraries that support creation of software models\n with modelling languages like UML or OCL."
+msgstr ""
+
+#. Tag: devel::packaging, short desc
+#: files/debtags/vocabulary
+msgid "Packaging"
+msgstr ""
+
+#. Tag: devel::packaging, long desc
+#: files/debtags/vocabulary
+msgid " Tools for packaging software."
+msgstr ""
+
+#. Tag: devel::prettyprint, short desc
+#: files/debtags/vocabulary
+msgid "Prettyprint"
+msgstr ""
+
+#. Tag: devel::prettyprint, long desc
+#: files/debtags/vocabulary
+msgid " Code pretty-printing and indentation/reformatting."
+msgstr ""
+
+#. Tag: devel::profiler, short desc
+#: files/debtags/vocabulary
+msgid "Profiling"
+msgstr ""
+
+#. Tag: devel::profiler, long desc
+#: files/debtags/vocabulary
+msgid " Profiling and optimization tools."
+msgstr ""
+
+#. Tag: devel::rcs, short desc
+#: files/debtags/vocabulary
+msgid "Revision Control"
+msgstr ""
+
+#. Tag: devel::rcs, long desc
+#: files/debtags/vocabulary
+msgid " RCS (Revision Control System) and SCM (Software Configuration Manager)"
+msgstr ""
+
+#. Tag: devel::rpc, short desc
+#: files/debtags/vocabulary
+msgid "RPC"
+msgstr ""
+
+#. Tag: devel::rpc, long desc
+#: files/debtags/vocabulary
+msgid " Remote Procedure Call, Network transparent programming"
+msgstr ""
+
+#. Tag: devel::runtime, short desc
+#: files/debtags/vocabulary
+msgid "Runtime Support"
+msgstr ""
+
+#. Tag: devel::runtime, long desc
+#: files/debtags/vocabulary
+msgid " Runtime environments of various languages and systems."
+msgstr ""
+
+#. Tag: devel::testing-qa, short desc
+#: files/debtags/vocabulary
+msgid "Testing and QA"
+msgstr ""
+
+#. Tag: devel::testing-qa, long desc
+#: files/debtags/vocabulary
+msgid " Tools for software testing and quality assurance."
+msgstr ""
+
+#. Tag: devel::ui-builder, short desc
+#: files/debtags/vocabulary
+#. Facet: interface, short desc
+#: files/debtags/vocabulary
+msgid "User Interface"
+msgstr ""
+
+#. Tag: devel::ui-builder, long desc
+#: files/debtags/vocabulary
+msgid " Tools for designing user interfaces."
+msgstr ""
+
+#. Tag: devel::web, short desc
+#: files/debtags/vocabulary
+msgid "Web"
+msgstr ""
+
+#. Tag: devel::web, long desc
+#: files/debtags/vocabulary
+msgid " Web-centric frameworks, CGI libraries and other web-specific development\n tools."
+msgstr ""
+
+#. Tag: educational, short desc
+#: files/debtags/vocabulary
+msgid "[Edu] Educational Software"
+msgstr ""
+
+#. Facet: field, short desc
+#: files/debtags/vocabulary
+msgid "Field"
+msgstr ""
+
+#. Tag: field::arts, short desc
+#: files/debtags/vocabulary
+msgid "Arts"
+msgstr ""
+
+#. Tag: field::astronomy, short desc
+#: files/debtags/vocabulary
+msgid "Astronomy"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, short desc
+#: files/debtags/vocabulary
+msgid "Bioinformatics"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, long desc
+#: files/debtags/vocabulary
+msgid " Sequence analysis software."
+msgstr ""
+
+#. Tag: field::biology:molecular, short desc
+#: files/debtags/vocabulary
+msgid "Molecular biology"
+msgstr ""
+
+#. Tag: field::biology:molecular, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to molecular cloning and related wet biology."
+msgstr ""
+
+#. Tag: field::biology:structural, short desc
+#: files/debtags/vocabulary
+msgid "Structural biology"
+msgstr ""
+
+#. Tag: field::biology:structural, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to model tridimentional structures."
+msgstr ""
+
+#. Tag: field::chemistry, short desc
+#: files/debtags/vocabulary
+msgid "Chemistry"
+msgstr ""
+
+#. Tag: field::electronics, short desc
+#: files/debtags/vocabulary
+msgid "Electronics"
+msgstr ""
+
+#. Tag: field::electronics, long desc
+#: files/debtags/vocabulary
+msgid " Circuit editors and other electronics-related software"
+msgstr ""
+
+#. Tag: field::finance, short desc
+#: files/debtags/vocabulary
+msgid "Financial"
+msgstr ""
+
+#. Tag: field::finance, long desc
+#: files/debtags/vocabulary
+msgid " Accounting and financial software"
+msgstr ""
+
+#. Tag: field::genealogy, short desc
+#: files/debtags/vocabulary
+msgid "Genealogy"
+msgstr ""
+
+#. Tag: field::geography, short desc
+#: files/debtags/vocabulary
+msgid "Geography"
+msgstr ""
+
+#. Tag: field::geology, short desc
+#: files/debtags/vocabulary
+msgid "Geology"
+msgstr ""
+
+#. Tag: field::linguistics, short desc
+#: files/debtags/vocabulary
+msgid "Linguistics"
+msgstr ""
+
+#. Tag: field::mathematics, short desc
+#: files/debtags/vocabulary
+msgid "Mathematics"
+msgstr ""
+
+#. Tag: field::medicine, short desc
+#: files/debtags/vocabulary
+msgid "Medicine"
+msgstr ""
+
+#. Tag: field::medicine:imaging, short desc
+#: files/debtags/vocabulary
+msgid "Medical Imaging"
+msgstr ""
+
+#. Tag: field::physics, short desc
+#: files/debtags/vocabulary
+msgid "Physics"
+msgstr ""
+
+#. Tag: field::religion, short desc
+#: files/debtags/vocabulary
+msgid "Religion"
+msgstr ""
+
+#. Tag: field::statistics, short desc
+#: files/debtags/vocabulary
+msgid "Statistics"
+msgstr ""
+
+#. Facet: game, short desc
+#: files/debtags/vocabulary
+msgid "Games and Amusement"
+msgstr ""
+
+#. Tag: game::adventure, short desc
+#: files/debtags/vocabulary
+msgid "Adventure"
+msgstr ""
+
+#. Tag: game::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Action and Arcade"
+msgstr ""
+
+#. Tag: game::board, short desc
+#: files/debtags/vocabulary
+msgid "Board"
+msgstr ""
+
+#. Tag: game::board:chess, short desc
+#: files/debtags/vocabulary
+msgid "Chess"
+msgstr ""
+
+#. Tag: game::card, short desc
+#: files/debtags/vocabulary
+msgid "Card"
+msgstr ""
+
+#. Tag: game::demos, short desc
+#: files/debtags/vocabulary
+msgid "Demo"
+msgstr ""
+
+#. Tag: game::fps, short desc
+#: files/debtags/vocabulary
+msgid "First person shooter"
+msgstr ""
+
+#. Tag: game::mud, short desc
+#: files/debtags/vocabulary
+msgid "Multiplayer RPG"
+msgstr ""
+
+#. Tag: game::mud, long desc
+#: files/debtags/vocabulary
+msgid " MUDs, MOOs, and other multiplayer RPGs"
+msgstr ""
+
+#. Tag: game::platform, short desc
+#: files/debtags/vocabulary
+msgid "Platform"
+msgstr ""
+
+#. Tag: game::puzzle, short desc
+#: files/debtags/vocabulary
+msgid "Puzzle"
+msgstr ""
+
+#. Tag: game::rpg, short desc
+#: files/debtags/vocabulary
+msgid "Role-playing"
+msgstr ""
+
+#. Tag: game::rpg:rogue, short desc
+#: files/debtags/vocabulary
+msgid "Rogue-Like RPG"
+msgstr ""
+
+#. Tag: game::rpg:rogue, long desc
+#: files/debtags/vocabulary
+msgid " Games like Nethack, Angband etc."
+msgstr ""
+
+#. Tag: game::simulation, short desc
+#: files/debtags/vocabulary
+msgid "Simulation"
+msgstr ""
+
+#. Tag: game::sport, short desc
+#: files/debtags/vocabulary
+msgid "Sport games"
+msgstr ""
+
+#. Tag: game::sport:racing, short desc
+#: files/debtags/vocabulary
+msgid "Racing"
+msgstr ""
+
+#. Tag: game::strategy, short desc
+#: files/debtags/vocabulary
+msgid "Strategy"
+msgstr ""
+
+#. Tag: game::tetris, short desc
+#: files/debtags/vocabulary
+msgid "Tetris-like"
+msgstr ""
+
+#. Tag: game::toys, short desc
+#: files/debtags/vocabulary
+msgid "Toy or Gimmick"
+msgstr ""
+
+#. Tag: game::typing, short desc
+#: files/debtags/vocabulary
+msgid "Typing Tutor"
+msgstr ""
+
+#. Facet: hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Enablement"
+msgstr ""
+
+#. Tag: hardware::camera, short desc
+#: files/debtags/vocabulary
+msgid "Digital Camera"
+msgstr ""
+
+#. Tag: hardware::detection, short desc
+#: files/debtags/vocabulary
+msgid "Hardware detection"
+msgstr ""
+
+#. Tag: hardware::embedded, short desc
+#: files/debtags/vocabulary
+msgid "Embedded"
+msgstr ""
+
+#. Tag: hardware::emulation, short desc
+#: files/debtags/vocabulary
+msgid "Emulation"
+msgstr ""
+
+#. Tag: hardware::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Devices"
+msgstr ""
+
+#. Tag: hardware::input:joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick"
+msgstr ""
+
+#. Tag: hardware::input:keyboard, short desc
+#: files/debtags/vocabulary
+msgid "Keyboard"
+msgstr ""
+
+#. Tag: hardware::input:mouse, short desc
+#: files/debtags/vocabulary
+msgid "Mouse"
+msgstr ""
+
+#. Tag: hardware::joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick (legacy)"
+msgstr ""
+
+#. Tag: hardware::hamradio, short desc
+#: files/debtags/vocabulary
+msgid "Ham Radio"
+msgstr ""
+
+#. Tag: hardware::laptop, short desc
+#: files/debtags/vocabulary
+msgid "Laptop"
+msgstr ""
+
+#. Tag: hardware::modem, short desc
+#: files/debtags/vocabulary
+msgid "Modem"
+msgstr ""
+
+#. Tag: hardware::modem:dsl, short desc
+#: files/debtags/vocabulary
+msgid "xDSL Modem"
+msgstr ""
+
+#. Tag: hardware::opengl, short desc
+#: files/debtags/vocabulary
+msgid "Requires video hardware acceleration"
+msgstr ""
+
+#. Tag: hardware::power:ups, short desc
+#: files/debtags/vocabulary
+msgid "UPS"
+msgstr ""
+
+#. Tag: hardware::power:ups, long desc
+#: files/debtags/vocabulary
+msgid " Uninterruptible Power Supply"
+msgstr ""
+
+#. Tag: hardware::power:acpi, short desc
+#: files/debtags/vocabulary
+msgid "ACPI Power Management"
+msgstr ""
+
+#. Tag: hardware::power:apm, short desc
+#: files/debtags/vocabulary
+msgid "APM Power Management"
+msgstr ""
+
+#. Tag: hardware::printer, short desc
+#: files/debtags/vocabulary
+msgid "Printer"
+msgstr ""
+
+#. Tag: hardware::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Image-scanning hardware"
+msgstr ""
+
+#. Tag: hardware::storage, short desc
+#: files/debtags/vocabulary
+msgid "Storage"
+msgstr ""
+
+#. Tag: hardware::storage:cd, short desc
+#: files/debtags/vocabulary
+msgid "CD"
+msgstr ""
+
+#. Tag: hardware::storage:cd, long desc
+#: files/debtags/vocabulary
+msgid " Compact Disc"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, short desc
+#: files/debtags/vocabulary
+msgid "DVD"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, long desc
+#: files/debtags/vocabulary
+msgid " Digital Versatile Disc"
+msgstr ""
+
+#. Tag: hardware::storage:floppy, short desc
+#: files/debtags/vocabulary
+msgid "Floppy disk"
+msgstr ""
+
+#. Tag: hardware::usb, short desc
+#: files/debtags/vocabulary
+msgid "USB"
+msgstr ""
+
+#. Tag: hardware::usb, long desc
+#: files/debtags/vocabulary
+msgid " Universal Serial Bus"
+msgstr ""
+
+#. Tag: hardware::video, short desc
+#: files/debtags/vocabulary
+msgid "Graphics and Video"
+msgstr ""
+
+#. Facet: made-of, short desc
+#: files/debtags/vocabulary
+msgid "Made Of"
+msgstr ""
+
+#. Facet: made-of, long desc
+#: files/debtags/vocabulary
+msgid " The languages or data formats used to make the package"
+msgstr ""
+
+#. Tag: made-of::data:dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionary"
+msgstr ""
+
+#. Tag: made-of::data:font, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::font, short desc
+#: files/debtags/vocabulary
+msgid "Font"
+msgstr ""
+
+#. Tag: made-of::data:html, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::html, short desc
+#: files/debtags/vocabulary
+msgid "HTML Hypertext Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:icons, short desc
+#: files/debtags/vocabulary
+msgid "Icons"
+msgstr ""
+
+#. Tag: made-of::data:info, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::info, short desc
+#: files/debtags/vocabulary
+msgid "Documentation in Info format"
+msgstr ""
+
+#. Tag: made-of::data:man, short desc
+#: files/debtags/vocabulary
+msgid "Manuals in nroff format"
+msgstr ""
+
+#. Tag: made-of::data:pdf, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::pdf, short desc
+#: files/debtags/vocabulary
+msgid "PDF Documents"
+msgstr ""
+
+#. Tag: made-of::data:postscript, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::postscript, short desc
+#: files/debtags/vocabulary
+msgid "Postscript"
+msgstr ""
+
+#. Tag: made-of::data:sgml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::sgml, short desc
+#: files/debtags/vocabulary
+msgid "SGML, Standard Generalized Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:svg, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::svg, short desc
+#: files/debtags/vocabulary
+msgid "SVG, Scalable Vector Graphics"
+msgstr ""
+
+#. Tag: made-of::data:tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX, LaTeX and DVI"
+msgstr ""
+
+#. Tag: made-of::data:vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:xml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::xml, short desc
+#: files/debtags/vocabulary
+msgid "XML"
+msgstr ""
+
+#. Tag: interface::3d, short desc
+#: files/debtags/vocabulary
+msgid "Three-Dimensional"
+msgstr ""
+
+#. Tag: interface::commandline, short desc
+#: files/debtags/vocabulary
+msgid "Command Line"
+msgstr ""
+
+#. Tag: interface::daemon, short desc
+#: files/debtags/vocabulary
+msgid "Daemon"
+msgstr ""
+
+#. Tag: interface::daemon, long desc
+#: files/debtags/vocabulary
+msgid " Runs in background, only a control interface is provided, usually on\n commandline."
+msgstr ""
+
+#. Tag: interface::framebuffer, short desc
+#: files/debtags/vocabulary
+msgid "Framebuffer"
+msgstr ""
+
+#. Tag: interface::shell, short desc
+#: files/debtags/vocabulary
+msgid "Command Shell"
+msgstr ""
+
+#. Tag: interface::svga, short desc
+#: files/debtags/vocabulary
+msgid "Console SVGA"
+msgstr ""
+
+#. Tag: interface::text-mode, short desc
+#: files/debtags/vocabulary
+msgid "Text-based Interactive"
+msgstr ""
+
+#. Tag: interface::web, short desc
+#: files/debtags/vocabulary
+#. Facet: web, short desc
+#: files/debtags/vocabulary
+msgid "World Wide Web"
+msgstr ""
+
+#. Tag: interface::x11, short desc
+#: files/debtags/vocabulary
+msgid "X Window System"
+msgstr ""
+
+#. Facet: implemented-in, short desc
+#: files/debtags/vocabulary
+msgid "Implemented in"
+msgstr ""
+
+#. Tag: implemented-in::ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada"
+msgstr ""
+
+#. Tag: implemented-in::c, short desc
+#: files/debtags/vocabulary
+msgid "C"
+msgstr ""
+
+#. Tag: implemented-in::c++, short desc
+#: files/debtags/vocabulary
+msgid "C++"
+msgstr ""
+
+#. Tag: implemented-in::c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C#"
+msgstr ""
+
+#. Tag: implemented-in::fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran"
+msgstr ""
+
+#. Tag: implemented-in::haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell"
+msgstr ""
+
+#. Tag: implemented-in::java, short desc
+#: files/debtags/vocabulary
+msgid "Java"
+msgstr ""
+
+#. Tag: implemented-in::ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/Javascript"
+msgstr ""
+
+#. Tag: implemented-in::lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp"
+msgstr ""
+
+#. Tag: implemented-in::lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua"
+msgstr ""
+
+#. Tag: implemented-in::ml, short desc
+#: files/debtags/vocabulary
+msgid "ML"
+msgstr ""
+
+#. Tag: implemented-in::objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective C"
+msgstr ""
+
+#. Tag: implemented-in::ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml"
+msgstr ""
+
+#. Tag: implemented-in::perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl"
+msgstr ""
+
+#. Tag: implemented-in::php, short desc
+#: files/debtags/vocabulary
+msgid "PHP"
+msgstr ""
+
+#. Tag: implemented-in::pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike"
+msgstr ""
+
+#. Tag: implemented-in::python, short desc
+#: files/debtags/vocabulary
+msgid "Python"
+msgstr ""
+
+#. Tag: implemented-in::r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R"
+msgstr ""
+
+#. Tag: implemented-in::ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby"
+msgstr ""
+
+#. Tag: implemented-in::scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme"
+msgstr ""
+
+#. Tag: implemented-in::shell, short desc
+#: files/debtags/vocabulary
+msgid "sh, bash, ksh, tcsh and other shells"
+msgstr ""
+
+#. Tag: implemented-in::tcl, short desc
+#: files/debtags/vocabulary
+msgid "TCL Tool Command Language"
+msgstr ""
+
+#. Facet: junior, short desc
+#: files/debtags/vocabulary
+msgid "Junior Applications"
+msgstr ""
+
+#. Facet: junior, long desc
+#: files/debtags/vocabulary
+msgid " Applications recommended for younger users"
+msgstr ""
+
+#. Tag: junior::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Arcade games"
+msgstr ""
+
+#. Tag: junior::games-gl, short desc
+#: files/debtags/vocabulary
+msgid "3D games"
+msgstr ""
+
+#. Tag: junior::meta, short desc
+#: files/debtags/vocabulary
+msgid "Metapackages"
+msgstr ""
+
+#. Facet: mail, short desc
+#: files/debtags/vocabulary
+msgid "Electronic Mail"
+msgstr ""
+
+#. Tag: mail::filters, short desc
+#: files/debtags/vocabulary
+msgid "Filters"
+msgstr ""
+
+#. Tag: mail::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP Protocol"
+msgstr ""
+
+#. Tag: mail::list, short desc
+#: files/debtags/vocabulary
+msgid "Mailing Lists"
+msgstr ""
+
+#. Tag: mail::notification, short desc
+#: files/debtags/vocabulary
+msgid "Notification"
+msgstr ""
+
+#. Tag: mail::notification, long desc
+#: files/debtags/vocabulary
+msgid " Software that notifies users about status of mailbox."
+msgstr ""
+
+#. Tag: mail::pop, short desc
+#: files/debtags/vocabulary
+msgid "POP3 Protocol"
+msgstr ""
+
+#. Tag: mail::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP Protocol"
+msgstr ""
+
+#. Tag: mail::delivery-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Delivery Agent"
+msgstr ""
+
+#. Tag: mail::delivery-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that delivers mail to users' mailboxes."
+msgstr ""
+
+#. Tag: mail::transport-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Transport Agent"
+msgstr ""
+
+#. Tag: mail::transport-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that routes and transmits mail accross the system and the network."
+msgstr ""
+
+#. Tag: mail::user-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail user agent"
+msgstr ""
+
+#. Tag: mail::user-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that allows users to access e-mail."
+msgstr ""
+
+#. Facet: office, short desc
+#: files/debtags/vocabulary
+msgid "Office and business"
+msgstr ""
+
+#. Tag: office::finance, short desc
+#: files/debtags/vocabulary
+msgid "Finance"
+msgstr ""
+
+#. Tag: office::groupware, short desc
+#: files/debtags/vocabulary
+msgid "Groupware"
+msgstr ""
+
+#. Tag: office::presentation, short desc
+#: files/debtags/vocabulary
+msgid "Presentation"
+msgstr ""
+
+#. Tag: office::project-management, short desc
+#: files/debtags/vocabulary
+msgid "Project management"
+msgstr ""
+
+#. Tag: office::spreadsheet, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::spreadsheet, short desc
+#: files/debtags/vocabulary
+msgid "Spreadsheet"
+msgstr ""
+
+#. Facet: works-with, short desc
+#: files/debtags/vocabulary
+msgid "Works with"
+msgstr ""
+
+#. Facet: works-with, long desc
+#: files/debtags/vocabulary
+msgid " These tags describe what is the kind of data (or even processes, or people)\n that the package can work with."
+msgstr ""
+
+#. Tag: works-with::3dmodel, short desc
+#: files/debtags/vocabulary
+msgid "3D Model"
+msgstr ""
+
+#. Tag: works-with::archive, short desc
+#: files/debtags/vocabulary
+msgid "Archive"
+msgstr ""
+
+#. Tag: works-with::audio, short desc
+#: files/debtags/vocabulary
+msgid "Audio"
+msgstr ""
+
+#. Tag: works-with::bugs, short desc
+#: files/debtags/vocabulary
+msgid "Bugs or Issues"
+msgstr ""
+
+#. Tag: works-with::db, short desc
+#: files/debtags/vocabulary
+msgid "Databases"
+msgstr ""
+
+#. Tag: works-with::dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionaries"
+msgstr ""
+
+#. Tag: works-with::dtp, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Publishing (DTP)"
+msgstr ""
+
+#. Tag: works-with::fax, short desc
+#: files/debtags/vocabulary
+msgid "Faxes"
+msgstr ""
+
+#. Tag: works-with::file, short desc
+#: files/debtags/vocabulary
+msgid "Files"
+msgstr ""
+
+#. Tag: works-with::font, short desc
+#: files/debtags/vocabulary
+msgid "Fonts"
+msgstr ""
+
+#. Tag: works-with::im, short desc
+#: files/debtags/vocabulary
+msgid "Instant Messages"
+msgstr ""
+
+#. Tag: works-with::im, long desc
+#: files/debtags/vocabulary
+msgid " The package can connect to some IM network (or networks)."
+msgstr ""
+
+#. Tag: works-with::logfile, short desc
+#: files/debtags/vocabulary
+msgid "System Logs"
+msgstr ""
+
+#. Tag: works-with::mail, short desc
+#: files/debtags/vocabulary
+msgid "Email"
+msgstr ""
+
+#. Tag: works-with::music-notation, short desc
+#: files/debtags/vocabulary
+msgid "Music Notation"
+msgstr ""
+
+#. Tag: works-with::network-traffic, short desc
+#: files/debtags/vocabulary
+msgid "Network traffic"
+msgstr ""
+
+#. Tag: works-with::network-traffic, long desc
+#: files/debtags/vocabulary
+msgid " Routers, shapers, sniffers, firewalls and other tools\n that work with a stream of network packets."
+msgstr ""
+
+#. Tag: works-with::people, short desc
+#: files/debtags/vocabulary
+msgid "People"
+msgstr ""
+
+#. Tag: works-with::pim, short desc
+#: files/debtags/vocabulary
+msgid "Personal Information"
+msgstr ""
+
+#. Tag: works-with::image, short desc
+#: files/debtags/vocabulary
+msgid "Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, short desc
+#: files/debtags/vocabulary
+msgid "Raster Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, long desc
+#: files/debtags/vocabulary
+msgid " Images made of dots, such as photos and scans"
+msgstr ""
+
+#. Tag: works-with::image:vector, short desc
+#: files/debtags/vocabulary
+msgid "Vector Image"
+msgstr ""
+
+#. Tag: works-with::image:vector, long desc
+#: files/debtags/vocabulary
+msgid " Images made of lines, such as graphs or most clipart"
+msgstr ""
+
+#. Tag: works-with::software:package, short desc
+#: files/debtags/vocabulary
+msgid "Packaged software"
+msgstr ""
+
+#. Tag: works-with::software:running, short desc
+#: files/debtags/vocabulary
+msgid "Running programs"
+msgstr ""
+
+#. Tag: works-with::software:source, short desc
+#: files/debtags/vocabulary
+msgid "Source code"
+msgstr ""
+
+#. Tag: works-with::text, short desc
+#: files/debtags/vocabulary
+msgid "Text"
+msgstr ""
+
+#. Tag: works-with::unicode, short desc
+#: files/debtags/vocabulary
+msgid "Unicode"
+msgstr ""
+
+#. Tag: works-with::unicode, long desc
+#: files/debtags/vocabulary
+msgid " Please do not tag programs with simple unicode support,\n doing so would make this tag useless.\n Ultimately all applications should have unicode support."
+msgstr ""
+
+#. Tag: works-with::video, short desc
+#: files/debtags/vocabulary
+msgid "Video and Animation"
+msgstr ""
+
+#. Facet: works-with-format, short desc
+#: files/debtags/vocabulary
+msgid "Supports Format"
+msgstr ""
+
+#. Tag: works-with-format::bib, short desc
+#: files/debtags/vocabulary
+msgid "BibTeX"
+msgstr ""
+
+#. Tag: works-with-format::bib, long desc
+#: files/debtags/vocabulary
+msgid " BibTeX list of references"
+msgstr ""
+
+#. Tag: works-with-format::dvi, short desc
+#: files/debtags/vocabulary
+msgid "TeX DVI"
+msgstr ""
+
+#. Tag: works-with-format::dvi, long desc
+#: files/debtags/vocabulary
+msgid " DeVice Independent page description file, usually generated\n by TeX or LaTeX."
+msgstr ""
+
+#. Tag: works-with-format::ldif, short desc
+#: files/debtags/vocabulary
+msgid "LDIF"
+msgstr ""
+
+#. Tag: works-with-format::ldif, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML 3D Model"
+msgstr ""
+
+#. Tag: works-with-format::vrml, long desc
+#: files/debtags/vocabulary
+msgid " Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: works-with-format::iso9660, short desc
+#: files/debtags/vocabulary
+msgid "ISO 9660 CD Filesystem"
+msgstr ""
+
+#. Tag: works-with-format::tar, short desc
+#: files/debtags/vocabulary
+msgid "Tar Archives"
+msgstr ""
+
+#. Tag: works-with-format::zip, short desc
+#: files/debtags/vocabulary
+msgid "Zip Archives"
+msgstr ""
+
+#. Tag: works-with-format::mp3, short desc
+#: files/debtags/vocabulary
+msgid "MP3 Audio"
+msgstr ""
+
+#. Tag: works-with-format::mpc, short desc
+#: files/debtags/vocabulary
+msgid "Musepack Audio"
+msgstr ""
+
+#. Tag: works-with-format::oggvorbis, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Vorbis Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, short desc
+#: files/debtags/vocabulary
+msgid "MS RIFF Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, long desc
+#: files/debtags/vocabulary
+msgid " Wave uncompressed audio format"
+msgstr ""
+
+#. Tag: works-with-format::jpg, short desc
+#: files/debtags/vocabulary
+msgid "JPEG, Joint Picture Expert Group"
+msgstr ""
+
+#. Tag: works-with-format::gif, short desc
+#: files/debtags/vocabulary
+msgid "GIF, Graphics Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::odf, short desc
+#: files/debtags/vocabulary
+msgid "ODF, Open Document Format"
+msgstr ""
+
+#. Tag: works-with-format::png, short desc
+#: files/debtags/vocabulary
+msgid "PNG, Portable Network Graphics"
+msgstr ""
+
+#. Tag: works-with-format::swf, short desc
+#: files/debtags/vocabulary
+msgid "SWF, ShockWave Flash"
+msgstr ""
+
+#. Tag: works-with-format::tiff, short desc
+#: files/debtags/vocabulary
+msgid "TIFF, Tagged Image File Format"
+msgstr ""
+
+#. Tag: works-with-format::docbook, short desc
+#: files/debtags/vocabulary
+msgid "Docbook"
+msgstr ""
+
+#. Tag: works-with-format::man, short desc
+#: files/debtags/vocabulary
+msgid "Manpages"
+msgstr ""
+
+#. Tag: works-with-format::plaintext, short desc
+#: files/debtags/vocabulary
+msgid "Plain text"
+msgstr ""
+
+#. Tag: works-with-format::tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX and LaTeX"
+msgstr ""
+
+#. Tag: works-with-format::oggtheora, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Theora Video"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, short desc
+#: files/debtags/vocabulary
+msgid "RSS Rich Site Summary"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, long desc
+#: files/debtags/vocabulary
+msgid " XML dialect used to describe resources and websites."
+msgstr ""
+
+#. Tag: works-with-format::xml:xslt, short desc
+#: files/debtags/vocabulary
+msgid "XSL Transformations (XSLT)"
+msgstr ""
+
+#. Facet: scope, short desc
+#: files/debtags/vocabulary
+msgid "Scope"
+msgstr ""
+
+#. Tag: scope::utility, short desc
+#: files/debtags/vocabulary
+msgid "Utility"
+msgstr ""
+
+#. Tag: scope::utility, long desc
+#: files/debtags/vocabulary
+msgid " A narrow-scoped program for particular use case or few use cases. It\n only does something 10-20% of users in the field will need. Often has\n functionality missing from related applications."
+msgstr ""
+
+#. Tag: scope::application, short desc
+#: files/debtags/vocabulary
+#. Tag: web::application, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::application, short desc
+#: files/debtags/vocabulary
+msgid "Application"
+msgstr ""
+
+#. Tag: scope::application, long desc
+#: files/debtags/vocabulary
+msgid " Broad-scoped program for general use. It probably has functionality\n for 80-90% of use cases. The pieces that remain are usually to be\n found as utilities."
+msgstr ""
+
+#. Tag: scope::suite, short desc
+#: files/debtags/vocabulary
+msgid "Suite"
+msgstr ""
+
+#. Tag: scope::suite, long desc
+#: files/debtags/vocabulary
+msgid " Comprehensive suite of applications and utilities on the scale of\n desktop environment or base operating system."
+msgstr ""
+
+#. Facet: role, short desc
+#: files/debtags/vocabulary
+msgid "Role"
+msgstr ""
+
+#. Tag: role::program, short desc
+#: files/debtags/vocabulary
+msgid "Program"
+msgstr ""
+
+#. Tag: role::program, long desc
+#: files/debtags/vocabulary
+msgid " Executable computer program."
+msgstr ""
+
+#. Tag: role::shared-lib, short desc
+#: files/debtags/vocabulary
+msgid "Shared Library"
+msgstr ""
+
+#. Tag: role::shared-lib, long desc
+#: files/debtags/vocabulary
+msgid " Shared libraries used by one or more programs."
+msgstr ""
+
+#. Tag: role::plugin, short desc
+#: files/debtags/vocabulary
+msgid "Plugin"
+msgstr ""
+
+#. Tag: role::plugin, long desc
+#: files/debtags/vocabulary
+msgid " Add-on, pluggable program fragments enhancing functionality\n of some program or system."
+msgstr ""
+
+#. Tag: role::debug-symbols, short desc
+#: files/debtags/vocabulary
+msgid "Debugging symbols"
+msgstr ""
+
+#. Tag: role::debug-symbols, long desc
+#: files/debtags/vocabulary
+msgid " Debugging symbols."
+msgstr ""
+
+#. Tag: role::devel-lib, short desc
+#: files/debtags/vocabulary
+msgid "Development Library"
+msgstr ""
+
+#. Tag: role::devel-lib, long desc
+#: files/debtags/vocabulary
+msgid " Library and header files used in software development or building."
+msgstr ""
+
+#. Tag: role::source, short desc
+#: files/debtags/vocabulary
+msgid "Source Code"
+msgstr ""
+
+#. Tag: role::source, long desc
+#: files/debtags/vocabulary
+msgid " Human-readable code of a program, library or a part thereof."
+msgstr ""
+
+#. Tag: role::data, short desc
+#: files/debtags/vocabulary
+msgid "Standalone Data"
+msgstr ""
+
+#. Tag: role::app-data, short desc
+#: files/debtags/vocabulary
+msgid "Application Data"
+msgstr ""
+
+#. Tag: role::metapackage, short desc
+#: files/debtags/vocabulary
+msgid "Metapackage"
+msgstr ""
+
+#. Tag: role::metapackage, long desc
+#: files/debtags/vocabulary
+msgid " Packages that install suites of other packages."
+msgstr ""
+
+#. Facet: security, short desc
+#: files/debtags/vocabulary
+msgid "Security"
+msgstr ""
+
+#. Facet: security, long desc
+#: files/debtags/vocabulary
+msgid " How the package is related to system security"
+msgstr ""
+
+#. Tag: security::antivirus, short desc
+#: files/debtags/vocabulary
+msgid "Anti-Virus"
+msgstr ""
+
+#. Tag: security::authentication, short desc
+#: files/debtags/vocabulary
+msgid "Authentication"
+msgstr ""
+
+#. Tag: security::cryptography, short desc
+#: files/debtags/vocabulary
+msgid "Cryptography"
+msgstr ""
+
+#. Tag: security::cryptography, long desc
+#: files/debtags/vocabulary
+msgid " Cryptographic and privacy-oriented tools."
+msgstr ""
+
+#. Tag: security::firewall, short desc
+#: files/debtags/vocabulary
+#. Tag: network::firewall, short desc
+#: files/debtags/vocabulary
+msgid "Firewall"
+msgstr ""
+
+#. Tag: security::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics"
+msgstr ""
+
+#. Tag: security::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Post-mortem analysis of intrusions."
+msgstr ""
+
+#. Tag: security::ids, short desc
+#: files/debtags/vocabulary
+msgid "Intrusion Detection"
+msgstr ""
+
+#. Tag: security::integrity, short desc
+#: files/debtags/vocabulary
+msgid "File Integrity"
+msgstr ""
+
+#. Tag: security::integrity, long desc
+#: files/debtags/vocabulary
+msgid " Tools to monitor system for changes in filesystem and report changes\n or tools providing other means to check system integrity."
+msgstr ""
+
+#. Tag: security::log-analyzer, short desc
+#: files/debtags/vocabulary
+msgid "Log Analyzer"
+msgstr ""
+
+#. Tag: security::privacy, short desc
+#: files/debtags/vocabulary
+msgid "Privacy"
+msgstr ""
+
+#. Facet: sound, short desc
+#: files/debtags/vocabulary
+msgid "Sound and Music"
+msgstr ""
+
+#. Tag: sound::compression, short desc
+#: files/debtags/vocabulary
+msgid "Compression"
+msgstr ""
+
+#. Tag: sound::midi, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Software"
+msgstr ""
+
+#. Tag: sound::mixer, short desc
+#: files/debtags/vocabulary
+msgid "Mixing"
+msgstr ""
+
+#. Tag: sound::player, short desc
+#: files/debtags/vocabulary
+msgid "Playback"
+msgstr ""
+
+#. Tag: sound::recorder, short desc
+#: files/debtags/vocabulary
+msgid "Recording"
+msgstr ""
+
+#. Tag: sound::sequencer, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Sequencing"
+msgstr ""
+
+#. Facet: special, short desc
+#: files/debtags/vocabulary
+msgid "Service tags"
+msgstr ""
+
+#. Tag: special::auto-inst-parts, short desc
+#: files/debtags/vocabulary
+msgid "Secondary packages users won't install directly"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, short desc
+#: files/debtags/vocabulary
+msgid "NO IPv6 support"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, long desc
+#: files/debtags/vocabulary
+msgid " Use this for packages that cannot yet or will never support IPv6."
+msgstr ""
+
+#. Tag: special::obsolete, short desc
+#: files/debtags/vocabulary
+msgid "Obsolete Packages"
+msgstr ""
+
+#. Tag: special::obsolete, long desc
+#: files/debtags/vocabulary
+msgid " Packages that are not used any longer, also packages only left for upgrade\n purposes (merged / split packages)"
+msgstr ""
+
+#. Tag: special::invalid-tag, short desc
+#: files/debtags/vocabulary
+msgid "Invalid tag"
+msgstr ""
+
+#. Tag: special::invalid-tag, long desc
+#: files/debtags/vocabulary
+msgid " This tag means that the tag database contains a tag which is not present in\n the tag vocabulary.  The presence of this tag indicates a software bug: this\n should never show up."
+msgstr ""
+
+#. Tag: special::not-yet-tagged, short desc
+#: files/debtags/vocabulary
+msgid "!Not yet tagged packages!"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::a, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with a"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::b, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with b"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::c, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with c"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::d, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with d"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::e, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with e"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::f, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with f"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::g, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with g"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::h, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with h"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::i, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with i"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::j, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with j"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::k, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with k"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::l, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with l"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::m, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with m"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::n, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with n"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::o, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with o"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::p, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with p"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::q, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with q"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::r, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with r"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::s, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with s"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::t, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with t"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::u, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with u"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::v, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with v"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::w, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with w"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::x, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with x"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::y, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with y"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::z, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with z"
+msgstr ""
+
+#. Facet: suite, short desc
+#: files/debtags/vocabulary
+msgid "Application Suite"
+msgstr ""
+
+#. Tag: suite::apache, short desc
+#: files/debtags/vocabulary
+msgid "Apache"
+msgstr ""
+
+#. Tag: suite::eclipse, short desc
+#: files/debtags/vocabulary
+msgid "Eclipse"
+msgstr ""
+
+#. Tag: suite::eclipse, long desc
+#: files/debtags/vocabulary
+msgid " Eclipse tool platform and plugins."
+msgstr ""
+
+#. Tag: suite::emacs, short desc
+#: files/debtags/vocabulary
+msgid "Emacs"
+msgstr ""
+
+#. Tag: suite::gforge, short desc
+#: files/debtags/vocabulary
+msgid "GForge"
+msgstr ""
+
+#. Tag: suite::gforge, long desc
+#: files/debtags/vocabulary
+msgid " A collaborative development platform."
+msgstr ""
+
+#. Tag: suite::gimp, short desc
+#: files/debtags/vocabulary
+msgid "The GIMP"
+msgstr ""
+
+#. Tag: suite::gkrellm, short desc
+#: files/debtags/vocabulary
+msgid "GKrellM Monitors"
+msgstr ""
+
+#. Tag: suite::gnome, short desc
+#: files/debtags/vocabulary
+msgid "GNOME"
+msgstr ""
+
+#. Tag: suite::gnu, short desc
+#: files/debtags/vocabulary
+msgid "GNU"
+msgstr ""
+
+#. Tag: suite::gnu, long desc
+#: files/debtags/vocabulary
+msgid " Gnu's Not Unix. The package is part of the official GNU project"
+msgstr ""
+
+#. Tag: suite::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUStep"
+msgstr ""
+
+#. Tag: suite::gnustep, long desc
+#: files/debtags/vocabulary
+msgid "  GNUStep Desktop and WindowMaker"
+msgstr ""
+
+#. Tag: suite::gpe, short desc
+#: files/debtags/vocabulary
+msgid "GPE"
+msgstr ""
+
+#. Tag: suite::gpe, long desc
+#: files/debtags/vocabulary
+msgid "  GPE Palmtop Environment"
+msgstr ""
+
+#. Tag: suite::kde, short desc
+#: files/debtags/vocabulary
+msgid "KDE"
+msgstr ""
+
+#. Tag: suite::mozilla, short desc
+#: files/debtags/vocabulary
+msgid "Mozilla"
+msgstr ""
+
+#. Tag: suite::mozilla, long desc
+#: files/debtags/vocabulary
+msgid " Mozilla Browser and extensions"
+msgstr ""
+
+#. Tag: suite::netscape, short desc
+#: files/debtags/vocabulary
+msgid "Netscape Navigator"
+msgstr ""
+
+#. Tag: suite::netscape, long desc
+#: files/debtags/vocabulary
+msgid " The pre-6.0 versions of netscape browser"
+msgstr ""
+
+#. Tag: suite::openoffice, short desc
+#: files/debtags/vocabulary
+msgid "OpenOffice.org"
+msgstr ""
+
+#. Tag: suite::opie, short desc
+#: files/debtags/vocabulary
+msgid "Open Palmtop (OPIE)"
+msgstr ""
+
+#. Tag: suite::roxen, short desc
+#: files/debtags/vocabulary
+msgid "Roxen"
+msgstr ""
+
+#. Tag: suite::samba, short desc
+#: files/debtags/vocabulary
+msgid "SAMBA"
+msgstr ""
+
+#. Tag: suite::webmin, short desc
+#: files/debtags/vocabulary
+msgid "Webmin"
+msgstr ""
+
+#. Tag: suite::xfce, short desc
+#: files/debtags/vocabulary
+msgid "XFce"
+msgstr ""
+
+#. Tag: suite::xfce, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight desktop environment for X11."
+msgstr ""
+
+#. Tag: suite::xmms, short desc
+#: files/debtags/vocabulary
+msgid "XMMS"
+msgstr ""
+
+#. Tag: suite::xmms2, short desc
+#: files/debtags/vocabulary
+msgid "XMMS 2"
+msgstr ""
+
+#. Tag: suite::zope, short desc
+#: files/debtags/vocabulary
+msgid "ZOPE"
+msgstr ""
+
+#. Tag: suite::zope, long desc
+#: files/debtags/vocabulary
+msgid " The zope (web) publishing platform."
+msgstr ""
+
+#. Facet: protocol, short desc
+#: files/debtags/vocabulary
+msgid "Network Protocol"
+msgstr ""
+
+#. Tag: protocol::db:mysql, short desc
+#: files/debtags/vocabulary
+msgid "MySQL"
+msgstr ""
+
+#. Tag: protocol::db:mysql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing MySQL database server."
+msgstr ""
+
+#. Tag: protocol::db:psql, short desc
+#: files/debtags/vocabulary
+msgid "PostgreSQL"
+msgstr ""
+
+#. Tag: protocol::db:psql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing PostgreSQL database server."
+msgstr ""
+
+#. Tag: protocol::ldap, short desc
+#: files/debtags/vocabulary
+msgid "LDAP"
+msgstr ""
+
+#. Tag: protocol::ldap, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Access Protocol"
+msgstr ""
+
+#. Tag: protocol::atm, short desc
+#: files/debtags/vocabulary
+msgid "ATM"
+msgstr ""
+
+#. Tag: protocol::atm, long desc
+#: files/debtags/vocabulary
+msgid " Asynchronous Transfer Mode, a high speed protocol for communication between\n computers in a network.\n .\n While ATM is used to implement *DSL networks, it has never gained widespread\n use as a technology for building local area networks (LANs), for which it was\n originally intended.\n .\n Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode"
+msgstr ""
+
+#. Tag: protocol::bittorrent, short desc
+#: files/debtags/vocabulary
+msgid "BitTorrent"
+msgstr ""
+
+#. Tag: protocol::bittorrent, long desc
+#: files/debtags/vocabulary
+msgid " BitTorrent is a protocol for peer-to-peer based file distribution over\n network.\n .\n Although the actual data transport happens between BitTorrent clients, one\n central node, the so-called trackers, is needed to keep a list of all clients\n that download or provide the same file.\n .\n Link: http://www.bittorrent.com/\n Link: http://en.wikipedia.org/wiki/BitTorrent"
+msgstr ""
+
+#. Tag: protocol::corba, short desc
+#: files/debtags/vocabulary
+msgid "CORBA"
+msgstr ""
+
+#. Tag: protocol::corba, long desc
+#: files/debtags/vocabulary
+msgid " Common Object Request Broker Architecture, a standard for interoperability\n between programs written in different languages and running on different \n hardware platforms. CORBA includes a client-server network protocol for\n distributed computing.\n .\n With this network protocol, CORBA clients on different computers and written\n in different languages can exchange objects over a CORBA server such as orbit2\n or omniORB.\n .\n Link: http://www.corba.org/"
+msgstr ""
+
+#. Tag: protocol::dhcp, short desc
+#: files/debtags/vocabulary
+msgid "DHCP"
+msgstr ""
+
+#. Tag: protocol::dhcp, long desc
+#: files/debtags/vocabulary
+msgid " Dynamic Host Configuration Protocol, a client-server network protocol for\n automatic assignment of dynamic IP addresses to computers in a TCP/IP network,\n rather than giving each computer a static IP address.\n .\n Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol\n Link: http://www.ietf.org/rfc/rfc2131.txt"
+msgstr ""
+
+#. Tag: protocol::dns, short desc
+#: files/debtags/vocabulary
+msgid "DNS"
+msgstr ""
+
+#. Tag: protocol::dns, long desc
+#: files/debtags/vocabulary
+msgid " Domain Name System, a protocol to request information associated with domain\n names (like \"www.debian.org\"), most prominently the IP address. The protocol\n is used in communication with a DNS server (like BIND).\n .\n For the Internet, there are 13 root DNS servers around the world that keep the\n addresses of all registered domain names and provide this information to the\n DNS servers of Internet service providers.\n .\n Link: http://en.wikipedia.org/wiki/Domain_Name_System"
+msgstr ""
+
+#. Tag: protocol::ethernet, short desc
+#: files/debtags/vocabulary
+msgid "Ethernet"
+msgstr ""
+
+#. Tag: protocol::ethernet, long desc
+#: files/debtags/vocabulary
+msgid " Ethernet is the most popular networking technology for creating local area\n networks (LANs).\n .\n The computers in an Ethernet network communicate over twisted-pair or fibre\n cables and are identified by their MAC address. Several different types of\n Ethernet exist, distinguishable by the maximum connection speed. The most\n widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).\n .\n Link: http://en.wikipedia.org/wiki/Ethernet"
+msgstr ""
+
+#. Tag: protocol::fidonet, short desc
+#: files/debtags/vocabulary
+msgid "FidoNet"
+msgstr ""
+
+#. Tag: protocol::fidonet, long desc
+#: files/debtags/vocabulary
+msgid " FidoNet is a mailbox system that enjoyed large popularity in the 1980s and\n 1990s.\n .\n The communication between the clients and FidoNet servers  was usually carried\n out over the telephone network using modems and could be used for transferring\n messages (comparable to email) and files.\n .\n Link: http://www.fidonet.org/\n Link: http://en.wikipedia.org/wiki/Fidonet"
+msgstr ""
+
+#. Tag: protocol::finger, short desc
+#: files/debtags/vocabulary
+msgid "Finger"
+msgstr ""
+
+#. Tag: protocol::finger, long desc
+#: files/debtags/vocabulary
+msgid " The Name/Finger protocol is a simple network protocol to provide extensive, \n public information about users of a computer, such as email address, telephone\n numbers, full names etc.\n .\n Due to privacy concerns, the Finger protocol is not widely used any more,\n while it widespread distribution in the early 1990s.\n .\n Link: http://en.wikipedia.org/wiki/Finger_protocol\n Link: http://www.ietf.org/rfc/rfc1288.txt"
+msgstr ""
+
+#. Tag: protocol::ftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::ftp, short desc
+#: files/debtags/vocabulary
+msgid "FTP"
+msgstr ""
+
+#. Tag: protocol::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol, a protocol for exchanging and manipulation files over\n networks and extensively used on the Internet.\n .\n The communication between FTP servers and clients uses two channels, the\n control and the data channel. While FTP was originally used with\n authentication only, most FTP servers on the Internet provide anonymous,\n passwordless access. Since FTP does not support encryption, sensitive data\n transfer is carried out over SFTP today.\n .\n Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc0959.txt"
+msgstr ""
+
+#. Tag: protocol::http, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::http, short desc
+#: files/debtags/vocabulary
+msgid "HTTP"
+msgstr ""
+
+#. Tag: protocol::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol, one of the most important protocols for the\n World Wide Web.\n .\n It controls the data transfer between HTTP servers such as Apache and HTTP\n clients, which are web browsers in most cases. HTTP resources are requested\n via URLs (Universal Resource Locators). While HTTP normally only supports file\n transfer from server to client, the protocol supports sending information to\n HTTP servers, most prominently used in HTML forms.\n .\n Link: http://en.wikipedia.org/wiki/Http\n Link: http://www.ietf.org/rfc/rfc2616.txt"
+msgstr ""
+
+#. Tag: protocol::ident, short desc
+#: files/debtags/vocabulary
+msgid "Ident"
+msgstr ""
+
+#. Tag: protocol::ident, long desc
+#: files/debtags/vocabulary
+msgid " The Ident Internet protocol helps to identify or authenticate the user of\n a network connection.\n .\n Link: http://en.wikipedia.org/wiki/Ident"
+msgstr ""
+
+#. Tag: protocol::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP"
+msgstr ""
+
+#. Tag: protocol::imap, long desc
+#: files/debtags/vocabulary
+msgid " Internet Message Access Protocol, a protocol used for accessing email on a\n server from a email client such as KMail or Evolution.\n .\n When using IMAP, emails stay on the server and can be categorized, edited,\n deleted etc. there, instead of having the user download all messages onto\n the local computer, as POP3 does.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol"
+msgstr ""
+
+#. Tag: protocol::ip, short desc
+#: files/debtags/vocabulary
+msgid "IP"
+msgstr ""
+
+#. Tag: protocol::ip, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v4), a core protocol of the Internet protocol suite and\n the very basis of the Internet.\n .\n Every computer that is connected to the Internet has an IP address (a 4-byte\n number, typically represented in dotted notation like 192.25.206.10).\n Internet IP addresses are given out by the Internet Corporation for Assigned\n Names and Numbers (ICANN). Normally, computers on the Internet are not\n accessed by their IP address, but by their domain name.\n .\n Link: http://en.wikipedia.org/wiki/IPv4\n Link: http://www.ietf.org/rfc/rfc791.txt"
+msgstr ""
+
+#. Tag: protocol::ipv6, short desc
+#: files/debtags/vocabulary
+msgid "IPv6"
+msgstr ""
+
+#. Tag: protocol::ipv6, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v6), the next-generation Internet protocol, which overcomes\n the restrictions of IP (v4), like shortage of IP addresses, and is supposed to\n form the new basis of the Internet in the future, replacing IP (v4).\n .\n Many programs already support IPv6 along with IP (v4), although it is still\n seldomly used.\n .\n Link: http://en.wikipedia.org/wiki/IPv6\n Link: http://www.ipv6.org/"
+msgstr ""
+
+#. Tag: protocol::irc, short desc
+#: files/debtags/vocabulary
+msgid "IRC"
+msgstr ""
+
+#. Tag: protocol::irc, long desc
+#: files/debtags/vocabulary
+msgid " Internet Relay Chat, a protocol for text chatting over network, extensively\n used on the Internet. It supports chat rooms, so-called channels, as well as\n private, one-to-one communication.\n .\n IRC servers are organized in networks, so that a client can connect to a\n geographically near IRC server, that itself is connected to other IRC servers\n spread over the whole world.\n .\n The official Debian channel is #debian on the freenode network.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat"
+msgstr ""
+
+#. Tag: protocol::jabber, short desc
+#: files/debtags/vocabulary
+msgid "Jabber"
+msgstr ""
+
+#. Tag: protocol::jabber, long desc
+#: files/debtags/vocabulary
+msgid " The Jabber protocol is an instant messaging protocol on the basis of the XMPP\n protocol. Additionally to private one-to-one communication, it also supports\n chat rooms, and it is used in the Jabber IM network as well as for the IM\n capabilities for the new GoogleTalk network.\n .\n In contrast to other IM networks like MSN, ICQ or AIM, the Jabber servers are\n free software and can be used to create a private chat platform or have an own\n server to connect to the Jabber network.\n .\n Link: http://www.jabber.org\n Link: http://en.wikipedia.org/wiki/Jabber"
+msgstr ""
+
+#. Tag: protocol::kerberos, short desc
+#: files/debtags/vocabulary
+msgid "Kerberos"
+msgstr ""
+
+#. Tag: protocol::kerberos, long desc
+#: files/debtags/vocabulary
+msgid " Kerberos is a authentication protocol for computer networks for secure\n authentication over an otherwise insecure network, using symmetric\n cryptography and a third party service provider, that is trusted both by\n client and server.\n . \n The authentication mechanism provided by Kerberos is mutual, so that not only\n a server can be sure of a client's identity, but also a client can be sure a\n connection to a server is not intercepted.\n .\n Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29\n Link: http://http://www.ietf.org/rfc/rfc4120.txt"
+msgstr ""
+
+#. Tag: protocol::lpr, short desc
+#: files/debtags/vocabulary
+msgid "LPR"
+msgstr ""
+
+#. Tag: protocol::lpr, long desc
+#: files/debtags/vocabulary
+msgid " The Line Printer Daemon protocol, a protocol used for accessing or providing\n network print services in a Unix network, but also used for local setups.\n .\n CUPS, the Common Unix Printing System, was developed to replace the old\n LPD/LPR system, while maintaining backwards compatibility.\n .\n Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol\n Link: http://www.ietf.org/rfc/rfc1179.txt"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, short desc
+#: files/debtags/vocabulary
+msgid "MSN Messenger"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The MSN messenger protocol is the protocol that is used by Microsoft's own\n instant messaging network.\n .\n The protocol is a proprietary protocol. Although Microsoft once send a draft\n of the protocol specification to the IETF, it has since dated out and clients\n that connect to the MSN Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://www.hypothetic.org/docs/msn/"
+msgstr ""
+
+#. Tag: protocol::nfs, short desc
+#: files/debtags/vocabulary
+msgid "NFS"
+msgstr ""
+
+#. Tag: protocol::nfs, long desc
+#: files/debtags/vocabulary
+msgid " Network File System, a protocol originally developed by Sun Microsystems in\n 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a\n distributed file system, allows a user on a client computer to access files\n over a network as easily as if attached to its local disks.\n .\n Link: http://en.wikipedia.org/wiki/Network_File_System"
+msgstr ""
+
+#. Tag: protocol::nntp, short desc
+#: files/debtags/vocabulary
+msgid "NNTP"
+msgstr ""
+
+#. Tag: protocol::nntp, long desc
+#: files/debtags/vocabulary
+msgid " Network News Transfer Protocol, a protocol for reading in writing Usenet\n articles (a Usenet article is comparable with an email), but also used\n among NNTP servers to transfer articles. \n .\n Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc977.txt"
+msgstr ""
+
+#. Tag: protocol::oscar, short desc
+#: files/debtags/vocabulary
+msgid "OSCAR (AIM/ICQ)"
+msgstr ""
+
+#. Tag: protocol::oscar, long desc
+#: files/debtags/vocabulary
+msgid " Open System for CommunicAtion in Realtime, an instant messaging used by\n AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9\n of the ICQ IM network are also instances of the OSCAR protocol.\n .\n OSCAR is a binary proprietary protocol. Since there is no official documentation,\n clients that connect to AIM or ICQ have to rely on information that has\n been reverse-engineered.\n .\n Link: http://en.wikipedia.org/wiki/OSCAR_protocol\n Link: http://www.oilcan.org/oscar/"
+msgstr ""
+
+#. Tag: protocol::pop3, short desc
+#: files/debtags/vocabulary
+msgid "POP3"
+msgstr ""
+
+#. Tag: protocol::pop3, long desc
+#: files/debtags/vocabulary
+msgid " Post Office Protocol, a protocol to download emails from a mail server,\n designed for users that have only intermittent connection to the Internet.\n .\n In contrast to IMAP server, messages that are downloaded via POP3 are not\n supposed to stay on the server afterwards, since POP3 does not support\n multiple mailboxes for one account on the server.\n .\n Link: http://en.wikipedia.org/wiki/Post_Office_Protocol\n Link: http://www.ietf.org/rfc/rfc1939.txt"
+msgstr ""
+
+#. Tag: protocol::radius, short desc
+#: files/debtags/vocabulary
+msgid "RADIUS"
+msgstr ""
+
+#. Tag: protocol::radius, long desc
+#: files/debtags/vocabulary
+msgid " Remote Authentication Dial In User Service, a protocol for authentication,\n authorization and accounting of network access, mostly used by Internet\n service providers handle handle dial-up Internet connections.\n .\n Link: http://en.wikipedia.org/wiki/RADIUS\n Link: http://www.ietf.org/rfc/rfc2865.txt"
+msgstr ""
+
+#. Tag: protocol::sftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::sftp, short desc
+#: files/debtags/vocabulary
+msgid "SFTP"
+msgstr ""
+
+#. Tag: protocol::sftp, long desc
+#: files/debtags/vocabulary
+msgid " SSH File Transfer Protocol, a protocol for secure, encrypting file exchange\n and manipulation over insecure networks, using the SSH protocol.\n .\n SFTP provides a complete set of file system operations, different from its\n predecessor SCP, which only allowed file transfer. It is not, other than the\n name might suggest, the a version of the FTP protocol executed through an\n SSH channel.\n .\n Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol"
+msgstr ""
+
+#. Tag: protocol::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB"
+msgstr ""
+
+#. Tag: protocol::smb, long desc
+#: files/debtags/vocabulary
+msgid " Server Message Block, a protocol for providing file access and printer sharing\n over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File\n System) is a synonym for SMB\n .\n Although SMB is a proprietary protocol, the Samba project reverse-engineered\n the protocol and developed both client and server programs for better\n interoperability in mixed Unix/Windows networks.\n .\n Link: http://en.wikipedia.org/wiki/Server_Message_Block\n Link: http://www.samba.org/"
+msgstr ""
+
+#. Tag: protocol::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP"
+msgstr ""
+
+#. Tag: protocol::smtp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Mail Transfer Protocol, a protocol or for transmitting emails over the\n Internet.\n .\n Every SMTP server utilizes SMTP to hand on emails to the next mail server\n until an email arrives at its destination, from where it is usually retrieved\n via POP3 or IMAP \n .\n Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc2821.txt"
+msgstr ""
+
+#. Tag: protocol::snmp, short desc
+#: files/debtags/vocabulary
+msgid "SNMP"
+msgstr ""
+
+#. Tag: protocol::snmp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Network Management Protocol, a member of the Internet protocol suite\n and used for monitoring or configuring network devices.\n .\n SNMP servers normally run on network equipment like routers.\n .\n Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol\n Link: http://www.ietf.org/rfc/rfc3411.txt"
+msgstr ""
+
+#. Tag: protocol::soap, short desc
+#: files/debtags/vocabulary
+msgid "SOAP"
+msgstr ""
+
+#. Tag: protocol::soap, long desc
+#: files/debtags/vocabulary
+msgid " Simple Object Access Protocol, a protocol for exchanging messages between\n different computers in a network. The messages are encoded in XML and usually\n sent over HTTP.\n .\n SOAP is used to provide APIs to web services, such as the Google API to\n utilize Google's searching engine from client applications.\n .\n Link: http://en.wikipedia.org/wiki/SOAP\n Link: http://www.w3.org/TR/soap/"
+msgstr ""
+
+#. Tag: protocol::ssh, short desc
+#: files/debtags/vocabulary
+msgid "SSH"
+msgstr ""
+
+#. Tag: protocol::ssh, long desc
+#: files/debtags/vocabulary
+msgid " Secure Shell, a protocol for secure, encrypted network connections. SSH can\n be used to execute programs on a remote host with an SSH server over secure\n otherwise insecure protocols through an SSH channel. The main use is, as the\n name suggest, to provide encrypted login and shell access on remote servers.\n .\n SSH authentication can be done with password or, which is the preferred\n mechanism, via asymmetric public/private key cryptography.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Shell"
+msgstr ""
+
+#. Tag: protocol::ssl, short desc
+#: files/debtags/vocabulary
+msgid "SSL/TLS"
+msgstr ""
+
+#. Tag: protocol::ssl, long desc
+#: files/debtags/vocabulary
+msgid " Secure Socket Layer/Transport Layer Security, a protocol that provides \n secure encrypted communication on the Internet. It is used to authenticate\n the identity of a service provider (such as a Internet banking server) and\n to secure the communications channel.\n .\n Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be\n transmitted over SSL/TLS to secure the transmitted data. In this case, an\n \"S\" is added to the protocol name, like HTTPS, FTPS etc.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer"
+msgstr ""
+
+#. Tag: protocol::tcp, short desc
+#: files/debtags/vocabulary
+msgid "TCP"
+msgstr ""
+
+#. Tag: protocol::tcp, long desc
+#: files/debtags/vocabulary
+msgid " Transport Control Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n TCP is used as the transport protocol for many services on the Internet,\n such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.\n .\n Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol\n Link: http://www.ietf.org/rfc/rfc793.txt"
+msgstr ""
+
+#. Tag: protocol::udp, short desc
+#: files/debtags/vocabulary
+msgid "UDP"
+msgstr ""
+
+#. Tag: protocol::udp, long desc
+#: files/debtags/vocabulary
+msgid " User Datagram Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n UDP is not as reliable as TCP, but faster and thus better fit for\n time-sensitive purposes, like the DNS protocol and VoIP.\n .\n Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol\n Link: http://www.ietf.org/rfc/rfc768.txt"
+msgstr ""
+
+#. Tag: protocol::voip, short desc
+#: files/debtags/vocabulary
+msgid "VoIP"
+msgstr ""
+
+#. Tag: protocol::voip, long desc
+#: files/debtags/vocabulary
+msgid " Voice over IP, a general term for protocols that route voice conversations\n over the Internet.\n .\n Popular VoIP protocols are SIP, H.323 and IAX.\n .\n Link: http://en.wikipedia.org/wiki/Voice_over_IP"
+msgstr ""
+
+#. Tag: protocol::webdav, short desc
+#: files/debtags/vocabulary
+msgid "WebDAV"
+msgstr ""
+
+#. Tag: protocol::webdav, long desc
+#: files/debtags/vocabulary
+msgid " Web-based Distributed Authoring and Versioning, a extension of the HTTP\n protocol to support creating and changing documents on an HTTP server. Thus,\n the client can access the documents on an HTTP server as it would those on the\n local file system.\n .\n Link: http://en.wikipedia.org/wiki/WebDAV\n Link: http://www.ietf.org/rfc/rfc2518.txt"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, short desc
+#: files/debtags/vocabulary
+msgid "XML-RPC"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, long desc
+#: files/debtags/vocabulary
+msgid " XML Remote Procedure Call, a simple protocol for remote procedure calls that\n uses XML for encoding and the HTTP protocol for transport.\n .\n SOAP, which is a considerably more sophisticated protocol, was developed from\n XML-RPC.\n .\n Link: http://en.wikipedia.org/wiki/XML-RPC\n Link: http://www.xmlrpc.com/"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, short desc
+#: files/debtags/vocabulary
+msgid "Yahoo! Messenger"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging\n network.\n .\n This a proprietary binary protocol without any official documentation. Clients\n that connect to the Yahoo! Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger\n Link: http://www.venkydude.com/articles/yahoo.htm"
+msgstr ""
+
+#. Facet: filetransfer, short desc
+#: files/debtags/vocabulary
+msgid "File Transfer"
+msgstr ""
+
+#. Tag: filetransfer::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::sftp, long desc
+#: files/debtags/vocabulary
+msgid " Secure File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB and CIFS"
+msgstr ""
+
+#. Tag: filetransfer::smb, long desc
+#: files/debtags/vocabulary
+msgid " Windows file and printer sharing (SMB)"
+msgstr ""
+
+#. Tag: filetransfer::dcc, short desc
+#: files/debtags/vocabulary
+msgid "IRC DCC"
+msgstr ""
+
+#. Tag: filetransfer::dcc, long desc
+#: files/debtags/vocabulary
+msgid " Direct Client to Client protocol used by Internet Relay Chat clients."
+msgstr ""
+
+#. Facet: uitoolkit, short desc
+#: files/debtags/vocabulary
+msgid "Interface Toolkit"
+msgstr ""
+
+#. Tag: uitoolkit::athena, short desc
+#: files/debtags/vocabulary
+msgid "Athena Widgets"
+msgstr ""
+
+#. Tag: uitoolkit::fltk, short desc
+#: files/debtags/vocabulary
+msgid "FLTK"
+msgstr ""
+
+#. Tag: uitoolkit::glut, short desc
+#: files/debtags/vocabulary
+msgid "GLUT"
+msgstr ""
+
+#. Tag: uitoolkit::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUstep"
+msgstr ""
+
+#. Tag: uitoolkit::gtk, short desc
+#: files/debtags/vocabulary
+msgid "GTK"
+msgstr ""
+
+#. Tag: uitoolkit::motif, short desc
+#: files/debtags/vocabulary
+msgid "Lesstif/Motif"
+msgstr ""
+
+#. Tag: uitoolkit::ncurses, short desc
+#: files/debtags/vocabulary
+msgid "Ncurses TUI"
+msgstr ""
+
+#. Tag: uitoolkit::qt, short desc
+#: files/debtags/vocabulary
+msgid "QT"
+msgstr ""
+
+#. Tag: uitoolkit::sdl, short desc
+#: files/debtags/vocabulary
+msgid "SDL"
+msgstr ""
+
+#. Tag: uitoolkit::tk, short desc
+#: files/debtags/vocabulary
+msgid "TK"
+msgstr ""
+
+#. Tag: uitoolkit::wxwidgets, short desc
+#: files/debtags/vocabulary
+msgid "wxWidgets"
+msgstr ""
+
+#. Tag: uitoolkit::xlib, short desc
+#: files/debtags/vocabulary
+msgid "X library"
+msgstr ""
+
+#. Facet: use, short desc
+#: files/debtags/vocabulary
+msgid "Purpose"
+msgstr ""
+
+#. Tag: use::analysing, short desc
+#: files/debtags/vocabulary
+msgid "Analysing"
+msgstr ""
+
+#. Tag: use::analysing, long desc
+#: files/debtags/vocabulary
+msgid " Software for turning data into knowledge."
+msgstr ""
+
+#. Tag: use::browsing, short desc
+#: files/debtags/vocabulary
+msgid "Browsing"
+msgstr ""
+
+#. Tag: use::chatting, short desc
+#: files/debtags/vocabulary
+msgid "Chatting"
+msgstr ""
+
+#. Tag: use::checking, short desc
+#: files/debtags/vocabulary
+msgid "Checking"
+msgstr ""
+
+#. Tag: use::checking, long desc
+#: files/debtags/vocabulary
+msgid " All sorts of checking, checking a filesystem for validity, checking\n a document for incorrectly spelled words, checking a network for \n routing problems. Verifying."
+msgstr ""
+
+#. Tag: use::comparing, short desc
+#: files/debtags/vocabulary
+msgid "Comparing"
+msgstr ""
+
+#. Tag: use::comparing, long desc
+#: files/debtags/vocabulary
+msgid " To find what relates or differs in two or more objects."
+msgstr ""
+
+#. Tag: use::compressing, short desc
+#: files/debtags/vocabulary
+msgid "Compressing"
+msgstr ""
+
+#. Tag: use::configuring, short desc
+#: files/debtags/vocabulary
+#. Tag: network::configuration, short desc
+#: files/debtags/vocabulary
+msgid "Configuration"
+msgstr ""
+
+#. Tag: use::converting, short desc
+#: files/debtags/vocabulary
+msgid "Data Conversion"
+msgstr ""
+
+#. Tag: use::dialing, short desc
+#: files/debtags/vocabulary
+msgid "Dialup Access"
+msgstr ""
+
+#. Tag: use::downloading, short desc
+#: files/debtags/vocabulary
+msgid "Downloading"
+msgstr ""
+
+#. Tag: use::driver, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Driver"
+msgstr ""
+
+#. Tag: use::editing, short desc
+#: files/debtags/vocabulary
+msgid "Editing"
+msgstr ""
+
+#. Tag: use::entertaining, short desc
+#: files/debtags/vocabulary
+msgid "Entertaining"
+msgstr ""
+
+#. Tag: use::filtering, short desc
+#: files/debtags/vocabulary
+msgid "Filtering"
+msgstr ""
+
+#. Tag: use::gameplaying, short desc
+#: files/debtags/vocabulary
+msgid "Game Playing"
+msgstr ""
+
+#. Tag: use::learning, short desc
+#: files/debtags/vocabulary
+msgid "Learning"
+msgstr ""
+
+#. Tag: use::organizing, short desc
+#: files/debtags/vocabulary
+msgid "Data Organisation"
+msgstr ""
+
+#. Tag: use::playing, short desc
+#: files/debtags/vocabulary
+msgid "Playing Media"
+msgstr ""
+
+#. Tag: use::printing, short desc
+#: files/debtags/vocabulary
+msgid "Printing"
+msgstr ""
+
+#. Tag: use::proxying, short desc
+#: files/debtags/vocabulary
+msgid "Proxying"
+msgstr ""
+
+#. Tag: use::routing, short desc
+#: files/debtags/vocabulary
+#. Tag: network::routing, short desc
+#: files/debtags/vocabulary
+msgid "Routing"
+msgstr ""
+
+#. Tag: use::searching, short desc
+#: files/debtags/vocabulary
+msgid "Searching"
+msgstr ""
+
+#. Tag: use::scanning, short desc
+#: files/debtags/vocabulary
+#. Tag: network::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Scanning"
+msgstr ""
+
+#. Tag: use::storing, short desc
+#: files/debtags/vocabulary
+msgid "Storing"
+msgstr ""
+
+#. Tag: use::synchronizing, short desc
+#: files/debtags/vocabulary
+msgid "Synchronisation"
+msgstr ""
+
+#. Tag: use::timekeeping, short desc
+#: files/debtags/vocabulary
+msgid "Time and Clock"
+msgstr ""
+
+#. Tag: use::transmission, short desc
+#: files/debtags/vocabulary
+msgid "Transmission"
+msgstr ""
+
+#. Tag: use::typesetting, short desc
+#: files/debtags/vocabulary
+msgid "Typesetting"
+msgstr ""
+
+#. Tag: use::viewing, short desc
+#: files/debtags/vocabulary
+msgid "Data Visualization"
+msgstr ""
+
+#. Tag: use::text-formatting, short desc
+#: files/debtags/vocabulary
+msgid "Text Formatting"
+msgstr ""
+
+#. Tag: web::appserver, short desc
+#: files/debtags/vocabulary
+msgid "Application Server"
+msgstr ""
+
+#. Tag: web::blog, short desc
+#: files/debtags/vocabulary
+msgid "Blog Software"
+msgstr ""
+
+#. Tag: web::browser, short desc
+#: files/debtags/vocabulary
+msgid "Browser"
+msgstr ""
+
+#. Tag: web::cms, short desc
+#: files/debtags/vocabulary
+msgid "Content Management (CMS)"
+msgstr ""
+
+#. Tag: web::cgi, short desc
+#: files/debtags/vocabulary
+msgid "CGI"
+msgstr ""
+
+#. Tag: web::commerce, short desc
+#: files/debtags/vocabulary
+msgid "E-commerce"
+msgstr ""
+
+#. Tag: web::forum, short desc
+#: files/debtags/vocabulary
+msgid "Forum"
+msgstr ""
+
+#. Tag: web::portal, short desc
+#: files/debtags/vocabulary
+msgid "Portal"
+msgstr ""
+
+#. Tag: web::scripting, short desc
+#: files/debtags/vocabulary
+msgid "Scripting"
+msgstr ""
+
+#. Tag: web::search-engine, short desc
+#: files/debtags/vocabulary
+msgid "Search engine"
+msgstr ""
+
+#. Tag: web::server, short desc
+#: files/debtags/vocabulary
+#. Tag: network::server, short desc
+#: files/debtags/vocabulary
+msgid "Server"
+msgstr ""
+
+#. Tag: web::wiki, short desc
+#: files/debtags/vocabulary
+msgid "Wiki Software"
+msgstr ""
+
+#. Tag: web::wiki, long desc
+#: files/debtags/vocabulary
+msgid " Wiki software, servers, utilities and plug-ins."
+msgstr ""
+
+#. Facet: network, short desc
+#: files/debtags/vocabulary
+msgid "Networking"
+msgstr ""
+
+#. Tag: network::client, short desc
+#: files/debtags/vocabulary
+msgid "Client"
+msgstr ""
+
+#. Tag: network::hiavailability, short desc
+#: files/debtags/vocabulary
+msgid "High Availability"
+msgstr ""
+
+#. Tag: network::load-balancing, short desc
+#: files/debtags/vocabulary
+msgid "Load Balancing"
+msgstr ""
+
+#. Tag: network::service, short desc
+#: files/debtags/vocabulary
+msgid "Service"
+msgstr ""
+
+#. Tag: network::vpn, short desc
+#: files/debtags/vocabulary
+msgid "VPN or Tunneling"
+msgstr ""
+
+#. Facet: x11, short desc
+#: files/debtags/vocabulary
+msgid "X Windowing System"
+msgstr ""
+
+#. Tag: x11::applet, short desc
+#: files/debtags/vocabulary
+msgid "Applet"
+msgstr ""
+
+#. Tag: x11::display-manager, short desc
+#: files/debtags/vocabulary
+msgid "Login Manager"
+msgstr ""
+
+#. Tag: x11::display-manager, long desc
+#: files/debtags/vocabulary
+msgid " Display managers (graphical login screens)"
+msgstr ""
+
+#. Tag: x11::library, short desc
+#: files/debtags/vocabulary
+msgid "Library"
+msgstr ""
+
+#. Tag: x11::screensaver, short desc
+#: files/debtags/vocabulary
+msgid "Screen Saver"
+msgstr ""
+
+#. Tag: x11::terminal, short desc
+#: files/debtags/vocabulary
+msgid "Terminal Emulator"
+msgstr ""
+
+#. Tag: x11::theme, short desc
+#: files/debtags/vocabulary
+msgid "Theme"
+msgstr ""
+
+#. Tag: x11::window-manager, short desc
+#: files/debtags/vocabulary
+msgid "Window Manager"
+msgstr ""
+
+#. Tag: x11::xserver, short desc
+#: files/debtags/vocabulary
+msgid "X Server"
+msgstr ""
+
+#. Tag: bbs, short desc
+#: files/debtags/vocabulary
+msgid "Bulletin Board Systems"
+msgstr ""
+
+#. Tag: data-exchange, short desc
+#: files/debtags/vocabulary
+msgid "Data Exchange"
+msgstr ""
+
+#. Tag: desktop, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Environment"
+msgstr ""
+
+#. Tag: file-formats, short desc
+#: files/debtags/vocabulary
+msgid "File formats"
+msgstr ""
+
+#. Tag: foreignos, short desc
+#: files/debtags/vocabulary
+msgid "Foreign OS and Hardware"
+msgstr ""
+
+#. Tag: net, short desc
+#: files/debtags/vocabulary
+msgid "IP Networking"
+msgstr ""
+
+#. Tag: netcomm, short desc
+#: files/debtags/vocabulary
+msgid "Network and Communication"
+msgstr ""
+
+#. Tag: numerical, short desc
+#: files/debtags/vocabulary
+msgid "Calculation and numerical computation"
+msgstr ""
+
+#. Tag: office, short desc
+#: files/debtags/vocabulary
+msgid "Office software"
+msgstr ""
+
+#. Tag: protocols, short desc
+#: files/debtags/vocabulary
+msgid "IP protocol support"
+msgstr ""
+
+#. Tag: science, short desc
+#: files/debtags/vocabulary
+msgid "Science"
+msgstr ""
+
+#. Tag: system, short desc
+#: files/debtags/vocabulary
+msgid "System software and maintainance"
+msgstr ""
+
+#. Tag: vi, short desc
+#: files/debtags/vocabulary
+msgid "VI editor"
+msgstr ""
+
diff --git a/po/debtags.fr.po b/po/debtags.fr.po
new file mode 100644
index 0000000..c6c289b
--- /dev/null
+++ b/po/debtags.fr.po
@@ -0,0 +1,3544 @@
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Facet: accessibility, short desc
+#: files/debtags/vocabulary
+msgid "Accessibility Support"
+msgstr ""
+
+#. Tag: accessibility::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Systems"
+msgstr ""
+
+#. Tag: accessibility::input, long desc
+#: files/debtags/vocabulary
+msgid " Applies to input methods for non-latin languages as well as special input\n systems."
+msgstr ""
+
+#. Tag: accessibility::ocr, short desc
+#: files/debtags/vocabulary
+msgid "Text Recognition (OCR)"
+msgstr ""
+
+#. Tag: accessibility::ocr, long desc
+#: files/debtags/vocabulary
+msgid " Optical Character Recognition"
+msgstr ""
+
+#. Tag: accessibility::screen-magnify, short desc
+#: files/debtags/vocabulary
+msgid "Screen Magnification"
+msgstr ""
+
+#. Tag: accessibility::screen-reader, short desc
+#: files/debtags/vocabulary
+msgid "Screen Reading"
+msgstr ""
+
+#. Tag: accessibility::speech, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::speech, short desc
+#: files/debtags/vocabulary
+msgid "Speech Synthesis"
+msgstr ""
+
+#. Tag: accessibility::speech-recognition, short desc
+#: files/debtags/vocabulary
+msgid "Speech Recognition"
+msgstr ""
+
+#. Tag: accessibility::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, short desc
+#: files/debtags/vocabulary
+msgid "Need an extra tag"
+msgstr ""
+
+#. Tag: accessibility::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, long desc
+#: files/debtags/vocabulary
+msgid " The package can be categorised along this facet, but the right tag for it is\n missing.\n .\n Mark a package with this tag to signal the vocabulary maintainers of cases\n where the current tag set is lacking."
+msgstr ""
+
+#. Facet: admin, short desc
+#: files/debtags/vocabulary
+msgid "System Administration"
+msgstr ""
+
+#. Tag: admin::accounting, short desc
+#: files/debtags/vocabulary
+msgid "Accounting"
+msgstr ""
+
+#. Tag: admin::automation, short desc
+#: files/debtags/vocabulary
+msgid "Automation and scheduling"
+msgstr ""
+
+#. Tag: admin::automation, long desc
+#: files/debtags/vocabulary
+msgid " Automating the execution of software in the system."
+msgstr ""
+
+#. Tag: admin::backup, short desc
+#: files/debtags/vocabulary
+msgid "Backup and Restoration"
+msgstr ""
+
+#. Tag: admin::benchmarking, short desc
+#: files/debtags/vocabulary
+msgid "Benchmarking"
+msgstr ""
+
+#. Tag: admin::boot, short desc
+#: files/debtags/vocabulary
+msgid "System Boot"
+msgstr ""
+
+#. Tag: admin::cluster, short desc
+#: files/debtags/vocabulary
+msgid "Clustering"
+msgstr ""
+
+#. Tag: admin::configuring, short desc
+#: files/debtags/vocabulary
+msgid "Configuration Tool"
+msgstr ""
+
+#. Tag: admin::file-distribution, short desc
+#: files/debtags/vocabulary
+msgid "File Distribution"
+msgstr ""
+
+#. Tag: admin::filesystem, short desc
+#: files/debtags/vocabulary
+msgid "Filesystem Tool"
+msgstr ""
+
+#. Tag: admin::filesystem, long desc
+#: files/debtags/vocabulary
+msgid " Creation, maintenance, and use of filesystems"
+msgstr ""
+
+#. Tag: admin::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics and Recovery"
+msgstr ""
+
+#. Tag: admin::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Recovering lost or damaged data.\n This tag will be split into admin::recovery\n and security::forensics."
+msgstr ""
+
+#. Tag: admin::hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Support"
+msgstr ""
+
+#. Tag: admin::install, short desc
+#: files/debtags/vocabulary
+msgid "System installation"
+msgstr ""
+
+#. Tag: admin::issuetracker, short desc
+#: files/debtags/vocabulary
+msgid "Issue tracker"
+msgstr ""
+
+#. Tag: admin::kernel, short desc
+#: files/debtags/vocabulary
+msgid "Kernel or Modules"
+msgstr ""
+
+#. Tag: admin::logging, short desc
+#: files/debtags/vocabulary
+msgid "Logging"
+msgstr ""
+
+#. Tag: admin::login, short desc
+#: files/debtags/vocabulary
+#. Tag: use::login, short desc
+#: files/debtags/vocabulary
+msgid "Login"
+msgstr ""
+
+#. Tag: admin::login, long desc
+#: files/debtags/vocabulary
+msgid " Logging into the system"
+msgstr ""
+
+#. Tag: admin::monitoring, short desc
+#: files/debtags/vocabulary
+#. Tag: use::monitor, short desc
+#: files/debtags/vocabulary
+msgid "Monitoring"
+msgstr ""
+
+#. Tag: admin::package-management, short desc
+#: files/debtags/vocabulary
+msgid "Package Management"
+msgstr ""
+
+#. Tag: admin::power-management, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::power, short desc
+#: files/debtags/vocabulary
+msgid "Power Management"
+msgstr ""
+
+#. Tag: admin::recovery, short desc
+#: files/debtags/vocabulary
+msgid "Data recovery"
+msgstr ""
+
+#. Tag: admin::user-management, short desc
+#: files/debtags/vocabulary
+msgid "User Management"
+msgstr ""
+
+#. Tag: admin::virtualization, short desc
+#: files/debtags/vocabulary
+msgid "Virtualization"
+msgstr ""
+
+#. Tag: admin::virtualization, long desc
+#: files/debtags/vocabulary
+msgid " This is not hardware emulation, but rather those facilities that allow to\n create many isolated compartments inside the same system."
+msgstr ""
+
+#. Facet: biology, short desc
+#: files/debtags/vocabulary
+#. Tag: field::biology, short desc
+#: files/debtags/vocabulary
+msgid "Biology"
+msgstr ""
+
+#. Facet: biology, long desc
+#: files/debtags/vocabulary
+msgid " How is the package related to the field of biology."
+msgstr ""
+
+#. Tag: biology::emboss, short desc
+#: files/debtags/vocabulary
+msgid "EMBOSS"
+msgstr ""
+
+#. Tag: biology::emboss, long desc
+#: files/debtags/vocabulary
+msgid " Packages related to the European Molecular Biology Open Software Suite."
+msgstr ""
+
+#. Tag: biology::format:aln, short desc
+#: files/debtags/vocabulary
+msgid "Clustal/ALN"
+msgstr ""
+
+#. Tag: biology::format:aln, long desc
+#: files/debtags/vocabulary
+msgid " Used in multiple alignment of biological sequences."
+msgstr ""
+
+#. Tag: biology::format:nexus, short desc
+#: files/debtags/vocabulary
+msgid "Nexus"
+msgstr ""
+
+#. Tag: biology::format:nexus, long desc
+#: files/debtags/vocabulary
+msgid " Popular format for phylogenetic trees."
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, short desc
+#: files/debtags/vocabulary
+msgid "Nucleic acids"
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of nucleic acids: \n DNA, RNA but also non-natural nucleic acids such as PNA or LNA."
+msgstr ""
+
+#. Tag: biology::peptidic, short desc
+#: files/debtags/vocabulary
+msgid "Proteins"
+msgstr ""
+
+#. Tag: biology::peptidic, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of aminoacids: peptides and proteins."
+msgstr ""
+
+#. Facet: culture, short desc
+#: files/debtags/vocabulary
+msgid "Culture"
+msgstr ""
+
+#. Facet: culture, long desc
+#: files/debtags/vocabulary
+msgid " The culture for which the package provides special support"
+msgstr ""
+
+#. Tag: culture::afrikaans, short desc
+#: files/debtags/vocabulary
+msgid "Afrikaans"
+msgstr ""
+
+#. Tag: culture::arabic, short desc
+#: files/debtags/vocabulary
+msgid "Arabic"
+msgstr ""
+
+#. Tag: culture::basque, short desc
+#: files/debtags/vocabulary
+msgid "Basque"
+msgstr ""
+
+#. Tag: culture::bengali, short desc
+#: files/debtags/vocabulary
+msgid "Bengali"
+msgstr ""
+
+#. Tag: culture::bokmaal, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Bokmaal"
+msgstr ""
+
+#. Tag: culture::bosnian, short desc
+#: files/debtags/vocabulary
+msgid "Bosnian"
+msgstr ""
+
+#. Tag: culture::brazilian, short desc
+#: files/debtags/vocabulary
+msgid "Brazilian"
+msgstr ""
+
+#. Tag: culture::bulgarian, short desc
+#: files/debtags/vocabulary
+msgid "Bulgarian"
+msgstr ""
+
+#. Tag: culture::catalan, short desc
+#: files/debtags/vocabulary
+msgid "Catalan"
+msgstr ""
+
+#. Tag: culture::chinese, short desc
+#: files/debtags/vocabulary
+msgid "Chinese"
+msgstr ""
+
+#. Tag: culture::czech, short desc
+#: files/debtags/vocabulary
+msgid "Czech"
+msgstr ""
+
+#. Tag: culture::croatian, short desc
+#: files/debtags/vocabulary
+msgid "Croatian"
+msgstr ""
+
+#. Tag: culture::danish, short desc
+#: files/debtags/vocabulary
+msgid "Danish"
+msgstr ""
+
+#. Tag: culture::dutch, short desc
+#: files/debtags/vocabulary
+msgid "Dutch"
+msgstr ""
+
+#. Tag: culture::esperanto, short desc
+#: files/debtags/vocabulary
+msgid "Esperanto"
+msgstr ""
+
+#. Tag: culture::estonian, short desc
+#: files/debtags/vocabulary
+msgid "Estonian"
+msgstr ""
+
+#. Tag: culture::faroese, short desc
+#: files/debtags/vocabulary
+msgid "Faroese"
+msgstr ""
+
+#. Tag: culture::farsi, short desc
+#: files/debtags/vocabulary
+msgid "Farsi"
+msgstr ""
+
+#. Tag: culture::finnish, short desc
+#: files/debtags/vocabulary
+msgid "Finnish"
+msgstr ""
+
+#. Tag: culture::french, short desc
+#: files/debtags/vocabulary
+msgid "French"
+msgstr ""
+
+#. Tag: culture::german, short desc
+#: files/debtags/vocabulary
+msgid "German"
+msgstr ""
+
+#. Tag: culture::greek, short desc
+#: files/debtags/vocabulary
+msgid "Greek"
+msgstr ""
+
+#. Tag: culture::hebrew, short desc
+#: files/debtags/vocabulary
+msgid "Hebrew"
+msgstr ""
+
+#. Tag: culture::hindi, short desc
+#: files/debtags/vocabulary
+msgid "Hindi"
+msgstr ""
+
+#. Tag: culture::hungarian, short desc
+#: files/debtags/vocabulary
+msgid "Hungarian"
+msgstr ""
+
+#. Tag: culture::icelandic, short desc
+#: files/debtags/vocabulary
+msgid "Icelandic"
+msgstr ""
+
+#. Tag: culture::irish, short desc
+#: files/debtags/vocabulary
+msgid "Irish (Gaeilge)"
+msgstr ""
+
+#. Tag: culture::italian, short desc
+#: files/debtags/vocabulary
+msgid "Italian"
+msgstr ""
+
+#. Tag: culture::japanese, short desc
+#: files/debtags/vocabulary
+msgid "Japanese"
+msgstr ""
+
+#. Tag: culture::korean, short desc
+#: files/debtags/vocabulary
+msgid "Korean"
+msgstr ""
+
+#. Tag: culture::mongolian, short desc
+#: files/debtags/vocabulary
+msgid "Mongolian"
+msgstr ""
+
+#. Tag: culture::nynorsk, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Nynorsk"
+msgstr ""
+
+#. Tag: culture::norwegian, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian"
+msgstr ""
+
+#. Tag: culture::polish, short desc
+#: files/debtags/vocabulary
+msgid "Polish"
+msgstr ""
+
+#. Tag: culture::portuguese, short desc
+#: files/debtags/vocabulary
+msgid "Portuguese"
+msgstr ""
+
+#. Tag: culture::punjabi, short desc
+#: files/debtags/vocabulary
+msgid "Punjabi"
+msgstr ""
+
+#. Tag: culture::romanian, short desc
+#: files/debtags/vocabulary
+msgid "Romanian"
+msgstr ""
+
+#. Tag: culture::russian, short desc
+#: files/debtags/vocabulary
+msgid "Russian"
+msgstr ""
+
+#. Tag: culture::serbian, short desc
+#: files/debtags/vocabulary
+msgid "Serbian"
+msgstr ""
+
+#. Tag: culture::slovak, short desc
+#: files/debtags/vocabulary
+msgid "Slovak"
+msgstr ""
+
+#. Tag: culture::spanish, short desc
+#: files/debtags/vocabulary
+msgid "Spanish"
+msgstr ""
+
+#. Tag: culture::swedish, short desc
+#: files/debtags/vocabulary
+msgid "Swedish"
+msgstr ""
+
+#. Tag: culture::taiwanese, short desc
+#: files/debtags/vocabulary
+msgid "Taiwanese"
+msgstr ""
+
+#. Tag: culture::tajik, short desc
+#: files/debtags/vocabulary
+msgid "Tajik"
+msgstr ""
+
+#. Tag: culture::tamil, short desc
+#: files/debtags/vocabulary
+msgid "Tamil"
+msgstr ""
+
+#. Tag: culture::thai, short desc
+#: files/debtags/vocabulary
+msgid "Thai"
+msgstr ""
+
+#. Tag: culture::turkish, short desc
+#: files/debtags/vocabulary
+msgid "Turkish"
+msgstr ""
+
+#. Tag: culture::ukrainian, short desc
+#: files/debtags/vocabulary
+msgid "Ukrainian"
+msgstr ""
+
+#. Tag: culture::uzbek, short desc
+#: files/debtags/vocabulary
+msgid "Uzbek"
+msgstr ""
+
+#. Tag: culture::welsh, short desc
+#: files/debtags/vocabulary
+msgid "Welsh"
+msgstr ""
+
+#. Facet: devel, short desc
+#: files/debtags/vocabulary
+msgid "Software Development"
+msgstr ""
+
+#. Tag: devel::bugtracker, short desc
+#: files/debtags/vocabulary
+msgid "Bug Tracking"
+msgstr ""
+
+#. Tag: devel::buildtools, short desc
+#: files/debtags/vocabulary
+msgid "Build Tool"
+msgstr ""
+
+#. Tag: devel::code-generator, short desc
+#: files/debtags/vocabulary
+msgid "Code Generation"
+msgstr ""
+
+#. Tag: devel::code-generator, long desc
+#: files/debtags/vocabulary
+msgid " Parser, lexer and other code generators"
+msgstr ""
+
+#. Tag: devel::compiler, short desc
+#: files/debtags/vocabulary
+msgid "Compiler"
+msgstr ""
+
+#. Tag: devel::debian, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::debian, short desc
+#: files/debtags/vocabulary
+msgid "Debian"
+msgstr ""
+
+#. Tag: devel::debian, long desc
+#: files/debtags/vocabulary
+msgid " Tools, documentation, etc. of use primarily to Debian developers."
+msgstr ""
+
+#. Tag: devel::debugger, short desc
+#: files/debtags/vocabulary
+msgid "Debugging"
+msgstr ""
+
+#. Tag: devel::doc, short desc
+#: files/debtags/vocabulary
+#. Tag: role::documentation, short desc
+#: files/debtags/vocabulary
+msgid "Documentation"
+msgstr ""
+
+#. Tag: devel::docsystem, short desc
+#: files/debtags/vocabulary
+msgid "Literate Programming"
+msgstr ""
+
+#. Tag: devel::docsystem, long desc
+#: files/debtags/vocabulary
+msgid " Tools and auto-documenters"
+msgstr ""
+
+#. Tag: devel::ecma-cli, short desc
+#: files/debtags/vocabulary
+msgid "ECMA CLI"
+msgstr ""
+
+#. Tag: devel::ecma-cli, long desc
+#: files/debtags/vocabulary
+msgid " Tools and libraries for development with implementations of \n the ECMA CLI (Common Language Infrastructure), like Mono\n or DotGNU Portable.NET."
+msgstr ""
+
+#. Tag: devel::editor, short desc
+#: files/debtags/vocabulary
+msgid "Source Editor"
+msgstr ""
+
+#. Tag: devel::examples, short desc
+#: files/debtags/vocabulary
+msgid "Examples"
+msgstr ""
+
+#. Tag: devel::ide, short desc
+#: files/debtags/vocabulary
+msgid "IDE"
+msgstr ""
+
+#. Tag: devel::ide, long desc
+#: files/debtags/vocabulary
+msgid " Integrated Development Environment"
+msgstr ""
+
+#. Tag: devel::interpreter, short desc
+#: files/debtags/vocabulary
+msgid "Interpreter"
+msgstr ""
+
+#. Tag: devel::i18n, short desc
+#: files/debtags/vocabulary
+msgid "Internationalization"
+msgstr ""
+
+#. Tag: devel::lang:ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada Development"
+msgstr ""
+
+#. Tag: devel::lang:c, short desc
+#: files/debtags/vocabulary
+msgid "C Development"
+msgstr ""
+
+#. Tag: devel::lang:c++, short desc
+#: files/debtags/vocabulary
+msgid "C++ Development"
+msgstr ""
+
+#. Tag: devel::lang:c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C# Development"
+msgstr ""
+
+#. Tag: devel::lang:fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran Development"
+msgstr ""
+
+#. Tag: devel::lang:haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell Development"
+msgstr ""
+
+#. Tag: devel::lang:java, short desc
+#: files/debtags/vocabulary
+msgid "Java Development"
+msgstr ""
+
+#. Tag: devel::lang:ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/JavaScript Development"
+msgstr ""
+
+#. Tag: devel::lang:lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp Development"
+msgstr ""
+
+#. Tag: devel::lang:lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua Development"
+msgstr ""
+
+#. Tag: devel::lang:ml, short desc
+#: files/debtags/vocabulary
+msgid "ML Development"
+msgstr ""
+
+#. Tag: devel::lang:objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective-C Development"
+msgstr ""
+
+#. Tag: devel::lang:ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml Development"
+msgstr ""
+
+#. Tag: devel::lang:octave, short desc
+#: files/debtags/vocabulary
+msgid "GNU Octave Development"
+msgstr ""
+
+#. Tag: devel::lang:pascal, short desc
+#: files/debtags/vocabulary
+msgid "Pascal Development"
+msgstr ""
+
+#. Tag: devel::lang:perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl Development"
+msgstr ""
+
+#. Tag: devel::lang:php, short desc
+#: files/debtags/vocabulary
+msgid "PHP Development"
+msgstr ""
+
+#. Tag: devel::lang:pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike Development"
+msgstr ""
+
+#. Tag: devel::lang:prolog, short desc
+#: files/debtags/vocabulary
+msgid "Prolog Development"
+msgstr ""
+
+#. Tag: devel::lang:python, short desc
+#: files/debtags/vocabulary
+msgid "Python Development"
+msgstr ""
+
+#. Tag: devel::lang:r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R Development"
+msgstr ""
+
+#. Tag: devel::lang:ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby Development"
+msgstr ""
+
+#. Tag: devel::lang:scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme Development"
+msgstr ""
+
+#. Tag: devel::lang:sql, short desc
+#: files/debtags/vocabulary
+msgid "SQL"
+msgstr ""
+
+#. Tag: devel::lang:tcl, short desc
+#: files/debtags/vocabulary
+msgid "Tcl Development"
+msgstr ""
+
+#. Tag: devel::library, short desc
+#: files/debtags/vocabulary
+msgid "Libraries"
+msgstr ""
+
+#. Tag: devel::machinecode, short desc
+#: files/debtags/vocabulary
+msgid "Machine Code"
+msgstr ""
+
+#. Tag: devel::machinecode, long desc
+#: files/debtags/vocabulary
+msgid " Assemblers and other machine-code development tools."
+msgstr ""
+
+#. Tag: devel::modelling, short desc
+#: files/debtags/vocabulary
+msgid "Modelling"
+msgstr ""
+
+#. Tag: devel::modelling, long desc
+#: files/debtags/vocabulary
+msgid " Programs and libraries that support creation of software models\n with modelling languages like UML or OCL."
+msgstr ""
+
+#. Tag: devel::packaging, short desc
+#: files/debtags/vocabulary
+msgid "Packaging"
+msgstr ""
+
+#. Tag: devel::packaging, long desc
+#: files/debtags/vocabulary
+msgid " Tools for packaging software."
+msgstr ""
+
+#. Tag: devel::prettyprint, short desc
+#: files/debtags/vocabulary
+msgid "Prettyprint"
+msgstr ""
+
+#. Tag: devel::prettyprint, long desc
+#: files/debtags/vocabulary
+msgid " Code pretty-printing and indentation/reformatting."
+msgstr ""
+
+#. Tag: devel::profiler, short desc
+#: files/debtags/vocabulary
+msgid "Profiling"
+msgstr ""
+
+#. Tag: devel::profiler, long desc
+#: files/debtags/vocabulary
+msgid " Profiling and optimization tools."
+msgstr ""
+
+#. Tag: devel::rcs, short desc
+#: files/debtags/vocabulary
+msgid "Revision Control"
+msgstr ""
+
+#. Tag: devel::rcs, long desc
+#: files/debtags/vocabulary
+msgid " RCS (Revision Control System) and SCM (Software Configuration Manager)"
+msgstr ""
+
+#. Tag: devel::rpc, short desc
+#: files/debtags/vocabulary
+msgid "RPC"
+msgstr ""
+
+#. Tag: devel::rpc, long desc
+#: files/debtags/vocabulary
+msgid " Remote Procedure Call, Network transparent programming"
+msgstr ""
+
+#. Tag: devel::runtime, short desc
+#: files/debtags/vocabulary
+msgid "Runtime Support"
+msgstr ""
+
+#. Tag: devel::runtime, long desc
+#: files/debtags/vocabulary
+msgid " Runtime environments of various languages and systems."
+msgstr ""
+
+#. Tag: devel::testing-qa, short desc
+#: files/debtags/vocabulary
+msgid "Testing and QA"
+msgstr ""
+
+#. Tag: devel::testing-qa, long desc
+#: files/debtags/vocabulary
+msgid " Tools for software testing and quality assurance."
+msgstr ""
+
+#. Tag: devel::ui-builder, short desc
+#: files/debtags/vocabulary
+#. Facet: interface, short desc
+#: files/debtags/vocabulary
+msgid "User Interface"
+msgstr ""
+
+#. Tag: devel::ui-builder, long desc
+#: files/debtags/vocabulary
+msgid " Tools for designing user interfaces."
+msgstr ""
+
+#. Tag: devel::web, short desc
+#: files/debtags/vocabulary
+msgid "Web"
+msgstr ""
+
+#. Tag: devel::web, long desc
+#: files/debtags/vocabulary
+msgid " Web-centric frameworks, CGI libraries and other web-specific development\n tools."
+msgstr ""
+
+#. Tag: educational, short desc
+#: files/debtags/vocabulary
+msgid "[Edu] Educational Software"
+msgstr ""
+
+#. Facet: field, short desc
+#: files/debtags/vocabulary
+msgid "Field"
+msgstr ""
+
+#. Tag: field::arts, short desc
+#: files/debtags/vocabulary
+msgid "Arts"
+msgstr ""
+
+#. Tag: field::astronomy, short desc
+#: files/debtags/vocabulary
+msgid "Astronomy"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, short desc
+#: files/debtags/vocabulary
+msgid "Bioinformatics"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, long desc
+#: files/debtags/vocabulary
+msgid " Sequence analysis software."
+msgstr ""
+
+#. Tag: field::biology:molecular, short desc
+#: files/debtags/vocabulary
+msgid "Molecular biology"
+msgstr ""
+
+#. Tag: field::biology:molecular, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to molecular cloning and related wet biology."
+msgstr ""
+
+#. Tag: field::biology:structural, short desc
+#: files/debtags/vocabulary
+msgid "Structural biology"
+msgstr ""
+
+#. Tag: field::biology:structural, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to model tridimentional structures."
+msgstr ""
+
+#. Tag: field::chemistry, short desc
+#: files/debtags/vocabulary
+msgid "Chemistry"
+msgstr ""
+
+#. Tag: field::electronics, short desc
+#: files/debtags/vocabulary
+msgid "Electronics"
+msgstr ""
+
+#. Tag: field::electronics, long desc
+#: files/debtags/vocabulary
+msgid " Circuit editors and other electronics-related software"
+msgstr ""
+
+#. Tag: field::finance, short desc
+#: files/debtags/vocabulary
+msgid "Financial"
+msgstr ""
+
+#. Tag: field::finance, long desc
+#: files/debtags/vocabulary
+msgid " Accounting and financial software"
+msgstr ""
+
+#. Tag: field::genealogy, short desc
+#: files/debtags/vocabulary
+msgid "Genealogy"
+msgstr ""
+
+#. Tag: field::geography, short desc
+#: files/debtags/vocabulary
+msgid "Geography"
+msgstr ""
+
+#. Tag: field::geology, short desc
+#: files/debtags/vocabulary
+msgid "Geology"
+msgstr ""
+
+#. Tag: field::linguistics, short desc
+#: files/debtags/vocabulary
+msgid "Linguistics"
+msgstr ""
+
+#. Tag: field::mathematics, short desc
+#: files/debtags/vocabulary
+msgid "Mathematics"
+msgstr ""
+
+#. Tag: field::medicine, short desc
+#: files/debtags/vocabulary
+msgid "Medicine"
+msgstr ""
+
+#. Tag: field::medicine:imaging, short desc
+#: files/debtags/vocabulary
+msgid "Medical Imaging"
+msgstr ""
+
+#. Tag: field::physics, short desc
+#: files/debtags/vocabulary
+msgid "Physics"
+msgstr ""
+
+#. Tag: field::religion, short desc
+#: files/debtags/vocabulary
+msgid "Religion"
+msgstr ""
+
+#. Tag: field::statistics, short desc
+#: files/debtags/vocabulary
+msgid "Statistics"
+msgstr ""
+
+#. Facet: game, short desc
+#: files/debtags/vocabulary
+msgid "Games and Amusement"
+msgstr ""
+
+#. Tag: game::adventure, short desc
+#: files/debtags/vocabulary
+msgid "Adventure"
+msgstr ""
+
+#. Tag: game::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Action and Arcade"
+msgstr ""
+
+#. Tag: game::board, short desc
+#: files/debtags/vocabulary
+msgid "Board"
+msgstr ""
+
+#. Tag: game::board:chess, short desc
+#: files/debtags/vocabulary
+msgid "Chess"
+msgstr ""
+
+#. Tag: game::card, short desc
+#: files/debtags/vocabulary
+msgid "Card"
+msgstr ""
+
+#. Tag: game::demos, short desc
+#: files/debtags/vocabulary
+msgid "Demo"
+msgstr ""
+
+#. Tag: game::fps, short desc
+#: files/debtags/vocabulary
+msgid "First person shooter"
+msgstr ""
+
+#. Tag: game::mud, short desc
+#: files/debtags/vocabulary
+msgid "Multiplayer RPG"
+msgstr ""
+
+#. Tag: game::mud, long desc
+#: files/debtags/vocabulary
+msgid " MUDs, MOOs, and other multiplayer RPGs"
+msgstr ""
+
+#. Tag: game::platform, short desc
+#: files/debtags/vocabulary
+msgid "Platform"
+msgstr ""
+
+#. Tag: game::puzzle, short desc
+#: files/debtags/vocabulary
+msgid "Puzzle"
+msgstr ""
+
+#. Tag: game::rpg, short desc
+#: files/debtags/vocabulary
+msgid "Role-playing"
+msgstr ""
+
+#. Tag: game::rpg:rogue, short desc
+#: files/debtags/vocabulary
+msgid "Rogue-Like RPG"
+msgstr ""
+
+#. Tag: game::rpg:rogue, long desc
+#: files/debtags/vocabulary
+msgid " Games like Nethack, Angband etc."
+msgstr ""
+
+#. Tag: game::simulation, short desc
+#: files/debtags/vocabulary
+msgid "Simulation"
+msgstr ""
+
+#. Tag: game::sport, short desc
+#: files/debtags/vocabulary
+msgid "Sport games"
+msgstr ""
+
+#. Tag: game::sport:racing, short desc
+#: files/debtags/vocabulary
+msgid "Racing"
+msgstr ""
+
+#. Tag: game::strategy, short desc
+#: files/debtags/vocabulary
+msgid "Strategy"
+msgstr ""
+
+#. Tag: game::tetris, short desc
+#: files/debtags/vocabulary
+msgid "Tetris-like"
+msgstr ""
+
+#. Tag: game::toys, short desc
+#: files/debtags/vocabulary
+msgid "Toy or Gimmick"
+msgstr ""
+
+#. Tag: game::typing, short desc
+#: files/debtags/vocabulary
+msgid "Typing Tutor"
+msgstr ""
+
+#. Facet: hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Enablement"
+msgstr ""
+
+#. Tag: hardware::camera, short desc
+#: files/debtags/vocabulary
+msgid "Digital Camera"
+msgstr ""
+
+#. Tag: hardware::detection, short desc
+#: files/debtags/vocabulary
+msgid "Hardware detection"
+msgstr ""
+
+#. Tag: hardware::embedded, short desc
+#: files/debtags/vocabulary
+msgid "Embedded"
+msgstr ""
+
+#. Tag: hardware::emulation, short desc
+#: files/debtags/vocabulary
+msgid "Emulation"
+msgstr ""
+
+#. Tag: hardware::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Devices"
+msgstr ""
+
+#. Tag: hardware::input:joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick"
+msgstr ""
+
+#. Tag: hardware::input:keyboard, short desc
+#: files/debtags/vocabulary
+msgid "Keyboard"
+msgstr ""
+
+#. Tag: hardware::input:mouse, short desc
+#: files/debtags/vocabulary
+msgid "Mouse"
+msgstr ""
+
+#. Tag: hardware::joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick (legacy)"
+msgstr ""
+
+#. Tag: hardware::hamradio, short desc
+#: files/debtags/vocabulary
+msgid "Ham Radio"
+msgstr ""
+
+#. Tag: hardware::laptop, short desc
+#: files/debtags/vocabulary
+msgid "Laptop"
+msgstr ""
+
+#. Tag: hardware::modem, short desc
+#: files/debtags/vocabulary
+msgid "Modem"
+msgstr ""
+
+#. Tag: hardware::modem:dsl, short desc
+#: files/debtags/vocabulary
+msgid "xDSL Modem"
+msgstr ""
+
+#. Tag: hardware::opengl, short desc
+#: files/debtags/vocabulary
+msgid "Requires video hardware acceleration"
+msgstr ""
+
+#. Tag: hardware::power:ups, short desc
+#: files/debtags/vocabulary
+msgid "UPS"
+msgstr ""
+
+#. Tag: hardware::power:ups, long desc
+#: files/debtags/vocabulary
+msgid " Uninterruptible Power Supply"
+msgstr ""
+
+#. Tag: hardware::power:acpi, short desc
+#: files/debtags/vocabulary
+msgid "ACPI Power Management"
+msgstr ""
+
+#. Tag: hardware::power:apm, short desc
+#: files/debtags/vocabulary
+msgid "APM Power Management"
+msgstr ""
+
+#. Tag: hardware::printer, short desc
+#: files/debtags/vocabulary
+msgid "Printer"
+msgstr ""
+
+#. Tag: hardware::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Image-scanning hardware"
+msgstr ""
+
+#. Tag: hardware::storage, short desc
+#: files/debtags/vocabulary
+msgid "Storage"
+msgstr ""
+
+#. Tag: hardware::storage:cd, short desc
+#: files/debtags/vocabulary
+msgid "CD"
+msgstr ""
+
+#. Tag: hardware::storage:cd, long desc
+#: files/debtags/vocabulary
+msgid " Compact Disc"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, short desc
+#: files/debtags/vocabulary
+msgid "DVD"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, long desc
+#: files/debtags/vocabulary
+msgid " Digital Versatile Disc"
+msgstr ""
+
+#. Tag: hardware::storage:floppy, short desc
+#: files/debtags/vocabulary
+msgid "Floppy disk"
+msgstr ""
+
+#. Tag: hardware::usb, short desc
+#: files/debtags/vocabulary
+msgid "USB"
+msgstr ""
+
+#. Tag: hardware::usb, long desc
+#: files/debtags/vocabulary
+msgid " Universal Serial Bus"
+msgstr ""
+
+#. Tag: hardware::video, short desc
+#: files/debtags/vocabulary
+msgid "Graphics and Video"
+msgstr ""
+
+#. Facet: made-of, short desc
+#: files/debtags/vocabulary
+msgid "Made Of"
+msgstr ""
+
+#. Facet: made-of, long desc
+#: files/debtags/vocabulary
+msgid " The languages or data formats used to make the package"
+msgstr ""
+
+#. Tag: made-of::data:dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionary"
+msgstr ""
+
+#. Tag: made-of::data:font, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::font, short desc
+#: files/debtags/vocabulary
+msgid "Font"
+msgstr ""
+
+#. Tag: made-of::data:html, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::html, short desc
+#: files/debtags/vocabulary
+msgid "HTML Hypertext Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:icons, short desc
+#: files/debtags/vocabulary
+msgid "Icons"
+msgstr ""
+
+#. Tag: made-of::data:info, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::info, short desc
+#: files/debtags/vocabulary
+msgid "Documentation in Info format"
+msgstr ""
+
+#. Tag: made-of::data:man, short desc
+#: files/debtags/vocabulary
+msgid "Manuals in nroff format"
+msgstr ""
+
+#. Tag: made-of::data:pdf, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::pdf, short desc
+#: files/debtags/vocabulary
+msgid "PDF Documents"
+msgstr ""
+
+#. Tag: made-of::data:postscript, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::postscript, short desc
+#: files/debtags/vocabulary
+msgid "Postscript"
+msgstr ""
+
+#. Tag: made-of::data:sgml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::sgml, short desc
+#: files/debtags/vocabulary
+msgid "SGML, Standard Generalized Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:svg, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::svg, short desc
+#: files/debtags/vocabulary
+msgid "SVG, Scalable Vector Graphics"
+msgstr ""
+
+#. Tag: made-of::data:tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX, LaTeX and DVI"
+msgstr ""
+
+#. Tag: made-of::data:vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:xml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::xml, short desc
+#: files/debtags/vocabulary
+msgid "XML"
+msgstr ""
+
+#. Tag: interface::3d, short desc
+#: files/debtags/vocabulary
+msgid "Three-Dimensional"
+msgstr ""
+
+#. Tag: interface::commandline, short desc
+#: files/debtags/vocabulary
+msgid "Command Line"
+msgstr ""
+
+#. Tag: interface::daemon, short desc
+#: files/debtags/vocabulary
+msgid "Daemon"
+msgstr ""
+
+#. Tag: interface::daemon, long desc
+#: files/debtags/vocabulary
+msgid " Runs in background, only a control interface is provided, usually on\n commandline."
+msgstr ""
+
+#. Tag: interface::framebuffer, short desc
+#: files/debtags/vocabulary
+msgid "Framebuffer"
+msgstr ""
+
+#. Tag: interface::shell, short desc
+#: files/debtags/vocabulary
+msgid "Command Shell"
+msgstr ""
+
+#. Tag: interface::svga, short desc
+#: files/debtags/vocabulary
+msgid "Console SVGA"
+msgstr ""
+
+#. Tag: interface::text-mode, short desc
+#: files/debtags/vocabulary
+msgid "Text-based Interactive"
+msgstr ""
+
+#. Tag: interface::web, short desc
+#: files/debtags/vocabulary
+#. Facet: web, short desc
+#: files/debtags/vocabulary
+msgid "World Wide Web"
+msgstr ""
+
+#. Tag: interface::x11, short desc
+#: files/debtags/vocabulary
+msgid "X Window System"
+msgstr ""
+
+#. Facet: implemented-in, short desc
+#: files/debtags/vocabulary
+msgid "Implemented in"
+msgstr ""
+
+#. Tag: implemented-in::ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada"
+msgstr ""
+
+#. Tag: implemented-in::c, short desc
+#: files/debtags/vocabulary
+msgid "C"
+msgstr ""
+
+#. Tag: implemented-in::c++, short desc
+#: files/debtags/vocabulary
+msgid "C++"
+msgstr ""
+
+#. Tag: implemented-in::c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C#"
+msgstr ""
+
+#. Tag: implemented-in::fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran"
+msgstr ""
+
+#. Tag: implemented-in::haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell"
+msgstr ""
+
+#. Tag: implemented-in::java, short desc
+#: files/debtags/vocabulary
+msgid "Java"
+msgstr ""
+
+#. Tag: implemented-in::ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/Javascript"
+msgstr ""
+
+#. Tag: implemented-in::lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp"
+msgstr ""
+
+#. Tag: implemented-in::lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua"
+msgstr ""
+
+#. Tag: implemented-in::ml, short desc
+#: files/debtags/vocabulary
+msgid "ML"
+msgstr ""
+
+#. Tag: implemented-in::objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective C"
+msgstr ""
+
+#. Tag: implemented-in::ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml"
+msgstr ""
+
+#. Tag: implemented-in::perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl"
+msgstr ""
+
+#. Tag: implemented-in::php, short desc
+#: files/debtags/vocabulary
+msgid "PHP"
+msgstr ""
+
+#. Tag: implemented-in::pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike"
+msgstr ""
+
+#. Tag: implemented-in::python, short desc
+#: files/debtags/vocabulary
+msgid "Python"
+msgstr ""
+
+#. Tag: implemented-in::r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R"
+msgstr ""
+
+#. Tag: implemented-in::ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby"
+msgstr ""
+
+#. Tag: implemented-in::scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme"
+msgstr ""
+
+#. Tag: implemented-in::shell, short desc
+#: files/debtags/vocabulary
+msgid "sh, bash, ksh, tcsh and other shells"
+msgstr ""
+
+#. Tag: implemented-in::tcl, short desc
+#: files/debtags/vocabulary
+msgid "TCL Tool Command Language"
+msgstr ""
+
+#. Facet: junior, short desc
+#: files/debtags/vocabulary
+msgid "Junior Applications"
+msgstr ""
+
+#. Facet: junior, long desc
+#: files/debtags/vocabulary
+msgid " Applications recommended for younger users"
+msgstr ""
+
+#. Tag: junior::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Arcade games"
+msgstr ""
+
+#. Tag: junior::games-gl, short desc
+#: files/debtags/vocabulary
+msgid "3D games"
+msgstr ""
+
+#. Tag: junior::meta, short desc
+#: files/debtags/vocabulary
+msgid "Metapackages"
+msgstr ""
+
+#. Facet: mail, short desc
+#: files/debtags/vocabulary
+msgid "Electronic Mail"
+msgstr ""
+
+#. Tag: mail::filters, short desc
+#: files/debtags/vocabulary
+msgid "Filters"
+msgstr ""
+
+#. Tag: mail::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP Protocol"
+msgstr ""
+
+#. Tag: mail::list, short desc
+#: files/debtags/vocabulary
+msgid "Mailing Lists"
+msgstr ""
+
+#. Tag: mail::notification, short desc
+#: files/debtags/vocabulary
+msgid "Notification"
+msgstr ""
+
+#. Tag: mail::notification, long desc
+#: files/debtags/vocabulary
+msgid " Software that notifies users about status of mailbox."
+msgstr ""
+
+#. Tag: mail::pop, short desc
+#: files/debtags/vocabulary
+msgid "POP3 Protocol"
+msgstr ""
+
+#. Tag: mail::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP Protocol"
+msgstr ""
+
+#. Tag: mail::delivery-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Delivery Agent"
+msgstr ""
+
+#. Tag: mail::delivery-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that delivers mail to users' mailboxes."
+msgstr ""
+
+#. Tag: mail::transport-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Transport Agent"
+msgstr ""
+
+#. Tag: mail::transport-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that routes and transmits mail accross the system and the network."
+msgstr ""
+
+#. Tag: mail::user-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail user agent"
+msgstr ""
+
+#. Tag: mail::user-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that allows users to access e-mail."
+msgstr ""
+
+#. Facet: office, short desc
+#: files/debtags/vocabulary
+msgid "Office and business"
+msgstr ""
+
+#. Tag: office::finance, short desc
+#: files/debtags/vocabulary
+msgid "Finance"
+msgstr ""
+
+#. Tag: office::groupware, short desc
+#: files/debtags/vocabulary
+msgid "Groupware"
+msgstr ""
+
+#. Tag: office::presentation, short desc
+#: files/debtags/vocabulary
+msgid "Presentation"
+msgstr ""
+
+#. Tag: office::project-management, short desc
+#: files/debtags/vocabulary
+msgid "Project management"
+msgstr ""
+
+#. Tag: office::spreadsheet, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::spreadsheet, short desc
+#: files/debtags/vocabulary
+msgid "Spreadsheet"
+msgstr ""
+
+#. Facet: works-with, short desc
+#: files/debtags/vocabulary
+msgid "Works with"
+msgstr ""
+
+#. Facet: works-with, long desc
+#: files/debtags/vocabulary
+msgid " These tags describe what is the kind of data (or even processes, or people)\n that the package can work with."
+msgstr ""
+
+#. Tag: works-with::3dmodel, short desc
+#: files/debtags/vocabulary
+msgid "3D Model"
+msgstr ""
+
+#. Tag: works-with::archive, short desc
+#: files/debtags/vocabulary
+msgid "Archive"
+msgstr ""
+
+#. Tag: works-with::audio, short desc
+#: files/debtags/vocabulary
+msgid "Audio"
+msgstr ""
+
+#. Tag: works-with::bugs, short desc
+#: files/debtags/vocabulary
+msgid "Bugs or Issues"
+msgstr ""
+
+#. Tag: works-with::db, short desc
+#: files/debtags/vocabulary
+msgid "Databases"
+msgstr ""
+
+#. Tag: works-with::dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionaries"
+msgstr ""
+
+#. Tag: works-with::dtp, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Publishing (DTP)"
+msgstr ""
+
+#. Tag: works-with::fax, short desc
+#: files/debtags/vocabulary
+msgid "Faxes"
+msgstr ""
+
+#. Tag: works-with::file, short desc
+#: files/debtags/vocabulary
+msgid "Files"
+msgstr ""
+
+#. Tag: works-with::font, short desc
+#: files/debtags/vocabulary
+msgid "Fonts"
+msgstr ""
+
+#. Tag: works-with::im, short desc
+#: files/debtags/vocabulary
+msgid "Instant Messages"
+msgstr ""
+
+#. Tag: works-with::im, long desc
+#: files/debtags/vocabulary
+msgid " The package can connect to some IM network (or networks)."
+msgstr ""
+
+#. Tag: works-with::logfile, short desc
+#: files/debtags/vocabulary
+msgid "System Logs"
+msgstr ""
+
+#. Tag: works-with::mail, short desc
+#: files/debtags/vocabulary
+msgid "Email"
+msgstr ""
+
+#. Tag: works-with::music-notation, short desc
+#: files/debtags/vocabulary
+msgid "Music Notation"
+msgstr ""
+
+#. Tag: works-with::network-traffic, short desc
+#: files/debtags/vocabulary
+msgid "Network traffic"
+msgstr ""
+
+#. Tag: works-with::network-traffic, long desc
+#: files/debtags/vocabulary
+msgid " Routers, shapers, sniffers, firewalls and other tools\n that work with a stream of network packets."
+msgstr ""
+
+#. Tag: works-with::people, short desc
+#: files/debtags/vocabulary
+msgid "People"
+msgstr ""
+
+#. Tag: works-with::pim, short desc
+#: files/debtags/vocabulary
+msgid "Personal Information"
+msgstr ""
+
+#. Tag: works-with::image, short desc
+#: files/debtags/vocabulary
+msgid "Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, short desc
+#: files/debtags/vocabulary
+msgid "Raster Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, long desc
+#: files/debtags/vocabulary
+msgid " Images made of dots, such as photos and scans"
+msgstr ""
+
+#. Tag: works-with::image:vector, short desc
+#: files/debtags/vocabulary
+msgid "Vector Image"
+msgstr ""
+
+#. Tag: works-with::image:vector, long desc
+#: files/debtags/vocabulary
+msgid " Images made of lines, such as graphs or most clipart"
+msgstr ""
+
+#. Tag: works-with::software:package, short desc
+#: files/debtags/vocabulary
+msgid "Packaged software"
+msgstr ""
+
+#. Tag: works-with::software:running, short desc
+#: files/debtags/vocabulary
+msgid "Running programs"
+msgstr ""
+
+#. Tag: works-with::software:source, short desc
+#: files/debtags/vocabulary
+msgid "Source code"
+msgstr ""
+
+#. Tag: works-with::text, short desc
+#: files/debtags/vocabulary
+msgid "Text"
+msgstr ""
+
+#. Tag: works-with::unicode, short desc
+#: files/debtags/vocabulary
+msgid "Unicode"
+msgstr ""
+
+#. Tag: works-with::unicode, long desc
+#: files/debtags/vocabulary
+msgid " Please do not tag programs with simple unicode support,\n doing so would make this tag useless.\n Ultimately all applications should have unicode support."
+msgstr ""
+
+#. Tag: works-with::video, short desc
+#: files/debtags/vocabulary
+msgid "Video and Animation"
+msgstr ""
+
+#. Facet: works-with-format, short desc
+#: files/debtags/vocabulary
+msgid "Supports Format"
+msgstr ""
+
+#. Tag: works-with-format::bib, short desc
+#: files/debtags/vocabulary
+msgid "BibTeX"
+msgstr ""
+
+#. Tag: works-with-format::bib, long desc
+#: files/debtags/vocabulary
+msgid " BibTeX list of references"
+msgstr ""
+
+#. Tag: works-with-format::dvi, short desc
+#: files/debtags/vocabulary
+msgid "TeX DVI"
+msgstr ""
+
+#. Tag: works-with-format::dvi, long desc
+#: files/debtags/vocabulary
+msgid " DeVice Independent page description file, usually generated\n by TeX or LaTeX."
+msgstr ""
+
+#. Tag: works-with-format::ldif, short desc
+#: files/debtags/vocabulary
+msgid "LDIF"
+msgstr ""
+
+#. Tag: works-with-format::ldif, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML 3D Model"
+msgstr ""
+
+#. Tag: works-with-format::vrml, long desc
+#: files/debtags/vocabulary
+msgid " Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: works-with-format::iso9660, short desc
+#: files/debtags/vocabulary
+msgid "ISO 9660 CD Filesystem"
+msgstr ""
+
+#. Tag: works-with-format::tar, short desc
+#: files/debtags/vocabulary
+msgid "Tar Archives"
+msgstr ""
+
+#. Tag: works-with-format::zip, short desc
+#: files/debtags/vocabulary
+msgid "Zip Archives"
+msgstr ""
+
+#. Tag: works-with-format::mp3, short desc
+#: files/debtags/vocabulary
+msgid "MP3 Audio"
+msgstr ""
+
+#. Tag: works-with-format::mpc, short desc
+#: files/debtags/vocabulary
+msgid "Musepack Audio"
+msgstr ""
+
+#. Tag: works-with-format::oggvorbis, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Vorbis Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, short desc
+#: files/debtags/vocabulary
+msgid "MS RIFF Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, long desc
+#: files/debtags/vocabulary
+msgid " Wave uncompressed audio format"
+msgstr ""
+
+#. Tag: works-with-format::jpg, short desc
+#: files/debtags/vocabulary
+msgid "JPEG, Joint Picture Expert Group"
+msgstr ""
+
+#. Tag: works-with-format::gif, short desc
+#: files/debtags/vocabulary
+msgid "GIF, Graphics Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::odf, short desc
+#: files/debtags/vocabulary
+msgid "ODF, Open Document Format"
+msgstr ""
+
+#. Tag: works-with-format::png, short desc
+#: files/debtags/vocabulary
+msgid "PNG, Portable Network Graphics"
+msgstr ""
+
+#. Tag: works-with-format::swf, short desc
+#: files/debtags/vocabulary
+msgid "SWF, ShockWave Flash"
+msgstr ""
+
+#. Tag: works-with-format::tiff, short desc
+#: files/debtags/vocabulary
+msgid "TIFF, Tagged Image File Format"
+msgstr ""
+
+#. Tag: works-with-format::docbook, short desc
+#: files/debtags/vocabulary
+msgid "Docbook"
+msgstr ""
+
+#. Tag: works-with-format::man, short desc
+#: files/debtags/vocabulary
+msgid "Manpages"
+msgstr ""
+
+#. Tag: works-with-format::plaintext, short desc
+#: files/debtags/vocabulary
+msgid "Plain text"
+msgstr ""
+
+#. Tag: works-with-format::tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX and LaTeX"
+msgstr ""
+
+#. Tag: works-with-format::oggtheora, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Theora Video"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, short desc
+#: files/debtags/vocabulary
+msgid "RSS Rich Site Summary"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, long desc
+#: files/debtags/vocabulary
+msgid " XML dialect used to describe resources and websites."
+msgstr ""
+
+#. Tag: works-with-format::xml:xslt, short desc
+#: files/debtags/vocabulary
+msgid "XSL Transformations (XSLT)"
+msgstr ""
+
+#. Facet: scope, short desc
+#: files/debtags/vocabulary
+msgid "Scope"
+msgstr ""
+
+#. Tag: scope::utility, short desc
+#: files/debtags/vocabulary
+msgid "Utility"
+msgstr ""
+
+#. Tag: scope::utility, long desc
+#: files/debtags/vocabulary
+msgid " A narrow-scoped program for particular use case or few use cases. It\n only does something 10-20% of users in the field will need. Often has\n functionality missing from related applications."
+msgstr ""
+
+#. Tag: scope::application, short desc
+#: files/debtags/vocabulary
+#. Tag: web::application, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::application, short desc
+#: files/debtags/vocabulary
+msgid "Application"
+msgstr ""
+
+#. Tag: scope::application, long desc
+#: files/debtags/vocabulary
+msgid " Broad-scoped program for general use. It probably has functionality\n for 80-90% of use cases. The pieces that remain are usually to be\n found as utilities."
+msgstr ""
+
+#. Tag: scope::suite, short desc
+#: files/debtags/vocabulary
+msgid "Suite"
+msgstr ""
+
+#. Tag: scope::suite, long desc
+#: files/debtags/vocabulary
+msgid " Comprehensive suite of applications and utilities on the scale of\n desktop environment or base operating system."
+msgstr ""
+
+#. Facet: role, short desc
+#: files/debtags/vocabulary
+msgid "Role"
+msgstr ""
+
+#. Tag: role::program, short desc
+#: files/debtags/vocabulary
+msgid "Program"
+msgstr ""
+
+#. Tag: role::program, long desc
+#: files/debtags/vocabulary
+msgid " Executable computer program."
+msgstr ""
+
+#. Tag: role::shared-lib, short desc
+#: files/debtags/vocabulary
+msgid "Shared Library"
+msgstr ""
+
+#. Tag: role::shared-lib, long desc
+#: files/debtags/vocabulary
+msgid " Shared libraries used by one or more programs."
+msgstr ""
+
+#. Tag: role::plugin, short desc
+#: files/debtags/vocabulary
+msgid "Plugin"
+msgstr ""
+
+#. Tag: role::plugin, long desc
+#: files/debtags/vocabulary
+msgid " Add-on, pluggable program fragments enhancing functionality\n of some program or system."
+msgstr ""
+
+#. Tag: role::debug-symbols, short desc
+#: files/debtags/vocabulary
+msgid "Debugging symbols"
+msgstr ""
+
+#. Tag: role::debug-symbols, long desc
+#: files/debtags/vocabulary
+msgid " Debugging symbols."
+msgstr ""
+
+#. Tag: role::devel-lib, short desc
+#: files/debtags/vocabulary
+msgid "Development Library"
+msgstr ""
+
+#. Tag: role::devel-lib, long desc
+#: files/debtags/vocabulary
+msgid " Library and header files used in software development or building."
+msgstr ""
+
+#. Tag: role::source, short desc
+#: files/debtags/vocabulary
+msgid "Source Code"
+msgstr ""
+
+#. Tag: role::source, long desc
+#: files/debtags/vocabulary
+msgid " Human-readable code of a program, library or a part thereof."
+msgstr ""
+
+#. Tag: role::data, short desc
+#: files/debtags/vocabulary
+msgid "Standalone Data"
+msgstr ""
+
+#. Tag: role::app-data, short desc
+#: files/debtags/vocabulary
+msgid "Application Data"
+msgstr ""
+
+#. Tag: role::metapackage, short desc
+#: files/debtags/vocabulary
+msgid "Metapackage"
+msgstr ""
+
+#. Tag: role::metapackage, long desc
+#: files/debtags/vocabulary
+msgid " Packages that install suites of other packages."
+msgstr ""
+
+#. Facet: security, short desc
+#: files/debtags/vocabulary
+msgid "Security"
+msgstr ""
+
+#. Facet: security, long desc
+#: files/debtags/vocabulary
+msgid " How the package is related to system security"
+msgstr ""
+
+#. Tag: security::antivirus, short desc
+#: files/debtags/vocabulary
+msgid "Anti-Virus"
+msgstr ""
+
+#. Tag: security::authentication, short desc
+#: files/debtags/vocabulary
+msgid "Authentication"
+msgstr ""
+
+#. Tag: security::cryptography, short desc
+#: files/debtags/vocabulary
+msgid "Cryptography"
+msgstr ""
+
+#. Tag: security::cryptography, long desc
+#: files/debtags/vocabulary
+msgid " Cryptographic and privacy-oriented tools."
+msgstr ""
+
+#. Tag: security::firewall, short desc
+#: files/debtags/vocabulary
+#. Tag: network::firewall, short desc
+#: files/debtags/vocabulary
+msgid "Firewall"
+msgstr ""
+
+#. Tag: security::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics"
+msgstr ""
+
+#. Tag: security::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Post-mortem analysis of intrusions."
+msgstr ""
+
+#. Tag: security::ids, short desc
+#: files/debtags/vocabulary
+msgid "Intrusion Detection"
+msgstr ""
+
+#. Tag: security::integrity, short desc
+#: files/debtags/vocabulary
+msgid "File Integrity"
+msgstr ""
+
+#. Tag: security::integrity, long desc
+#: files/debtags/vocabulary
+msgid " Tools to monitor system for changes in filesystem and report changes\n or tools providing other means to check system integrity."
+msgstr ""
+
+#. Tag: security::log-analyzer, short desc
+#: files/debtags/vocabulary
+msgid "Log Analyzer"
+msgstr ""
+
+#. Tag: security::privacy, short desc
+#: files/debtags/vocabulary
+msgid "Privacy"
+msgstr ""
+
+#. Facet: sound, short desc
+#: files/debtags/vocabulary
+msgid "Sound and Music"
+msgstr ""
+
+#. Tag: sound::compression, short desc
+#: files/debtags/vocabulary
+msgid "Compression"
+msgstr ""
+
+#. Tag: sound::midi, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Software"
+msgstr ""
+
+#. Tag: sound::mixer, short desc
+#: files/debtags/vocabulary
+msgid "Mixing"
+msgstr ""
+
+#. Tag: sound::player, short desc
+#: files/debtags/vocabulary
+msgid "Playback"
+msgstr ""
+
+#. Tag: sound::recorder, short desc
+#: files/debtags/vocabulary
+msgid "Recording"
+msgstr ""
+
+#. Tag: sound::sequencer, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Sequencing"
+msgstr ""
+
+#. Facet: special, short desc
+#: files/debtags/vocabulary
+msgid "Service tags"
+msgstr ""
+
+#. Tag: special::auto-inst-parts, short desc
+#: files/debtags/vocabulary
+msgid "Secondary packages users won't install directly"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, short desc
+#: files/debtags/vocabulary
+msgid "NO IPv6 support"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, long desc
+#: files/debtags/vocabulary
+msgid " Use this for packages that cannot yet or will never support IPv6."
+msgstr ""
+
+#. Tag: special::obsolete, short desc
+#: files/debtags/vocabulary
+msgid "Obsolete Packages"
+msgstr ""
+
+#. Tag: special::obsolete, long desc
+#: files/debtags/vocabulary
+msgid " Packages that are not used any longer, also packages only left for upgrade\n purposes (merged / split packages)"
+msgstr ""
+
+#. Tag: special::invalid-tag, short desc
+#: files/debtags/vocabulary
+msgid "Invalid tag"
+msgstr ""
+
+#. Tag: special::invalid-tag, long desc
+#: files/debtags/vocabulary
+msgid " This tag means that the tag database contains a tag which is not present in\n the tag vocabulary.  The presence of this tag indicates a software bug: this\n should never show up."
+msgstr ""
+
+#. Tag: special::not-yet-tagged, short desc
+#: files/debtags/vocabulary
+msgid "!Not yet tagged packages!"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::a, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with a"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::b, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with b"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::c, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with c"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::d, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with d"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::e, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with e"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::f, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with f"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::g, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with g"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::h, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with h"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::i, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with i"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::j, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with j"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::k, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with k"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::l, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with l"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::m, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with m"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::n, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with n"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::o, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with o"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::p, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with p"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::q, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with q"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::r, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with r"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::s, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with s"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::t, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with t"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::u, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with u"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::v, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with v"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::w, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with w"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::x, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with x"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::y, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with y"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::z, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with z"
+msgstr ""
+
+#. Facet: suite, short desc
+#: files/debtags/vocabulary
+msgid "Application Suite"
+msgstr ""
+
+#. Tag: suite::apache, short desc
+#: files/debtags/vocabulary
+msgid "Apache"
+msgstr ""
+
+#. Tag: suite::eclipse, short desc
+#: files/debtags/vocabulary
+msgid "Eclipse"
+msgstr ""
+
+#. Tag: suite::eclipse, long desc
+#: files/debtags/vocabulary
+msgid " Eclipse tool platform and plugins."
+msgstr ""
+
+#. Tag: suite::emacs, short desc
+#: files/debtags/vocabulary
+msgid "Emacs"
+msgstr ""
+
+#. Tag: suite::gforge, short desc
+#: files/debtags/vocabulary
+msgid "GForge"
+msgstr ""
+
+#. Tag: suite::gforge, long desc
+#: files/debtags/vocabulary
+msgid " A collaborative development platform."
+msgstr ""
+
+#. Tag: suite::gimp, short desc
+#: files/debtags/vocabulary
+msgid "The GIMP"
+msgstr ""
+
+#. Tag: suite::gkrellm, short desc
+#: files/debtags/vocabulary
+msgid "GKrellM Monitors"
+msgstr ""
+
+#. Tag: suite::gnome, short desc
+#: files/debtags/vocabulary
+msgid "GNOME"
+msgstr ""
+
+#. Tag: suite::gnu, short desc
+#: files/debtags/vocabulary
+msgid "GNU"
+msgstr ""
+
+#. Tag: suite::gnu, long desc
+#: files/debtags/vocabulary
+msgid " Gnu's Not Unix. The package is part of the official GNU project"
+msgstr ""
+
+#. Tag: suite::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUStep"
+msgstr ""
+
+#. Tag: suite::gnustep, long desc
+#: files/debtags/vocabulary
+msgid "  GNUStep Desktop and WindowMaker"
+msgstr ""
+
+#. Tag: suite::gpe, short desc
+#: files/debtags/vocabulary
+msgid "GPE"
+msgstr ""
+
+#. Tag: suite::gpe, long desc
+#: files/debtags/vocabulary
+msgid "  GPE Palmtop Environment"
+msgstr ""
+
+#. Tag: suite::kde, short desc
+#: files/debtags/vocabulary
+msgid "KDE"
+msgstr ""
+
+#. Tag: suite::mozilla, short desc
+#: files/debtags/vocabulary
+msgid "Mozilla"
+msgstr ""
+
+#. Tag: suite::mozilla, long desc
+#: files/debtags/vocabulary
+msgid " Mozilla Browser and extensions"
+msgstr ""
+
+#. Tag: suite::netscape, short desc
+#: files/debtags/vocabulary
+msgid "Netscape Navigator"
+msgstr ""
+
+#. Tag: suite::netscape, long desc
+#: files/debtags/vocabulary
+msgid " The pre-6.0 versions of netscape browser"
+msgstr ""
+
+#. Tag: suite::openoffice, short desc
+#: files/debtags/vocabulary
+msgid "OpenOffice.org"
+msgstr ""
+
+#. Tag: suite::opie, short desc
+#: files/debtags/vocabulary
+msgid "Open Palmtop (OPIE)"
+msgstr ""
+
+#. Tag: suite::roxen, short desc
+#: files/debtags/vocabulary
+msgid "Roxen"
+msgstr ""
+
+#. Tag: suite::samba, short desc
+#: files/debtags/vocabulary
+msgid "SAMBA"
+msgstr ""
+
+#. Tag: suite::webmin, short desc
+#: files/debtags/vocabulary
+msgid "Webmin"
+msgstr ""
+
+#. Tag: suite::xfce, short desc
+#: files/debtags/vocabulary
+msgid "XFce"
+msgstr ""
+
+#. Tag: suite::xfce, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight desktop environment for X11."
+msgstr ""
+
+#. Tag: suite::xmms, short desc
+#: files/debtags/vocabulary
+msgid "XMMS"
+msgstr ""
+
+#. Tag: suite::xmms2, short desc
+#: files/debtags/vocabulary
+msgid "XMMS 2"
+msgstr ""
+
+#. Tag: suite::zope, short desc
+#: files/debtags/vocabulary
+msgid "ZOPE"
+msgstr ""
+
+#. Tag: suite::zope, long desc
+#: files/debtags/vocabulary
+msgid " The zope (web) publishing platform."
+msgstr ""
+
+#. Facet: protocol, short desc
+#: files/debtags/vocabulary
+msgid "Network Protocol"
+msgstr ""
+
+#. Tag: protocol::db:mysql, short desc
+#: files/debtags/vocabulary
+msgid "MySQL"
+msgstr ""
+
+#. Tag: protocol::db:mysql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing MySQL database server."
+msgstr ""
+
+#. Tag: protocol::db:psql, short desc
+#: files/debtags/vocabulary
+msgid "PostgreSQL"
+msgstr ""
+
+#. Tag: protocol::db:psql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing PostgreSQL database server."
+msgstr ""
+
+#. Tag: protocol::ldap, short desc
+#: files/debtags/vocabulary
+msgid "LDAP"
+msgstr ""
+
+#. Tag: protocol::ldap, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Access Protocol"
+msgstr ""
+
+#. Tag: protocol::atm, short desc
+#: files/debtags/vocabulary
+msgid "ATM"
+msgstr ""
+
+#. Tag: protocol::atm, long desc
+#: files/debtags/vocabulary
+msgid " Asynchronous Transfer Mode, a high speed protocol for communication between\n computers in a network.\n .\n While ATM is used to implement *DSL networks, it has never gained widespread\n use as a technology for building local area networks (LANs), for which it was\n originally intended.\n .\n Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode"
+msgstr ""
+
+#. Tag: protocol::bittorrent, short desc
+#: files/debtags/vocabulary
+msgid "BitTorrent"
+msgstr ""
+
+#. Tag: protocol::bittorrent, long desc
+#: files/debtags/vocabulary
+msgid " BitTorrent is a protocol for peer-to-peer based file distribution over\n network.\n .\n Although the actual data transport happens between BitTorrent clients, one\n central node, the so-called trackers, is needed to keep a list of all clients\n that download or provide the same file.\n .\n Link: http://www.bittorrent.com/\n Link: http://en.wikipedia.org/wiki/BitTorrent"
+msgstr ""
+
+#. Tag: protocol::corba, short desc
+#: files/debtags/vocabulary
+msgid "CORBA"
+msgstr ""
+
+#. Tag: protocol::corba, long desc
+#: files/debtags/vocabulary
+msgid " Common Object Request Broker Architecture, a standard for interoperability\n between programs written in different languages and running on different \n hardware platforms. CORBA includes a client-server network protocol for\n distributed computing.\n .\n With this network protocol, CORBA clients on different computers and written\n in different languages can exchange objects over a CORBA server such as orbit2\n or omniORB.\n .\n Link: http://www.corba.org/"
+msgstr ""
+
+#. Tag: protocol::dhcp, short desc
+#: files/debtags/vocabulary
+msgid "DHCP"
+msgstr ""
+
+#. Tag: protocol::dhcp, long desc
+#: files/debtags/vocabulary
+msgid " Dynamic Host Configuration Protocol, a client-server network protocol for\n automatic assignment of dynamic IP addresses to computers in a TCP/IP network,\n rather than giving each computer a static IP address.\n .\n Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol\n Link: http://www.ietf.org/rfc/rfc2131.txt"
+msgstr ""
+
+#. Tag: protocol::dns, short desc
+#: files/debtags/vocabulary
+msgid "DNS"
+msgstr ""
+
+#. Tag: protocol::dns, long desc
+#: files/debtags/vocabulary
+msgid " Domain Name System, a protocol to request information associated with domain\n names (like \"www.debian.org\"), most prominently the IP address. The protocol\n is used in communication with a DNS server (like BIND).\n .\n For the Internet, there are 13 root DNS servers around the world that keep the\n addresses of all registered domain names and provide this information to the\n DNS servers of Internet service providers.\n .\n Link: http://en.wikipedia.org/wiki/Domain_Name_System"
+msgstr ""
+
+#. Tag: protocol::ethernet, short desc
+#: files/debtags/vocabulary
+msgid "Ethernet"
+msgstr ""
+
+#. Tag: protocol::ethernet, long desc
+#: files/debtags/vocabulary
+msgid " Ethernet is the most popular networking technology for creating local area\n networks (LANs).\n .\n The computers in an Ethernet network communicate over twisted-pair or fibre\n cables and are identified by their MAC address. Several different types of\n Ethernet exist, distinguishable by the maximum connection speed. The most\n widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).\n .\n Link: http://en.wikipedia.org/wiki/Ethernet"
+msgstr ""
+
+#. Tag: protocol::fidonet, short desc
+#: files/debtags/vocabulary
+msgid "FidoNet"
+msgstr ""
+
+#. Tag: protocol::fidonet, long desc
+#: files/debtags/vocabulary
+msgid " FidoNet is a mailbox system that enjoyed large popularity in the 1980s and\n 1990s.\n .\n The communication between the clients and FidoNet servers  was usually carried\n out over the telephone network using modems and could be used for transferring\n messages (comparable to email) and files.\n .\n Link: http://www.fidonet.org/\n Link: http://en.wikipedia.org/wiki/Fidonet"
+msgstr ""
+
+#. Tag: protocol::finger, short desc
+#: files/debtags/vocabulary
+msgid "Finger"
+msgstr ""
+
+#. Tag: protocol::finger, long desc
+#: files/debtags/vocabulary
+msgid " The Name/Finger protocol is a simple network protocol to provide extensive, \n public information about users of a computer, such as email address, telephone\n numbers, full names etc.\n .\n Due to privacy concerns, the Finger protocol is not widely used any more,\n while it widespread distribution in the early 1990s.\n .\n Link: http://en.wikipedia.org/wiki/Finger_protocol\n Link: http://www.ietf.org/rfc/rfc1288.txt"
+msgstr ""
+
+#. Tag: protocol::ftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::ftp, short desc
+#: files/debtags/vocabulary
+msgid "FTP"
+msgstr ""
+
+#. Tag: protocol::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol, a protocol for exchanging and manipulation files over\n networks and extensively used on the Internet.\n .\n The communication between FTP servers and clients uses two channels, the\n control and the data channel. While FTP was originally used with\n authentication only, most FTP servers on the Internet provide anonymous,\n passwordless access. Since FTP does not support encryption, sensitive data\n transfer is carried out over SFTP today.\n .\n Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc0959.txt"
+msgstr ""
+
+#. Tag: protocol::http, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::http, short desc
+#: files/debtags/vocabulary
+msgid "HTTP"
+msgstr ""
+
+#. Tag: protocol::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol, one of the most important protocols for the\n World Wide Web.\n .\n It controls the data transfer between HTTP servers such as Apache and HTTP\n clients, which are web browsers in most cases. HTTP resources are requested\n via URLs (Universal Resource Locators). While HTTP normally only supports file\n transfer from server to client, the protocol supports sending information to\n HTTP servers, most prominently used in HTML forms.\n .\n Link: http://en.wikipedia.org/wiki/Http\n Link: http://www.ietf.org/rfc/rfc2616.txt"
+msgstr ""
+
+#. Tag: protocol::ident, short desc
+#: files/debtags/vocabulary
+msgid "Ident"
+msgstr ""
+
+#. Tag: protocol::ident, long desc
+#: files/debtags/vocabulary
+msgid " The Ident Internet protocol helps to identify or authenticate the user of\n a network connection.\n .\n Link: http://en.wikipedia.org/wiki/Ident"
+msgstr ""
+
+#. Tag: protocol::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP"
+msgstr ""
+
+#. Tag: protocol::imap, long desc
+#: files/debtags/vocabulary
+msgid " Internet Message Access Protocol, a protocol used for accessing email on a\n server from a email client such as KMail or Evolution.\n .\n When using IMAP, emails stay on the server and can be categorized, edited,\n deleted etc. there, instead of having the user download all messages onto\n the local computer, as POP3 does.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol"
+msgstr ""
+
+#. Tag: protocol::ip, short desc
+#: files/debtags/vocabulary
+msgid "IP"
+msgstr ""
+
+#. Tag: protocol::ip, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v4), a core protocol of the Internet protocol suite and\n the very basis of the Internet.\n .\n Every computer that is connected to the Internet has an IP address (a 4-byte\n number, typically represented in dotted notation like 192.25.206.10).\n Internet IP addresses are given out by the Internet Corporation for Assigned\n Names and Numbers (ICANN). Normally, computers on the Internet are not\n accessed by their IP address, but by their domain name.\n .\n Link: http://en.wikipedia.org/wiki/IPv4\n Link: http://www.ietf.org/rfc/rfc791.txt"
+msgstr ""
+
+#. Tag: protocol::ipv6, short desc
+#: files/debtags/vocabulary
+msgid "IPv6"
+msgstr ""
+
+#. Tag: protocol::ipv6, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v6), the next-generation Internet protocol, which overcomes\n the restrictions of IP (v4), like shortage of IP addresses, and is supposed to\n form the new basis of the Internet in the future, replacing IP (v4).\n .\n Many programs already support IPv6 along with IP (v4), although it is still\n seldomly used.\n .\n Link: http://en.wikipedia.org/wiki/IPv6\n Link: http://www.ipv6.org/"
+msgstr ""
+
+#. Tag: protocol::irc, short desc
+#: files/debtags/vocabulary
+msgid "IRC"
+msgstr ""
+
+#. Tag: protocol::irc, long desc
+#: files/debtags/vocabulary
+msgid " Internet Relay Chat, a protocol for text chatting over network, extensively\n used on the Internet. It supports chat rooms, so-called channels, as well as\n private, one-to-one communication.\n .\n IRC servers are organized in networks, so that a client can connect to a\n geographically near IRC server, that itself is connected to other IRC servers\n spread over the whole world.\n .\n The official Debian channel is #debian on the freenode network.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat"
+msgstr ""
+
+#. Tag: protocol::jabber, short desc
+#: files/debtags/vocabulary
+msgid "Jabber"
+msgstr ""
+
+#. Tag: protocol::jabber, long desc
+#: files/debtags/vocabulary
+msgid " The Jabber protocol is an instant messaging protocol on the basis of the XMPP\n protocol. Additionally to private one-to-one communication, it also supports\n chat rooms, and it is used in the Jabber IM network as well as for the IM\n capabilities for the new GoogleTalk network.\n .\n In contrast to other IM networks like MSN, ICQ or AIM, the Jabber servers are\n free software and can be used to create a private chat platform or have an own\n server to connect to the Jabber network.\n .\n Link: http://www.jabber.org\n Link: http://en.wikipedia.org/wiki/Jabber"
+msgstr ""
+
+#. Tag: protocol::kerberos, short desc
+#: files/debtags/vocabulary
+msgid "Kerberos"
+msgstr ""
+
+#. Tag: protocol::kerberos, long desc
+#: files/debtags/vocabulary
+msgid " Kerberos is a authentication protocol for computer networks for secure\n authentication over an otherwise insecure network, using symmetric\n cryptography and a third party service provider, that is trusted both by\n client and server.\n . \n The authentication mechanism provided by Kerberos is mutual, so that not only\n a server can be sure of a client's identity, but also a client can be sure a\n connection to a server is not intercepted.\n .\n Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29\n Link: http://http://www.ietf.org/rfc/rfc4120.txt"
+msgstr ""
+
+#. Tag: protocol::lpr, short desc
+#: files/debtags/vocabulary
+msgid "LPR"
+msgstr ""
+
+#. Tag: protocol::lpr, long desc
+#: files/debtags/vocabulary
+msgid " The Line Printer Daemon protocol, a protocol used for accessing or providing\n network print services in a Unix network, but also used for local setups.\n .\n CUPS, the Common Unix Printing System, was developed to replace the old\n LPD/LPR system, while maintaining backwards compatibility.\n .\n Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol\n Link: http://www.ietf.org/rfc/rfc1179.txt"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, short desc
+#: files/debtags/vocabulary
+msgid "MSN Messenger"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The MSN messenger protocol is the protocol that is used by Microsoft's own\n instant messaging network.\n .\n The protocol is a proprietary protocol. Although Microsoft once send a draft\n of the protocol specification to the IETF, it has since dated out and clients\n that connect to the MSN Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://www.hypothetic.org/docs/msn/"
+msgstr ""
+
+#. Tag: protocol::nfs, short desc
+#: files/debtags/vocabulary
+msgid "NFS"
+msgstr ""
+
+#. Tag: protocol::nfs, long desc
+#: files/debtags/vocabulary
+msgid " Network File System, a protocol originally developed by Sun Microsystems in\n 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a\n distributed file system, allows a user on a client computer to access files\n over a network as easily as if attached to its local disks.\n .\n Link: http://en.wikipedia.org/wiki/Network_File_System"
+msgstr ""
+
+#. Tag: protocol::nntp, short desc
+#: files/debtags/vocabulary
+msgid "NNTP"
+msgstr ""
+
+#. Tag: protocol::nntp, long desc
+#: files/debtags/vocabulary
+msgid " Network News Transfer Protocol, a protocol for reading in writing Usenet\n articles (a Usenet article is comparable with an email), but also used\n among NNTP servers to transfer articles. \n .\n Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc977.txt"
+msgstr ""
+
+#. Tag: protocol::oscar, short desc
+#: files/debtags/vocabulary
+msgid "OSCAR (AIM/ICQ)"
+msgstr ""
+
+#. Tag: protocol::oscar, long desc
+#: files/debtags/vocabulary
+msgid " Open System for CommunicAtion in Realtime, an instant messaging used by\n AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9\n of the ICQ IM network are also instances of the OSCAR protocol.\n .\n OSCAR is a binary proprietary protocol. Since there is no official documentation,\n clients that connect to AIM or ICQ have to rely on information that has\n been reverse-engineered.\n .\n Link: http://en.wikipedia.org/wiki/OSCAR_protocol\n Link: http://www.oilcan.org/oscar/"
+msgstr ""
+
+#. Tag: protocol::pop3, short desc
+#: files/debtags/vocabulary
+msgid "POP3"
+msgstr ""
+
+#. Tag: protocol::pop3, long desc
+#: files/debtags/vocabulary
+msgid " Post Office Protocol, a protocol to download emails from a mail server,\n designed for users that have only intermittent connection to the Internet.\n .\n In contrast to IMAP server, messages that are downloaded via POP3 are not\n supposed to stay on the server afterwards, since POP3 does not support\n multiple mailboxes for one account on the server.\n .\n Link: http://en.wikipedia.org/wiki/Post_Office_Protocol\n Link: http://www.ietf.org/rfc/rfc1939.txt"
+msgstr ""
+
+#. Tag: protocol::radius, short desc
+#: files/debtags/vocabulary
+msgid "RADIUS"
+msgstr ""
+
+#. Tag: protocol::radius, long desc
+#: files/debtags/vocabulary
+msgid " Remote Authentication Dial In User Service, a protocol for authentication,\n authorization and accounting of network access, mostly used by Internet\n service providers handle handle dial-up Internet connections.\n .\n Link: http://en.wikipedia.org/wiki/RADIUS\n Link: http://www.ietf.org/rfc/rfc2865.txt"
+msgstr ""
+
+#. Tag: protocol::sftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::sftp, short desc
+#: files/debtags/vocabulary
+msgid "SFTP"
+msgstr ""
+
+#. Tag: protocol::sftp, long desc
+#: files/debtags/vocabulary
+msgid " SSH File Transfer Protocol, a protocol for secure, encrypting file exchange\n and manipulation over insecure networks, using the SSH protocol.\n .\n SFTP provides a complete set of file system operations, different from its\n predecessor SCP, which only allowed file transfer. It is not, other than the\n name might suggest, the a version of the FTP protocol executed through an\n SSH channel.\n .\n Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol"
+msgstr ""
+
+#. Tag: protocol::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB"
+msgstr ""
+
+#. Tag: protocol::smb, long desc
+#: files/debtags/vocabulary
+msgid " Server Message Block, a protocol for providing file access and printer sharing\n over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File\n System) is a synonym for SMB\n .\n Although SMB is a proprietary protocol, the Samba project reverse-engineered\n the protocol and developed both client and server programs for better\n interoperability in mixed Unix/Windows networks.\n .\n Link: http://en.wikipedia.org/wiki/Server_Message_Block\n Link: http://www.samba.org/"
+msgstr ""
+
+#. Tag: protocol::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP"
+msgstr ""
+
+#. Tag: protocol::smtp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Mail Transfer Protocol, a protocol or for transmitting emails over the\n Internet.\n .\n Every SMTP server utilizes SMTP to hand on emails to the next mail server\n until an email arrives at its destination, from where it is usually retrieved\n via POP3 or IMAP \n .\n Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc2821.txt"
+msgstr ""
+
+#. Tag: protocol::snmp, short desc
+#: files/debtags/vocabulary
+msgid "SNMP"
+msgstr ""
+
+#. Tag: protocol::snmp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Network Management Protocol, a member of the Internet protocol suite\n and used for monitoring or configuring network devices.\n .\n SNMP servers normally run on network equipment like routers.\n .\n Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol\n Link: http://www.ietf.org/rfc/rfc3411.txt"
+msgstr ""
+
+#. Tag: protocol::soap, short desc
+#: files/debtags/vocabulary
+msgid "SOAP"
+msgstr ""
+
+#. Tag: protocol::soap, long desc
+#: files/debtags/vocabulary
+msgid " Simple Object Access Protocol, a protocol for exchanging messages between\n different computers in a network. The messages are encoded in XML and usually\n sent over HTTP.\n .\n SOAP is used to provide APIs to web services, such as the Google API to\n utilize Google's searching engine from client applications.\n .\n Link: http://en.wikipedia.org/wiki/SOAP\n Link: http://www.w3.org/TR/soap/"
+msgstr ""
+
+#. Tag: protocol::ssh, short desc
+#: files/debtags/vocabulary
+msgid "SSH"
+msgstr ""
+
+#. Tag: protocol::ssh, long desc
+#: files/debtags/vocabulary
+msgid " Secure Shell, a protocol for secure, encrypted network connections. SSH can\n be used to execute programs on a remote host with an SSH server over secure\n otherwise insecure protocols through an SSH channel. The main use is, as the\n name suggest, to provide encrypted login and shell access on remote servers.\n .\n SSH authentication can be done with password or, which is the preferred\n mechanism, via asymmetric public/private key cryptography.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Shell"
+msgstr ""
+
+#. Tag: protocol::ssl, short desc
+#: files/debtags/vocabulary
+msgid "SSL/TLS"
+msgstr ""
+
+#. Tag: protocol::ssl, long desc
+#: files/debtags/vocabulary
+msgid " Secure Socket Layer/Transport Layer Security, a protocol that provides \n secure encrypted communication on the Internet. It is used to authenticate\n the identity of a service provider (such as a Internet banking server) and\n to secure the communications channel.\n .\n Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be\n transmitted over SSL/TLS to secure the transmitted data. In this case, an\n \"S\" is added to the protocol name, like HTTPS, FTPS etc.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer"
+msgstr ""
+
+#. Tag: protocol::tcp, short desc
+#: files/debtags/vocabulary
+msgid "TCP"
+msgstr ""
+
+#. Tag: protocol::tcp, long desc
+#: files/debtags/vocabulary
+msgid " Transport Control Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n TCP is used as the transport protocol for many services on the Internet,\n such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.\n .\n Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol\n Link: http://www.ietf.org/rfc/rfc793.txt"
+msgstr ""
+
+#. Tag: protocol::udp, short desc
+#: files/debtags/vocabulary
+msgid "UDP"
+msgstr ""
+
+#. Tag: protocol::udp, long desc
+#: files/debtags/vocabulary
+msgid " User Datagram Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n UDP is not as reliable as TCP, but faster and thus better fit for\n time-sensitive purposes, like the DNS protocol and VoIP.\n .\n Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol\n Link: http://www.ietf.org/rfc/rfc768.txt"
+msgstr ""
+
+#. Tag: protocol::voip, short desc
+#: files/debtags/vocabulary
+msgid "VoIP"
+msgstr ""
+
+#. Tag: protocol::voip, long desc
+#: files/debtags/vocabulary
+msgid " Voice over IP, a general term for protocols that route voice conversations\n over the Internet.\n .\n Popular VoIP protocols are SIP, H.323 and IAX.\n .\n Link: http://en.wikipedia.org/wiki/Voice_over_IP"
+msgstr ""
+
+#. Tag: protocol::webdav, short desc
+#: files/debtags/vocabulary
+msgid "WebDAV"
+msgstr ""
+
+#. Tag: protocol::webdav, long desc
+#: files/debtags/vocabulary
+msgid " Web-based Distributed Authoring and Versioning, a extension of the HTTP\n protocol to support creating and changing documents on an HTTP server. Thus,\n the client can access the documents on an HTTP server as it would those on the\n local file system.\n .\n Link: http://en.wikipedia.org/wiki/WebDAV\n Link: http://www.ietf.org/rfc/rfc2518.txt"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, short desc
+#: files/debtags/vocabulary
+msgid "XML-RPC"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, long desc
+#: files/debtags/vocabulary
+msgid " XML Remote Procedure Call, a simple protocol for remote procedure calls that\n uses XML for encoding and the HTTP protocol for transport.\n .\n SOAP, which is a considerably more sophisticated protocol, was developed from\n XML-RPC.\n .\n Link: http://en.wikipedia.org/wiki/XML-RPC\n Link: http://www.xmlrpc.com/"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, short desc
+#: files/debtags/vocabulary
+msgid "Yahoo! Messenger"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging\n network.\n .\n This a proprietary binary protocol without any official documentation. Clients\n that connect to the Yahoo! Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger\n Link: http://www.venkydude.com/articles/yahoo.htm"
+msgstr ""
+
+#. Facet: filetransfer, short desc
+#: files/debtags/vocabulary
+msgid "File Transfer"
+msgstr ""
+
+#. Tag: filetransfer::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::sftp, long desc
+#: files/debtags/vocabulary
+msgid " Secure File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB and CIFS"
+msgstr ""
+
+#. Tag: filetransfer::smb, long desc
+#: files/debtags/vocabulary
+msgid " Windows file and printer sharing (SMB)"
+msgstr ""
+
+#. Tag: filetransfer::dcc, short desc
+#: files/debtags/vocabulary
+msgid "IRC DCC"
+msgstr ""
+
+#. Tag: filetransfer::dcc, long desc
+#: files/debtags/vocabulary
+msgid " Direct Client to Client protocol used by Internet Relay Chat clients."
+msgstr ""
+
+#. Facet: uitoolkit, short desc
+#: files/debtags/vocabulary
+msgid "Interface Toolkit"
+msgstr ""
+
+#. Tag: uitoolkit::athena, short desc
+#: files/debtags/vocabulary
+msgid "Athena Widgets"
+msgstr ""
+
+#. Tag: uitoolkit::fltk, short desc
+#: files/debtags/vocabulary
+msgid "FLTK"
+msgstr ""
+
+#. Tag: uitoolkit::glut, short desc
+#: files/debtags/vocabulary
+msgid "GLUT"
+msgstr ""
+
+#. Tag: uitoolkit::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUstep"
+msgstr ""
+
+#. Tag: uitoolkit::gtk, short desc
+#: files/debtags/vocabulary
+msgid "GTK"
+msgstr ""
+
+#. Tag: uitoolkit::motif, short desc
+#: files/debtags/vocabulary
+msgid "Lesstif/Motif"
+msgstr ""
+
+#. Tag: uitoolkit::ncurses, short desc
+#: files/debtags/vocabulary
+msgid "Ncurses TUI"
+msgstr ""
+
+#. Tag: uitoolkit::qt, short desc
+#: files/debtags/vocabulary
+msgid "QT"
+msgstr ""
+
+#. Tag: uitoolkit::sdl, short desc
+#: files/debtags/vocabulary
+msgid "SDL"
+msgstr ""
+
+#. Tag: uitoolkit::tk, short desc
+#: files/debtags/vocabulary
+msgid "TK"
+msgstr ""
+
+#. Tag: uitoolkit::wxwidgets, short desc
+#: files/debtags/vocabulary
+msgid "wxWidgets"
+msgstr ""
+
+#. Tag: uitoolkit::xlib, short desc
+#: files/debtags/vocabulary
+msgid "X library"
+msgstr ""
+
+#. Facet: use, short desc
+#: files/debtags/vocabulary
+msgid "Purpose"
+msgstr ""
+
+#. Tag: use::analysing, short desc
+#: files/debtags/vocabulary
+msgid "Analysing"
+msgstr ""
+
+#. Tag: use::analysing, long desc
+#: files/debtags/vocabulary
+msgid " Software for turning data into knowledge."
+msgstr ""
+
+#. Tag: use::browsing, short desc
+#: files/debtags/vocabulary
+msgid "Browsing"
+msgstr ""
+
+#. Tag: use::chatting, short desc
+#: files/debtags/vocabulary
+msgid "Chatting"
+msgstr ""
+
+#. Tag: use::checking, short desc
+#: files/debtags/vocabulary
+msgid "Checking"
+msgstr ""
+
+#. Tag: use::checking, long desc
+#: files/debtags/vocabulary
+msgid " All sorts of checking, checking a filesystem for validity, checking\n a document for incorrectly spelled words, checking a network for \n routing problems. Verifying."
+msgstr ""
+
+#. Tag: use::comparing, short desc
+#: files/debtags/vocabulary
+msgid "Comparing"
+msgstr ""
+
+#. Tag: use::comparing, long desc
+#: files/debtags/vocabulary
+msgid " To find what relates or differs in two or more objects."
+msgstr ""
+
+#. Tag: use::compressing, short desc
+#: files/debtags/vocabulary
+msgid "Compressing"
+msgstr ""
+
+#. Tag: use::configuring, short desc
+#: files/debtags/vocabulary
+#. Tag: network::configuration, short desc
+#: files/debtags/vocabulary
+msgid "Configuration"
+msgstr ""
+
+#. Tag: use::converting, short desc
+#: files/debtags/vocabulary
+msgid "Data Conversion"
+msgstr ""
+
+#. Tag: use::dialing, short desc
+#: files/debtags/vocabulary
+msgid "Dialup Access"
+msgstr ""
+
+#. Tag: use::downloading, short desc
+#: files/debtags/vocabulary
+msgid "Downloading"
+msgstr ""
+
+#. Tag: use::driver, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Driver"
+msgstr ""
+
+#. Tag: use::editing, short desc
+#: files/debtags/vocabulary
+msgid "Editing"
+msgstr ""
+
+#. Tag: use::entertaining, short desc
+#: files/debtags/vocabulary
+msgid "Entertaining"
+msgstr ""
+
+#. Tag: use::filtering, short desc
+#: files/debtags/vocabulary
+msgid "Filtering"
+msgstr ""
+
+#. Tag: use::gameplaying, short desc
+#: files/debtags/vocabulary
+msgid "Game Playing"
+msgstr ""
+
+#. Tag: use::learning, short desc
+#: files/debtags/vocabulary
+msgid "Learning"
+msgstr ""
+
+#. Tag: use::organizing, short desc
+#: files/debtags/vocabulary
+msgid "Data Organisation"
+msgstr ""
+
+#. Tag: use::playing, short desc
+#: files/debtags/vocabulary
+msgid "Playing Media"
+msgstr ""
+
+#. Tag: use::printing, short desc
+#: files/debtags/vocabulary
+msgid "Printing"
+msgstr ""
+
+#. Tag: use::proxying, short desc
+#: files/debtags/vocabulary
+msgid "Proxying"
+msgstr ""
+
+#. Tag: use::routing, short desc
+#: files/debtags/vocabulary
+#. Tag: network::routing, short desc
+#: files/debtags/vocabulary
+msgid "Routing"
+msgstr ""
+
+#. Tag: use::searching, short desc
+#: files/debtags/vocabulary
+msgid "Searching"
+msgstr ""
+
+#. Tag: use::scanning, short desc
+#: files/debtags/vocabulary
+#. Tag: network::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Scanning"
+msgstr ""
+
+#. Tag: use::storing, short desc
+#: files/debtags/vocabulary
+msgid "Storing"
+msgstr ""
+
+#. Tag: use::synchronizing, short desc
+#: files/debtags/vocabulary
+msgid "Synchronisation"
+msgstr ""
+
+#. Tag: use::timekeeping, short desc
+#: files/debtags/vocabulary
+msgid "Time and Clock"
+msgstr ""
+
+#. Tag: use::transmission, short desc
+#: files/debtags/vocabulary
+msgid "Transmission"
+msgstr ""
+
+#. Tag: use::typesetting, short desc
+#: files/debtags/vocabulary
+msgid "Typesetting"
+msgstr ""
+
+#. Tag: use::viewing, short desc
+#: files/debtags/vocabulary
+msgid "Data Visualization"
+msgstr ""
+
+#. Tag: use::text-formatting, short desc
+#: files/debtags/vocabulary
+msgid "Text Formatting"
+msgstr ""
+
+#. Tag: web::appserver, short desc
+#: files/debtags/vocabulary
+msgid "Application Server"
+msgstr ""
+
+#. Tag: web::blog, short desc
+#: files/debtags/vocabulary
+msgid "Blog Software"
+msgstr ""
+
+#. Tag: web::browser, short desc
+#: files/debtags/vocabulary
+msgid "Browser"
+msgstr ""
+
+#. Tag: web::cms, short desc
+#: files/debtags/vocabulary
+msgid "Content Management (CMS)"
+msgstr ""
+
+#. Tag: web::cgi, short desc
+#: files/debtags/vocabulary
+msgid "CGI"
+msgstr ""
+
+#. Tag: web::commerce, short desc
+#: files/debtags/vocabulary
+msgid "E-commerce"
+msgstr ""
+
+#. Tag: web::forum, short desc
+#: files/debtags/vocabulary
+msgid "Forum"
+msgstr ""
+
+#. Tag: web::portal, short desc
+#: files/debtags/vocabulary
+msgid "Portal"
+msgstr ""
+
+#. Tag: web::scripting, short desc
+#: files/debtags/vocabulary
+msgid "Scripting"
+msgstr ""
+
+#. Tag: web::search-engine, short desc
+#: files/debtags/vocabulary
+msgid "Search engine"
+msgstr ""
+
+#. Tag: web::server, short desc
+#: files/debtags/vocabulary
+#. Tag: network::server, short desc
+#: files/debtags/vocabulary
+msgid "Server"
+msgstr ""
+
+#. Tag: web::wiki, short desc
+#: files/debtags/vocabulary
+msgid "Wiki Software"
+msgstr ""
+
+#. Tag: web::wiki, long desc
+#: files/debtags/vocabulary
+msgid " Wiki software, servers, utilities and plug-ins."
+msgstr ""
+
+#. Facet: network, short desc
+#: files/debtags/vocabulary
+msgid "Networking"
+msgstr ""
+
+#. Tag: network::client, short desc
+#: files/debtags/vocabulary
+msgid "Client"
+msgstr ""
+
+#. Tag: network::hiavailability, short desc
+#: files/debtags/vocabulary
+msgid "High Availability"
+msgstr ""
+
+#. Tag: network::load-balancing, short desc
+#: files/debtags/vocabulary
+msgid "Load Balancing"
+msgstr ""
+
+#. Tag: network::service, short desc
+#: files/debtags/vocabulary
+msgid "Service"
+msgstr ""
+
+#. Tag: network::vpn, short desc
+#: files/debtags/vocabulary
+msgid "VPN or Tunneling"
+msgstr ""
+
+#. Facet: x11, short desc
+#: files/debtags/vocabulary
+msgid "X Windowing System"
+msgstr ""
+
+#. Tag: x11::applet, short desc
+#: files/debtags/vocabulary
+msgid "Applet"
+msgstr ""
+
+#. Tag: x11::display-manager, short desc
+#: files/debtags/vocabulary
+msgid "Login Manager"
+msgstr ""
+
+#. Tag: x11::display-manager, long desc
+#: files/debtags/vocabulary
+msgid " Display managers (graphical login screens)"
+msgstr ""
+
+#. Tag: x11::library, short desc
+#: files/debtags/vocabulary
+msgid "Library"
+msgstr ""
+
+#. Tag: x11::screensaver, short desc
+#: files/debtags/vocabulary
+msgid "Screen Saver"
+msgstr ""
+
+#. Tag: x11::terminal, short desc
+#: files/debtags/vocabulary
+msgid "Terminal Emulator"
+msgstr ""
+
+#. Tag: x11::theme, short desc
+#: files/debtags/vocabulary
+msgid "Theme"
+msgstr ""
+
+#. Tag: x11::window-manager, short desc
+#: files/debtags/vocabulary
+msgid "Window Manager"
+msgstr ""
+
+#. Tag: x11::xserver, short desc
+#: files/debtags/vocabulary
+msgid "X Server"
+msgstr ""
+
+#. Tag: bbs, short desc
+#: files/debtags/vocabulary
+msgid "Bulletin Board Systems"
+msgstr ""
+
+#. Tag: data-exchange, short desc
+#: files/debtags/vocabulary
+msgid "Data Exchange"
+msgstr ""
+
+#. Tag: desktop, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Environment"
+msgstr ""
+
+#. Tag: file-formats, short desc
+#: files/debtags/vocabulary
+msgid "File formats"
+msgstr ""
+
+#. Tag: foreignos, short desc
+#: files/debtags/vocabulary
+msgid "Foreign OS and Hardware"
+msgstr ""
+
+#. Tag: net, short desc
+#: files/debtags/vocabulary
+msgid "IP Networking"
+msgstr ""
+
+#. Tag: netcomm, short desc
+#: files/debtags/vocabulary
+msgid "Network and Communication"
+msgstr ""
+
+#. Tag: numerical, short desc
+#: files/debtags/vocabulary
+msgid "Calculation and numerical computation"
+msgstr ""
+
+#. Tag: office, short desc
+#: files/debtags/vocabulary
+msgid "Office software"
+msgstr ""
+
+#. Tag: protocols, short desc
+#: files/debtags/vocabulary
+msgid "IP protocol support"
+msgstr ""
+
+#. Tag: science, short desc
+#: files/debtags/vocabulary
+msgid "Science"
+msgstr ""
+
+#. Tag: system, short desc
+#: files/debtags/vocabulary
+msgid "System software and maintainance"
+msgstr ""
+
+#. Tag: vi, short desc
+#: files/debtags/vocabulary
+msgid "VI editor"
+msgstr ""
+
diff --git a/po/debtags.hu.po b/po/debtags.hu.po
new file mode 100644
index 0000000..c6c289b
--- /dev/null
+++ b/po/debtags.hu.po
@@ -0,0 +1,3544 @@
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Facet: accessibility, short desc
+#: files/debtags/vocabulary
+msgid "Accessibility Support"
+msgstr ""
+
+#. Tag: accessibility::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Systems"
+msgstr ""
+
+#. Tag: accessibility::input, long desc
+#: files/debtags/vocabulary
+msgid " Applies to input methods for non-latin languages as well as special input\n systems."
+msgstr ""
+
+#. Tag: accessibility::ocr, short desc
+#: files/debtags/vocabulary
+msgid "Text Recognition (OCR)"
+msgstr ""
+
+#. Tag: accessibility::ocr, long desc
+#: files/debtags/vocabulary
+msgid " Optical Character Recognition"
+msgstr ""
+
+#. Tag: accessibility::screen-magnify, short desc
+#: files/debtags/vocabulary
+msgid "Screen Magnification"
+msgstr ""
+
+#. Tag: accessibility::screen-reader, short desc
+#: files/debtags/vocabulary
+msgid "Screen Reading"
+msgstr ""
+
+#. Tag: accessibility::speech, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::speech, short desc
+#: files/debtags/vocabulary
+msgid "Speech Synthesis"
+msgstr ""
+
+#. Tag: accessibility::speech-recognition, short desc
+#: files/debtags/vocabulary
+msgid "Speech Recognition"
+msgstr ""
+
+#. Tag: accessibility::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, short desc
+#: files/debtags/vocabulary
+msgid "Need an extra tag"
+msgstr ""
+
+#. Tag: accessibility::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, long desc
+#: files/debtags/vocabulary
+msgid " The package can be categorised along this facet, but the right tag for it is\n missing.\n .\n Mark a package with this tag to signal the vocabulary maintainers of cases\n where the current tag set is lacking."
+msgstr ""
+
+#. Facet: admin, short desc
+#: files/debtags/vocabulary
+msgid "System Administration"
+msgstr ""
+
+#. Tag: admin::accounting, short desc
+#: files/debtags/vocabulary
+msgid "Accounting"
+msgstr ""
+
+#. Tag: admin::automation, short desc
+#: files/debtags/vocabulary
+msgid "Automation and scheduling"
+msgstr ""
+
+#. Tag: admin::automation, long desc
+#: files/debtags/vocabulary
+msgid " Automating the execution of software in the system."
+msgstr ""
+
+#. Tag: admin::backup, short desc
+#: files/debtags/vocabulary
+msgid "Backup and Restoration"
+msgstr ""
+
+#. Tag: admin::benchmarking, short desc
+#: files/debtags/vocabulary
+msgid "Benchmarking"
+msgstr ""
+
+#. Tag: admin::boot, short desc
+#: files/debtags/vocabulary
+msgid "System Boot"
+msgstr ""
+
+#. Tag: admin::cluster, short desc
+#: files/debtags/vocabulary
+msgid "Clustering"
+msgstr ""
+
+#. Tag: admin::configuring, short desc
+#: files/debtags/vocabulary
+msgid "Configuration Tool"
+msgstr ""
+
+#. Tag: admin::file-distribution, short desc
+#: files/debtags/vocabulary
+msgid "File Distribution"
+msgstr ""
+
+#. Tag: admin::filesystem, short desc
+#: files/debtags/vocabulary
+msgid "Filesystem Tool"
+msgstr ""
+
+#. Tag: admin::filesystem, long desc
+#: files/debtags/vocabulary
+msgid " Creation, maintenance, and use of filesystems"
+msgstr ""
+
+#. Tag: admin::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics and Recovery"
+msgstr ""
+
+#. Tag: admin::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Recovering lost or damaged data.\n This tag will be split into admin::recovery\n and security::forensics."
+msgstr ""
+
+#. Tag: admin::hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Support"
+msgstr ""
+
+#. Tag: admin::install, short desc
+#: files/debtags/vocabulary
+msgid "System installation"
+msgstr ""
+
+#. Tag: admin::issuetracker, short desc
+#: files/debtags/vocabulary
+msgid "Issue tracker"
+msgstr ""
+
+#. Tag: admin::kernel, short desc
+#: files/debtags/vocabulary
+msgid "Kernel or Modules"
+msgstr ""
+
+#. Tag: admin::logging, short desc
+#: files/debtags/vocabulary
+msgid "Logging"
+msgstr ""
+
+#. Tag: admin::login, short desc
+#: files/debtags/vocabulary
+#. Tag: use::login, short desc
+#: files/debtags/vocabulary
+msgid "Login"
+msgstr ""
+
+#. Tag: admin::login, long desc
+#: files/debtags/vocabulary
+msgid " Logging into the system"
+msgstr ""
+
+#. Tag: admin::monitoring, short desc
+#: files/debtags/vocabulary
+#. Tag: use::monitor, short desc
+#: files/debtags/vocabulary
+msgid "Monitoring"
+msgstr ""
+
+#. Tag: admin::package-management, short desc
+#: files/debtags/vocabulary
+msgid "Package Management"
+msgstr ""
+
+#. Tag: admin::power-management, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::power, short desc
+#: files/debtags/vocabulary
+msgid "Power Management"
+msgstr ""
+
+#. Tag: admin::recovery, short desc
+#: files/debtags/vocabulary
+msgid "Data recovery"
+msgstr ""
+
+#. Tag: admin::user-management, short desc
+#: files/debtags/vocabulary
+msgid "User Management"
+msgstr ""
+
+#. Tag: admin::virtualization, short desc
+#: files/debtags/vocabulary
+msgid "Virtualization"
+msgstr ""
+
+#. Tag: admin::virtualization, long desc
+#: files/debtags/vocabulary
+msgid " This is not hardware emulation, but rather those facilities that allow to\n create many isolated compartments inside the same system."
+msgstr ""
+
+#. Facet: biology, short desc
+#: files/debtags/vocabulary
+#. Tag: field::biology, short desc
+#: files/debtags/vocabulary
+msgid "Biology"
+msgstr ""
+
+#. Facet: biology, long desc
+#: files/debtags/vocabulary
+msgid " How is the package related to the field of biology."
+msgstr ""
+
+#. Tag: biology::emboss, short desc
+#: files/debtags/vocabulary
+msgid "EMBOSS"
+msgstr ""
+
+#. Tag: biology::emboss, long desc
+#: files/debtags/vocabulary
+msgid " Packages related to the European Molecular Biology Open Software Suite."
+msgstr ""
+
+#. Tag: biology::format:aln, short desc
+#: files/debtags/vocabulary
+msgid "Clustal/ALN"
+msgstr ""
+
+#. Tag: biology::format:aln, long desc
+#: files/debtags/vocabulary
+msgid " Used in multiple alignment of biological sequences."
+msgstr ""
+
+#. Tag: biology::format:nexus, short desc
+#: files/debtags/vocabulary
+msgid "Nexus"
+msgstr ""
+
+#. Tag: biology::format:nexus, long desc
+#: files/debtags/vocabulary
+msgid " Popular format for phylogenetic trees."
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, short desc
+#: files/debtags/vocabulary
+msgid "Nucleic acids"
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of nucleic acids: \n DNA, RNA but also non-natural nucleic acids such as PNA or LNA."
+msgstr ""
+
+#. Tag: biology::peptidic, short desc
+#: files/debtags/vocabulary
+msgid "Proteins"
+msgstr ""
+
+#. Tag: biology::peptidic, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of aminoacids: peptides and proteins."
+msgstr ""
+
+#. Facet: culture, short desc
+#: files/debtags/vocabulary
+msgid "Culture"
+msgstr ""
+
+#. Facet: culture, long desc
+#: files/debtags/vocabulary
+msgid " The culture for which the package provides special support"
+msgstr ""
+
+#. Tag: culture::afrikaans, short desc
+#: files/debtags/vocabulary
+msgid "Afrikaans"
+msgstr ""
+
+#. Tag: culture::arabic, short desc
+#: files/debtags/vocabulary
+msgid "Arabic"
+msgstr ""
+
+#. Tag: culture::basque, short desc
+#: files/debtags/vocabulary
+msgid "Basque"
+msgstr ""
+
+#. Tag: culture::bengali, short desc
+#: files/debtags/vocabulary
+msgid "Bengali"
+msgstr ""
+
+#. Tag: culture::bokmaal, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Bokmaal"
+msgstr ""
+
+#. Tag: culture::bosnian, short desc
+#: files/debtags/vocabulary
+msgid "Bosnian"
+msgstr ""
+
+#. Tag: culture::brazilian, short desc
+#: files/debtags/vocabulary
+msgid "Brazilian"
+msgstr ""
+
+#. Tag: culture::bulgarian, short desc
+#: files/debtags/vocabulary
+msgid "Bulgarian"
+msgstr ""
+
+#. Tag: culture::catalan, short desc
+#: files/debtags/vocabulary
+msgid "Catalan"
+msgstr ""
+
+#. Tag: culture::chinese, short desc
+#: files/debtags/vocabulary
+msgid "Chinese"
+msgstr ""
+
+#. Tag: culture::czech, short desc
+#: files/debtags/vocabulary
+msgid "Czech"
+msgstr ""
+
+#. Tag: culture::croatian, short desc
+#: files/debtags/vocabulary
+msgid "Croatian"
+msgstr ""
+
+#. Tag: culture::danish, short desc
+#: files/debtags/vocabulary
+msgid "Danish"
+msgstr ""
+
+#. Tag: culture::dutch, short desc
+#: files/debtags/vocabulary
+msgid "Dutch"
+msgstr ""
+
+#. Tag: culture::esperanto, short desc
+#: files/debtags/vocabulary
+msgid "Esperanto"
+msgstr ""
+
+#. Tag: culture::estonian, short desc
+#: files/debtags/vocabulary
+msgid "Estonian"
+msgstr ""
+
+#. Tag: culture::faroese, short desc
+#: files/debtags/vocabulary
+msgid "Faroese"
+msgstr ""
+
+#. Tag: culture::farsi, short desc
+#: files/debtags/vocabulary
+msgid "Farsi"
+msgstr ""
+
+#. Tag: culture::finnish, short desc
+#: files/debtags/vocabulary
+msgid "Finnish"
+msgstr ""
+
+#. Tag: culture::french, short desc
+#: files/debtags/vocabulary
+msgid "French"
+msgstr ""
+
+#. Tag: culture::german, short desc
+#: files/debtags/vocabulary
+msgid "German"
+msgstr ""
+
+#. Tag: culture::greek, short desc
+#: files/debtags/vocabulary
+msgid "Greek"
+msgstr ""
+
+#. Tag: culture::hebrew, short desc
+#: files/debtags/vocabulary
+msgid "Hebrew"
+msgstr ""
+
+#. Tag: culture::hindi, short desc
+#: files/debtags/vocabulary
+msgid "Hindi"
+msgstr ""
+
+#. Tag: culture::hungarian, short desc
+#: files/debtags/vocabulary
+msgid "Hungarian"
+msgstr ""
+
+#. Tag: culture::icelandic, short desc
+#: files/debtags/vocabulary
+msgid "Icelandic"
+msgstr ""
+
+#. Tag: culture::irish, short desc
+#: files/debtags/vocabulary
+msgid "Irish (Gaeilge)"
+msgstr ""
+
+#. Tag: culture::italian, short desc
+#: files/debtags/vocabulary
+msgid "Italian"
+msgstr ""
+
+#. Tag: culture::japanese, short desc
+#: files/debtags/vocabulary
+msgid "Japanese"
+msgstr ""
+
+#. Tag: culture::korean, short desc
+#: files/debtags/vocabulary
+msgid "Korean"
+msgstr ""
+
+#. Tag: culture::mongolian, short desc
+#: files/debtags/vocabulary
+msgid "Mongolian"
+msgstr ""
+
+#. Tag: culture::nynorsk, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Nynorsk"
+msgstr ""
+
+#. Tag: culture::norwegian, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian"
+msgstr ""
+
+#. Tag: culture::polish, short desc
+#: files/debtags/vocabulary
+msgid "Polish"
+msgstr ""
+
+#. Tag: culture::portuguese, short desc
+#: files/debtags/vocabulary
+msgid "Portuguese"
+msgstr ""
+
+#. Tag: culture::punjabi, short desc
+#: files/debtags/vocabulary
+msgid "Punjabi"
+msgstr ""
+
+#. Tag: culture::romanian, short desc
+#: files/debtags/vocabulary
+msgid "Romanian"
+msgstr ""
+
+#. Tag: culture::russian, short desc
+#: files/debtags/vocabulary
+msgid "Russian"
+msgstr ""
+
+#. Tag: culture::serbian, short desc
+#: files/debtags/vocabulary
+msgid "Serbian"
+msgstr ""
+
+#. Tag: culture::slovak, short desc
+#: files/debtags/vocabulary
+msgid "Slovak"
+msgstr ""
+
+#. Tag: culture::spanish, short desc
+#: files/debtags/vocabulary
+msgid "Spanish"
+msgstr ""
+
+#. Tag: culture::swedish, short desc
+#: files/debtags/vocabulary
+msgid "Swedish"
+msgstr ""
+
+#. Tag: culture::taiwanese, short desc
+#: files/debtags/vocabulary
+msgid "Taiwanese"
+msgstr ""
+
+#. Tag: culture::tajik, short desc
+#: files/debtags/vocabulary
+msgid "Tajik"
+msgstr ""
+
+#. Tag: culture::tamil, short desc
+#: files/debtags/vocabulary
+msgid "Tamil"
+msgstr ""
+
+#. Tag: culture::thai, short desc
+#: files/debtags/vocabulary
+msgid "Thai"
+msgstr ""
+
+#. Tag: culture::turkish, short desc
+#: files/debtags/vocabulary
+msgid "Turkish"
+msgstr ""
+
+#. Tag: culture::ukrainian, short desc
+#: files/debtags/vocabulary
+msgid "Ukrainian"
+msgstr ""
+
+#. Tag: culture::uzbek, short desc
+#: files/debtags/vocabulary
+msgid "Uzbek"
+msgstr ""
+
+#. Tag: culture::welsh, short desc
+#: files/debtags/vocabulary
+msgid "Welsh"
+msgstr ""
+
+#. Facet: devel, short desc
+#: files/debtags/vocabulary
+msgid "Software Development"
+msgstr ""
+
+#. Tag: devel::bugtracker, short desc
+#: files/debtags/vocabulary
+msgid "Bug Tracking"
+msgstr ""
+
+#. Tag: devel::buildtools, short desc
+#: files/debtags/vocabulary
+msgid "Build Tool"
+msgstr ""
+
+#. Tag: devel::code-generator, short desc
+#: files/debtags/vocabulary
+msgid "Code Generation"
+msgstr ""
+
+#. Tag: devel::code-generator, long desc
+#: files/debtags/vocabulary
+msgid " Parser, lexer and other code generators"
+msgstr ""
+
+#. Tag: devel::compiler, short desc
+#: files/debtags/vocabulary
+msgid "Compiler"
+msgstr ""
+
+#. Tag: devel::debian, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::debian, short desc
+#: files/debtags/vocabulary
+msgid "Debian"
+msgstr ""
+
+#. Tag: devel::debian, long desc
+#: files/debtags/vocabulary
+msgid " Tools, documentation, etc. of use primarily to Debian developers."
+msgstr ""
+
+#. Tag: devel::debugger, short desc
+#: files/debtags/vocabulary
+msgid "Debugging"
+msgstr ""
+
+#. Tag: devel::doc, short desc
+#: files/debtags/vocabulary
+#. Tag: role::documentation, short desc
+#: files/debtags/vocabulary
+msgid "Documentation"
+msgstr ""
+
+#. Tag: devel::docsystem, short desc
+#: files/debtags/vocabulary
+msgid "Literate Programming"
+msgstr ""
+
+#. Tag: devel::docsystem, long desc
+#: files/debtags/vocabulary
+msgid " Tools and auto-documenters"
+msgstr ""
+
+#. Tag: devel::ecma-cli, short desc
+#: files/debtags/vocabulary
+msgid "ECMA CLI"
+msgstr ""
+
+#. Tag: devel::ecma-cli, long desc
+#: files/debtags/vocabulary
+msgid " Tools and libraries for development with implementations of \n the ECMA CLI (Common Language Infrastructure), like Mono\n or DotGNU Portable.NET."
+msgstr ""
+
+#. Tag: devel::editor, short desc
+#: files/debtags/vocabulary
+msgid "Source Editor"
+msgstr ""
+
+#. Tag: devel::examples, short desc
+#: files/debtags/vocabulary
+msgid "Examples"
+msgstr ""
+
+#. Tag: devel::ide, short desc
+#: files/debtags/vocabulary
+msgid "IDE"
+msgstr ""
+
+#. Tag: devel::ide, long desc
+#: files/debtags/vocabulary
+msgid " Integrated Development Environment"
+msgstr ""
+
+#. Tag: devel::interpreter, short desc
+#: files/debtags/vocabulary
+msgid "Interpreter"
+msgstr ""
+
+#. Tag: devel::i18n, short desc
+#: files/debtags/vocabulary
+msgid "Internationalization"
+msgstr ""
+
+#. Tag: devel::lang:ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada Development"
+msgstr ""
+
+#. Tag: devel::lang:c, short desc
+#: files/debtags/vocabulary
+msgid "C Development"
+msgstr ""
+
+#. Tag: devel::lang:c++, short desc
+#: files/debtags/vocabulary
+msgid "C++ Development"
+msgstr ""
+
+#. Tag: devel::lang:c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C# Development"
+msgstr ""
+
+#. Tag: devel::lang:fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran Development"
+msgstr ""
+
+#. Tag: devel::lang:haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell Development"
+msgstr ""
+
+#. Tag: devel::lang:java, short desc
+#: files/debtags/vocabulary
+msgid "Java Development"
+msgstr ""
+
+#. Tag: devel::lang:ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/JavaScript Development"
+msgstr ""
+
+#. Tag: devel::lang:lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp Development"
+msgstr ""
+
+#. Tag: devel::lang:lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua Development"
+msgstr ""
+
+#. Tag: devel::lang:ml, short desc
+#: files/debtags/vocabulary
+msgid "ML Development"
+msgstr ""
+
+#. Tag: devel::lang:objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective-C Development"
+msgstr ""
+
+#. Tag: devel::lang:ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml Development"
+msgstr ""
+
+#. Tag: devel::lang:octave, short desc
+#: files/debtags/vocabulary
+msgid "GNU Octave Development"
+msgstr ""
+
+#. Tag: devel::lang:pascal, short desc
+#: files/debtags/vocabulary
+msgid "Pascal Development"
+msgstr ""
+
+#. Tag: devel::lang:perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl Development"
+msgstr ""
+
+#. Tag: devel::lang:php, short desc
+#: files/debtags/vocabulary
+msgid "PHP Development"
+msgstr ""
+
+#. Tag: devel::lang:pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike Development"
+msgstr ""
+
+#. Tag: devel::lang:prolog, short desc
+#: files/debtags/vocabulary
+msgid "Prolog Development"
+msgstr ""
+
+#. Tag: devel::lang:python, short desc
+#: files/debtags/vocabulary
+msgid "Python Development"
+msgstr ""
+
+#. Tag: devel::lang:r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R Development"
+msgstr ""
+
+#. Tag: devel::lang:ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby Development"
+msgstr ""
+
+#. Tag: devel::lang:scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme Development"
+msgstr ""
+
+#. Tag: devel::lang:sql, short desc
+#: files/debtags/vocabulary
+msgid "SQL"
+msgstr ""
+
+#. Tag: devel::lang:tcl, short desc
+#: files/debtags/vocabulary
+msgid "Tcl Development"
+msgstr ""
+
+#. Tag: devel::library, short desc
+#: files/debtags/vocabulary
+msgid "Libraries"
+msgstr ""
+
+#. Tag: devel::machinecode, short desc
+#: files/debtags/vocabulary
+msgid "Machine Code"
+msgstr ""
+
+#. Tag: devel::machinecode, long desc
+#: files/debtags/vocabulary
+msgid " Assemblers and other machine-code development tools."
+msgstr ""
+
+#. Tag: devel::modelling, short desc
+#: files/debtags/vocabulary
+msgid "Modelling"
+msgstr ""
+
+#. Tag: devel::modelling, long desc
+#: files/debtags/vocabulary
+msgid " Programs and libraries that support creation of software models\n with modelling languages like UML or OCL."
+msgstr ""
+
+#. Tag: devel::packaging, short desc
+#: files/debtags/vocabulary
+msgid "Packaging"
+msgstr ""
+
+#. Tag: devel::packaging, long desc
+#: files/debtags/vocabulary
+msgid " Tools for packaging software."
+msgstr ""
+
+#. Tag: devel::prettyprint, short desc
+#: files/debtags/vocabulary
+msgid "Prettyprint"
+msgstr ""
+
+#. Tag: devel::prettyprint, long desc
+#: files/debtags/vocabulary
+msgid " Code pretty-printing and indentation/reformatting."
+msgstr ""
+
+#. Tag: devel::profiler, short desc
+#: files/debtags/vocabulary
+msgid "Profiling"
+msgstr ""
+
+#. Tag: devel::profiler, long desc
+#: files/debtags/vocabulary
+msgid " Profiling and optimization tools."
+msgstr ""
+
+#. Tag: devel::rcs, short desc
+#: files/debtags/vocabulary
+msgid "Revision Control"
+msgstr ""
+
+#. Tag: devel::rcs, long desc
+#: files/debtags/vocabulary
+msgid " RCS (Revision Control System) and SCM (Software Configuration Manager)"
+msgstr ""
+
+#. Tag: devel::rpc, short desc
+#: files/debtags/vocabulary
+msgid "RPC"
+msgstr ""
+
+#. Tag: devel::rpc, long desc
+#: files/debtags/vocabulary
+msgid " Remote Procedure Call, Network transparent programming"
+msgstr ""
+
+#. Tag: devel::runtime, short desc
+#: files/debtags/vocabulary
+msgid "Runtime Support"
+msgstr ""
+
+#. Tag: devel::runtime, long desc
+#: files/debtags/vocabulary
+msgid " Runtime environments of various languages and systems."
+msgstr ""
+
+#. Tag: devel::testing-qa, short desc
+#: files/debtags/vocabulary
+msgid "Testing and QA"
+msgstr ""
+
+#. Tag: devel::testing-qa, long desc
+#: files/debtags/vocabulary
+msgid " Tools for software testing and quality assurance."
+msgstr ""
+
+#. Tag: devel::ui-builder, short desc
+#: files/debtags/vocabulary
+#. Facet: interface, short desc
+#: files/debtags/vocabulary
+msgid "User Interface"
+msgstr ""
+
+#. Tag: devel::ui-builder, long desc
+#: files/debtags/vocabulary
+msgid " Tools for designing user interfaces."
+msgstr ""
+
+#. Tag: devel::web, short desc
+#: files/debtags/vocabulary
+msgid "Web"
+msgstr ""
+
+#. Tag: devel::web, long desc
+#: files/debtags/vocabulary
+msgid " Web-centric frameworks, CGI libraries and other web-specific development\n tools."
+msgstr ""
+
+#. Tag: educational, short desc
+#: files/debtags/vocabulary
+msgid "[Edu] Educational Software"
+msgstr ""
+
+#. Facet: field, short desc
+#: files/debtags/vocabulary
+msgid "Field"
+msgstr ""
+
+#. Tag: field::arts, short desc
+#: files/debtags/vocabulary
+msgid "Arts"
+msgstr ""
+
+#. Tag: field::astronomy, short desc
+#: files/debtags/vocabulary
+msgid "Astronomy"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, short desc
+#: files/debtags/vocabulary
+msgid "Bioinformatics"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, long desc
+#: files/debtags/vocabulary
+msgid " Sequence analysis software."
+msgstr ""
+
+#. Tag: field::biology:molecular, short desc
+#: files/debtags/vocabulary
+msgid "Molecular biology"
+msgstr ""
+
+#. Tag: field::biology:molecular, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to molecular cloning and related wet biology."
+msgstr ""
+
+#. Tag: field::biology:structural, short desc
+#: files/debtags/vocabulary
+msgid "Structural biology"
+msgstr ""
+
+#. Tag: field::biology:structural, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to model tridimentional structures."
+msgstr ""
+
+#. Tag: field::chemistry, short desc
+#: files/debtags/vocabulary
+msgid "Chemistry"
+msgstr ""
+
+#. Tag: field::electronics, short desc
+#: files/debtags/vocabulary
+msgid "Electronics"
+msgstr ""
+
+#. Tag: field::electronics, long desc
+#: files/debtags/vocabulary
+msgid " Circuit editors and other electronics-related software"
+msgstr ""
+
+#. Tag: field::finance, short desc
+#: files/debtags/vocabulary
+msgid "Financial"
+msgstr ""
+
+#. Tag: field::finance, long desc
+#: files/debtags/vocabulary
+msgid " Accounting and financial software"
+msgstr ""
+
+#. Tag: field::genealogy, short desc
+#: files/debtags/vocabulary
+msgid "Genealogy"
+msgstr ""
+
+#. Tag: field::geography, short desc
+#: files/debtags/vocabulary
+msgid "Geography"
+msgstr ""
+
+#. Tag: field::geology, short desc
+#: files/debtags/vocabulary
+msgid "Geology"
+msgstr ""
+
+#. Tag: field::linguistics, short desc
+#: files/debtags/vocabulary
+msgid "Linguistics"
+msgstr ""
+
+#. Tag: field::mathematics, short desc
+#: files/debtags/vocabulary
+msgid "Mathematics"
+msgstr ""
+
+#. Tag: field::medicine, short desc
+#: files/debtags/vocabulary
+msgid "Medicine"
+msgstr ""
+
+#. Tag: field::medicine:imaging, short desc
+#: files/debtags/vocabulary
+msgid "Medical Imaging"
+msgstr ""
+
+#. Tag: field::physics, short desc
+#: files/debtags/vocabulary
+msgid "Physics"
+msgstr ""
+
+#. Tag: field::religion, short desc
+#: files/debtags/vocabulary
+msgid "Religion"
+msgstr ""
+
+#. Tag: field::statistics, short desc
+#: files/debtags/vocabulary
+msgid "Statistics"
+msgstr ""
+
+#. Facet: game, short desc
+#: files/debtags/vocabulary
+msgid "Games and Amusement"
+msgstr ""
+
+#. Tag: game::adventure, short desc
+#: files/debtags/vocabulary
+msgid "Adventure"
+msgstr ""
+
+#. Tag: game::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Action and Arcade"
+msgstr ""
+
+#. Tag: game::board, short desc
+#: files/debtags/vocabulary
+msgid "Board"
+msgstr ""
+
+#. Tag: game::board:chess, short desc
+#: files/debtags/vocabulary
+msgid "Chess"
+msgstr ""
+
+#. Tag: game::card, short desc
+#: files/debtags/vocabulary
+msgid "Card"
+msgstr ""
+
+#. Tag: game::demos, short desc
+#: files/debtags/vocabulary
+msgid "Demo"
+msgstr ""
+
+#. Tag: game::fps, short desc
+#: files/debtags/vocabulary
+msgid "First person shooter"
+msgstr ""
+
+#. Tag: game::mud, short desc
+#: files/debtags/vocabulary
+msgid "Multiplayer RPG"
+msgstr ""
+
+#. Tag: game::mud, long desc
+#: files/debtags/vocabulary
+msgid " MUDs, MOOs, and other multiplayer RPGs"
+msgstr ""
+
+#. Tag: game::platform, short desc
+#: files/debtags/vocabulary
+msgid "Platform"
+msgstr ""
+
+#. Tag: game::puzzle, short desc
+#: files/debtags/vocabulary
+msgid "Puzzle"
+msgstr ""
+
+#. Tag: game::rpg, short desc
+#: files/debtags/vocabulary
+msgid "Role-playing"
+msgstr ""
+
+#. Tag: game::rpg:rogue, short desc
+#: files/debtags/vocabulary
+msgid "Rogue-Like RPG"
+msgstr ""
+
+#. Tag: game::rpg:rogue, long desc
+#: files/debtags/vocabulary
+msgid " Games like Nethack, Angband etc."
+msgstr ""
+
+#. Tag: game::simulation, short desc
+#: files/debtags/vocabulary
+msgid "Simulation"
+msgstr ""
+
+#. Tag: game::sport, short desc
+#: files/debtags/vocabulary
+msgid "Sport games"
+msgstr ""
+
+#. Tag: game::sport:racing, short desc
+#: files/debtags/vocabulary
+msgid "Racing"
+msgstr ""
+
+#. Tag: game::strategy, short desc
+#: files/debtags/vocabulary
+msgid "Strategy"
+msgstr ""
+
+#. Tag: game::tetris, short desc
+#: files/debtags/vocabulary
+msgid "Tetris-like"
+msgstr ""
+
+#. Tag: game::toys, short desc
+#: files/debtags/vocabulary
+msgid "Toy or Gimmick"
+msgstr ""
+
+#. Tag: game::typing, short desc
+#: files/debtags/vocabulary
+msgid "Typing Tutor"
+msgstr ""
+
+#. Facet: hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Enablement"
+msgstr ""
+
+#. Tag: hardware::camera, short desc
+#: files/debtags/vocabulary
+msgid "Digital Camera"
+msgstr ""
+
+#. Tag: hardware::detection, short desc
+#: files/debtags/vocabulary
+msgid "Hardware detection"
+msgstr ""
+
+#. Tag: hardware::embedded, short desc
+#: files/debtags/vocabulary
+msgid "Embedded"
+msgstr ""
+
+#. Tag: hardware::emulation, short desc
+#: files/debtags/vocabulary
+msgid "Emulation"
+msgstr ""
+
+#. Tag: hardware::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Devices"
+msgstr ""
+
+#. Tag: hardware::input:joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick"
+msgstr ""
+
+#. Tag: hardware::input:keyboard, short desc
+#: files/debtags/vocabulary
+msgid "Keyboard"
+msgstr ""
+
+#. Tag: hardware::input:mouse, short desc
+#: files/debtags/vocabulary
+msgid "Mouse"
+msgstr ""
+
+#. Tag: hardware::joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick (legacy)"
+msgstr ""
+
+#. Tag: hardware::hamradio, short desc
+#: files/debtags/vocabulary
+msgid "Ham Radio"
+msgstr ""
+
+#. Tag: hardware::laptop, short desc
+#: files/debtags/vocabulary
+msgid "Laptop"
+msgstr ""
+
+#. Tag: hardware::modem, short desc
+#: files/debtags/vocabulary
+msgid "Modem"
+msgstr ""
+
+#. Tag: hardware::modem:dsl, short desc
+#: files/debtags/vocabulary
+msgid "xDSL Modem"
+msgstr ""
+
+#. Tag: hardware::opengl, short desc
+#: files/debtags/vocabulary
+msgid "Requires video hardware acceleration"
+msgstr ""
+
+#. Tag: hardware::power:ups, short desc
+#: files/debtags/vocabulary
+msgid "UPS"
+msgstr ""
+
+#. Tag: hardware::power:ups, long desc
+#: files/debtags/vocabulary
+msgid " Uninterruptible Power Supply"
+msgstr ""
+
+#. Tag: hardware::power:acpi, short desc
+#: files/debtags/vocabulary
+msgid "ACPI Power Management"
+msgstr ""
+
+#. Tag: hardware::power:apm, short desc
+#: files/debtags/vocabulary
+msgid "APM Power Management"
+msgstr ""
+
+#. Tag: hardware::printer, short desc
+#: files/debtags/vocabulary
+msgid "Printer"
+msgstr ""
+
+#. Tag: hardware::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Image-scanning hardware"
+msgstr ""
+
+#. Tag: hardware::storage, short desc
+#: files/debtags/vocabulary
+msgid "Storage"
+msgstr ""
+
+#. Tag: hardware::storage:cd, short desc
+#: files/debtags/vocabulary
+msgid "CD"
+msgstr ""
+
+#. Tag: hardware::storage:cd, long desc
+#: files/debtags/vocabulary
+msgid " Compact Disc"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, short desc
+#: files/debtags/vocabulary
+msgid "DVD"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, long desc
+#: files/debtags/vocabulary
+msgid " Digital Versatile Disc"
+msgstr ""
+
+#. Tag: hardware::storage:floppy, short desc
+#: files/debtags/vocabulary
+msgid "Floppy disk"
+msgstr ""
+
+#. Tag: hardware::usb, short desc
+#: files/debtags/vocabulary
+msgid "USB"
+msgstr ""
+
+#. Tag: hardware::usb, long desc
+#: files/debtags/vocabulary
+msgid " Universal Serial Bus"
+msgstr ""
+
+#. Tag: hardware::video, short desc
+#: files/debtags/vocabulary
+msgid "Graphics and Video"
+msgstr ""
+
+#. Facet: made-of, short desc
+#: files/debtags/vocabulary
+msgid "Made Of"
+msgstr ""
+
+#. Facet: made-of, long desc
+#: files/debtags/vocabulary
+msgid " The languages or data formats used to make the package"
+msgstr ""
+
+#. Tag: made-of::data:dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionary"
+msgstr ""
+
+#. Tag: made-of::data:font, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::font, short desc
+#: files/debtags/vocabulary
+msgid "Font"
+msgstr ""
+
+#. Tag: made-of::data:html, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::html, short desc
+#: files/debtags/vocabulary
+msgid "HTML Hypertext Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:icons, short desc
+#: files/debtags/vocabulary
+msgid "Icons"
+msgstr ""
+
+#. Tag: made-of::data:info, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::info, short desc
+#: files/debtags/vocabulary
+msgid "Documentation in Info format"
+msgstr ""
+
+#. Tag: made-of::data:man, short desc
+#: files/debtags/vocabulary
+msgid "Manuals in nroff format"
+msgstr ""
+
+#. Tag: made-of::data:pdf, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::pdf, short desc
+#: files/debtags/vocabulary
+msgid "PDF Documents"
+msgstr ""
+
+#. Tag: made-of::data:postscript, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::postscript, short desc
+#: files/debtags/vocabulary
+msgid "Postscript"
+msgstr ""
+
+#. Tag: made-of::data:sgml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::sgml, short desc
+#: files/debtags/vocabulary
+msgid "SGML, Standard Generalized Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:svg, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::svg, short desc
+#: files/debtags/vocabulary
+msgid "SVG, Scalable Vector Graphics"
+msgstr ""
+
+#. Tag: made-of::data:tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX, LaTeX and DVI"
+msgstr ""
+
+#. Tag: made-of::data:vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:xml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::xml, short desc
+#: files/debtags/vocabulary
+msgid "XML"
+msgstr ""
+
+#. Tag: interface::3d, short desc
+#: files/debtags/vocabulary
+msgid "Three-Dimensional"
+msgstr ""
+
+#. Tag: interface::commandline, short desc
+#: files/debtags/vocabulary
+msgid "Command Line"
+msgstr ""
+
+#. Tag: interface::daemon, short desc
+#: files/debtags/vocabulary
+msgid "Daemon"
+msgstr ""
+
+#. Tag: interface::daemon, long desc
+#: files/debtags/vocabulary
+msgid " Runs in background, only a control interface is provided, usually on\n commandline."
+msgstr ""
+
+#. Tag: interface::framebuffer, short desc
+#: files/debtags/vocabulary
+msgid "Framebuffer"
+msgstr ""
+
+#. Tag: interface::shell, short desc
+#: files/debtags/vocabulary
+msgid "Command Shell"
+msgstr ""
+
+#. Tag: interface::svga, short desc
+#: files/debtags/vocabulary
+msgid "Console SVGA"
+msgstr ""
+
+#. Tag: interface::text-mode, short desc
+#: files/debtags/vocabulary
+msgid "Text-based Interactive"
+msgstr ""
+
+#. Tag: interface::web, short desc
+#: files/debtags/vocabulary
+#. Facet: web, short desc
+#: files/debtags/vocabulary
+msgid "World Wide Web"
+msgstr ""
+
+#. Tag: interface::x11, short desc
+#: files/debtags/vocabulary
+msgid "X Window System"
+msgstr ""
+
+#. Facet: implemented-in, short desc
+#: files/debtags/vocabulary
+msgid "Implemented in"
+msgstr ""
+
+#. Tag: implemented-in::ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada"
+msgstr ""
+
+#. Tag: implemented-in::c, short desc
+#: files/debtags/vocabulary
+msgid "C"
+msgstr ""
+
+#. Tag: implemented-in::c++, short desc
+#: files/debtags/vocabulary
+msgid "C++"
+msgstr ""
+
+#. Tag: implemented-in::c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C#"
+msgstr ""
+
+#. Tag: implemented-in::fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran"
+msgstr ""
+
+#. Tag: implemented-in::haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell"
+msgstr ""
+
+#. Tag: implemented-in::java, short desc
+#: files/debtags/vocabulary
+msgid "Java"
+msgstr ""
+
+#. Tag: implemented-in::ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/Javascript"
+msgstr ""
+
+#. Tag: implemented-in::lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp"
+msgstr ""
+
+#. Tag: implemented-in::lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua"
+msgstr ""
+
+#. Tag: implemented-in::ml, short desc
+#: files/debtags/vocabulary
+msgid "ML"
+msgstr ""
+
+#. Tag: implemented-in::objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective C"
+msgstr ""
+
+#. Tag: implemented-in::ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml"
+msgstr ""
+
+#. Tag: implemented-in::perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl"
+msgstr ""
+
+#. Tag: implemented-in::php, short desc
+#: files/debtags/vocabulary
+msgid "PHP"
+msgstr ""
+
+#. Tag: implemented-in::pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike"
+msgstr ""
+
+#. Tag: implemented-in::python, short desc
+#: files/debtags/vocabulary
+msgid "Python"
+msgstr ""
+
+#. Tag: implemented-in::r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R"
+msgstr ""
+
+#. Tag: implemented-in::ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby"
+msgstr ""
+
+#. Tag: implemented-in::scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme"
+msgstr ""
+
+#. Tag: implemented-in::shell, short desc
+#: files/debtags/vocabulary
+msgid "sh, bash, ksh, tcsh and other shells"
+msgstr ""
+
+#. Tag: implemented-in::tcl, short desc
+#: files/debtags/vocabulary
+msgid "TCL Tool Command Language"
+msgstr ""
+
+#. Facet: junior, short desc
+#: files/debtags/vocabulary
+msgid "Junior Applications"
+msgstr ""
+
+#. Facet: junior, long desc
+#: files/debtags/vocabulary
+msgid " Applications recommended for younger users"
+msgstr ""
+
+#. Tag: junior::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Arcade games"
+msgstr ""
+
+#. Tag: junior::games-gl, short desc
+#: files/debtags/vocabulary
+msgid "3D games"
+msgstr ""
+
+#. Tag: junior::meta, short desc
+#: files/debtags/vocabulary
+msgid "Metapackages"
+msgstr ""
+
+#. Facet: mail, short desc
+#: files/debtags/vocabulary
+msgid "Electronic Mail"
+msgstr ""
+
+#. Tag: mail::filters, short desc
+#: files/debtags/vocabulary
+msgid "Filters"
+msgstr ""
+
+#. Tag: mail::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP Protocol"
+msgstr ""
+
+#. Tag: mail::list, short desc
+#: files/debtags/vocabulary
+msgid "Mailing Lists"
+msgstr ""
+
+#. Tag: mail::notification, short desc
+#: files/debtags/vocabulary
+msgid "Notification"
+msgstr ""
+
+#. Tag: mail::notification, long desc
+#: files/debtags/vocabulary
+msgid " Software that notifies users about status of mailbox."
+msgstr ""
+
+#. Tag: mail::pop, short desc
+#: files/debtags/vocabulary
+msgid "POP3 Protocol"
+msgstr ""
+
+#. Tag: mail::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP Protocol"
+msgstr ""
+
+#. Tag: mail::delivery-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Delivery Agent"
+msgstr ""
+
+#. Tag: mail::delivery-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that delivers mail to users' mailboxes."
+msgstr ""
+
+#. Tag: mail::transport-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Transport Agent"
+msgstr ""
+
+#. Tag: mail::transport-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that routes and transmits mail accross the system and the network."
+msgstr ""
+
+#. Tag: mail::user-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail user agent"
+msgstr ""
+
+#. Tag: mail::user-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that allows users to access e-mail."
+msgstr ""
+
+#. Facet: office, short desc
+#: files/debtags/vocabulary
+msgid "Office and business"
+msgstr ""
+
+#. Tag: office::finance, short desc
+#: files/debtags/vocabulary
+msgid "Finance"
+msgstr ""
+
+#. Tag: office::groupware, short desc
+#: files/debtags/vocabulary
+msgid "Groupware"
+msgstr ""
+
+#. Tag: office::presentation, short desc
+#: files/debtags/vocabulary
+msgid "Presentation"
+msgstr ""
+
+#. Tag: office::project-management, short desc
+#: files/debtags/vocabulary
+msgid "Project management"
+msgstr ""
+
+#. Tag: office::spreadsheet, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::spreadsheet, short desc
+#: files/debtags/vocabulary
+msgid "Spreadsheet"
+msgstr ""
+
+#. Facet: works-with, short desc
+#: files/debtags/vocabulary
+msgid "Works with"
+msgstr ""
+
+#. Facet: works-with, long desc
+#: files/debtags/vocabulary
+msgid " These tags describe what is the kind of data (or even processes, or people)\n that the package can work with."
+msgstr ""
+
+#. Tag: works-with::3dmodel, short desc
+#: files/debtags/vocabulary
+msgid "3D Model"
+msgstr ""
+
+#. Tag: works-with::archive, short desc
+#: files/debtags/vocabulary
+msgid "Archive"
+msgstr ""
+
+#. Tag: works-with::audio, short desc
+#: files/debtags/vocabulary
+msgid "Audio"
+msgstr ""
+
+#. Tag: works-with::bugs, short desc
+#: files/debtags/vocabulary
+msgid "Bugs or Issues"
+msgstr ""
+
+#. Tag: works-with::db, short desc
+#: files/debtags/vocabulary
+msgid "Databases"
+msgstr ""
+
+#. Tag: works-with::dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionaries"
+msgstr ""
+
+#. Tag: works-with::dtp, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Publishing (DTP)"
+msgstr ""
+
+#. Tag: works-with::fax, short desc
+#: files/debtags/vocabulary
+msgid "Faxes"
+msgstr ""
+
+#. Tag: works-with::file, short desc
+#: files/debtags/vocabulary
+msgid "Files"
+msgstr ""
+
+#. Tag: works-with::font, short desc
+#: files/debtags/vocabulary
+msgid "Fonts"
+msgstr ""
+
+#. Tag: works-with::im, short desc
+#: files/debtags/vocabulary
+msgid "Instant Messages"
+msgstr ""
+
+#. Tag: works-with::im, long desc
+#: files/debtags/vocabulary
+msgid " The package can connect to some IM network (or networks)."
+msgstr ""
+
+#. Tag: works-with::logfile, short desc
+#: files/debtags/vocabulary
+msgid "System Logs"
+msgstr ""
+
+#. Tag: works-with::mail, short desc
+#: files/debtags/vocabulary
+msgid "Email"
+msgstr ""
+
+#. Tag: works-with::music-notation, short desc
+#: files/debtags/vocabulary
+msgid "Music Notation"
+msgstr ""
+
+#. Tag: works-with::network-traffic, short desc
+#: files/debtags/vocabulary
+msgid "Network traffic"
+msgstr ""
+
+#. Tag: works-with::network-traffic, long desc
+#: files/debtags/vocabulary
+msgid " Routers, shapers, sniffers, firewalls and other tools\n that work with a stream of network packets."
+msgstr ""
+
+#. Tag: works-with::people, short desc
+#: files/debtags/vocabulary
+msgid "People"
+msgstr ""
+
+#. Tag: works-with::pim, short desc
+#: files/debtags/vocabulary
+msgid "Personal Information"
+msgstr ""
+
+#. Tag: works-with::image, short desc
+#: files/debtags/vocabulary
+msgid "Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, short desc
+#: files/debtags/vocabulary
+msgid "Raster Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, long desc
+#: files/debtags/vocabulary
+msgid " Images made of dots, such as photos and scans"
+msgstr ""
+
+#. Tag: works-with::image:vector, short desc
+#: files/debtags/vocabulary
+msgid "Vector Image"
+msgstr ""
+
+#. Tag: works-with::image:vector, long desc
+#: files/debtags/vocabulary
+msgid " Images made of lines, such as graphs or most clipart"
+msgstr ""
+
+#. Tag: works-with::software:package, short desc
+#: files/debtags/vocabulary
+msgid "Packaged software"
+msgstr ""
+
+#. Tag: works-with::software:running, short desc
+#: files/debtags/vocabulary
+msgid "Running programs"
+msgstr ""
+
+#. Tag: works-with::software:source, short desc
+#: files/debtags/vocabulary
+msgid "Source code"
+msgstr ""
+
+#. Tag: works-with::text, short desc
+#: files/debtags/vocabulary
+msgid "Text"
+msgstr ""
+
+#. Tag: works-with::unicode, short desc
+#: files/debtags/vocabulary
+msgid "Unicode"
+msgstr ""
+
+#. Tag: works-with::unicode, long desc
+#: files/debtags/vocabulary
+msgid " Please do not tag programs with simple unicode support,\n doing so would make this tag useless.\n Ultimately all applications should have unicode support."
+msgstr ""
+
+#. Tag: works-with::video, short desc
+#: files/debtags/vocabulary
+msgid "Video and Animation"
+msgstr ""
+
+#. Facet: works-with-format, short desc
+#: files/debtags/vocabulary
+msgid "Supports Format"
+msgstr ""
+
+#. Tag: works-with-format::bib, short desc
+#: files/debtags/vocabulary
+msgid "BibTeX"
+msgstr ""
+
+#. Tag: works-with-format::bib, long desc
+#: files/debtags/vocabulary
+msgid " BibTeX list of references"
+msgstr ""
+
+#. Tag: works-with-format::dvi, short desc
+#: files/debtags/vocabulary
+msgid "TeX DVI"
+msgstr ""
+
+#. Tag: works-with-format::dvi, long desc
+#: files/debtags/vocabulary
+msgid " DeVice Independent page description file, usually generated\n by TeX or LaTeX."
+msgstr ""
+
+#. Tag: works-with-format::ldif, short desc
+#: files/debtags/vocabulary
+msgid "LDIF"
+msgstr ""
+
+#. Tag: works-with-format::ldif, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML 3D Model"
+msgstr ""
+
+#. Tag: works-with-format::vrml, long desc
+#: files/debtags/vocabulary
+msgid " Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: works-with-format::iso9660, short desc
+#: files/debtags/vocabulary
+msgid "ISO 9660 CD Filesystem"
+msgstr ""
+
+#. Tag: works-with-format::tar, short desc
+#: files/debtags/vocabulary
+msgid "Tar Archives"
+msgstr ""
+
+#. Tag: works-with-format::zip, short desc
+#: files/debtags/vocabulary
+msgid "Zip Archives"
+msgstr ""
+
+#. Tag: works-with-format::mp3, short desc
+#: files/debtags/vocabulary
+msgid "MP3 Audio"
+msgstr ""
+
+#. Tag: works-with-format::mpc, short desc
+#: files/debtags/vocabulary
+msgid "Musepack Audio"
+msgstr ""
+
+#. Tag: works-with-format::oggvorbis, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Vorbis Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, short desc
+#: files/debtags/vocabulary
+msgid "MS RIFF Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, long desc
+#: files/debtags/vocabulary
+msgid " Wave uncompressed audio format"
+msgstr ""
+
+#. Tag: works-with-format::jpg, short desc
+#: files/debtags/vocabulary
+msgid "JPEG, Joint Picture Expert Group"
+msgstr ""
+
+#. Tag: works-with-format::gif, short desc
+#: files/debtags/vocabulary
+msgid "GIF, Graphics Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::odf, short desc
+#: files/debtags/vocabulary
+msgid "ODF, Open Document Format"
+msgstr ""
+
+#. Tag: works-with-format::png, short desc
+#: files/debtags/vocabulary
+msgid "PNG, Portable Network Graphics"
+msgstr ""
+
+#. Tag: works-with-format::swf, short desc
+#: files/debtags/vocabulary
+msgid "SWF, ShockWave Flash"
+msgstr ""
+
+#. Tag: works-with-format::tiff, short desc
+#: files/debtags/vocabulary
+msgid "TIFF, Tagged Image File Format"
+msgstr ""
+
+#. Tag: works-with-format::docbook, short desc
+#: files/debtags/vocabulary
+msgid "Docbook"
+msgstr ""
+
+#. Tag: works-with-format::man, short desc
+#: files/debtags/vocabulary
+msgid "Manpages"
+msgstr ""
+
+#. Tag: works-with-format::plaintext, short desc
+#: files/debtags/vocabulary
+msgid "Plain text"
+msgstr ""
+
+#. Tag: works-with-format::tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX and LaTeX"
+msgstr ""
+
+#. Tag: works-with-format::oggtheora, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Theora Video"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, short desc
+#: files/debtags/vocabulary
+msgid "RSS Rich Site Summary"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, long desc
+#: files/debtags/vocabulary
+msgid " XML dialect used to describe resources and websites."
+msgstr ""
+
+#. Tag: works-with-format::xml:xslt, short desc
+#: files/debtags/vocabulary
+msgid "XSL Transformations (XSLT)"
+msgstr ""
+
+#. Facet: scope, short desc
+#: files/debtags/vocabulary
+msgid "Scope"
+msgstr ""
+
+#. Tag: scope::utility, short desc
+#: files/debtags/vocabulary
+msgid "Utility"
+msgstr ""
+
+#. Tag: scope::utility, long desc
+#: files/debtags/vocabulary
+msgid " A narrow-scoped program for particular use case or few use cases. It\n only does something 10-20% of users in the field will need. Often has\n functionality missing from related applications."
+msgstr ""
+
+#. Tag: scope::application, short desc
+#: files/debtags/vocabulary
+#. Tag: web::application, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::application, short desc
+#: files/debtags/vocabulary
+msgid "Application"
+msgstr ""
+
+#. Tag: scope::application, long desc
+#: files/debtags/vocabulary
+msgid " Broad-scoped program for general use. It probably has functionality\n for 80-90% of use cases. The pieces that remain are usually to be\n found as utilities."
+msgstr ""
+
+#. Tag: scope::suite, short desc
+#: files/debtags/vocabulary
+msgid "Suite"
+msgstr ""
+
+#. Tag: scope::suite, long desc
+#: files/debtags/vocabulary
+msgid " Comprehensive suite of applications and utilities on the scale of\n desktop environment or base operating system."
+msgstr ""
+
+#. Facet: role, short desc
+#: files/debtags/vocabulary
+msgid "Role"
+msgstr ""
+
+#. Tag: role::program, short desc
+#: files/debtags/vocabulary
+msgid "Program"
+msgstr ""
+
+#. Tag: role::program, long desc
+#: files/debtags/vocabulary
+msgid " Executable computer program."
+msgstr ""
+
+#. Tag: role::shared-lib, short desc
+#: files/debtags/vocabulary
+msgid "Shared Library"
+msgstr ""
+
+#. Tag: role::shared-lib, long desc
+#: files/debtags/vocabulary
+msgid " Shared libraries used by one or more programs."
+msgstr ""
+
+#. Tag: role::plugin, short desc
+#: files/debtags/vocabulary
+msgid "Plugin"
+msgstr ""
+
+#. Tag: role::plugin, long desc
+#: files/debtags/vocabulary
+msgid " Add-on, pluggable program fragments enhancing functionality\n of some program or system."
+msgstr ""
+
+#. Tag: role::debug-symbols, short desc
+#: files/debtags/vocabulary
+msgid "Debugging symbols"
+msgstr ""
+
+#. Tag: role::debug-symbols, long desc
+#: files/debtags/vocabulary
+msgid " Debugging symbols."
+msgstr ""
+
+#. Tag: role::devel-lib, short desc
+#: files/debtags/vocabulary
+msgid "Development Library"
+msgstr ""
+
+#. Tag: role::devel-lib, long desc
+#: files/debtags/vocabulary
+msgid " Library and header files used in software development or building."
+msgstr ""
+
+#. Tag: role::source, short desc
+#: files/debtags/vocabulary
+msgid "Source Code"
+msgstr ""
+
+#. Tag: role::source, long desc
+#: files/debtags/vocabulary
+msgid " Human-readable code of a program, library or a part thereof."
+msgstr ""
+
+#. Tag: role::data, short desc
+#: files/debtags/vocabulary
+msgid "Standalone Data"
+msgstr ""
+
+#. Tag: role::app-data, short desc
+#: files/debtags/vocabulary
+msgid "Application Data"
+msgstr ""
+
+#. Tag: role::metapackage, short desc
+#: files/debtags/vocabulary
+msgid "Metapackage"
+msgstr ""
+
+#. Tag: role::metapackage, long desc
+#: files/debtags/vocabulary
+msgid " Packages that install suites of other packages."
+msgstr ""
+
+#. Facet: security, short desc
+#: files/debtags/vocabulary
+msgid "Security"
+msgstr ""
+
+#. Facet: security, long desc
+#: files/debtags/vocabulary
+msgid " How the package is related to system security"
+msgstr ""
+
+#. Tag: security::antivirus, short desc
+#: files/debtags/vocabulary
+msgid "Anti-Virus"
+msgstr ""
+
+#. Tag: security::authentication, short desc
+#: files/debtags/vocabulary
+msgid "Authentication"
+msgstr ""
+
+#. Tag: security::cryptography, short desc
+#: files/debtags/vocabulary
+msgid "Cryptography"
+msgstr ""
+
+#. Tag: security::cryptography, long desc
+#: files/debtags/vocabulary
+msgid " Cryptographic and privacy-oriented tools."
+msgstr ""
+
+#. Tag: security::firewall, short desc
+#: files/debtags/vocabulary
+#. Tag: network::firewall, short desc
+#: files/debtags/vocabulary
+msgid "Firewall"
+msgstr ""
+
+#. Tag: security::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics"
+msgstr ""
+
+#. Tag: security::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Post-mortem analysis of intrusions."
+msgstr ""
+
+#. Tag: security::ids, short desc
+#: files/debtags/vocabulary
+msgid "Intrusion Detection"
+msgstr ""
+
+#. Tag: security::integrity, short desc
+#: files/debtags/vocabulary
+msgid "File Integrity"
+msgstr ""
+
+#. Tag: security::integrity, long desc
+#: files/debtags/vocabulary
+msgid " Tools to monitor system for changes in filesystem and report changes\n or tools providing other means to check system integrity."
+msgstr ""
+
+#. Tag: security::log-analyzer, short desc
+#: files/debtags/vocabulary
+msgid "Log Analyzer"
+msgstr ""
+
+#. Tag: security::privacy, short desc
+#: files/debtags/vocabulary
+msgid "Privacy"
+msgstr ""
+
+#. Facet: sound, short desc
+#: files/debtags/vocabulary
+msgid "Sound and Music"
+msgstr ""
+
+#. Tag: sound::compression, short desc
+#: files/debtags/vocabulary
+msgid "Compression"
+msgstr ""
+
+#. Tag: sound::midi, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Software"
+msgstr ""
+
+#. Tag: sound::mixer, short desc
+#: files/debtags/vocabulary
+msgid "Mixing"
+msgstr ""
+
+#. Tag: sound::player, short desc
+#: files/debtags/vocabulary
+msgid "Playback"
+msgstr ""
+
+#. Tag: sound::recorder, short desc
+#: files/debtags/vocabulary
+msgid "Recording"
+msgstr ""
+
+#. Tag: sound::sequencer, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Sequencing"
+msgstr ""
+
+#. Facet: special, short desc
+#: files/debtags/vocabulary
+msgid "Service tags"
+msgstr ""
+
+#. Tag: special::auto-inst-parts, short desc
+#: files/debtags/vocabulary
+msgid "Secondary packages users won't install directly"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, short desc
+#: files/debtags/vocabulary
+msgid "NO IPv6 support"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, long desc
+#: files/debtags/vocabulary
+msgid " Use this for packages that cannot yet or will never support IPv6."
+msgstr ""
+
+#. Tag: special::obsolete, short desc
+#: files/debtags/vocabulary
+msgid "Obsolete Packages"
+msgstr ""
+
+#. Tag: special::obsolete, long desc
+#: files/debtags/vocabulary
+msgid " Packages that are not used any longer, also packages only left for upgrade\n purposes (merged / split packages)"
+msgstr ""
+
+#. Tag: special::invalid-tag, short desc
+#: files/debtags/vocabulary
+msgid "Invalid tag"
+msgstr ""
+
+#. Tag: special::invalid-tag, long desc
+#: files/debtags/vocabulary
+msgid " This tag means that the tag database contains a tag which is not present in\n the tag vocabulary.  The presence of this tag indicates a software bug: this\n should never show up."
+msgstr ""
+
+#. Tag: special::not-yet-tagged, short desc
+#: files/debtags/vocabulary
+msgid "!Not yet tagged packages!"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::a, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with a"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::b, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with b"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::c, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with c"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::d, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with d"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::e, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with e"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::f, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with f"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::g, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with g"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::h, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with h"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::i, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with i"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::j, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with j"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::k, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with k"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::l, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with l"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::m, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with m"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::n, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with n"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::o, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with o"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::p, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with p"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::q, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with q"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::r, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with r"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::s, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with s"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::t, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with t"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::u, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with u"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::v, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with v"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::w, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with w"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::x, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with x"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::y, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with y"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::z, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with z"
+msgstr ""
+
+#. Facet: suite, short desc
+#: files/debtags/vocabulary
+msgid "Application Suite"
+msgstr ""
+
+#. Tag: suite::apache, short desc
+#: files/debtags/vocabulary
+msgid "Apache"
+msgstr ""
+
+#. Tag: suite::eclipse, short desc
+#: files/debtags/vocabulary
+msgid "Eclipse"
+msgstr ""
+
+#. Tag: suite::eclipse, long desc
+#: files/debtags/vocabulary
+msgid " Eclipse tool platform and plugins."
+msgstr ""
+
+#. Tag: suite::emacs, short desc
+#: files/debtags/vocabulary
+msgid "Emacs"
+msgstr ""
+
+#. Tag: suite::gforge, short desc
+#: files/debtags/vocabulary
+msgid "GForge"
+msgstr ""
+
+#. Tag: suite::gforge, long desc
+#: files/debtags/vocabulary
+msgid " A collaborative development platform."
+msgstr ""
+
+#. Tag: suite::gimp, short desc
+#: files/debtags/vocabulary
+msgid "The GIMP"
+msgstr ""
+
+#. Tag: suite::gkrellm, short desc
+#: files/debtags/vocabulary
+msgid "GKrellM Monitors"
+msgstr ""
+
+#. Tag: suite::gnome, short desc
+#: files/debtags/vocabulary
+msgid "GNOME"
+msgstr ""
+
+#. Tag: suite::gnu, short desc
+#: files/debtags/vocabulary
+msgid "GNU"
+msgstr ""
+
+#. Tag: suite::gnu, long desc
+#: files/debtags/vocabulary
+msgid " Gnu's Not Unix. The package is part of the official GNU project"
+msgstr ""
+
+#. Tag: suite::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUStep"
+msgstr ""
+
+#. Tag: suite::gnustep, long desc
+#: files/debtags/vocabulary
+msgid "  GNUStep Desktop and WindowMaker"
+msgstr ""
+
+#. Tag: suite::gpe, short desc
+#: files/debtags/vocabulary
+msgid "GPE"
+msgstr ""
+
+#. Tag: suite::gpe, long desc
+#: files/debtags/vocabulary
+msgid "  GPE Palmtop Environment"
+msgstr ""
+
+#. Tag: suite::kde, short desc
+#: files/debtags/vocabulary
+msgid "KDE"
+msgstr ""
+
+#. Tag: suite::mozilla, short desc
+#: files/debtags/vocabulary
+msgid "Mozilla"
+msgstr ""
+
+#. Tag: suite::mozilla, long desc
+#: files/debtags/vocabulary
+msgid " Mozilla Browser and extensions"
+msgstr ""
+
+#. Tag: suite::netscape, short desc
+#: files/debtags/vocabulary
+msgid "Netscape Navigator"
+msgstr ""
+
+#. Tag: suite::netscape, long desc
+#: files/debtags/vocabulary
+msgid " The pre-6.0 versions of netscape browser"
+msgstr ""
+
+#. Tag: suite::openoffice, short desc
+#: files/debtags/vocabulary
+msgid "OpenOffice.org"
+msgstr ""
+
+#. Tag: suite::opie, short desc
+#: files/debtags/vocabulary
+msgid "Open Palmtop (OPIE)"
+msgstr ""
+
+#. Tag: suite::roxen, short desc
+#: files/debtags/vocabulary
+msgid "Roxen"
+msgstr ""
+
+#. Tag: suite::samba, short desc
+#: files/debtags/vocabulary
+msgid "SAMBA"
+msgstr ""
+
+#. Tag: suite::webmin, short desc
+#: files/debtags/vocabulary
+msgid "Webmin"
+msgstr ""
+
+#. Tag: suite::xfce, short desc
+#: files/debtags/vocabulary
+msgid "XFce"
+msgstr ""
+
+#. Tag: suite::xfce, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight desktop environment for X11."
+msgstr ""
+
+#. Tag: suite::xmms, short desc
+#: files/debtags/vocabulary
+msgid "XMMS"
+msgstr ""
+
+#. Tag: suite::xmms2, short desc
+#: files/debtags/vocabulary
+msgid "XMMS 2"
+msgstr ""
+
+#. Tag: suite::zope, short desc
+#: files/debtags/vocabulary
+msgid "ZOPE"
+msgstr ""
+
+#. Tag: suite::zope, long desc
+#: files/debtags/vocabulary
+msgid " The zope (web) publishing platform."
+msgstr ""
+
+#. Facet: protocol, short desc
+#: files/debtags/vocabulary
+msgid "Network Protocol"
+msgstr ""
+
+#. Tag: protocol::db:mysql, short desc
+#: files/debtags/vocabulary
+msgid "MySQL"
+msgstr ""
+
+#. Tag: protocol::db:mysql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing MySQL database server."
+msgstr ""
+
+#. Tag: protocol::db:psql, short desc
+#: files/debtags/vocabulary
+msgid "PostgreSQL"
+msgstr ""
+
+#. Tag: protocol::db:psql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing PostgreSQL database server."
+msgstr ""
+
+#. Tag: protocol::ldap, short desc
+#: files/debtags/vocabulary
+msgid "LDAP"
+msgstr ""
+
+#. Tag: protocol::ldap, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Access Protocol"
+msgstr ""
+
+#. Tag: protocol::atm, short desc
+#: files/debtags/vocabulary
+msgid "ATM"
+msgstr ""
+
+#. Tag: protocol::atm, long desc
+#: files/debtags/vocabulary
+msgid " Asynchronous Transfer Mode, a high speed protocol for communication between\n computers in a network.\n .\n While ATM is used to implement *DSL networks, it has never gained widespread\n use as a technology for building local area networks (LANs), for which it was\n originally intended.\n .\n Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode"
+msgstr ""
+
+#. Tag: protocol::bittorrent, short desc
+#: files/debtags/vocabulary
+msgid "BitTorrent"
+msgstr ""
+
+#. Tag: protocol::bittorrent, long desc
+#: files/debtags/vocabulary
+msgid " BitTorrent is a protocol for peer-to-peer based file distribution over\n network.\n .\n Although the actual data transport happens between BitTorrent clients, one\n central node, the so-called trackers, is needed to keep a list of all clients\n that download or provide the same file.\n .\n Link: http://www.bittorrent.com/\n Link: http://en.wikipedia.org/wiki/BitTorrent"
+msgstr ""
+
+#. Tag: protocol::corba, short desc
+#: files/debtags/vocabulary
+msgid "CORBA"
+msgstr ""
+
+#. Tag: protocol::corba, long desc
+#: files/debtags/vocabulary
+msgid " Common Object Request Broker Architecture, a standard for interoperability\n between programs written in different languages and running on different \n hardware platforms. CORBA includes a client-server network protocol for\n distributed computing.\n .\n With this network protocol, CORBA clients on different computers and written\n in different languages can exchange objects over a CORBA server such as orbit2\n or omniORB.\n .\n Link: http://www.corba.org/"
+msgstr ""
+
+#. Tag: protocol::dhcp, short desc
+#: files/debtags/vocabulary
+msgid "DHCP"
+msgstr ""
+
+#. Tag: protocol::dhcp, long desc
+#: files/debtags/vocabulary
+msgid " Dynamic Host Configuration Protocol, a client-server network protocol for\n automatic assignment of dynamic IP addresses to computers in a TCP/IP network,\n rather than giving each computer a static IP address.\n .\n Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol\n Link: http://www.ietf.org/rfc/rfc2131.txt"
+msgstr ""
+
+#. Tag: protocol::dns, short desc
+#: files/debtags/vocabulary
+msgid "DNS"
+msgstr ""
+
+#. Tag: protocol::dns, long desc
+#: files/debtags/vocabulary
+msgid " Domain Name System, a protocol to request information associated with domain\n names (like \"www.debian.org\"), most prominently the IP address. The protocol\n is used in communication with a DNS server (like BIND).\n .\n For the Internet, there are 13 root DNS servers around the world that keep the\n addresses of all registered domain names and provide this information to the\n DNS servers of Internet service providers.\n .\n Link: http://en.wikipedia.org/wiki/Domain_Name_System"
+msgstr ""
+
+#. Tag: protocol::ethernet, short desc
+#: files/debtags/vocabulary
+msgid "Ethernet"
+msgstr ""
+
+#. Tag: protocol::ethernet, long desc
+#: files/debtags/vocabulary
+msgid " Ethernet is the most popular networking technology for creating local area\n networks (LANs).\n .\n The computers in an Ethernet network communicate over twisted-pair or fibre\n cables and are identified by their MAC address. Several different types of\n Ethernet exist, distinguishable by the maximum connection speed. The most\n widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).\n .\n Link: http://en.wikipedia.org/wiki/Ethernet"
+msgstr ""
+
+#. Tag: protocol::fidonet, short desc
+#: files/debtags/vocabulary
+msgid "FidoNet"
+msgstr ""
+
+#. Tag: protocol::fidonet, long desc
+#: files/debtags/vocabulary
+msgid " FidoNet is a mailbox system that enjoyed large popularity in the 1980s and\n 1990s.\n .\n The communication between the clients and FidoNet servers  was usually carried\n out over the telephone network using modems and could be used for transferring\n messages (comparable to email) and files.\n .\n Link: http://www.fidonet.org/\n Link: http://en.wikipedia.org/wiki/Fidonet"
+msgstr ""
+
+#. Tag: protocol::finger, short desc
+#: files/debtags/vocabulary
+msgid "Finger"
+msgstr ""
+
+#. Tag: protocol::finger, long desc
+#: files/debtags/vocabulary
+msgid " The Name/Finger protocol is a simple network protocol to provide extensive, \n public information about users of a computer, such as email address, telephone\n numbers, full names etc.\n .\n Due to privacy concerns, the Finger protocol is not widely used any more,\n while it widespread distribution in the early 1990s.\n .\n Link: http://en.wikipedia.org/wiki/Finger_protocol\n Link: http://www.ietf.org/rfc/rfc1288.txt"
+msgstr ""
+
+#. Tag: protocol::ftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::ftp, short desc
+#: files/debtags/vocabulary
+msgid "FTP"
+msgstr ""
+
+#. Tag: protocol::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol, a protocol for exchanging and manipulation files over\n networks and extensively used on the Internet.\n .\n The communication between FTP servers and clients uses two channels, the\n control and the data channel. While FTP was originally used with\n authentication only, most FTP servers on the Internet provide anonymous,\n passwordless access. Since FTP does not support encryption, sensitive data\n transfer is carried out over SFTP today.\n .\n Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc0959.txt"
+msgstr ""
+
+#. Tag: protocol::http, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::http, short desc
+#: files/debtags/vocabulary
+msgid "HTTP"
+msgstr ""
+
+#. Tag: protocol::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol, one of the most important protocols for the\n World Wide Web.\n .\n It controls the data transfer between HTTP servers such as Apache and HTTP\n clients, which are web browsers in most cases. HTTP resources are requested\n via URLs (Universal Resource Locators). While HTTP normally only supports file\n transfer from server to client, the protocol supports sending information to\n HTTP servers, most prominently used in HTML forms.\n .\n Link: http://en.wikipedia.org/wiki/Http\n Link: http://www.ietf.org/rfc/rfc2616.txt"
+msgstr ""
+
+#. Tag: protocol::ident, short desc
+#: files/debtags/vocabulary
+msgid "Ident"
+msgstr ""
+
+#. Tag: protocol::ident, long desc
+#: files/debtags/vocabulary
+msgid " The Ident Internet protocol helps to identify or authenticate the user of\n a network connection.\n .\n Link: http://en.wikipedia.org/wiki/Ident"
+msgstr ""
+
+#. Tag: protocol::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP"
+msgstr ""
+
+#. Tag: protocol::imap, long desc
+#: files/debtags/vocabulary
+msgid " Internet Message Access Protocol, a protocol used for accessing email on a\n server from a email client such as KMail or Evolution.\n .\n When using IMAP, emails stay on the server and can be categorized, edited,\n deleted etc. there, instead of having the user download all messages onto\n the local computer, as POP3 does.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol"
+msgstr ""
+
+#. Tag: protocol::ip, short desc
+#: files/debtags/vocabulary
+msgid "IP"
+msgstr ""
+
+#. Tag: protocol::ip, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v4), a core protocol of the Internet protocol suite and\n the very basis of the Internet.\n .\n Every computer that is connected to the Internet has an IP address (a 4-byte\n number, typically represented in dotted notation like 192.25.206.10).\n Internet IP addresses are given out by the Internet Corporation for Assigned\n Names and Numbers (ICANN). Normally, computers on the Internet are not\n accessed by their IP address, but by their domain name.\n .\n Link: http://en.wikipedia.org/wiki/IPv4\n Link: http://www.ietf.org/rfc/rfc791.txt"
+msgstr ""
+
+#. Tag: protocol::ipv6, short desc
+#: files/debtags/vocabulary
+msgid "IPv6"
+msgstr ""
+
+#. Tag: protocol::ipv6, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v6), the next-generation Internet protocol, which overcomes\n the restrictions of IP (v4), like shortage of IP addresses, and is supposed to\n form the new basis of the Internet in the future, replacing IP (v4).\n .\n Many programs already support IPv6 along with IP (v4), although it is still\n seldomly used.\n .\n Link: http://en.wikipedia.org/wiki/IPv6\n Link: http://www.ipv6.org/"
+msgstr ""
+
+#. Tag: protocol::irc, short desc
+#: files/debtags/vocabulary
+msgid "IRC"
+msgstr ""
+
+#. Tag: protocol::irc, long desc
+#: files/debtags/vocabulary
+msgid " Internet Relay Chat, a protocol for text chatting over network, extensively\n used on the Internet. It supports chat rooms, so-called channels, as well as\n private, one-to-one communication.\n .\n IRC servers are organized in networks, so that a client can connect to a\n geographically near IRC server, that itself is connected to other IRC servers\n spread over the whole world.\n .\n The official Debian channel is #debian on the freenode network.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat"
+msgstr ""
+
+#. Tag: protocol::jabber, short desc
+#: files/debtags/vocabulary
+msgid "Jabber"
+msgstr ""
+
+#. Tag: protocol::jabber, long desc
+#: files/debtags/vocabulary
+msgid " The Jabber protocol is an instant messaging protocol on the basis of the XMPP\n protocol. Additionally to private one-to-one communication, it also supports\n chat rooms, and it is used in the Jabber IM network as well as for the IM\n capabilities for the new GoogleTalk network.\n .\n In contrast to other IM networks like MSN, ICQ or AIM, the Jabber servers are\n free software and can be used to create a private chat platform or have an own\n server to connect to the Jabber network.\n .\n Link: http://www.jabber.org\n Link: http://en.wikipedia.org/wiki/Jabber"
+msgstr ""
+
+#. Tag: protocol::kerberos, short desc
+#: files/debtags/vocabulary
+msgid "Kerberos"
+msgstr ""
+
+#. Tag: protocol::kerberos, long desc
+#: files/debtags/vocabulary
+msgid " Kerberos is a authentication protocol for computer networks for secure\n authentication over an otherwise insecure network, using symmetric\n cryptography and a third party service provider, that is trusted both by\n client and server.\n . \n The authentication mechanism provided by Kerberos is mutual, so that not only\n a server can be sure of a client's identity, but also a client can be sure a\n connection to a server is not intercepted.\n .\n Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29\n Link: http://http://www.ietf.org/rfc/rfc4120.txt"
+msgstr ""
+
+#. Tag: protocol::lpr, short desc
+#: files/debtags/vocabulary
+msgid "LPR"
+msgstr ""
+
+#. Tag: protocol::lpr, long desc
+#: files/debtags/vocabulary
+msgid " The Line Printer Daemon protocol, a protocol used for accessing or providing\n network print services in a Unix network, but also used for local setups.\n .\n CUPS, the Common Unix Printing System, was developed to replace the old\n LPD/LPR system, while maintaining backwards compatibility.\n .\n Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol\n Link: http://www.ietf.org/rfc/rfc1179.txt"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, short desc
+#: files/debtags/vocabulary
+msgid "MSN Messenger"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The MSN messenger protocol is the protocol that is used by Microsoft's own\n instant messaging network.\n .\n The protocol is a proprietary protocol. Although Microsoft once send a draft\n of the protocol specification to the IETF, it has since dated out and clients\n that connect to the MSN Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://www.hypothetic.org/docs/msn/"
+msgstr ""
+
+#. Tag: protocol::nfs, short desc
+#: files/debtags/vocabulary
+msgid "NFS"
+msgstr ""
+
+#. Tag: protocol::nfs, long desc
+#: files/debtags/vocabulary
+msgid " Network File System, a protocol originally developed by Sun Microsystems in\n 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a\n distributed file system, allows a user on a client computer to access files\n over a network as easily as if attached to its local disks.\n .\n Link: http://en.wikipedia.org/wiki/Network_File_System"
+msgstr ""
+
+#. Tag: protocol::nntp, short desc
+#: files/debtags/vocabulary
+msgid "NNTP"
+msgstr ""
+
+#. Tag: protocol::nntp, long desc
+#: files/debtags/vocabulary
+msgid " Network News Transfer Protocol, a protocol for reading in writing Usenet\n articles (a Usenet article is comparable with an email), but also used\n among NNTP servers to transfer articles. \n .\n Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc977.txt"
+msgstr ""
+
+#. Tag: protocol::oscar, short desc
+#: files/debtags/vocabulary
+msgid "OSCAR (AIM/ICQ)"
+msgstr ""
+
+#. Tag: protocol::oscar, long desc
+#: files/debtags/vocabulary
+msgid " Open System for CommunicAtion in Realtime, an instant messaging used by\n AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9\n of the ICQ IM network are also instances of the OSCAR protocol.\n .\n OSCAR is a binary proprietary protocol. Since there is no official documentation,\n clients that connect to AIM or ICQ have to rely on information that has\n been reverse-engineered.\n .\n Link: http://en.wikipedia.org/wiki/OSCAR_protocol\n Link: http://www.oilcan.org/oscar/"
+msgstr ""
+
+#. Tag: protocol::pop3, short desc
+#: files/debtags/vocabulary
+msgid "POP3"
+msgstr ""
+
+#. Tag: protocol::pop3, long desc
+#: files/debtags/vocabulary
+msgid " Post Office Protocol, a protocol to download emails from a mail server,\n designed for users that have only intermittent connection to the Internet.\n .\n In contrast to IMAP server, messages that are downloaded via POP3 are not\n supposed to stay on the server afterwards, since POP3 does not support\n multiple mailboxes for one account on the server.\n .\n Link: http://en.wikipedia.org/wiki/Post_Office_Protocol\n Link: http://www.ietf.org/rfc/rfc1939.txt"
+msgstr ""
+
+#. Tag: protocol::radius, short desc
+#: files/debtags/vocabulary
+msgid "RADIUS"
+msgstr ""
+
+#. Tag: protocol::radius, long desc
+#: files/debtags/vocabulary
+msgid " Remote Authentication Dial In User Service, a protocol for authentication,\n authorization and accounting of network access, mostly used by Internet\n service providers handle handle dial-up Internet connections.\n .\n Link: http://en.wikipedia.org/wiki/RADIUS\n Link: http://www.ietf.org/rfc/rfc2865.txt"
+msgstr ""
+
+#. Tag: protocol::sftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::sftp, short desc
+#: files/debtags/vocabulary
+msgid "SFTP"
+msgstr ""
+
+#. Tag: protocol::sftp, long desc
+#: files/debtags/vocabulary
+msgid " SSH File Transfer Protocol, a protocol for secure, encrypting file exchange\n and manipulation over insecure networks, using the SSH protocol.\n .\n SFTP provides a complete set of file system operations, different from its\n predecessor SCP, which only allowed file transfer. It is not, other than the\n name might suggest, the a version of the FTP protocol executed through an\n SSH channel.\n .\n Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol"
+msgstr ""
+
+#. Tag: protocol::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB"
+msgstr ""
+
+#. Tag: protocol::smb, long desc
+#: files/debtags/vocabulary
+msgid " Server Message Block, a protocol for providing file access and printer sharing\n over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File\n System) is a synonym for SMB\n .\n Although SMB is a proprietary protocol, the Samba project reverse-engineered\n the protocol and developed both client and server programs for better\n interoperability in mixed Unix/Windows networks.\n .\n Link: http://en.wikipedia.org/wiki/Server_Message_Block\n Link: http://www.samba.org/"
+msgstr ""
+
+#. Tag: protocol::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP"
+msgstr ""
+
+#. Tag: protocol::smtp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Mail Transfer Protocol, a protocol or for transmitting emails over the\n Internet.\n .\n Every SMTP server utilizes SMTP to hand on emails to the next mail server\n until an email arrives at its destination, from where it is usually retrieved\n via POP3 or IMAP \n .\n Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc2821.txt"
+msgstr ""
+
+#. Tag: protocol::snmp, short desc
+#: files/debtags/vocabulary
+msgid "SNMP"
+msgstr ""
+
+#. Tag: protocol::snmp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Network Management Protocol, a member of the Internet protocol suite\n and used for monitoring or configuring network devices.\n .\n SNMP servers normally run on network equipment like routers.\n .\n Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol\n Link: http://www.ietf.org/rfc/rfc3411.txt"
+msgstr ""
+
+#. Tag: protocol::soap, short desc
+#: files/debtags/vocabulary
+msgid "SOAP"
+msgstr ""
+
+#. Tag: protocol::soap, long desc
+#: files/debtags/vocabulary
+msgid " Simple Object Access Protocol, a protocol for exchanging messages between\n different computers in a network. The messages are encoded in XML and usually\n sent over HTTP.\n .\n SOAP is used to provide APIs to web services, such as the Google API to\n utilize Google's searching engine from client applications.\n .\n Link: http://en.wikipedia.org/wiki/SOAP\n Link: http://www.w3.org/TR/soap/"
+msgstr ""
+
+#. Tag: protocol::ssh, short desc
+#: files/debtags/vocabulary
+msgid "SSH"
+msgstr ""
+
+#. Tag: protocol::ssh, long desc
+#: files/debtags/vocabulary
+msgid " Secure Shell, a protocol for secure, encrypted network connections. SSH can\n be used to execute programs on a remote host with an SSH server over secure\n otherwise insecure protocols through an SSH channel. The main use is, as the\n name suggest, to provide encrypted login and shell access on remote servers.\n .\n SSH authentication can be done with password or, which is the preferred\n mechanism, via asymmetric public/private key cryptography.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Shell"
+msgstr ""
+
+#. Tag: protocol::ssl, short desc
+#: files/debtags/vocabulary
+msgid "SSL/TLS"
+msgstr ""
+
+#. Tag: protocol::ssl, long desc
+#: files/debtags/vocabulary
+msgid " Secure Socket Layer/Transport Layer Security, a protocol that provides \n secure encrypted communication on the Internet. It is used to authenticate\n the identity of a service provider (such as a Internet banking server) and\n to secure the communications channel.\n .\n Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be\n transmitted over SSL/TLS to secure the transmitted data. In this case, an\n \"S\" is added to the protocol name, like HTTPS, FTPS etc.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer"
+msgstr ""
+
+#. Tag: protocol::tcp, short desc
+#: files/debtags/vocabulary
+msgid "TCP"
+msgstr ""
+
+#. Tag: protocol::tcp, long desc
+#: files/debtags/vocabulary
+msgid " Transport Control Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n TCP is used as the transport protocol for many services on the Internet,\n such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.\n .\n Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol\n Link: http://www.ietf.org/rfc/rfc793.txt"
+msgstr ""
+
+#. Tag: protocol::udp, short desc
+#: files/debtags/vocabulary
+msgid "UDP"
+msgstr ""
+
+#. Tag: protocol::udp, long desc
+#: files/debtags/vocabulary
+msgid " User Datagram Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n UDP is not as reliable as TCP, but faster and thus better fit for\n time-sensitive purposes, like the DNS protocol and VoIP.\n .\n Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol\n Link: http://www.ietf.org/rfc/rfc768.txt"
+msgstr ""
+
+#. Tag: protocol::voip, short desc
+#: files/debtags/vocabulary
+msgid "VoIP"
+msgstr ""
+
+#. Tag: protocol::voip, long desc
+#: files/debtags/vocabulary
+msgid " Voice over IP, a general term for protocols that route voice conversations\n over the Internet.\n .\n Popular VoIP protocols are SIP, H.323 and IAX.\n .\n Link: http://en.wikipedia.org/wiki/Voice_over_IP"
+msgstr ""
+
+#. Tag: protocol::webdav, short desc
+#: files/debtags/vocabulary
+msgid "WebDAV"
+msgstr ""
+
+#. Tag: protocol::webdav, long desc
+#: files/debtags/vocabulary
+msgid " Web-based Distributed Authoring and Versioning, a extension of the HTTP\n protocol to support creating and changing documents on an HTTP server. Thus,\n the client can access the documents on an HTTP server as it would those on the\n local file system.\n .\n Link: http://en.wikipedia.org/wiki/WebDAV\n Link: http://www.ietf.org/rfc/rfc2518.txt"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, short desc
+#: files/debtags/vocabulary
+msgid "XML-RPC"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, long desc
+#: files/debtags/vocabulary
+msgid " XML Remote Procedure Call, a simple protocol for remote procedure calls that\n uses XML for encoding and the HTTP protocol for transport.\n .\n SOAP, which is a considerably more sophisticated protocol, was developed from\n XML-RPC.\n .\n Link: http://en.wikipedia.org/wiki/XML-RPC\n Link: http://www.xmlrpc.com/"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, short desc
+#: files/debtags/vocabulary
+msgid "Yahoo! Messenger"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging\n network.\n .\n This a proprietary binary protocol without any official documentation. Clients\n that connect to the Yahoo! Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger\n Link: http://www.venkydude.com/articles/yahoo.htm"
+msgstr ""
+
+#. Facet: filetransfer, short desc
+#: files/debtags/vocabulary
+msgid "File Transfer"
+msgstr ""
+
+#. Tag: filetransfer::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::sftp, long desc
+#: files/debtags/vocabulary
+msgid " Secure File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB and CIFS"
+msgstr ""
+
+#. Tag: filetransfer::smb, long desc
+#: files/debtags/vocabulary
+msgid " Windows file and printer sharing (SMB)"
+msgstr ""
+
+#. Tag: filetransfer::dcc, short desc
+#: files/debtags/vocabulary
+msgid "IRC DCC"
+msgstr ""
+
+#. Tag: filetransfer::dcc, long desc
+#: files/debtags/vocabulary
+msgid " Direct Client to Client protocol used by Internet Relay Chat clients."
+msgstr ""
+
+#. Facet: uitoolkit, short desc
+#: files/debtags/vocabulary
+msgid "Interface Toolkit"
+msgstr ""
+
+#. Tag: uitoolkit::athena, short desc
+#: files/debtags/vocabulary
+msgid "Athena Widgets"
+msgstr ""
+
+#. Tag: uitoolkit::fltk, short desc
+#: files/debtags/vocabulary
+msgid "FLTK"
+msgstr ""
+
+#. Tag: uitoolkit::glut, short desc
+#: files/debtags/vocabulary
+msgid "GLUT"
+msgstr ""
+
+#. Tag: uitoolkit::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUstep"
+msgstr ""
+
+#. Tag: uitoolkit::gtk, short desc
+#: files/debtags/vocabulary
+msgid "GTK"
+msgstr ""
+
+#. Tag: uitoolkit::motif, short desc
+#: files/debtags/vocabulary
+msgid "Lesstif/Motif"
+msgstr ""
+
+#. Tag: uitoolkit::ncurses, short desc
+#: files/debtags/vocabulary
+msgid "Ncurses TUI"
+msgstr ""
+
+#. Tag: uitoolkit::qt, short desc
+#: files/debtags/vocabulary
+msgid "QT"
+msgstr ""
+
+#. Tag: uitoolkit::sdl, short desc
+#: files/debtags/vocabulary
+msgid "SDL"
+msgstr ""
+
+#. Tag: uitoolkit::tk, short desc
+#: files/debtags/vocabulary
+msgid "TK"
+msgstr ""
+
+#. Tag: uitoolkit::wxwidgets, short desc
+#: files/debtags/vocabulary
+msgid "wxWidgets"
+msgstr ""
+
+#. Tag: uitoolkit::xlib, short desc
+#: files/debtags/vocabulary
+msgid "X library"
+msgstr ""
+
+#. Facet: use, short desc
+#: files/debtags/vocabulary
+msgid "Purpose"
+msgstr ""
+
+#. Tag: use::analysing, short desc
+#: files/debtags/vocabulary
+msgid "Analysing"
+msgstr ""
+
+#. Tag: use::analysing, long desc
+#: files/debtags/vocabulary
+msgid " Software for turning data into knowledge."
+msgstr ""
+
+#. Tag: use::browsing, short desc
+#: files/debtags/vocabulary
+msgid "Browsing"
+msgstr ""
+
+#. Tag: use::chatting, short desc
+#: files/debtags/vocabulary
+msgid "Chatting"
+msgstr ""
+
+#. Tag: use::checking, short desc
+#: files/debtags/vocabulary
+msgid "Checking"
+msgstr ""
+
+#. Tag: use::checking, long desc
+#: files/debtags/vocabulary
+msgid " All sorts of checking, checking a filesystem for validity, checking\n a document for incorrectly spelled words, checking a network for \n routing problems. Verifying."
+msgstr ""
+
+#. Tag: use::comparing, short desc
+#: files/debtags/vocabulary
+msgid "Comparing"
+msgstr ""
+
+#. Tag: use::comparing, long desc
+#: files/debtags/vocabulary
+msgid " To find what relates or differs in two or more objects."
+msgstr ""
+
+#. Tag: use::compressing, short desc
+#: files/debtags/vocabulary
+msgid "Compressing"
+msgstr ""
+
+#. Tag: use::configuring, short desc
+#: files/debtags/vocabulary
+#. Tag: network::configuration, short desc
+#: files/debtags/vocabulary
+msgid "Configuration"
+msgstr ""
+
+#. Tag: use::converting, short desc
+#: files/debtags/vocabulary
+msgid "Data Conversion"
+msgstr ""
+
+#. Tag: use::dialing, short desc
+#: files/debtags/vocabulary
+msgid "Dialup Access"
+msgstr ""
+
+#. Tag: use::downloading, short desc
+#: files/debtags/vocabulary
+msgid "Downloading"
+msgstr ""
+
+#. Tag: use::driver, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Driver"
+msgstr ""
+
+#. Tag: use::editing, short desc
+#: files/debtags/vocabulary
+msgid "Editing"
+msgstr ""
+
+#. Tag: use::entertaining, short desc
+#: files/debtags/vocabulary
+msgid "Entertaining"
+msgstr ""
+
+#. Tag: use::filtering, short desc
+#: files/debtags/vocabulary
+msgid "Filtering"
+msgstr ""
+
+#. Tag: use::gameplaying, short desc
+#: files/debtags/vocabulary
+msgid "Game Playing"
+msgstr ""
+
+#. Tag: use::learning, short desc
+#: files/debtags/vocabulary
+msgid "Learning"
+msgstr ""
+
+#. Tag: use::organizing, short desc
+#: files/debtags/vocabulary
+msgid "Data Organisation"
+msgstr ""
+
+#. Tag: use::playing, short desc
+#: files/debtags/vocabulary
+msgid "Playing Media"
+msgstr ""
+
+#. Tag: use::printing, short desc
+#: files/debtags/vocabulary
+msgid "Printing"
+msgstr ""
+
+#. Tag: use::proxying, short desc
+#: files/debtags/vocabulary
+msgid "Proxying"
+msgstr ""
+
+#. Tag: use::routing, short desc
+#: files/debtags/vocabulary
+#. Tag: network::routing, short desc
+#: files/debtags/vocabulary
+msgid "Routing"
+msgstr ""
+
+#. Tag: use::searching, short desc
+#: files/debtags/vocabulary
+msgid "Searching"
+msgstr ""
+
+#. Tag: use::scanning, short desc
+#: files/debtags/vocabulary
+#. Tag: network::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Scanning"
+msgstr ""
+
+#. Tag: use::storing, short desc
+#: files/debtags/vocabulary
+msgid "Storing"
+msgstr ""
+
+#. Tag: use::synchronizing, short desc
+#: files/debtags/vocabulary
+msgid "Synchronisation"
+msgstr ""
+
+#. Tag: use::timekeeping, short desc
+#: files/debtags/vocabulary
+msgid "Time and Clock"
+msgstr ""
+
+#. Tag: use::transmission, short desc
+#: files/debtags/vocabulary
+msgid "Transmission"
+msgstr ""
+
+#. Tag: use::typesetting, short desc
+#: files/debtags/vocabulary
+msgid "Typesetting"
+msgstr ""
+
+#. Tag: use::viewing, short desc
+#: files/debtags/vocabulary
+msgid "Data Visualization"
+msgstr ""
+
+#. Tag: use::text-formatting, short desc
+#: files/debtags/vocabulary
+msgid "Text Formatting"
+msgstr ""
+
+#. Tag: web::appserver, short desc
+#: files/debtags/vocabulary
+msgid "Application Server"
+msgstr ""
+
+#. Tag: web::blog, short desc
+#: files/debtags/vocabulary
+msgid "Blog Software"
+msgstr ""
+
+#. Tag: web::browser, short desc
+#: files/debtags/vocabulary
+msgid "Browser"
+msgstr ""
+
+#. Tag: web::cms, short desc
+#: files/debtags/vocabulary
+msgid "Content Management (CMS)"
+msgstr ""
+
+#. Tag: web::cgi, short desc
+#: files/debtags/vocabulary
+msgid "CGI"
+msgstr ""
+
+#. Tag: web::commerce, short desc
+#: files/debtags/vocabulary
+msgid "E-commerce"
+msgstr ""
+
+#. Tag: web::forum, short desc
+#: files/debtags/vocabulary
+msgid "Forum"
+msgstr ""
+
+#. Tag: web::portal, short desc
+#: files/debtags/vocabulary
+msgid "Portal"
+msgstr ""
+
+#. Tag: web::scripting, short desc
+#: files/debtags/vocabulary
+msgid "Scripting"
+msgstr ""
+
+#. Tag: web::search-engine, short desc
+#: files/debtags/vocabulary
+msgid "Search engine"
+msgstr ""
+
+#. Tag: web::server, short desc
+#: files/debtags/vocabulary
+#. Tag: network::server, short desc
+#: files/debtags/vocabulary
+msgid "Server"
+msgstr ""
+
+#. Tag: web::wiki, short desc
+#: files/debtags/vocabulary
+msgid "Wiki Software"
+msgstr ""
+
+#. Tag: web::wiki, long desc
+#: files/debtags/vocabulary
+msgid " Wiki software, servers, utilities and plug-ins."
+msgstr ""
+
+#. Facet: network, short desc
+#: files/debtags/vocabulary
+msgid "Networking"
+msgstr ""
+
+#. Tag: network::client, short desc
+#: files/debtags/vocabulary
+msgid "Client"
+msgstr ""
+
+#. Tag: network::hiavailability, short desc
+#: files/debtags/vocabulary
+msgid "High Availability"
+msgstr ""
+
+#. Tag: network::load-balancing, short desc
+#: files/debtags/vocabulary
+msgid "Load Balancing"
+msgstr ""
+
+#. Tag: network::service, short desc
+#: files/debtags/vocabulary
+msgid "Service"
+msgstr ""
+
+#. Tag: network::vpn, short desc
+#: files/debtags/vocabulary
+msgid "VPN or Tunneling"
+msgstr ""
+
+#. Facet: x11, short desc
+#: files/debtags/vocabulary
+msgid "X Windowing System"
+msgstr ""
+
+#. Tag: x11::applet, short desc
+#: files/debtags/vocabulary
+msgid "Applet"
+msgstr ""
+
+#. Tag: x11::display-manager, short desc
+#: files/debtags/vocabulary
+msgid "Login Manager"
+msgstr ""
+
+#. Tag: x11::display-manager, long desc
+#: files/debtags/vocabulary
+msgid " Display managers (graphical login screens)"
+msgstr ""
+
+#. Tag: x11::library, short desc
+#: files/debtags/vocabulary
+msgid "Library"
+msgstr ""
+
+#. Tag: x11::screensaver, short desc
+#: files/debtags/vocabulary
+msgid "Screen Saver"
+msgstr ""
+
+#. Tag: x11::terminal, short desc
+#: files/debtags/vocabulary
+msgid "Terminal Emulator"
+msgstr ""
+
+#. Tag: x11::theme, short desc
+#: files/debtags/vocabulary
+msgid "Theme"
+msgstr ""
+
+#. Tag: x11::window-manager, short desc
+#: files/debtags/vocabulary
+msgid "Window Manager"
+msgstr ""
+
+#. Tag: x11::xserver, short desc
+#: files/debtags/vocabulary
+msgid "X Server"
+msgstr ""
+
+#. Tag: bbs, short desc
+#: files/debtags/vocabulary
+msgid "Bulletin Board Systems"
+msgstr ""
+
+#. Tag: data-exchange, short desc
+#: files/debtags/vocabulary
+msgid "Data Exchange"
+msgstr ""
+
+#. Tag: desktop, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Environment"
+msgstr ""
+
+#. Tag: file-formats, short desc
+#: files/debtags/vocabulary
+msgid "File formats"
+msgstr ""
+
+#. Tag: foreignos, short desc
+#: files/debtags/vocabulary
+msgid "Foreign OS and Hardware"
+msgstr ""
+
+#. Tag: net, short desc
+#: files/debtags/vocabulary
+msgid "IP Networking"
+msgstr ""
+
+#. Tag: netcomm, short desc
+#: files/debtags/vocabulary
+msgid "Network and Communication"
+msgstr ""
+
+#. Tag: numerical, short desc
+#: files/debtags/vocabulary
+msgid "Calculation and numerical computation"
+msgstr ""
+
+#. Tag: office, short desc
+#: files/debtags/vocabulary
+msgid "Office software"
+msgstr ""
+
+#. Tag: protocols, short desc
+#: files/debtags/vocabulary
+msgid "IP protocol support"
+msgstr ""
+
+#. Tag: science, short desc
+#: files/debtags/vocabulary
+msgid "Science"
+msgstr ""
+
+#. Tag: system, short desc
+#: files/debtags/vocabulary
+msgid "System software and maintainance"
+msgstr ""
+
+#. Tag: vi, short desc
+#: files/debtags/vocabulary
+msgid "VI editor"
+msgstr ""
+
diff --git a/po/debtags.ja.po b/po/debtags.ja.po
new file mode 100644
index 0000000..c6c289b
--- /dev/null
+++ b/po/debtags.ja.po
@@ -0,0 +1,3544 @@
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Facet: accessibility, short desc
+#: files/debtags/vocabulary
+msgid "Accessibility Support"
+msgstr ""
+
+#. Tag: accessibility::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Systems"
+msgstr ""
+
+#. Tag: accessibility::input, long desc
+#: files/debtags/vocabulary
+msgid " Applies to input methods for non-latin languages as well as special input\n systems."
+msgstr ""
+
+#. Tag: accessibility::ocr, short desc
+#: files/debtags/vocabulary
+msgid "Text Recognition (OCR)"
+msgstr ""
+
+#. Tag: accessibility::ocr, long desc
+#: files/debtags/vocabulary
+msgid " Optical Character Recognition"
+msgstr ""
+
+#. Tag: accessibility::screen-magnify, short desc
+#: files/debtags/vocabulary
+msgid "Screen Magnification"
+msgstr ""
+
+#. Tag: accessibility::screen-reader, short desc
+#: files/debtags/vocabulary
+msgid "Screen Reading"
+msgstr ""
+
+#. Tag: accessibility::speech, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::speech, short desc
+#: files/debtags/vocabulary
+msgid "Speech Synthesis"
+msgstr ""
+
+#. Tag: accessibility::speech-recognition, short desc
+#: files/debtags/vocabulary
+msgid "Speech Recognition"
+msgstr ""
+
+#. Tag: accessibility::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, short desc
+#: files/debtags/vocabulary
+msgid "Need an extra tag"
+msgstr ""
+
+#. Tag: accessibility::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, long desc
+#: files/debtags/vocabulary
+msgid " The package can be categorised along this facet, but the right tag for it is\n missing.\n .\n Mark a package with this tag to signal the vocabulary maintainers of cases\n where the current tag set is lacking."
+msgstr ""
+
+#. Facet: admin, short desc
+#: files/debtags/vocabulary
+msgid "System Administration"
+msgstr ""
+
+#. Tag: admin::accounting, short desc
+#: files/debtags/vocabulary
+msgid "Accounting"
+msgstr ""
+
+#. Tag: admin::automation, short desc
+#: files/debtags/vocabulary
+msgid "Automation and scheduling"
+msgstr ""
+
+#. Tag: admin::automation, long desc
+#: files/debtags/vocabulary
+msgid " Automating the execution of software in the system."
+msgstr ""
+
+#. Tag: admin::backup, short desc
+#: files/debtags/vocabulary
+msgid "Backup and Restoration"
+msgstr ""
+
+#. Tag: admin::benchmarking, short desc
+#: files/debtags/vocabulary
+msgid "Benchmarking"
+msgstr ""
+
+#. Tag: admin::boot, short desc
+#: files/debtags/vocabulary
+msgid "System Boot"
+msgstr ""
+
+#. Tag: admin::cluster, short desc
+#: files/debtags/vocabulary
+msgid "Clustering"
+msgstr ""
+
+#. Tag: admin::configuring, short desc
+#: files/debtags/vocabulary
+msgid "Configuration Tool"
+msgstr ""
+
+#. Tag: admin::file-distribution, short desc
+#: files/debtags/vocabulary
+msgid "File Distribution"
+msgstr ""
+
+#. Tag: admin::filesystem, short desc
+#: files/debtags/vocabulary
+msgid "Filesystem Tool"
+msgstr ""
+
+#. Tag: admin::filesystem, long desc
+#: files/debtags/vocabulary
+msgid " Creation, maintenance, and use of filesystems"
+msgstr ""
+
+#. Tag: admin::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics and Recovery"
+msgstr ""
+
+#. Tag: admin::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Recovering lost or damaged data.\n This tag will be split into admin::recovery\n and security::forensics."
+msgstr ""
+
+#. Tag: admin::hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Support"
+msgstr ""
+
+#. Tag: admin::install, short desc
+#: files/debtags/vocabulary
+msgid "System installation"
+msgstr ""
+
+#. Tag: admin::issuetracker, short desc
+#: files/debtags/vocabulary
+msgid "Issue tracker"
+msgstr ""
+
+#. Tag: admin::kernel, short desc
+#: files/debtags/vocabulary
+msgid "Kernel or Modules"
+msgstr ""
+
+#. Tag: admin::logging, short desc
+#: files/debtags/vocabulary
+msgid "Logging"
+msgstr ""
+
+#. Tag: admin::login, short desc
+#: files/debtags/vocabulary
+#. Tag: use::login, short desc
+#: files/debtags/vocabulary
+msgid "Login"
+msgstr ""
+
+#. Tag: admin::login, long desc
+#: files/debtags/vocabulary
+msgid " Logging into the system"
+msgstr ""
+
+#. Tag: admin::monitoring, short desc
+#: files/debtags/vocabulary
+#. Tag: use::monitor, short desc
+#: files/debtags/vocabulary
+msgid "Monitoring"
+msgstr ""
+
+#. Tag: admin::package-management, short desc
+#: files/debtags/vocabulary
+msgid "Package Management"
+msgstr ""
+
+#. Tag: admin::power-management, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::power, short desc
+#: files/debtags/vocabulary
+msgid "Power Management"
+msgstr ""
+
+#. Tag: admin::recovery, short desc
+#: files/debtags/vocabulary
+msgid "Data recovery"
+msgstr ""
+
+#. Tag: admin::user-management, short desc
+#: files/debtags/vocabulary
+msgid "User Management"
+msgstr ""
+
+#. Tag: admin::virtualization, short desc
+#: files/debtags/vocabulary
+msgid "Virtualization"
+msgstr ""
+
+#. Tag: admin::virtualization, long desc
+#: files/debtags/vocabulary
+msgid " This is not hardware emulation, but rather those facilities that allow to\n create many isolated compartments inside the same system."
+msgstr ""
+
+#. Facet: biology, short desc
+#: files/debtags/vocabulary
+#. Tag: field::biology, short desc
+#: files/debtags/vocabulary
+msgid "Biology"
+msgstr ""
+
+#. Facet: biology, long desc
+#: files/debtags/vocabulary
+msgid " How is the package related to the field of biology."
+msgstr ""
+
+#. Tag: biology::emboss, short desc
+#: files/debtags/vocabulary
+msgid "EMBOSS"
+msgstr ""
+
+#. Tag: biology::emboss, long desc
+#: files/debtags/vocabulary
+msgid " Packages related to the European Molecular Biology Open Software Suite."
+msgstr ""
+
+#. Tag: biology::format:aln, short desc
+#: files/debtags/vocabulary
+msgid "Clustal/ALN"
+msgstr ""
+
+#. Tag: biology::format:aln, long desc
+#: files/debtags/vocabulary
+msgid " Used in multiple alignment of biological sequences."
+msgstr ""
+
+#. Tag: biology::format:nexus, short desc
+#: files/debtags/vocabulary
+msgid "Nexus"
+msgstr ""
+
+#. Tag: biology::format:nexus, long desc
+#: files/debtags/vocabulary
+msgid " Popular format for phylogenetic trees."
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, short desc
+#: files/debtags/vocabulary
+msgid "Nucleic acids"
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of nucleic acids: \n DNA, RNA but also non-natural nucleic acids such as PNA or LNA."
+msgstr ""
+
+#. Tag: biology::peptidic, short desc
+#: files/debtags/vocabulary
+msgid "Proteins"
+msgstr ""
+
+#. Tag: biology::peptidic, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of aminoacids: peptides and proteins."
+msgstr ""
+
+#. Facet: culture, short desc
+#: files/debtags/vocabulary
+msgid "Culture"
+msgstr ""
+
+#. Facet: culture, long desc
+#: files/debtags/vocabulary
+msgid " The culture for which the package provides special support"
+msgstr ""
+
+#. Tag: culture::afrikaans, short desc
+#: files/debtags/vocabulary
+msgid "Afrikaans"
+msgstr ""
+
+#. Tag: culture::arabic, short desc
+#: files/debtags/vocabulary
+msgid "Arabic"
+msgstr ""
+
+#. Tag: culture::basque, short desc
+#: files/debtags/vocabulary
+msgid "Basque"
+msgstr ""
+
+#. Tag: culture::bengali, short desc
+#: files/debtags/vocabulary
+msgid "Bengali"
+msgstr ""
+
+#. Tag: culture::bokmaal, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Bokmaal"
+msgstr ""
+
+#. Tag: culture::bosnian, short desc
+#: files/debtags/vocabulary
+msgid "Bosnian"
+msgstr ""
+
+#. Tag: culture::brazilian, short desc
+#: files/debtags/vocabulary
+msgid "Brazilian"
+msgstr ""
+
+#. Tag: culture::bulgarian, short desc
+#: files/debtags/vocabulary
+msgid "Bulgarian"
+msgstr ""
+
+#. Tag: culture::catalan, short desc
+#: files/debtags/vocabulary
+msgid "Catalan"
+msgstr ""
+
+#. Tag: culture::chinese, short desc
+#: files/debtags/vocabulary
+msgid "Chinese"
+msgstr ""
+
+#. Tag: culture::czech, short desc
+#: files/debtags/vocabulary
+msgid "Czech"
+msgstr ""
+
+#. Tag: culture::croatian, short desc
+#: files/debtags/vocabulary
+msgid "Croatian"
+msgstr ""
+
+#. Tag: culture::danish, short desc
+#: files/debtags/vocabulary
+msgid "Danish"
+msgstr ""
+
+#. Tag: culture::dutch, short desc
+#: files/debtags/vocabulary
+msgid "Dutch"
+msgstr ""
+
+#. Tag: culture::esperanto, short desc
+#: files/debtags/vocabulary
+msgid "Esperanto"
+msgstr ""
+
+#. Tag: culture::estonian, short desc
+#: files/debtags/vocabulary
+msgid "Estonian"
+msgstr ""
+
+#. Tag: culture::faroese, short desc
+#: files/debtags/vocabulary
+msgid "Faroese"
+msgstr ""
+
+#. Tag: culture::farsi, short desc
+#: files/debtags/vocabulary
+msgid "Farsi"
+msgstr ""
+
+#. Tag: culture::finnish, short desc
+#: files/debtags/vocabulary
+msgid "Finnish"
+msgstr ""
+
+#. Tag: culture::french, short desc
+#: files/debtags/vocabulary
+msgid "French"
+msgstr ""
+
+#. Tag: culture::german, short desc
+#: files/debtags/vocabulary
+msgid "German"
+msgstr ""
+
+#. Tag: culture::greek, short desc
+#: files/debtags/vocabulary
+msgid "Greek"
+msgstr ""
+
+#. Tag: culture::hebrew, short desc
+#: files/debtags/vocabulary
+msgid "Hebrew"
+msgstr ""
+
+#. Tag: culture::hindi, short desc
+#: files/debtags/vocabulary
+msgid "Hindi"
+msgstr ""
+
+#. Tag: culture::hungarian, short desc
+#: files/debtags/vocabulary
+msgid "Hungarian"
+msgstr ""
+
+#. Tag: culture::icelandic, short desc
+#: files/debtags/vocabulary
+msgid "Icelandic"
+msgstr ""
+
+#. Tag: culture::irish, short desc
+#: files/debtags/vocabulary
+msgid "Irish (Gaeilge)"
+msgstr ""
+
+#. Tag: culture::italian, short desc
+#: files/debtags/vocabulary
+msgid "Italian"
+msgstr ""
+
+#. Tag: culture::japanese, short desc
+#: files/debtags/vocabulary
+msgid "Japanese"
+msgstr ""
+
+#. Tag: culture::korean, short desc
+#: files/debtags/vocabulary
+msgid "Korean"
+msgstr ""
+
+#. Tag: culture::mongolian, short desc
+#: files/debtags/vocabulary
+msgid "Mongolian"
+msgstr ""
+
+#. Tag: culture::nynorsk, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Nynorsk"
+msgstr ""
+
+#. Tag: culture::norwegian, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian"
+msgstr ""
+
+#. Tag: culture::polish, short desc
+#: files/debtags/vocabulary
+msgid "Polish"
+msgstr ""
+
+#. Tag: culture::portuguese, short desc
+#: files/debtags/vocabulary
+msgid "Portuguese"
+msgstr ""
+
+#. Tag: culture::punjabi, short desc
+#: files/debtags/vocabulary
+msgid "Punjabi"
+msgstr ""
+
+#. Tag: culture::romanian, short desc
+#: files/debtags/vocabulary
+msgid "Romanian"
+msgstr ""
+
+#. Tag: culture::russian, short desc
+#: files/debtags/vocabulary
+msgid "Russian"
+msgstr ""
+
+#. Tag: culture::serbian, short desc
+#: files/debtags/vocabulary
+msgid "Serbian"
+msgstr ""
+
+#. Tag: culture::slovak, short desc
+#: files/debtags/vocabulary
+msgid "Slovak"
+msgstr ""
+
+#. Tag: culture::spanish, short desc
+#: files/debtags/vocabulary
+msgid "Spanish"
+msgstr ""
+
+#. Tag: culture::swedish, short desc
+#: files/debtags/vocabulary
+msgid "Swedish"
+msgstr ""
+
+#. Tag: culture::taiwanese, short desc
+#: files/debtags/vocabulary
+msgid "Taiwanese"
+msgstr ""
+
+#. Tag: culture::tajik, short desc
+#: files/debtags/vocabulary
+msgid "Tajik"
+msgstr ""
+
+#. Tag: culture::tamil, short desc
+#: files/debtags/vocabulary
+msgid "Tamil"
+msgstr ""
+
+#. Tag: culture::thai, short desc
+#: files/debtags/vocabulary
+msgid "Thai"
+msgstr ""
+
+#. Tag: culture::turkish, short desc
+#: files/debtags/vocabulary
+msgid "Turkish"
+msgstr ""
+
+#. Tag: culture::ukrainian, short desc
+#: files/debtags/vocabulary
+msgid "Ukrainian"
+msgstr ""
+
+#. Tag: culture::uzbek, short desc
+#: files/debtags/vocabulary
+msgid "Uzbek"
+msgstr ""
+
+#. Tag: culture::welsh, short desc
+#: files/debtags/vocabulary
+msgid "Welsh"
+msgstr ""
+
+#. Facet: devel, short desc
+#: files/debtags/vocabulary
+msgid "Software Development"
+msgstr ""
+
+#. Tag: devel::bugtracker, short desc
+#: files/debtags/vocabulary
+msgid "Bug Tracking"
+msgstr ""
+
+#. Tag: devel::buildtools, short desc
+#: files/debtags/vocabulary
+msgid "Build Tool"
+msgstr ""
+
+#. Tag: devel::code-generator, short desc
+#: files/debtags/vocabulary
+msgid "Code Generation"
+msgstr ""
+
+#. Tag: devel::code-generator, long desc
+#: files/debtags/vocabulary
+msgid " Parser, lexer and other code generators"
+msgstr ""
+
+#. Tag: devel::compiler, short desc
+#: files/debtags/vocabulary
+msgid "Compiler"
+msgstr ""
+
+#. Tag: devel::debian, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::debian, short desc
+#: files/debtags/vocabulary
+msgid "Debian"
+msgstr ""
+
+#. Tag: devel::debian, long desc
+#: files/debtags/vocabulary
+msgid " Tools, documentation, etc. of use primarily to Debian developers."
+msgstr ""
+
+#. Tag: devel::debugger, short desc
+#: files/debtags/vocabulary
+msgid "Debugging"
+msgstr ""
+
+#. Tag: devel::doc, short desc
+#: files/debtags/vocabulary
+#. Tag: role::documentation, short desc
+#: files/debtags/vocabulary
+msgid "Documentation"
+msgstr ""
+
+#. Tag: devel::docsystem, short desc
+#: files/debtags/vocabulary
+msgid "Literate Programming"
+msgstr ""
+
+#. Tag: devel::docsystem, long desc
+#: files/debtags/vocabulary
+msgid " Tools and auto-documenters"
+msgstr ""
+
+#. Tag: devel::ecma-cli, short desc
+#: files/debtags/vocabulary
+msgid "ECMA CLI"
+msgstr ""
+
+#. Tag: devel::ecma-cli, long desc
+#: files/debtags/vocabulary
+msgid " Tools and libraries for development with implementations of \n the ECMA CLI (Common Language Infrastructure), like Mono\n or DotGNU Portable.NET."
+msgstr ""
+
+#. Tag: devel::editor, short desc
+#: files/debtags/vocabulary
+msgid "Source Editor"
+msgstr ""
+
+#. Tag: devel::examples, short desc
+#: files/debtags/vocabulary
+msgid "Examples"
+msgstr ""
+
+#. Tag: devel::ide, short desc
+#: files/debtags/vocabulary
+msgid "IDE"
+msgstr ""
+
+#. Tag: devel::ide, long desc
+#: files/debtags/vocabulary
+msgid " Integrated Development Environment"
+msgstr ""
+
+#. Tag: devel::interpreter, short desc
+#: files/debtags/vocabulary
+msgid "Interpreter"
+msgstr ""
+
+#. Tag: devel::i18n, short desc
+#: files/debtags/vocabulary
+msgid "Internationalization"
+msgstr ""
+
+#. Tag: devel::lang:ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada Development"
+msgstr ""
+
+#. Tag: devel::lang:c, short desc
+#: files/debtags/vocabulary
+msgid "C Development"
+msgstr ""
+
+#. Tag: devel::lang:c++, short desc
+#: files/debtags/vocabulary
+msgid "C++ Development"
+msgstr ""
+
+#. Tag: devel::lang:c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C# Development"
+msgstr ""
+
+#. Tag: devel::lang:fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran Development"
+msgstr ""
+
+#. Tag: devel::lang:haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell Development"
+msgstr ""
+
+#. Tag: devel::lang:java, short desc
+#: files/debtags/vocabulary
+msgid "Java Development"
+msgstr ""
+
+#. Tag: devel::lang:ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/JavaScript Development"
+msgstr ""
+
+#. Tag: devel::lang:lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp Development"
+msgstr ""
+
+#. Tag: devel::lang:lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua Development"
+msgstr ""
+
+#. Tag: devel::lang:ml, short desc
+#: files/debtags/vocabulary
+msgid "ML Development"
+msgstr ""
+
+#. Tag: devel::lang:objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective-C Development"
+msgstr ""
+
+#. Tag: devel::lang:ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml Development"
+msgstr ""
+
+#. Tag: devel::lang:octave, short desc
+#: files/debtags/vocabulary
+msgid "GNU Octave Development"
+msgstr ""
+
+#. Tag: devel::lang:pascal, short desc
+#: files/debtags/vocabulary
+msgid "Pascal Development"
+msgstr ""
+
+#. Tag: devel::lang:perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl Development"
+msgstr ""
+
+#. Tag: devel::lang:php, short desc
+#: files/debtags/vocabulary
+msgid "PHP Development"
+msgstr ""
+
+#. Tag: devel::lang:pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike Development"
+msgstr ""
+
+#. Tag: devel::lang:prolog, short desc
+#: files/debtags/vocabulary
+msgid "Prolog Development"
+msgstr ""
+
+#. Tag: devel::lang:python, short desc
+#: files/debtags/vocabulary
+msgid "Python Development"
+msgstr ""
+
+#. Tag: devel::lang:r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R Development"
+msgstr ""
+
+#. Tag: devel::lang:ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby Development"
+msgstr ""
+
+#. Tag: devel::lang:scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme Development"
+msgstr ""
+
+#. Tag: devel::lang:sql, short desc
+#: files/debtags/vocabulary
+msgid "SQL"
+msgstr ""
+
+#. Tag: devel::lang:tcl, short desc
+#: files/debtags/vocabulary
+msgid "Tcl Development"
+msgstr ""
+
+#. Tag: devel::library, short desc
+#: files/debtags/vocabulary
+msgid "Libraries"
+msgstr ""
+
+#. Tag: devel::machinecode, short desc
+#: files/debtags/vocabulary
+msgid "Machine Code"
+msgstr ""
+
+#. Tag: devel::machinecode, long desc
+#: files/debtags/vocabulary
+msgid " Assemblers and other machine-code development tools."
+msgstr ""
+
+#. Tag: devel::modelling, short desc
+#: files/debtags/vocabulary
+msgid "Modelling"
+msgstr ""
+
+#. Tag: devel::modelling, long desc
+#: files/debtags/vocabulary
+msgid " Programs and libraries that support creation of software models\n with modelling languages like UML or OCL."
+msgstr ""
+
+#. Tag: devel::packaging, short desc
+#: files/debtags/vocabulary
+msgid "Packaging"
+msgstr ""
+
+#. Tag: devel::packaging, long desc
+#: files/debtags/vocabulary
+msgid " Tools for packaging software."
+msgstr ""
+
+#. Tag: devel::prettyprint, short desc
+#: files/debtags/vocabulary
+msgid "Prettyprint"
+msgstr ""
+
+#. Tag: devel::prettyprint, long desc
+#: files/debtags/vocabulary
+msgid " Code pretty-printing and indentation/reformatting."
+msgstr ""
+
+#. Tag: devel::profiler, short desc
+#: files/debtags/vocabulary
+msgid "Profiling"
+msgstr ""
+
+#. Tag: devel::profiler, long desc
+#: files/debtags/vocabulary
+msgid " Profiling and optimization tools."
+msgstr ""
+
+#. Tag: devel::rcs, short desc
+#: files/debtags/vocabulary
+msgid "Revision Control"
+msgstr ""
+
+#. Tag: devel::rcs, long desc
+#: files/debtags/vocabulary
+msgid " RCS (Revision Control System) and SCM (Software Configuration Manager)"
+msgstr ""
+
+#. Tag: devel::rpc, short desc
+#: files/debtags/vocabulary
+msgid "RPC"
+msgstr ""
+
+#. Tag: devel::rpc, long desc
+#: files/debtags/vocabulary
+msgid " Remote Procedure Call, Network transparent programming"
+msgstr ""
+
+#. Tag: devel::runtime, short desc
+#: files/debtags/vocabulary
+msgid "Runtime Support"
+msgstr ""
+
+#. Tag: devel::runtime, long desc
+#: files/debtags/vocabulary
+msgid " Runtime environments of various languages and systems."
+msgstr ""
+
+#. Tag: devel::testing-qa, short desc
+#: files/debtags/vocabulary
+msgid "Testing and QA"
+msgstr ""
+
+#. Tag: devel::testing-qa, long desc
+#: files/debtags/vocabulary
+msgid " Tools for software testing and quality assurance."
+msgstr ""
+
+#. Tag: devel::ui-builder, short desc
+#: files/debtags/vocabulary
+#. Facet: interface, short desc
+#: files/debtags/vocabulary
+msgid "User Interface"
+msgstr ""
+
+#. Tag: devel::ui-builder, long desc
+#: files/debtags/vocabulary
+msgid " Tools for designing user interfaces."
+msgstr ""
+
+#. Tag: devel::web, short desc
+#: files/debtags/vocabulary
+msgid "Web"
+msgstr ""
+
+#. Tag: devel::web, long desc
+#: files/debtags/vocabulary
+msgid " Web-centric frameworks, CGI libraries and other web-specific development\n tools."
+msgstr ""
+
+#. Tag: educational, short desc
+#: files/debtags/vocabulary
+msgid "[Edu] Educational Software"
+msgstr ""
+
+#. Facet: field, short desc
+#: files/debtags/vocabulary
+msgid "Field"
+msgstr ""
+
+#. Tag: field::arts, short desc
+#: files/debtags/vocabulary
+msgid "Arts"
+msgstr ""
+
+#. Tag: field::astronomy, short desc
+#: files/debtags/vocabulary
+msgid "Astronomy"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, short desc
+#: files/debtags/vocabulary
+msgid "Bioinformatics"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, long desc
+#: files/debtags/vocabulary
+msgid " Sequence analysis software."
+msgstr ""
+
+#. Tag: field::biology:molecular, short desc
+#: files/debtags/vocabulary
+msgid "Molecular biology"
+msgstr ""
+
+#. Tag: field::biology:molecular, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to molecular cloning and related wet biology."
+msgstr ""
+
+#. Tag: field::biology:structural, short desc
+#: files/debtags/vocabulary
+msgid "Structural biology"
+msgstr ""
+
+#. Tag: field::biology:structural, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to model tridimentional structures."
+msgstr ""
+
+#. Tag: field::chemistry, short desc
+#: files/debtags/vocabulary
+msgid "Chemistry"
+msgstr ""
+
+#. Tag: field::electronics, short desc
+#: files/debtags/vocabulary
+msgid "Electronics"
+msgstr ""
+
+#. Tag: field::electronics, long desc
+#: files/debtags/vocabulary
+msgid " Circuit editors and other electronics-related software"
+msgstr ""
+
+#. Tag: field::finance, short desc
+#: files/debtags/vocabulary
+msgid "Financial"
+msgstr ""
+
+#. Tag: field::finance, long desc
+#: files/debtags/vocabulary
+msgid " Accounting and financial software"
+msgstr ""
+
+#. Tag: field::genealogy, short desc
+#: files/debtags/vocabulary
+msgid "Genealogy"
+msgstr ""
+
+#. Tag: field::geography, short desc
+#: files/debtags/vocabulary
+msgid "Geography"
+msgstr ""
+
+#. Tag: field::geology, short desc
+#: files/debtags/vocabulary
+msgid "Geology"
+msgstr ""
+
+#. Tag: field::linguistics, short desc
+#: files/debtags/vocabulary
+msgid "Linguistics"
+msgstr ""
+
+#. Tag: field::mathematics, short desc
+#: files/debtags/vocabulary
+msgid "Mathematics"
+msgstr ""
+
+#. Tag: field::medicine, short desc
+#: files/debtags/vocabulary
+msgid "Medicine"
+msgstr ""
+
+#. Tag: field::medicine:imaging, short desc
+#: files/debtags/vocabulary
+msgid "Medical Imaging"
+msgstr ""
+
+#. Tag: field::physics, short desc
+#: files/debtags/vocabulary
+msgid "Physics"
+msgstr ""
+
+#. Tag: field::religion, short desc
+#: files/debtags/vocabulary
+msgid "Religion"
+msgstr ""
+
+#. Tag: field::statistics, short desc
+#: files/debtags/vocabulary
+msgid "Statistics"
+msgstr ""
+
+#. Facet: game, short desc
+#: files/debtags/vocabulary
+msgid "Games and Amusement"
+msgstr ""
+
+#. Tag: game::adventure, short desc
+#: files/debtags/vocabulary
+msgid "Adventure"
+msgstr ""
+
+#. Tag: game::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Action and Arcade"
+msgstr ""
+
+#. Tag: game::board, short desc
+#: files/debtags/vocabulary
+msgid "Board"
+msgstr ""
+
+#. Tag: game::board:chess, short desc
+#: files/debtags/vocabulary
+msgid "Chess"
+msgstr ""
+
+#. Tag: game::card, short desc
+#: files/debtags/vocabulary
+msgid "Card"
+msgstr ""
+
+#. Tag: game::demos, short desc
+#: files/debtags/vocabulary
+msgid "Demo"
+msgstr ""
+
+#. Tag: game::fps, short desc
+#: files/debtags/vocabulary
+msgid "First person shooter"
+msgstr ""
+
+#. Tag: game::mud, short desc
+#: files/debtags/vocabulary
+msgid "Multiplayer RPG"
+msgstr ""
+
+#. Tag: game::mud, long desc
+#: files/debtags/vocabulary
+msgid " MUDs, MOOs, and other multiplayer RPGs"
+msgstr ""
+
+#. Tag: game::platform, short desc
+#: files/debtags/vocabulary
+msgid "Platform"
+msgstr ""
+
+#. Tag: game::puzzle, short desc
+#: files/debtags/vocabulary
+msgid "Puzzle"
+msgstr ""
+
+#. Tag: game::rpg, short desc
+#: files/debtags/vocabulary
+msgid "Role-playing"
+msgstr ""
+
+#. Tag: game::rpg:rogue, short desc
+#: files/debtags/vocabulary
+msgid "Rogue-Like RPG"
+msgstr ""
+
+#. Tag: game::rpg:rogue, long desc
+#: files/debtags/vocabulary
+msgid " Games like Nethack, Angband etc."
+msgstr ""
+
+#. Tag: game::simulation, short desc
+#: files/debtags/vocabulary
+msgid "Simulation"
+msgstr ""
+
+#. Tag: game::sport, short desc
+#: files/debtags/vocabulary
+msgid "Sport games"
+msgstr ""
+
+#. Tag: game::sport:racing, short desc
+#: files/debtags/vocabulary
+msgid "Racing"
+msgstr ""
+
+#. Tag: game::strategy, short desc
+#: files/debtags/vocabulary
+msgid "Strategy"
+msgstr ""
+
+#. Tag: game::tetris, short desc
+#: files/debtags/vocabulary
+msgid "Tetris-like"
+msgstr ""
+
+#. Tag: game::toys, short desc
+#: files/debtags/vocabulary
+msgid "Toy or Gimmick"
+msgstr ""
+
+#. Tag: game::typing, short desc
+#: files/debtags/vocabulary
+msgid "Typing Tutor"
+msgstr ""
+
+#. Facet: hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Enablement"
+msgstr ""
+
+#. Tag: hardware::camera, short desc
+#: files/debtags/vocabulary
+msgid "Digital Camera"
+msgstr ""
+
+#. Tag: hardware::detection, short desc
+#: files/debtags/vocabulary
+msgid "Hardware detection"
+msgstr ""
+
+#. Tag: hardware::embedded, short desc
+#: files/debtags/vocabulary
+msgid "Embedded"
+msgstr ""
+
+#. Tag: hardware::emulation, short desc
+#: files/debtags/vocabulary
+msgid "Emulation"
+msgstr ""
+
+#. Tag: hardware::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Devices"
+msgstr ""
+
+#. Tag: hardware::input:joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick"
+msgstr ""
+
+#. Tag: hardware::input:keyboard, short desc
+#: files/debtags/vocabulary
+msgid "Keyboard"
+msgstr ""
+
+#. Tag: hardware::input:mouse, short desc
+#: files/debtags/vocabulary
+msgid "Mouse"
+msgstr ""
+
+#. Tag: hardware::joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick (legacy)"
+msgstr ""
+
+#. Tag: hardware::hamradio, short desc
+#: files/debtags/vocabulary
+msgid "Ham Radio"
+msgstr ""
+
+#. Tag: hardware::laptop, short desc
+#: files/debtags/vocabulary
+msgid "Laptop"
+msgstr ""
+
+#. Tag: hardware::modem, short desc
+#: files/debtags/vocabulary
+msgid "Modem"
+msgstr ""
+
+#. Tag: hardware::modem:dsl, short desc
+#: files/debtags/vocabulary
+msgid "xDSL Modem"
+msgstr ""
+
+#. Tag: hardware::opengl, short desc
+#: files/debtags/vocabulary
+msgid "Requires video hardware acceleration"
+msgstr ""
+
+#. Tag: hardware::power:ups, short desc
+#: files/debtags/vocabulary
+msgid "UPS"
+msgstr ""
+
+#. Tag: hardware::power:ups, long desc
+#: files/debtags/vocabulary
+msgid " Uninterruptible Power Supply"
+msgstr ""
+
+#. Tag: hardware::power:acpi, short desc
+#: files/debtags/vocabulary
+msgid "ACPI Power Management"
+msgstr ""
+
+#. Tag: hardware::power:apm, short desc
+#: files/debtags/vocabulary
+msgid "APM Power Management"
+msgstr ""
+
+#. Tag: hardware::printer, short desc
+#: files/debtags/vocabulary
+msgid "Printer"
+msgstr ""
+
+#. Tag: hardware::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Image-scanning hardware"
+msgstr ""
+
+#. Tag: hardware::storage, short desc
+#: files/debtags/vocabulary
+msgid "Storage"
+msgstr ""
+
+#. Tag: hardware::storage:cd, short desc
+#: files/debtags/vocabulary
+msgid "CD"
+msgstr ""
+
+#. Tag: hardware::storage:cd, long desc
+#: files/debtags/vocabulary
+msgid " Compact Disc"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, short desc
+#: files/debtags/vocabulary
+msgid "DVD"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, long desc
+#: files/debtags/vocabulary
+msgid " Digital Versatile Disc"
+msgstr ""
+
+#. Tag: hardware::storage:floppy, short desc
+#: files/debtags/vocabulary
+msgid "Floppy disk"
+msgstr ""
+
+#. Tag: hardware::usb, short desc
+#: files/debtags/vocabulary
+msgid "USB"
+msgstr ""
+
+#. Tag: hardware::usb, long desc
+#: files/debtags/vocabulary
+msgid " Universal Serial Bus"
+msgstr ""
+
+#. Tag: hardware::video, short desc
+#: files/debtags/vocabulary
+msgid "Graphics and Video"
+msgstr ""
+
+#. Facet: made-of, short desc
+#: files/debtags/vocabulary
+msgid "Made Of"
+msgstr ""
+
+#. Facet: made-of, long desc
+#: files/debtags/vocabulary
+msgid " The languages or data formats used to make the package"
+msgstr ""
+
+#. Tag: made-of::data:dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionary"
+msgstr ""
+
+#. Tag: made-of::data:font, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::font, short desc
+#: files/debtags/vocabulary
+msgid "Font"
+msgstr ""
+
+#. Tag: made-of::data:html, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::html, short desc
+#: files/debtags/vocabulary
+msgid "HTML Hypertext Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:icons, short desc
+#: files/debtags/vocabulary
+msgid "Icons"
+msgstr ""
+
+#. Tag: made-of::data:info, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::info, short desc
+#: files/debtags/vocabulary
+msgid "Documentation in Info format"
+msgstr ""
+
+#. Tag: made-of::data:man, short desc
+#: files/debtags/vocabulary
+msgid "Manuals in nroff format"
+msgstr ""
+
+#. Tag: made-of::data:pdf, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::pdf, short desc
+#: files/debtags/vocabulary
+msgid "PDF Documents"
+msgstr ""
+
+#. Tag: made-of::data:postscript, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::postscript, short desc
+#: files/debtags/vocabulary
+msgid "Postscript"
+msgstr ""
+
+#. Tag: made-of::data:sgml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::sgml, short desc
+#: files/debtags/vocabulary
+msgid "SGML, Standard Generalized Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:svg, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::svg, short desc
+#: files/debtags/vocabulary
+msgid "SVG, Scalable Vector Graphics"
+msgstr ""
+
+#. Tag: made-of::data:tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX, LaTeX and DVI"
+msgstr ""
+
+#. Tag: made-of::data:vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:xml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::xml, short desc
+#: files/debtags/vocabulary
+msgid "XML"
+msgstr ""
+
+#. Tag: interface::3d, short desc
+#: files/debtags/vocabulary
+msgid "Three-Dimensional"
+msgstr ""
+
+#. Tag: interface::commandline, short desc
+#: files/debtags/vocabulary
+msgid "Command Line"
+msgstr ""
+
+#. Tag: interface::daemon, short desc
+#: files/debtags/vocabulary
+msgid "Daemon"
+msgstr ""
+
+#. Tag: interface::daemon, long desc
+#: files/debtags/vocabulary
+msgid " Runs in background, only a control interface is provided, usually on\n commandline."
+msgstr ""
+
+#. Tag: interface::framebuffer, short desc
+#: files/debtags/vocabulary
+msgid "Framebuffer"
+msgstr ""
+
+#. Tag: interface::shell, short desc
+#: files/debtags/vocabulary
+msgid "Command Shell"
+msgstr ""
+
+#. Tag: interface::svga, short desc
+#: files/debtags/vocabulary
+msgid "Console SVGA"
+msgstr ""
+
+#. Tag: interface::text-mode, short desc
+#: files/debtags/vocabulary
+msgid "Text-based Interactive"
+msgstr ""
+
+#. Tag: interface::web, short desc
+#: files/debtags/vocabulary
+#. Facet: web, short desc
+#: files/debtags/vocabulary
+msgid "World Wide Web"
+msgstr ""
+
+#. Tag: interface::x11, short desc
+#: files/debtags/vocabulary
+msgid "X Window System"
+msgstr ""
+
+#. Facet: implemented-in, short desc
+#: files/debtags/vocabulary
+msgid "Implemented in"
+msgstr ""
+
+#. Tag: implemented-in::ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada"
+msgstr ""
+
+#. Tag: implemented-in::c, short desc
+#: files/debtags/vocabulary
+msgid "C"
+msgstr ""
+
+#. Tag: implemented-in::c++, short desc
+#: files/debtags/vocabulary
+msgid "C++"
+msgstr ""
+
+#. Tag: implemented-in::c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C#"
+msgstr ""
+
+#. Tag: implemented-in::fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran"
+msgstr ""
+
+#. Tag: implemented-in::haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell"
+msgstr ""
+
+#. Tag: implemented-in::java, short desc
+#: files/debtags/vocabulary
+msgid "Java"
+msgstr ""
+
+#. Tag: implemented-in::ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/Javascript"
+msgstr ""
+
+#. Tag: implemented-in::lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp"
+msgstr ""
+
+#. Tag: implemented-in::lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua"
+msgstr ""
+
+#. Tag: implemented-in::ml, short desc
+#: files/debtags/vocabulary
+msgid "ML"
+msgstr ""
+
+#. Tag: implemented-in::objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective C"
+msgstr ""
+
+#. Tag: implemented-in::ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml"
+msgstr ""
+
+#. Tag: implemented-in::perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl"
+msgstr ""
+
+#. Tag: implemented-in::php, short desc
+#: files/debtags/vocabulary
+msgid "PHP"
+msgstr ""
+
+#. Tag: implemented-in::pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike"
+msgstr ""
+
+#. Tag: implemented-in::python, short desc
+#: files/debtags/vocabulary
+msgid "Python"
+msgstr ""
+
+#. Tag: implemented-in::r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R"
+msgstr ""
+
+#. Tag: implemented-in::ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby"
+msgstr ""
+
+#. Tag: implemented-in::scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme"
+msgstr ""
+
+#. Tag: implemented-in::shell, short desc
+#: files/debtags/vocabulary
+msgid "sh, bash, ksh, tcsh and other shells"
+msgstr ""
+
+#. Tag: implemented-in::tcl, short desc
+#: files/debtags/vocabulary
+msgid "TCL Tool Command Language"
+msgstr ""
+
+#. Facet: junior, short desc
+#: files/debtags/vocabulary
+msgid "Junior Applications"
+msgstr ""
+
+#. Facet: junior, long desc
+#: files/debtags/vocabulary
+msgid " Applications recommended for younger users"
+msgstr ""
+
+#. Tag: junior::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Arcade games"
+msgstr ""
+
+#. Tag: junior::games-gl, short desc
+#: files/debtags/vocabulary
+msgid "3D games"
+msgstr ""
+
+#. Tag: junior::meta, short desc
+#: files/debtags/vocabulary
+msgid "Metapackages"
+msgstr ""
+
+#. Facet: mail, short desc
+#: files/debtags/vocabulary
+msgid "Electronic Mail"
+msgstr ""
+
+#. Tag: mail::filters, short desc
+#: files/debtags/vocabulary
+msgid "Filters"
+msgstr ""
+
+#. Tag: mail::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP Protocol"
+msgstr ""
+
+#. Tag: mail::list, short desc
+#: files/debtags/vocabulary
+msgid "Mailing Lists"
+msgstr ""
+
+#. Tag: mail::notification, short desc
+#: files/debtags/vocabulary
+msgid "Notification"
+msgstr ""
+
+#. Tag: mail::notification, long desc
+#: files/debtags/vocabulary
+msgid " Software that notifies users about status of mailbox."
+msgstr ""
+
+#. Tag: mail::pop, short desc
+#: files/debtags/vocabulary
+msgid "POP3 Protocol"
+msgstr ""
+
+#. Tag: mail::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP Protocol"
+msgstr ""
+
+#. Tag: mail::delivery-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Delivery Agent"
+msgstr ""
+
+#. Tag: mail::delivery-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that delivers mail to users' mailboxes."
+msgstr ""
+
+#. Tag: mail::transport-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Transport Agent"
+msgstr ""
+
+#. Tag: mail::transport-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that routes and transmits mail accross the system and the network."
+msgstr ""
+
+#. Tag: mail::user-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail user agent"
+msgstr ""
+
+#. Tag: mail::user-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that allows users to access e-mail."
+msgstr ""
+
+#. Facet: office, short desc
+#: files/debtags/vocabulary
+msgid "Office and business"
+msgstr ""
+
+#. Tag: office::finance, short desc
+#: files/debtags/vocabulary
+msgid "Finance"
+msgstr ""
+
+#. Tag: office::groupware, short desc
+#: files/debtags/vocabulary
+msgid "Groupware"
+msgstr ""
+
+#. Tag: office::presentation, short desc
+#: files/debtags/vocabulary
+msgid "Presentation"
+msgstr ""
+
+#. Tag: office::project-management, short desc
+#: files/debtags/vocabulary
+msgid "Project management"
+msgstr ""
+
+#. Tag: office::spreadsheet, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::spreadsheet, short desc
+#: files/debtags/vocabulary
+msgid "Spreadsheet"
+msgstr ""
+
+#. Facet: works-with, short desc
+#: files/debtags/vocabulary
+msgid "Works with"
+msgstr ""
+
+#. Facet: works-with, long desc
+#: files/debtags/vocabulary
+msgid " These tags describe what is the kind of data (or even processes, or people)\n that the package can work with."
+msgstr ""
+
+#. Tag: works-with::3dmodel, short desc
+#: files/debtags/vocabulary
+msgid "3D Model"
+msgstr ""
+
+#. Tag: works-with::archive, short desc
+#: files/debtags/vocabulary
+msgid "Archive"
+msgstr ""
+
+#. Tag: works-with::audio, short desc
+#: files/debtags/vocabulary
+msgid "Audio"
+msgstr ""
+
+#. Tag: works-with::bugs, short desc
+#: files/debtags/vocabulary
+msgid "Bugs or Issues"
+msgstr ""
+
+#. Tag: works-with::db, short desc
+#: files/debtags/vocabulary
+msgid "Databases"
+msgstr ""
+
+#. Tag: works-with::dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionaries"
+msgstr ""
+
+#. Tag: works-with::dtp, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Publishing (DTP)"
+msgstr ""
+
+#. Tag: works-with::fax, short desc
+#: files/debtags/vocabulary
+msgid "Faxes"
+msgstr ""
+
+#. Tag: works-with::file, short desc
+#: files/debtags/vocabulary
+msgid "Files"
+msgstr ""
+
+#. Tag: works-with::font, short desc
+#: files/debtags/vocabulary
+msgid "Fonts"
+msgstr ""
+
+#. Tag: works-with::im, short desc
+#: files/debtags/vocabulary
+msgid "Instant Messages"
+msgstr ""
+
+#. Tag: works-with::im, long desc
+#: files/debtags/vocabulary
+msgid " The package can connect to some IM network (or networks)."
+msgstr ""
+
+#. Tag: works-with::logfile, short desc
+#: files/debtags/vocabulary
+msgid "System Logs"
+msgstr ""
+
+#. Tag: works-with::mail, short desc
+#: files/debtags/vocabulary
+msgid "Email"
+msgstr ""
+
+#. Tag: works-with::music-notation, short desc
+#: files/debtags/vocabulary
+msgid "Music Notation"
+msgstr ""
+
+#. Tag: works-with::network-traffic, short desc
+#: files/debtags/vocabulary
+msgid "Network traffic"
+msgstr ""
+
+#. Tag: works-with::network-traffic, long desc
+#: files/debtags/vocabulary
+msgid " Routers, shapers, sniffers, firewalls and other tools\n that work with a stream of network packets."
+msgstr ""
+
+#. Tag: works-with::people, short desc
+#: files/debtags/vocabulary
+msgid "People"
+msgstr ""
+
+#. Tag: works-with::pim, short desc
+#: files/debtags/vocabulary
+msgid "Personal Information"
+msgstr ""
+
+#. Tag: works-with::image, short desc
+#: files/debtags/vocabulary
+msgid "Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, short desc
+#: files/debtags/vocabulary
+msgid "Raster Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, long desc
+#: files/debtags/vocabulary
+msgid " Images made of dots, such as photos and scans"
+msgstr ""
+
+#. Tag: works-with::image:vector, short desc
+#: files/debtags/vocabulary
+msgid "Vector Image"
+msgstr ""
+
+#. Tag: works-with::image:vector, long desc
+#: files/debtags/vocabulary
+msgid " Images made of lines, such as graphs or most clipart"
+msgstr ""
+
+#. Tag: works-with::software:package, short desc
+#: files/debtags/vocabulary
+msgid "Packaged software"
+msgstr ""
+
+#. Tag: works-with::software:running, short desc
+#: files/debtags/vocabulary
+msgid "Running programs"
+msgstr ""
+
+#. Tag: works-with::software:source, short desc
+#: files/debtags/vocabulary
+msgid "Source code"
+msgstr ""
+
+#. Tag: works-with::text, short desc
+#: files/debtags/vocabulary
+msgid "Text"
+msgstr ""
+
+#. Tag: works-with::unicode, short desc
+#: files/debtags/vocabulary
+msgid "Unicode"
+msgstr ""
+
+#. Tag: works-with::unicode, long desc
+#: files/debtags/vocabulary
+msgid " Please do not tag programs with simple unicode support,\n doing so would make this tag useless.\n Ultimately all applications should have unicode support."
+msgstr ""
+
+#. Tag: works-with::video, short desc
+#: files/debtags/vocabulary
+msgid "Video and Animation"
+msgstr ""
+
+#. Facet: works-with-format, short desc
+#: files/debtags/vocabulary
+msgid "Supports Format"
+msgstr ""
+
+#. Tag: works-with-format::bib, short desc
+#: files/debtags/vocabulary
+msgid "BibTeX"
+msgstr ""
+
+#. Tag: works-with-format::bib, long desc
+#: files/debtags/vocabulary
+msgid " BibTeX list of references"
+msgstr ""
+
+#. Tag: works-with-format::dvi, short desc
+#: files/debtags/vocabulary
+msgid "TeX DVI"
+msgstr ""
+
+#. Tag: works-with-format::dvi, long desc
+#: files/debtags/vocabulary
+msgid " DeVice Independent page description file, usually generated\n by TeX or LaTeX."
+msgstr ""
+
+#. Tag: works-with-format::ldif, short desc
+#: files/debtags/vocabulary
+msgid "LDIF"
+msgstr ""
+
+#. Tag: works-with-format::ldif, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML 3D Model"
+msgstr ""
+
+#. Tag: works-with-format::vrml, long desc
+#: files/debtags/vocabulary
+msgid " Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: works-with-format::iso9660, short desc
+#: files/debtags/vocabulary
+msgid "ISO 9660 CD Filesystem"
+msgstr ""
+
+#. Tag: works-with-format::tar, short desc
+#: files/debtags/vocabulary
+msgid "Tar Archives"
+msgstr ""
+
+#. Tag: works-with-format::zip, short desc
+#: files/debtags/vocabulary
+msgid "Zip Archives"
+msgstr ""
+
+#. Tag: works-with-format::mp3, short desc
+#: files/debtags/vocabulary
+msgid "MP3 Audio"
+msgstr ""
+
+#. Tag: works-with-format::mpc, short desc
+#: files/debtags/vocabulary
+msgid "Musepack Audio"
+msgstr ""
+
+#. Tag: works-with-format::oggvorbis, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Vorbis Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, short desc
+#: files/debtags/vocabulary
+msgid "MS RIFF Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, long desc
+#: files/debtags/vocabulary
+msgid " Wave uncompressed audio format"
+msgstr ""
+
+#. Tag: works-with-format::jpg, short desc
+#: files/debtags/vocabulary
+msgid "JPEG, Joint Picture Expert Group"
+msgstr ""
+
+#. Tag: works-with-format::gif, short desc
+#: files/debtags/vocabulary
+msgid "GIF, Graphics Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::odf, short desc
+#: files/debtags/vocabulary
+msgid "ODF, Open Document Format"
+msgstr ""
+
+#. Tag: works-with-format::png, short desc
+#: files/debtags/vocabulary
+msgid "PNG, Portable Network Graphics"
+msgstr ""
+
+#. Tag: works-with-format::swf, short desc
+#: files/debtags/vocabulary
+msgid "SWF, ShockWave Flash"
+msgstr ""
+
+#. Tag: works-with-format::tiff, short desc
+#: files/debtags/vocabulary
+msgid "TIFF, Tagged Image File Format"
+msgstr ""
+
+#. Tag: works-with-format::docbook, short desc
+#: files/debtags/vocabulary
+msgid "Docbook"
+msgstr ""
+
+#. Tag: works-with-format::man, short desc
+#: files/debtags/vocabulary
+msgid "Manpages"
+msgstr ""
+
+#. Tag: works-with-format::plaintext, short desc
+#: files/debtags/vocabulary
+msgid "Plain text"
+msgstr ""
+
+#. Tag: works-with-format::tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX and LaTeX"
+msgstr ""
+
+#. Tag: works-with-format::oggtheora, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Theora Video"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, short desc
+#: files/debtags/vocabulary
+msgid "RSS Rich Site Summary"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, long desc
+#: files/debtags/vocabulary
+msgid " XML dialect used to describe resources and websites."
+msgstr ""
+
+#. Tag: works-with-format::xml:xslt, short desc
+#: files/debtags/vocabulary
+msgid "XSL Transformations (XSLT)"
+msgstr ""
+
+#. Facet: scope, short desc
+#: files/debtags/vocabulary
+msgid "Scope"
+msgstr ""
+
+#. Tag: scope::utility, short desc
+#: files/debtags/vocabulary
+msgid "Utility"
+msgstr ""
+
+#. Tag: scope::utility, long desc
+#: files/debtags/vocabulary
+msgid " A narrow-scoped program for particular use case or few use cases. It\n only does something 10-20% of users in the field will need. Often has\n functionality missing from related applications."
+msgstr ""
+
+#. Tag: scope::application, short desc
+#: files/debtags/vocabulary
+#. Tag: web::application, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::application, short desc
+#: files/debtags/vocabulary
+msgid "Application"
+msgstr ""
+
+#. Tag: scope::application, long desc
+#: files/debtags/vocabulary
+msgid " Broad-scoped program for general use. It probably has functionality\n for 80-90% of use cases. The pieces that remain are usually to be\n found as utilities."
+msgstr ""
+
+#. Tag: scope::suite, short desc
+#: files/debtags/vocabulary
+msgid "Suite"
+msgstr ""
+
+#. Tag: scope::suite, long desc
+#: files/debtags/vocabulary
+msgid " Comprehensive suite of applications and utilities on the scale of\n desktop environment or base operating system."
+msgstr ""
+
+#. Facet: role, short desc
+#: files/debtags/vocabulary
+msgid "Role"
+msgstr ""
+
+#. Tag: role::program, short desc
+#: files/debtags/vocabulary
+msgid "Program"
+msgstr ""
+
+#. Tag: role::program, long desc
+#: files/debtags/vocabulary
+msgid " Executable computer program."
+msgstr ""
+
+#. Tag: role::shared-lib, short desc
+#: files/debtags/vocabulary
+msgid "Shared Library"
+msgstr ""
+
+#. Tag: role::shared-lib, long desc
+#: files/debtags/vocabulary
+msgid " Shared libraries used by one or more programs."
+msgstr ""
+
+#. Tag: role::plugin, short desc
+#: files/debtags/vocabulary
+msgid "Plugin"
+msgstr ""
+
+#. Tag: role::plugin, long desc
+#: files/debtags/vocabulary
+msgid " Add-on, pluggable program fragments enhancing functionality\n of some program or system."
+msgstr ""
+
+#. Tag: role::debug-symbols, short desc
+#: files/debtags/vocabulary
+msgid "Debugging symbols"
+msgstr ""
+
+#. Tag: role::debug-symbols, long desc
+#: files/debtags/vocabulary
+msgid " Debugging symbols."
+msgstr ""
+
+#. Tag: role::devel-lib, short desc
+#: files/debtags/vocabulary
+msgid "Development Library"
+msgstr ""
+
+#. Tag: role::devel-lib, long desc
+#: files/debtags/vocabulary
+msgid " Library and header files used in software development or building."
+msgstr ""
+
+#. Tag: role::source, short desc
+#: files/debtags/vocabulary
+msgid "Source Code"
+msgstr ""
+
+#. Tag: role::source, long desc
+#: files/debtags/vocabulary
+msgid " Human-readable code of a program, library or a part thereof."
+msgstr ""
+
+#. Tag: role::data, short desc
+#: files/debtags/vocabulary
+msgid "Standalone Data"
+msgstr ""
+
+#. Tag: role::app-data, short desc
+#: files/debtags/vocabulary
+msgid "Application Data"
+msgstr ""
+
+#. Tag: role::metapackage, short desc
+#: files/debtags/vocabulary
+msgid "Metapackage"
+msgstr ""
+
+#. Tag: role::metapackage, long desc
+#: files/debtags/vocabulary
+msgid " Packages that install suites of other packages."
+msgstr ""
+
+#. Facet: security, short desc
+#: files/debtags/vocabulary
+msgid "Security"
+msgstr ""
+
+#. Facet: security, long desc
+#: files/debtags/vocabulary
+msgid " How the package is related to system security"
+msgstr ""
+
+#. Tag: security::antivirus, short desc
+#: files/debtags/vocabulary
+msgid "Anti-Virus"
+msgstr ""
+
+#. Tag: security::authentication, short desc
+#: files/debtags/vocabulary
+msgid "Authentication"
+msgstr ""
+
+#. Tag: security::cryptography, short desc
+#: files/debtags/vocabulary
+msgid "Cryptography"
+msgstr ""
+
+#. Tag: security::cryptography, long desc
+#: files/debtags/vocabulary
+msgid " Cryptographic and privacy-oriented tools."
+msgstr ""
+
+#. Tag: security::firewall, short desc
+#: files/debtags/vocabulary
+#. Tag: network::firewall, short desc
+#: files/debtags/vocabulary
+msgid "Firewall"
+msgstr ""
+
+#. Tag: security::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics"
+msgstr ""
+
+#. Tag: security::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Post-mortem analysis of intrusions."
+msgstr ""
+
+#. Tag: security::ids, short desc
+#: files/debtags/vocabulary
+msgid "Intrusion Detection"
+msgstr ""
+
+#. Tag: security::integrity, short desc
+#: files/debtags/vocabulary
+msgid "File Integrity"
+msgstr ""
+
+#. Tag: security::integrity, long desc
+#: files/debtags/vocabulary
+msgid " Tools to monitor system for changes in filesystem and report changes\n or tools providing other means to check system integrity."
+msgstr ""
+
+#. Tag: security::log-analyzer, short desc
+#: files/debtags/vocabulary
+msgid "Log Analyzer"
+msgstr ""
+
+#. Tag: security::privacy, short desc
+#: files/debtags/vocabulary
+msgid "Privacy"
+msgstr ""
+
+#. Facet: sound, short desc
+#: files/debtags/vocabulary
+msgid "Sound and Music"
+msgstr ""
+
+#. Tag: sound::compression, short desc
+#: files/debtags/vocabulary
+msgid "Compression"
+msgstr ""
+
+#. Tag: sound::midi, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Software"
+msgstr ""
+
+#. Tag: sound::mixer, short desc
+#: files/debtags/vocabulary
+msgid "Mixing"
+msgstr ""
+
+#. Tag: sound::player, short desc
+#: files/debtags/vocabulary
+msgid "Playback"
+msgstr ""
+
+#. Tag: sound::recorder, short desc
+#: files/debtags/vocabulary
+msgid "Recording"
+msgstr ""
+
+#. Tag: sound::sequencer, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Sequencing"
+msgstr ""
+
+#. Facet: special, short desc
+#: files/debtags/vocabulary
+msgid "Service tags"
+msgstr ""
+
+#. Tag: special::auto-inst-parts, short desc
+#: files/debtags/vocabulary
+msgid "Secondary packages users won't install directly"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, short desc
+#: files/debtags/vocabulary
+msgid "NO IPv6 support"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, long desc
+#: files/debtags/vocabulary
+msgid " Use this for packages that cannot yet or will never support IPv6."
+msgstr ""
+
+#. Tag: special::obsolete, short desc
+#: files/debtags/vocabulary
+msgid "Obsolete Packages"
+msgstr ""
+
+#. Tag: special::obsolete, long desc
+#: files/debtags/vocabulary
+msgid " Packages that are not used any longer, also packages only left for upgrade\n purposes (merged / split packages)"
+msgstr ""
+
+#. Tag: special::invalid-tag, short desc
+#: files/debtags/vocabulary
+msgid "Invalid tag"
+msgstr ""
+
+#. Tag: special::invalid-tag, long desc
+#: files/debtags/vocabulary
+msgid " This tag means that the tag database contains a tag which is not present in\n the tag vocabulary.  The presence of this tag indicates a software bug: this\n should never show up."
+msgstr ""
+
+#. Tag: special::not-yet-tagged, short desc
+#: files/debtags/vocabulary
+msgid "!Not yet tagged packages!"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::a, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with a"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::b, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with b"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::c, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with c"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::d, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with d"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::e, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with e"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::f, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with f"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::g, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with g"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::h, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with h"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::i, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with i"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::j, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with j"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::k, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with k"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::l, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with l"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::m, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with m"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::n, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with n"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::o, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with o"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::p, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with p"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::q, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with q"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::r, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with r"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::s, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with s"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::t, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with t"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::u, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with u"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::v, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with v"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::w, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with w"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::x, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with x"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::y, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with y"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::z, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with z"
+msgstr ""
+
+#. Facet: suite, short desc
+#: files/debtags/vocabulary
+msgid "Application Suite"
+msgstr ""
+
+#. Tag: suite::apache, short desc
+#: files/debtags/vocabulary
+msgid "Apache"
+msgstr ""
+
+#. Tag: suite::eclipse, short desc
+#: files/debtags/vocabulary
+msgid "Eclipse"
+msgstr ""
+
+#. Tag: suite::eclipse, long desc
+#: files/debtags/vocabulary
+msgid " Eclipse tool platform and plugins."
+msgstr ""
+
+#. Tag: suite::emacs, short desc
+#: files/debtags/vocabulary
+msgid "Emacs"
+msgstr ""
+
+#. Tag: suite::gforge, short desc
+#: files/debtags/vocabulary
+msgid "GForge"
+msgstr ""
+
+#. Tag: suite::gforge, long desc
+#: files/debtags/vocabulary
+msgid " A collaborative development platform."
+msgstr ""
+
+#. Tag: suite::gimp, short desc
+#: files/debtags/vocabulary
+msgid "The GIMP"
+msgstr ""
+
+#. Tag: suite::gkrellm, short desc
+#: files/debtags/vocabulary
+msgid "GKrellM Monitors"
+msgstr ""
+
+#. Tag: suite::gnome, short desc
+#: files/debtags/vocabulary
+msgid "GNOME"
+msgstr ""
+
+#. Tag: suite::gnu, short desc
+#: files/debtags/vocabulary
+msgid "GNU"
+msgstr ""
+
+#. Tag: suite::gnu, long desc
+#: files/debtags/vocabulary
+msgid " Gnu's Not Unix. The package is part of the official GNU project"
+msgstr ""
+
+#. Tag: suite::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUStep"
+msgstr ""
+
+#. Tag: suite::gnustep, long desc
+#: files/debtags/vocabulary
+msgid "  GNUStep Desktop and WindowMaker"
+msgstr ""
+
+#. Tag: suite::gpe, short desc
+#: files/debtags/vocabulary
+msgid "GPE"
+msgstr ""
+
+#. Tag: suite::gpe, long desc
+#: files/debtags/vocabulary
+msgid "  GPE Palmtop Environment"
+msgstr ""
+
+#. Tag: suite::kde, short desc
+#: files/debtags/vocabulary
+msgid "KDE"
+msgstr ""
+
+#. Tag: suite::mozilla, short desc
+#: files/debtags/vocabulary
+msgid "Mozilla"
+msgstr ""
+
+#. Tag: suite::mozilla, long desc
+#: files/debtags/vocabulary
+msgid " Mozilla Browser and extensions"
+msgstr ""
+
+#. Tag: suite::netscape, short desc
+#: files/debtags/vocabulary
+msgid "Netscape Navigator"
+msgstr ""
+
+#. Tag: suite::netscape, long desc
+#: files/debtags/vocabulary
+msgid " The pre-6.0 versions of netscape browser"
+msgstr ""
+
+#. Tag: suite::openoffice, short desc
+#: files/debtags/vocabulary
+msgid "OpenOffice.org"
+msgstr ""
+
+#. Tag: suite::opie, short desc
+#: files/debtags/vocabulary
+msgid "Open Palmtop (OPIE)"
+msgstr ""
+
+#. Tag: suite::roxen, short desc
+#: files/debtags/vocabulary
+msgid "Roxen"
+msgstr ""
+
+#. Tag: suite::samba, short desc
+#: files/debtags/vocabulary
+msgid "SAMBA"
+msgstr ""
+
+#. Tag: suite::webmin, short desc
+#: files/debtags/vocabulary
+msgid "Webmin"
+msgstr ""
+
+#. Tag: suite::xfce, short desc
+#: files/debtags/vocabulary
+msgid "XFce"
+msgstr ""
+
+#. Tag: suite::xfce, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight desktop environment for X11."
+msgstr ""
+
+#. Tag: suite::xmms, short desc
+#: files/debtags/vocabulary
+msgid "XMMS"
+msgstr ""
+
+#. Tag: suite::xmms2, short desc
+#: files/debtags/vocabulary
+msgid "XMMS 2"
+msgstr ""
+
+#. Tag: suite::zope, short desc
+#: files/debtags/vocabulary
+msgid "ZOPE"
+msgstr ""
+
+#. Tag: suite::zope, long desc
+#: files/debtags/vocabulary
+msgid " The zope (web) publishing platform."
+msgstr ""
+
+#. Facet: protocol, short desc
+#: files/debtags/vocabulary
+msgid "Network Protocol"
+msgstr ""
+
+#. Tag: protocol::db:mysql, short desc
+#: files/debtags/vocabulary
+msgid "MySQL"
+msgstr ""
+
+#. Tag: protocol::db:mysql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing MySQL database server."
+msgstr ""
+
+#. Tag: protocol::db:psql, short desc
+#: files/debtags/vocabulary
+msgid "PostgreSQL"
+msgstr ""
+
+#. Tag: protocol::db:psql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing PostgreSQL database server."
+msgstr ""
+
+#. Tag: protocol::ldap, short desc
+#: files/debtags/vocabulary
+msgid "LDAP"
+msgstr ""
+
+#. Tag: protocol::ldap, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Access Protocol"
+msgstr ""
+
+#. Tag: protocol::atm, short desc
+#: files/debtags/vocabulary
+msgid "ATM"
+msgstr ""
+
+#. Tag: protocol::atm, long desc
+#: files/debtags/vocabulary
+msgid " Asynchronous Transfer Mode, a high speed protocol for communication between\n computers in a network.\n .\n While ATM is used to implement *DSL networks, it has never gained widespread\n use as a technology for building local area networks (LANs), for which it was\n originally intended.\n .\n Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode"
+msgstr ""
+
+#. Tag: protocol::bittorrent, short desc
+#: files/debtags/vocabulary
+msgid "BitTorrent"
+msgstr ""
+
+#. Tag: protocol::bittorrent, long desc
+#: files/debtags/vocabulary
+msgid " BitTorrent is a protocol for peer-to-peer based file distribution over\n network.\n .\n Although the actual data transport happens between BitTorrent clients, one\n central node, the so-called trackers, is needed to keep a list of all clients\n that download or provide the same file.\n .\n Link: http://www.bittorrent.com/\n Link: http://en.wikipedia.org/wiki/BitTorrent"
+msgstr ""
+
+#. Tag: protocol::corba, short desc
+#: files/debtags/vocabulary
+msgid "CORBA"
+msgstr ""
+
+#. Tag: protocol::corba, long desc
+#: files/debtags/vocabulary
+msgid " Common Object Request Broker Architecture, a standard for interoperability\n between programs written in different languages and running on different \n hardware platforms. CORBA includes a client-server network protocol for\n distributed computing.\n .\n With this network protocol, CORBA clients on different computers and written\n in different languages can exchange objects over a CORBA server such as orbit2\n or omniORB.\n .\n Link: http://www.corba.org/"
+msgstr ""
+
+#. Tag: protocol::dhcp, short desc
+#: files/debtags/vocabulary
+msgid "DHCP"
+msgstr ""
+
+#. Tag: protocol::dhcp, long desc
+#: files/debtags/vocabulary
+msgid " Dynamic Host Configuration Protocol, a client-server network protocol for\n automatic assignment of dynamic IP addresses to computers in a TCP/IP network,\n rather than giving each computer a static IP address.\n .\n Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol\n Link: http://www.ietf.org/rfc/rfc2131.txt"
+msgstr ""
+
+#. Tag: protocol::dns, short desc
+#: files/debtags/vocabulary
+msgid "DNS"
+msgstr ""
+
+#. Tag: protocol::dns, long desc
+#: files/debtags/vocabulary
+msgid " Domain Name System, a protocol to request information associated with domain\n names (like \"www.debian.org\"), most prominently the IP address. The protocol\n is used in communication with a DNS server (like BIND).\n .\n For the Internet, there are 13 root DNS servers around the world that keep the\n addresses of all registered domain names and provide this information to the\n DNS servers of Internet service providers.\n .\n Link: http://en.wikipedia.org/wiki/Domain_Name_System"
+msgstr ""
+
+#. Tag: protocol::ethernet, short desc
+#: files/debtags/vocabulary
+msgid "Ethernet"
+msgstr ""
+
+#. Tag: protocol::ethernet, long desc
+#: files/debtags/vocabulary
+msgid " Ethernet is the most popular networking technology for creating local area\n networks (LANs).\n .\n The computers in an Ethernet network communicate over twisted-pair or fibre\n cables and are identified by their MAC address. Several different types of\n Ethernet exist, distinguishable by the maximum connection speed. The most\n widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).\n .\n Link: http://en.wikipedia.org/wiki/Ethernet"
+msgstr ""
+
+#. Tag: protocol::fidonet, short desc
+#: files/debtags/vocabulary
+msgid "FidoNet"
+msgstr ""
+
+#. Tag: protocol::fidonet, long desc
+#: files/debtags/vocabulary
+msgid " FidoNet is a mailbox system that enjoyed large popularity in the 1980s and\n 1990s.\n .\n The communication between the clients and FidoNet servers  was usually carried\n out over the telephone network using modems and could be used for transferring\n messages (comparable to email) and files.\n .\n Link: http://www.fidonet.org/\n Link: http://en.wikipedia.org/wiki/Fidonet"
+msgstr ""
+
+#. Tag: protocol::finger, short desc
+#: files/debtags/vocabulary
+msgid "Finger"
+msgstr ""
+
+#. Tag: protocol::finger, long desc
+#: files/debtags/vocabulary
+msgid " The Name/Finger protocol is a simple network protocol to provide extensive, \n public information about users of a computer, such as email address, telephone\n numbers, full names etc.\n .\n Due to privacy concerns, the Finger protocol is not widely used any more,\n while it widespread distribution in the early 1990s.\n .\n Link: http://en.wikipedia.org/wiki/Finger_protocol\n Link: http://www.ietf.org/rfc/rfc1288.txt"
+msgstr ""
+
+#. Tag: protocol::ftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::ftp, short desc
+#: files/debtags/vocabulary
+msgid "FTP"
+msgstr ""
+
+#. Tag: protocol::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol, a protocol for exchanging and manipulation files over\n networks and extensively used on the Internet.\n .\n The communication between FTP servers and clients uses two channels, the\n control and the data channel. While FTP was originally used with\n authentication only, most FTP servers on the Internet provide anonymous,\n passwordless access. Since FTP does not support encryption, sensitive data\n transfer is carried out over SFTP today.\n .\n Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc0959.txt"
+msgstr ""
+
+#. Tag: protocol::http, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::http, short desc
+#: files/debtags/vocabulary
+msgid "HTTP"
+msgstr ""
+
+#. Tag: protocol::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol, one of the most important protocols for the\n World Wide Web.\n .\n It controls the data transfer between HTTP servers such as Apache and HTTP\n clients, which are web browsers in most cases. HTTP resources are requested\n via URLs (Universal Resource Locators). While HTTP normally only supports file\n transfer from server to client, the protocol supports sending information to\n HTTP servers, most prominently used in HTML forms.\n .\n Link: http://en.wikipedia.org/wiki/Http\n Link: http://www.ietf.org/rfc/rfc2616.txt"
+msgstr ""
+
+#. Tag: protocol::ident, short desc
+#: files/debtags/vocabulary
+msgid "Ident"
+msgstr ""
+
+#. Tag: protocol::ident, long desc
+#: files/debtags/vocabulary
+msgid " The Ident Internet protocol helps to identify or authenticate the user of\n a network connection.\n .\n Link: http://en.wikipedia.org/wiki/Ident"
+msgstr ""
+
+#. Tag: protocol::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP"
+msgstr ""
+
+#. Tag: protocol::imap, long desc
+#: files/debtags/vocabulary
+msgid " Internet Message Access Protocol, a protocol used for accessing email on a\n server from a email client such as KMail or Evolution.\n .\n When using IMAP, emails stay on the server and can be categorized, edited,\n deleted etc. there, instead of having the user download all messages onto\n the local computer, as POP3 does.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol"
+msgstr ""
+
+#. Tag: protocol::ip, short desc
+#: files/debtags/vocabulary
+msgid "IP"
+msgstr ""
+
+#. Tag: protocol::ip, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v4), a core protocol of the Internet protocol suite and\n the very basis of the Internet.\n .\n Every computer that is connected to the Internet has an IP address (a 4-byte\n number, typically represented in dotted notation like 192.25.206.10).\n Internet IP addresses are given out by the Internet Corporation for Assigned\n Names and Numbers (ICANN). Normally, computers on the Internet are not\n accessed by their IP address, but by their domain name.\n .\n Link: http://en.wikipedia.org/wiki/IPv4\n Link: http://www.ietf.org/rfc/rfc791.txt"
+msgstr ""
+
+#. Tag: protocol::ipv6, short desc
+#: files/debtags/vocabulary
+msgid "IPv6"
+msgstr ""
+
+#. Tag: protocol::ipv6, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v6), the next-generation Internet protocol, which overcomes\n the restrictions of IP (v4), like shortage of IP addresses, and is supposed to\n form the new basis of the Internet in the future, replacing IP (v4).\n .\n Many programs already support IPv6 along with IP (v4), although it is still\n seldomly used.\n .\n Link: http://en.wikipedia.org/wiki/IPv6\n Link: http://www.ipv6.org/"
+msgstr ""
+
+#. Tag: protocol::irc, short desc
+#: files/debtags/vocabulary
+msgid "IRC"
+msgstr ""
+
+#. Tag: protocol::irc, long desc
+#: files/debtags/vocabulary
+msgid " Internet Relay Chat, a protocol for text chatting over network, extensively\n used on the Internet. It supports chat rooms, so-called channels, as well as\n private, one-to-one communication.\n .\n IRC servers are organized in networks, so that a client can connect to a\n geographically near IRC server, that itself is connected to other IRC servers\n spread over the whole world.\n .\n The official Debian channel is #debian on the freenode network.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat"
+msgstr ""
+
+#. Tag: protocol::jabber, short desc
+#: files/debtags/vocabulary
+msgid "Jabber"
+msgstr ""
+
+#. Tag: protocol::jabber, long desc
+#: files/debtags/vocabulary
+msgid " The Jabber protocol is an instant messaging protocol on the basis of the XMPP\n protocol. Additionally to private one-to-one communication, it also supports\n chat rooms, and it is used in the Jabber IM network as well as for the IM\n capabilities for the new GoogleTalk network.\n .\n In contrast to other IM networks like MSN, ICQ or AIM, the Jabber servers are\n free software and can be used to create a private chat platform or have an own\n server to connect to the Jabber network.\n .\n Link: http://www.jabber.org\n Link: http://en.wikipedia.org/wiki/Jabber"
+msgstr ""
+
+#. Tag: protocol::kerberos, short desc
+#: files/debtags/vocabulary
+msgid "Kerberos"
+msgstr ""
+
+#. Tag: protocol::kerberos, long desc
+#: files/debtags/vocabulary
+msgid " Kerberos is a authentication protocol for computer networks for secure\n authentication over an otherwise insecure network, using symmetric\n cryptography and a third party service provider, that is trusted both by\n client and server.\n . \n The authentication mechanism provided by Kerberos is mutual, so that not only\n a server can be sure of a client's identity, but also a client can be sure a\n connection to a server is not intercepted.\n .\n Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29\n Link: http://http://www.ietf.org/rfc/rfc4120.txt"
+msgstr ""
+
+#. Tag: protocol::lpr, short desc
+#: files/debtags/vocabulary
+msgid "LPR"
+msgstr ""
+
+#. Tag: protocol::lpr, long desc
+#: files/debtags/vocabulary
+msgid " The Line Printer Daemon protocol, a protocol used for accessing or providing\n network print services in a Unix network, but also used for local setups.\n .\n CUPS, the Common Unix Printing System, was developed to replace the old\n LPD/LPR system, while maintaining backwards compatibility.\n .\n Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol\n Link: http://www.ietf.org/rfc/rfc1179.txt"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, short desc
+#: files/debtags/vocabulary
+msgid "MSN Messenger"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The MSN messenger protocol is the protocol that is used by Microsoft's own\n instant messaging network.\n .\n The protocol is a proprietary protocol. Although Microsoft once send a draft\n of the protocol specification to the IETF, it has since dated out and clients\n that connect to the MSN Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://www.hypothetic.org/docs/msn/"
+msgstr ""
+
+#. Tag: protocol::nfs, short desc
+#: files/debtags/vocabulary
+msgid "NFS"
+msgstr ""
+
+#. Tag: protocol::nfs, long desc
+#: files/debtags/vocabulary
+msgid " Network File System, a protocol originally developed by Sun Microsystems in\n 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a\n distributed file system, allows a user on a client computer to access files\n over a network as easily as if attached to its local disks.\n .\n Link: http://en.wikipedia.org/wiki/Network_File_System"
+msgstr ""
+
+#. Tag: protocol::nntp, short desc
+#: files/debtags/vocabulary
+msgid "NNTP"
+msgstr ""
+
+#. Tag: protocol::nntp, long desc
+#: files/debtags/vocabulary
+msgid " Network News Transfer Protocol, a protocol for reading in writing Usenet\n articles (a Usenet article is comparable with an email), but also used\n among NNTP servers to transfer articles. \n .\n Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc977.txt"
+msgstr ""
+
+#. Tag: protocol::oscar, short desc
+#: files/debtags/vocabulary
+msgid "OSCAR (AIM/ICQ)"
+msgstr ""
+
+#. Tag: protocol::oscar, long desc
+#: files/debtags/vocabulary
+msgid " Open System for CommunicAtion in Realtime, an instant messaging used by\n AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9\n of the ICQ IM network are also instances of the OSCAR protocol.\n .\n OSCAR is a binary proprietary protocol. Since there is no official documentation,\n clients that connect to AIM or ICQ have to rely on information that has\n been reverse-engineered.\n .\n Link: http://en.wikipedia.org/wiki/OSCAR_protocol\n Link: http://www.oilcan.org/oscar/"
+msgstr ""
+
+#. Tag: protocol::pop3, short desc
+#: files/debtags/vocabulary
+msgid "POP3"
+msgstr ""
+
+#. Tag: protocol::pop3, long desc
+#: files/debtags/vocabulary
+msgid " Post Office Protocol, a protocol to download emails from a mail server,\n designed for users that have only intermittent connection to the Internet.\n .\n In contrast to IMAP server, messages that are downloaded via POP3 are not\n supposed to stay on the server afterwards, since POP3 does not support\n multiple mailboxes for one account on the server.\n .\n Link: http://en.wikipedia.org/wiki/Post_Office_Protocol\n Link: http://www.ietf.org/rfc/rfc1939.txt"
+msgstr ""
+
+#. Tag: protocol::radius, short desc
+#: files/debtags/vocabulary
+msgid "RADIUS"
+msgstr ""
+
+#. Tag: protocol::radius, long desc
+#: files/debtags/vocabulary
+msgid " Remote Authentication Dial In User Service, a protocol for authentication,\n authorization and accounting of network access, mostly used by Internet\n service providers handle handle dial-up Internet connections.\n .\n Link: http://en.wikipedia.org/wiki/RADIUS\n Link: http://www.ietf.org/rfc/rfc2865.txt"
+msgstr ""
+
+#. Tag: protocol::sftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::sftp, short desc
+#: files/debtags/vocabulary
+msgid "SFTP"
+msgstr ""
+
+#. Tag: protocol::sftp, long desc
+#: files/debtags/vocabulary
+msgid " SSH File Transfer Protocol, a protocol for secure, encrypting file exchange\n and manipulation over insecure networks, using the SSH protocol.\n .\n SFTP provides a complete set of file system operations, different from its\n predecessor SCP, which only allowed file transfer. It is not, other than the\n name might suggest, the a version of the FTP protocol executed through an\n SSH channel.\n .\n Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol"
+msgstr ""
+
+#. Tag: protocol::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB"
+msgstr ""
+
+#. Tag: protocol::smb, long desc
+#: files/debtags/vocabulary
+msgid " Server Message Block, a protocol for providing file access and printer sharing\n over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File\n System) is a synonym for SMB\n .\n Although SMB is a proprietary protocol, the Samba project reverse-engineered\n the protocol and developed both client and server programs for better\n interoperability in mixed Unix/Windows networks.\n .\n Link: http://en.wikipedia.org/wiki/Server_Message_Block\n Link: http://www.samba.org/"
+msgstr ""
+
+#. Tag: protocol::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP"
+msgstr ""
+
+#. Tag: protocol::smtp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Mail Transfer Protocol, a protocol or for transmitting emails over the\n Internet.\n .\n Every SMTP server utilizes SMTP to hand on emails to the next mail server\n until an email arrives at its destination, from where it is usually retrieved\n via POP3 or IMAP \n .\n Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc2821.txt"
+msgstr ""
+
+#. Tag: protocol::snmp, short desc
+#: files/debtags/vocabulary
+msgid "SNMP"
+msgstr ""
+
+#. Tag: protocol::snmp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Network Management Protocol, a member of the Internet protocol suite\n and used for monitoring or configuring network devices.\n .\n SNMP servers normally run on network equipment like routers.\n .\n Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol\n Link: http://www.ietf.org/rfc/rfc3411.txt"
+msgstr ""
+
+#. Tag: protocol::soap, short desc
+#: files/debtags/vocabulary
+msgid "SOAP"
+msgstr ""
+
+#. Tag: protocol::soap, long desc
+#: files/debtags/vocabulary
+msgid " Simple Object Access Protocol, a protocol for exchanging messages between\n different computers in a network. The messages are encoded in XML and usually\n sent over HTTP.\n .\n SOAP is used to provide APIs to web services, such as the Google API to\n utilize Google's searching engine from client applications.\n .\n Link: http://en.wikipedia.org/wiki/SOAP\n Link: http://www.w3.org/TR/soap/"
+msgstr ""
+
+#. Tag: protocol::ssh, short desc
+#: files/debtags/vocabulary
+msgid "SSH"
+msgstr ""
+
+#. Tag: protocol::ssh, long desc
+#: files/debtags/vocabulary
+msgid " Secure Shell, a protocol for secure, encrypted network connections. SSH can\n be used to execute programs on a remote host with an SSH server over secure\n otherwise insecure protocols through an SSH channel. The main use is, as the\n name suggest, to provide encrypted login and shell access on remote servers.\n .\n SSH authentication can be done with password or, which is the preferred\n mechanism, via asymmetric public/private key cryptography.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Shell"
+msgstr ""
+
+#. Tag: protocol::ssl, short desc
+#: files/debtags/vocabulary
+msgid "SSL/TLS"
+msgstr ""
+
+#. Tag: protocol::ssl, long desc
+#: files/debtags/vocabulary
+msgid " Secure Socket Layer/Transport Layer Security, a protocol that provides \n secure encrypted communication on the Internet. It is used to authenticate\n the identity of a service provider (such as a Internet banking server) and\n to secure the communications channel.\n .\n Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be\n transmitted over SSL/TLS to secure the transmitted data. In this case, an\n \"S\" is added to the protocol name, like HTTPS, FTPS etc.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer"
+msgstr ""
+
+#. Tag: protocol::tcp, short desc
+#: files/debtags/vocabulary
+msgid "TCP"
+msgstr ""
+
+#. Tag: protocol::tcp, long desc
+#: files/debtags/vocabulary
+msgid " Transport Control Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n TCP is used as the transport protocol for many services on the Internet,\n such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.\n .\n Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol\n Link: http://www.ietf.org/rfc/rfc793.txt"
+msgstr ""
+
+#. Tag: protocol::udp, short desc
+#: files/debtags/vocabulary
+msgid "UDP"
+msgstr ""
+
+#. Tag: protocol::udp, long desc
+#: files/debtags/vocabulary
+msgid " User Datagram Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n UDP is not as reliable as TCP, but faster and thus better fit for\n time-sensitive purposes, like the DNS protocol and VoIP.\n .\n Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol\n Link: http://www.ietf.org/rfc/rfc768.txt"
+msgstr ""
+
+#. Tag: protocol::voip, short desc
+#: files/debtags/vocabulary
+msgid "VoIP"
+msgstr ""
+
+#. Tag: protocol::voip, long desc
+#: files/debtags/vocabulary
+msgid " Voice over IP, a general term for protocols that route voice conversations\n over the Internet.\n .\n Popular VoIP protocols are SIP, H.323 and IAX.\n .\n Link: http://en.wikipedia.org/wiki/Voice_over_IP"
+msgstr ""
+
+#. Tag: protocol::webdav, short desc
+#: files/debtags/vocabulary
+msgid "WebDAV"
+msgstr ""
+
+#. Tag: protocol::webdav, long desc
+#: files/debtags/vocabulary
+msgid " Web-based Distributed Authoring and Versioning, a extension of the HTTP\n protocol to support creating and changing documents on an HTTP server. Thus,\n the client can access the documents on an HTTP server as it would those on the\n local file system.\n .\n Link: http://en.wikipedia.org/wiki/WebDAV\n Link: http://www.ietf.org/rfc/rfc2518.txt"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, short desc
+#: files/debtags/vocabulary
+msgid "XML-RPC"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, long desc
+#: files/debtags/vocabulary
+msgid " XML Remote Procedure Call, a simple protocol for remote procedure calls that\n uses XML for encoding and the HTTP protocol for transport.\n .\n SOAP, which is a considerably more sophisticated protocol, was developed from\n XML-RPC.\n .\n Link: http://en.wikipedia.org/wiki/XML-RPC\n Link: http://www.xmlrpc.com/"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, short desc
+#: files/debtags/vocabulary
+msgid "Yahoo! Messenger"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging\n network.\n .\n This a proprietary binary protocol without any official documentation. Clients\n that connect to the Yahoo! Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger\n Link: http://www.venkydude.com/articles/yahoo.htm"
+msgstr ""
+
+#. Facet: filetransfer, short desc
+#: files/debtags/vocabulary
+msgid "File Transfer"
+msgstr ""
+
+#. Tag: filetransfer::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::sftp, long desc
+#: files/debtags/vocabulary
+msgid " Secure File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB and CIFS"
+msgstr ""
+
+#. Tag: filetransfer::smb, long desc
+#: files/debtags/vocabulary
+msgid " Windows file and printer sharing (SMB)"
+msgstr ""
+
+#. Tag: filetransfer::dcc, short desc
+#: files/debtags/vocabulary
+msgid "IRC DCC"
+msgstr ""
+
+#. Tag: filetransfer::dcc, long desc
+#: files/debtags/vocabulary
+msgid " Direct Client to Client protocol used by Internet Relay Chat clients."
+msgstr ""
+
+#. Facet: uitoolkit, short desc
+#: files/debtags/vocabulary
+msgid "Interface Toolkit"
+msgstr ""
+
+#. Tag: uitoolkit::athena, short desc
+#: files/debtags/vocabulary
+msgid "Athena Widgets"
+msgstr ""
+
+#. Tag: uitoolkit::fltk, short desc
+#: files/debtags/vocabulary
+msgid "FLTK"
+msgstr ""
+
+#. Tag: uitoolkit::glut, short desc
+#: files/debtags/vocabulary
+msgid "GLUT"
+msgstr ""
+
+#. Tag: uitoolkit::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUstep"
+msgstr ""
+
+#. Tag: uitoolkit::gtk, short desc
+#: files/debtags/vocabulary
+msgid "GTK"
+msgstr ""
+
+#. Tag: uitoolkit::motif, short desc
+#: files/debtags/vocabulary
+msgid "Lesstif/Motif"
+msgstr ""
+
+#. Tag: uitoolkit::ncurses, short desc
+#: files/debtags/vocabulary
+msgid "Ncurses TUI"
+msgstr ""
+
+#. Tag: uitoolkit::qt, short desc
+#: files/debtags/vocabulary
+msgid "QT"
+msgstr ""
+
+#. Tag: uitoolkit::sdl, short desc
+#: files/debtags/vocabulary
+msgid "SDL"
+msgstr ""
+
+#. Tag: uitoolkit::tk, short desc
+#: files/debtags/vocabulary
+msgid "TK"
+msgstr ""
+
+#. Tag: uitoolkit::wxwidgets, short desc
+#: files/debtags/vocabulary
+msgid "wxWidgets"
+msgstr ""
+
+#. Tag: uitoolkit::xlib, short desc
+#: files/debtags/vocabulary
+msgid "X library"
+msgstr ""
+
+#. Facet: use, short desc
+#: files/debtags/vocabulary
+msgid "Purpose"
+msgstr ""
+
+#. Tag: use::analysing, short desc
+#: files/debtags/vocabulary
+msgid "Analysing"
+msgstr ""
+
+#. Tag: use::analysing, long desc
+#: files/debtags/vocabulary
+msgid " Software for turning data into knowledge."
+msgstr ""
+
+#. Tag: use::browsing, short desc
+#: files/debtags/vocabulary
+msgid "Browsing"
+msgstr ""
+
+#. Tag: use::chatting, short desc
+#: files/debtags/vocabulary
+msgid "Chatting"
+msgstr ""
+
+#. Tag: use::checking, short desc
+#: files/debtags/vocabulary
+msgid "Checking"
+msgstr ""
+
+#. Tag: use::checking, long desc
+#: files/debtags/vocabulary
+msgid " All sorts of checking, checking a filesystem for validity, checking\n a document for incorrectly spelled words, checking a network for \n routing problems. Verifying."
+msgstr ""
+
+#. Tag: use::comparing, short desc
+#: files/debtags/vocabulary
+msgid "Comparing"
+msgstr ""
+
+#. Tag: use::comparing, long desc
+#: files/debtags/vocabulary
+msgid " To find what relates or differs in two or more objects."
+msgstr ""
+
+#. Tag: use::compressing, short desc
+#: files/debtags/vocabulary
+msgid "Compressing"
+msgstr ""
+
+#. Tag: use::configuring, short desc
+#: files/debtags/vocabulary
+#. Tag: network::configuration, short desc
+#: files/debtags/vocabulary
+msgid "Configuration"
+msgstr ""
+
+#. Tag: use::converting, short desc
+#: files/debtags/vocabulary
+msgid "Data Conversion"
+msgstr ""
+
+#. Tag: use::dialing, short desc
+#: files/debtags/vocabulary
+msgid "Dialup Access"
+msgstr ""
+
+#. Tag: use::downloading, short desc
+#: files/debtags/vocabulary
+msgid "Downloading"
+msgstr ""
+
+#. Tag: use::driver, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Driver"
+msgstr ""
+
+#. Tag: use::editing, short desc
+#: files/debtags/vocabulary
+msgid "Editing"
+msgstr ""
+
+#. Tag: use::entertaining, short desc
+#: files/debtags/vocabulary
+msgid "Entertaining"
+msgstr ""
+
+#. Tag: use::filtering, short desc
+#: files/debtags/vocabulary
+msgid "Filtering"
+msgstr ""
+
+#. Tag: use::gameplaying, short desc
+#: files/debtags/vocabulary
+msgid "Game Playing"
+msgstr ""
+
+#. Tag: use::learning, short desc
+#: files/debtags/vocabulary
+msgid "Learning"
+msgstr ""
+
+#. Tag: use::organizing, short desc
+#: files/debtags/vocabulary
+msgid "Data Organisation"
+msgstr ""
+
+#. Tag: use::playing, short desc
+#: files/debtags/vocabulary
+msgid "Playing Media"
+msgstr ""
+
+#. Tag: use::printing, short desc
+#: files/debtags/vocabulary
+msgid "Printing"
+msgstr ""
+
+#. Tag: use::proxying, short desc
+#: files/debtags/vocabulary
+msgid "Proxying"
+msgstr ""
+
+#. Tag: use::routing, short desc
+#: files/debtags/vocabulary
+#. Tag: network::routing, short desc
+#: files/debtags/vocabulary
+msgid "Routing"
+msgstr ""
+
+#. Tag: use::searching, short desc
+#: files/debtags/vocabulary
+msgid "Searching"
+msgstr ""
+
+#. Tag: use::scanning, short desc
+#: files/debtags/vocabulary
+#. Tag: network::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Scanning"
+msgstr ""
+
+#. Tag: use::storing, short desc
+#: files/debtags/vocabulary
+msgid "Storing"
+msgstr ""
+
+#. Tag: use::synchronizing, short desc
+#: files/debtags/vocabulary
+msgid "Synchronisation"
+msgstr ""
+
+#. Tag: use::timekeeping, short desc
+#: files/debtags/vocabulary
+msgid "Time and Clock"
+msgstr ""
+
+#. Tag: use::transmission, short desc
+#: files/debtags/vocabulary
+msgid "Transmission"
+msgstr ""
+
+#. Tag: use::typesetting, short desc
+#: files/debtags/vocabulary
+msgid "Typesetting"
+msgstr ""
+
+#. Tag: use::viewing, short desc
+#: files/debtags/vocabulary
+msgid "Data Visualization"
+msgstr ""
+
+#. Tag: use::text-formatting, short desc
+#: files/debtags/vocabulary
+msgid "Text Formatting"
+msgstr ""
+
+#. Tag: web::appserver, short desc
+#: files/debtags/vocabulary
+msgid "Application Server"
+msgstr ""
+
+#. Tag: web::blog, short desc
+#: files/debtags/vocabulary
+msgid "Blog Software"
+msgstr ""
+
+#. Tag: web::browser, short desc
+#: files/debtags/vocabulary
+msgid "Browser"
+msgstr ""
+
+#. Tag: web::cms, short desc
+#: files/debtags/vocabulary
+msgid "Content Management (CMS)"
+msgstr ""
+
+#. Tag: web::cgi, short desc
+#: files/debtags/vocabulary
+msgid "CGI"
+msgstr ""
+
+#. Tag: web::commerce, short desc
+#: files/debtags/vocabulary
+msgid "E-commerce"
+msgstr ""
+
+#. Tag: web::forum, short desc
+#: files/debtags/vocabulary
+msgid "Forum"
+msgstr ""
+
+#. Tag: web::portal, short desc
+#: files/debtags/vocabulary
+msgid "Portal"
+msgstr ""
+
+#. Tag: web::scripting, short desc
+#: files/debtags/vocabulary
+msgid "Scripting"
+msgstr ""
+
+#. Tag: web::search-engine, short desc
+#: files/debtags/vocabulary
+msgid "Search engine"
+msgstr ""
+
+#. Tag: web::server, short desc
+#: files/debtags/vocabulary
+#. Tag: network::server, short desc
+#: files/debtags/vocabulary
+msgid "Server"
+msgstr ""
+
+#. Tag: web::wiki, short desc
+#: files/debtags/vocabulary
+msgid "Wiki Software"
+msgstr ""
+
+#. Tag: web::wiki, long desc
+#: files/debtags/vocabulary
+msgid " Wiki software, servers, utilities and plug-ins."
+msgstr ""
+
+#. Facet: network, short desc
+#: files/debtags/vocabulary
+msgid "Networking"
+msgstr ""
+
+#. Tag: network::client, short desc
+#: files/debtags/vocabulary
+msgid "Client"
+msgstr ""
+
+#. Tag: network::hiavailability, short desc
+#: files/debtags/vocabulary
+msgid "High Availability"
+msgstr ""
+
+#. Tag: network::load-balancing, short desc
+#: files/debtags/vocabulary
+msgid "Load Balancing"
+msgstr ""
+
+#. Tag: network::service, short desc
+#: files/debtags/vocabulary
+msgid "Service"
+msgstr ""
+
+#. Tag: network::vpn, short desc
+#: files/debtags/vocabulary
+msgid "VPN or Tunneling"
+msgstr ""
+
+#. Facet: x11, short desc
+#: files/debtags/vocabulary
+msgid "X Windowing System"
+msgstr ""
+
+#. Tag: x11::applet, short desc
+#: files/debtags/vocabulary
+msgid "Applet"
+msgstr ""
+
+#. Tag: x11::display-manager, short desc
+#: files/debtags/vocabulary
+msgid "Login Manager"
+msgstr ""
+
+#. Tag: x11::display-manager, long desc
+#: files/debtags/vocabulary
+msgid " Display managers (graphical login screens)"
+msgstr ""
+
+#. Tag: x11::library, short desc
+#: files/debtags/vocabulary
+msgid "Library"
+msgstr ""
+
+#. Tag: x11::screensaver, short desc
+#: files/debtags/vocabulary
+msgid "Screen Saver"
+msgstr ""
+
+#. Tag: x11::terminal, short desc
+#: files/debtags/vocabulary
+msgid "Terminal Emulator"
+msgstr ""
+
+#. Tag: x11::theme, short desc
+#: files/debtags/vocabulary
+msgid "Theme"
+msgstr ""
+
+#. Tag: x11::window-manager, short desc
+#: files/debtags/vocabulary
+msgid "Window Manager"
+msgstr ""
+
+#. Tag: x11::xserver, short desc
+#: files/debtags/vocabulary
+msgid "X Server"
+msgstr ""
+
+#. Tag: bbs, short desc
+#: files/debtags/vocabulary
+msgid "Bulletin Board Systems"
+msgstr ""
+
+#. Tag: data-exchange, short desc
+#: files/debtags/vocabulary
+msgid "Data Exchange"
+msgstr ""
+
+#. Tag: desktop, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Environment"
+msgstr ""
+
+#. Tag: file-formats, short desc
+#: files/debtags/vocabulary
+msgid "File formats"
+msgstr ""
+
+#. Tag: foreignos, short desc
+#: files/debtags/vocabulary
+msgid "Foreign OS and Hardware"
+msgstr ""
+
+#. Tag: net, short desc
+#: files/debtags/vocabulary
+msgid "IP Networking"
+msgstr ""
+
+#. Tag: netcomm, short desc
+#: files/debtags/vocabulary
+msgid "Network and Communication"
+msgstr ""
+
+#. Tag: numerical, short desc
+#: files/debtags/vocabulary
+msgid "Calculation and numerical computation"
+msgstr ""
+
+#. Tag: office, short desc
+#: files/debtags/vocabulary
+msgid "Office software"
+msgstr ""
+
+#. Tag: protocols, short desc
+#: files/debtags/vocabulary
+msgid "IP protocol support"
+msgstr ""
+
+#. Tag: science, short desc
+#: files/debtags/vocabulary
+msgid "Science"
+msgstr ""
+
+#. Tag: system, short desc
+#: files/debtags/vocabulary
+msgid "System software and maintainance"
+msgstr ""
+
+#. Tag: vi, short desc
+#: files/debtags/vocabulary
+msgid "VI editor"
+msgstr ""
+
diff --git a/po/debtags.nl.po b/po/debtags.nl.po
new file mode 100644
index 0000000..c6c289b
--- /dev/null
+++ b/po/debtags.nl.po
@@ -0,0 +1,3544 @@
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Facet: accessibility, short desc
+#: files/debtags/vocabulary
+msgid "Accessibility Support"
+msgstr ""
+
+#. Tag: accessibility::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Systems"
+msgstr ""
+
+#. Tag: accessibility::input, long desc
+#: files/debtags/vocabulary
+msgid " Applies to input methods for non-latin languages as well as special input\n systems."
+msgstr ""
+
+#. Tag: accessibility::ocr, short desc
+#: files/debtags/vocabulary
+msgid "Text Recognition (OCR)"
+msgstr ""
+
+#. Tag: accessibility::ocr, long desc
+#: files/debtags/vocabulary
+msgid " Optical Character Recognition"
+msgstr ""
+
+#. Tag: accessibility::screen-magnify, short desc
+#: files/debtags/vocabulary
+msgid "Screen Magnification"
+msgstr ""
+
+#. Tag: accessibility::screen-reader, short desc
+#: files/debtags/vocabulary
+msgid "Screen Reading"
+msgstr ""
+
+#. Tag: accessibility::speech, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::speech, short desc
+#: files/debtags/vocabulary
+msgid "Speech Synthesis"
+msgstr ""
+
+#. Tag: accessibility::speech-recognition, short desc
+#: files/debtags/vocabulary
+msgid "Speech Recognition"
+msgstr ""
+
+#. Tag: accessibility::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, short desc
+#: files/debtags/vocabulary
+msgid "Need an extra tag"
+msgstr ""
+
+#. Tag: accessibility::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, long desc
+#: files/debtags/vocabulary
+msgid " The package can be categorised along this facet, but the right tag for it is\n missing.\n .\n Mark a package with this tag to signal the vocabulary maintainers of cases\n where the current tag set is lacking."
+msgstr ""
+
+#. Facet: admin, short desc
+#: files/debtags/vocabulary
+msgid "System Administration"
+msgstr ""
+
+#. Tag: admin::accounting, short desc
+#: files/debtags/vocabulary
+msgid "Accounting"
+msgstr ""
+
+#. Tag: admin::automation, short desc
+#: files/debtags/vocabulary
+msgid "Automation and scheduling"
+msgstr ""
+
+#. Tag: admin::automation, long desc
+#: files/debtags/vocabulary
+msgid " Automating the execution of software in the system."
+msgstr ""
+
+#. Tag: admin::backup, short desc
+#: files/debtags/vocabulary
+msgid "Backup and Restoration"
+msgstr ""
+
+#. Tag: admin::benchmarking, short desc
+#: files/debtags/vocabulary
+msgid "Benchmarking"
+msgstr ""
+
+#. Tag: admin::boot, short desc
+#: files/debtags/vocabulary
+msgid "System Boot"
+msgstr ""
+
+#. Tag: admin::cluster, short desc
+#: files/debtags/vocabulary
+msgid "Clustering"
+msgstr ""
+
+#. Tag: admin::configuring, short desc
+#: files/debtags/vocabulary
+msgid "Configuration Tool"
+msgstr ""
+
+#. Tag: admin::file-distribution, short desc
+#: files/debtags/vocabulary
+msgid "File Distribution"
+msgstr ""
+
+#. Tag: admin::filesystem, short desc
+#: files/debtags/vocabulary
+msgid "Filesystem Tool"
+msgstr ""
+
+#. Tag: admin::filesystem, long desc
+#: files/debtags/vocabulary
+msgid " Creation, maintenance, and use of filesystems"
+msgstr ""
+
+#. Tag: admin::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics and Recovery"
+msgstr ""
+
+#. Tag: admin::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Recovering lost or damaged data.\n This tag will be split into admin::recovery\n and security::forensics."
+msgstr ""
+
+#. Tag: admin::hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Support"
+msgstr ""
+
+#. Tag: admin::install, short desc
+#: files/debtags/vocabulary
+msgid "System installation"
+msgstr ""
+
+#. Tag: admin::issuetracker, short desc
+#: files/debtags/vocabulary
+msgid "Issue tracker"
+msgstr ""
+
+#. Tag: admin::kernel, short desc
+#: files/debtags/vocabulary
+msgid "Kernel or Modules"
+msgstr ""
+
+#. Tag: admin::logging, short desc
+#: files/debtags/vocabulary
+msgid "Logging"
+msgstr ""
+
+#. Tag: admin::login, short desc
+#: files/debtags/vocabulary
+#. Tag: use::login, short desc
+#: files/debtags/vocabulary
+msgid "Login"
+msgstr ""
+
+#. Tag: admin::login, long desc
+#: files/debtags/vocabulary
+msgid " Logging into the system"
+msgstr ""
+
+#. Tag: admin::monitoring, short desc
+#: files/debtags/vocabulary
+#. Tag: use::monitor, short desc
+#: files/debtags/vocabulary
+msgid "Monitoring"
+msgstr ""
+
+#. Tag: admin::package-management, short desc
+#: files/debtags/vocabulary
+msgid "Package Management"
+msgstr ""
+
+#. Tag: admin::power-management, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::power, short desc
+#: files/debtags/vocabulary
+msgid "Power Management"
+msgstr ""
+
+#. Tag: admin::recovery, short desc
+#: files/debtags/vocabulary
+msgid "Data recovery"
+msgstr ""
+
+#. Tag: admin::user-management, short desc
+#: files/debtags/vocabulary
+msgid "User Management"
+msgstr ""
+
+#. Tag: admin::virtualization, short desc
+#: files/debtags/vocabulary
+msgid "Virtualization"
+msgstr ""
+
+#. Tag: admin::virtualization, long desc
+#: files/debtags/vocabulary
+msgid " This is not hardware emulation, but rather those facilities that allow to\n create many isolated compartments inside the same system."
+msgstr ""
+
+#. Facet: biology, short desc
+#: files/debtags/vocabulary
+#. Tag: field::biology, short desc
+#: files/debtags/vocabulary
+msgid "Biology"
+msgstr ""
+
+#. Facet: biology, long desc
+#: files/debtags/vocabulary
+msgid " How is the package related to the field of biology."
+msgstr ""
+
+#. Tag: biology::emboss, short desc
+#: files/debtags/vocabulary
+msgid "EMBOSS"
+msgstr ""
+
+#. Tag: biology::emboss, long desc
+#: files/debtags/vocabulary
+msgid " Packages related to the European Molecular Biology Open Software Suite."
+msgstr ""
+
+#. Tag: biology::format:aln, short desc
+#: files/debtags/vocabulary
+msgid "Clustal/ALN"
+msgstr ""
+
+#. Tag: biology::format:aln, long desc
+#: files/debtags/vocabulary
+msgid " Used in multiple alignment of biological sequences."
+msgstr ""
+
+#. Tag: biology::format:nexus, short desc
+#: files/debtags/vocabulary
+msgid "Nexus"
+msgstr ""
+
+#. Tag: biology::format:nexus, long desc
+#: files/debtags/vocabulary
+msgid " Popular format for phylogenetic trees."
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, short desc
+#: files/debtags/vocabulary
+msgid "Nucleic acids"
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of nucleic acids: \n DNA, RNA but also non-natural nucleic acids such as PNA or LNA."
+msgstr ""
+
+#. Tag: biology::peptidic, short desc
+#: files/debtags/vocabulary
+msgid "Proteins"
+msgstr ""
+
+#. Tag: biology::peptidic, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of aminoacids: peptides and proteins."
+msgstr ""
+
+#. Facet: culture, short desc
+#: files/debtags/vocabulary
+msgid "Culture"
+msgstr ""
+
+#. Facet: culture, long desc
+#: files/debtags/vocabulary
+msgid " The culture for which the package provides special support"
+msgstr ""
+
+#. Tag: culture::afrikaans, short desc
+#: files/debtags/vocabulary
+msgid "Afrikaans"
+msgstr ""
+
+#. Tag: culture::arabic, short desc
+#: files/debtags/vocabulary
+msgid "Arabic"
+msgstr ""
+
+#. Tag: culture::basque, short desc
+#: files/debtags/vocabulary
+msgid "Basque"
+msgstr ""
+
+#. Tag: culture::bengali, short desc
+#: files/debtags/vocabulary
+msgid "Bengali"
+msgstr ""
+
+#. Tag: culture::bokmaal, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Bokmaal"
+msgstr ""
+
+#. Tag: culture::bosnian, short desc
+#: files/debtags/vocabulary
+msgid "Bosnian"
+msgstr ""
+
+#. Tag: culture::brazilian, short desc
+#: files/debtags/vocabulary
+msgid "Brazilian"
+msgstr ""
+
+#. Tag: culture::bulgarian, short desc
+#: files/debtags/vocabulary
+msgid "Bulgarian"
+msgstr ""
+
+#. Tag: culture::catalan, short desc
+#: files/debtags/vocabulary
+msgid "Catalan"
+msgstr ""
+
+#. Tag: culture::chinese, short desc
+#: files/debtags/vocabulary
+msgid "Chinese"
+msgstr ""
+
+#. Tag: culture::czech, short desc
+#: files/debtags/vocabulary
+msgid "Czech"
+msgstr ""
+
+#. Tag: culture::croatian, short desc
+#: files/debtags/vocabulary
+msgid "Croatian"
+msgstr ""
+
+#. Tag: culture::danish, short desc
+#: files/debtags/vocabulary
+msgid "Danish"
+msgstr ""
+
+#. Tag: culture::dutch, short desc
+#: files/debtags/vocabulary
+msgid "Dutch"
+msgstr ""
+
+#. Tag: culture::esperanto, short desc
+#: files/debtags/vocabulary
+msgid "Esperanto"
+msgstr ""
+
+#. Tag: culture::estonian, short desc
+#: files/debtags/vocabulary
+msgid "Estonian"
+msgstr ""
+
+#. Tag: culture::faroese, short desc
+#: files/debtags/vocabulary
+msgid "Faroese"
+msgstr ""
+
+#. Tag: culture::farsi, short desc
+#: files/debtags/vocabulary
+msgid "Farsi"
+msgstr ""
+
+#. Tag: culture::finnish, short desc
+#: files/debtags/vocabulary
+msgid "Finnish"
+msgstr ""
+
+#. Tag: culture::french, short desc
+#: files/debtags/vocabulary
+msgid "French"
+msgstr ""
+
+#. Tag: culture::german, short desc
+#: files/debtags/vocabulary
+msgid "German"
+msgstr ""
+
+#. Tag: culture::greek, short desc
+#: files/debtags/vocabulary
+msgid "Greek"
+msgstr ""
+
+#. Tag: culture::hebrew, short desc
+#: files/debtags/vocabulary
+msgid "Hebrew"
+msgstr ""
+
+#. Tag: culture::hindi, short desc
+#: files/debtags/vocabulary
+msgid "Hindi"
+msgstr ""
+
+#. Tag: culture::hungarian, short desc
+#: files/debtags/vocabulary
+msgid "Hungarian"
+msgstr ""
+
+#. Tag: culture::icelandic, short desc
+#: files/debtags/vocabulary
+msgid "Icelandic"
+msgstr ""
+
+#. Tag: culture::irish, short desc
+#: files/debtags/vocabulary
+msgid "Irish (Gaeilge)"
+msgstr ""
+
+#. Tag: culture::italian, short desc
+#: files/debtags/vocabulary
+msgid "Italian"
+msgstr ""
+
+#. Tag: culture::japanese, short desc
+#: files/debtags/vocabulary
+msgid "Japanese"
+msgstr ""
+
+#. Tag: culture::korean, short desc
+#: files/debtags/vocabulary
+msgid "Korean"
+msgstr ""
+
+#. Tag: culture::mongolian, short desc
+#: files/debtags/vocabulary
+msgid "Mongolian"
+msgstr ""
+
+#. Tag: culture::nynorsk, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Nynorsk"
+msgstr ""
+
+#. Tag: culture::norwegian, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian"
+msgstr ""
+
+#. Tag: culture::polish, short desc
+#: files/debtags/vocabulary
+msgid "Polish"
+msgstr ""
+
+#. Tag: culture::portuguese, short desc
+#: files/debtags/vocabulary
+msgid "Portuguese"
+msgstr ""
+
+#. Tag: culture::punjabi, short desc
+#: files/debtags/vocabulary
+msgid "Punjabi"
+msgstr ""
+
+#. Tag: culture::romanian, short desc
+#: files/debtags/vocabulary
+msgid "Romanian"
+msgstr ""
+
+#. Tag: culture::russian, short desc
+#: files/debtags/vocabulary
+msgid "Russian"
+msgstr ""
+
+#. Tag: culture::serbian, short desc
+#: files/debtags/vocabulary
+msgid "Serbian"
+msgstr ""
+
+#. Tag: culture::slovak, short desc
+#: files/debtags/vocabulary
+msgid "Slovak"
+msgstr ""
+
+#. Tag: culture::spanish, short desc
+#: files/debtags/vocabulary
+msgid "Spanish"
+msgstr ""
+
+#. Tag: culture::swedish, short desc
+#: files/debtags/vocabulary
+msgid "Swedish"
+msgstr ""
+
+#. Tag: culture::taiwanese, short desc
+#: files/debtags/vocabulary
+msgid "Taiwanese"
+msgstr ""
+
+#. Tag: culture::tajik, short desc
+#: files/debtags/vocabulary
+msgid "Tajik"
+msgstr ""
+
+#. Tag: culture::tamil, short desc
+#: files/debtags/vocabulary
+msgid "Tamil"
+msgstr ""
+
+#. Tag: culture::thai, short desc
+#: files/debtags/vocabulary
+msgid "Thai"
+msgstr ""
+
+#. Tag: culture::turkish, short desc
+#: files/debtags/vocabulary
+msgid "Turkish"
+msgstr ""
+
+#. Tag: culture::ukrainian, short desc
+#: files/debtags/vocabulary
+msgid "Ukrainian"
+msgstr ""
+
+#. Tag: culture::uzbek, short desc
+#: files/debtags/vocabulary
+msgid "Uzbek"
+msgstr ""
+
+#. Tag: culture::welsh, short desc
+#: files/debtags/vocabulary
+msgid "Welsh"
+msgstr ""
+
+#. Facet: devel, short desc
+#: files/debtags/vocabulary
+msgid "Software Development"
+msgstr ""
+
+#. Tag: devel::bugtracker, short desc
+#: files/debtags/vocabulary
+msgid "Bug Tracking"
+msgstr ""
+
+#. Tag: devel::buildtools, short desc
+#: files/debtags/vocabulary
+msgid "Build Tool"
+msgstr ""
+
+#. Tag: devel::code-generator, short desc
+#: files/debtags/vocabulary
+msgid "Code Generation"
+msgstr ""
+
+#. Tag: devel::code-generator, long desc
+#: files/debtags/vocabulary
+msgid " Parser, lexer and other code generators"
+msgstr ""
+
+#. Tag: devel::compiler, short desc
+#: files/debtags/vocabulary
+msgid "Compiler"
+msgstr ""
+
+#. Tag: devel::debian, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::debian, short desc
+#: files/debtags/vocabulary
+msgid "Debian"
+msgstr ""
+
+#. Tag: devel::debian, long desc
+#: files/debtags/vocabulary
+msgid " Tools, documentation, etc. of use primarily to Debian developers."
+msgstr ""
+
+#. Tag: devel::debugger, short desc
+#: files/debtags/vocabulary
+msgid "Debugging"
+msgstr ""
+
+#. Tag: devel::doc, short desc
+#: files/debtags/vocabulary
+#. Tag: role::documentation, short desc
+#: files/debtags/vocabulary
+msgid "Documentation"
+msgstr ""
+
+#. Tag: devel::docsystem, short desc
+#: files/debtags/vocabulary
+msgid "Literate Programming"
+msgstr ""
+
+#. Tag: devel::docsystem, long desc
+#: files/debtags/vocabulary
+msgid " Tools and auto-documenters"
+msgstr ""
+
+#. Tag: devel::ecma-cli, short desc
+#: files/debtags/vocabulary
+msgid "ECMA CLI"
+msgstr ""
+
+#. Tag: devel::ecma-cli, long desc
+#: files/debtags/vocabulary
+msgid " Tools and libraries for development with implementations of \n the ECMA CLI (Common Language Infrastructure), like Mono\n or DotGNU Portable.NET."
+msgstr ""
+
+#. Tag: devel::editor, short desc
+#: files/debtags/vocabulary
+msgid "Source Editor"
+msgstr ""
+
+#. Tag: devel::examples, short desc
+#: files/debtags/vocabulary
+msgid "Examples"
+msgstr ""
+
+#. Tag: devel::ide, short desc
+#: files/debtags/vocabulary
+msgid "IDE"
+msgstr ""
+
+#. Tag: devel::ide, long desc
+#: files/debtags/vocabulary
+msgid " Integrated Development Environment"
+msgstr ""
+
+#. Tag: devel::interpreter, short desc
+#: files/debtags/vocabulary
+msgid "Interpreter"
+msgstr ""
+
+#. Tag: devel::i18n, short desc
+#: files/debtags/vocabulary
+msgid "Internationalization"
+msgstr ""
+
+#. Tag: devel::lang:ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada Development"
+msgstr ""
+
+#. Tag: devel::lang:c, short desc
+#: files/debtags/vocabulary
+msgid "C Development"
+msgstr ""
+
+#. Tag: devel::lang:c++, short desc
+#: files/debtags/vocabulary
+msgid "C++ Development"
+msgstr ""
+
+#. Tag: devel::lang:c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C# Development"
+msgstr ""
+
+#. Tag: devel::lang:fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran Development"
+msgstr ""
+
+#. Tag: devel::lang:haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell Development"
+msgstr ""
+
+#. Tag: devel::lang:java, short desc
+#: files/debtags/vocabulary
+msgid "Java Development"
+msgstr ""
+
+#. Tag: devel::lang:ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/JavaScript Development"
+msgstr ""
+
+#. Tag: devel::lang:lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp Development"
+msgstr ""
+
+#. Tag: devel::lang:lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua Development"
+msgstr ""
+
+#. Tag: devel::lang:ml, short desc
+#: files/debtags/vocabulary
+msgid "ML Development"
+msgstr ""
+
+#. Tag: devel::lang:objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective-C Development"
+msgstr ""
+
+#. Tag: devel::lang:ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml Development"
+msgstr ""
+
+#. Tag: devel::lang:octave, short desc
+#: files/debtags/vocabulary
+msgid "GNU Octave Development"
+msgstr ""
+
+#. Tag: devel::lang:pascal, short desc
+#: files/debtags/vocabulary
+msgid "Pascal Development"
+msgstr ""
+
+#. Tag: devel::lang:perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl Development"
+msgstr ""
+
+#. Tag: devel::lang:php, short desc
+#: files/debtags/vocabulary
+msgid "PHP Development"
+msgstr ""
+
+#. Tag: devel::lang:pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike Development"
+msgstr ""
+
+#. Tag: devel::lang:prolog, short desc
+#: files/debtags/vocabulary
+msgid "Prolog Development"
+msgstr ""
+
+#. Tag: devel::lang:python, short desc
+#: files/debtags/vocabulary
+msgid "Python Development"
+msgstr ""
+
+#. Tag: devel::lang:r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R Development"
+msgstr ""
+
+#. Tag: devel::lang:ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby Development"
+msgstr ""
+
+#. Tag: devel::lang:scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme Development"
+msgstr ""
+
+#. Tag: devel::lang:sql, short desc
+#: files/debtags/vocabulary
+msgid "SQL"
+msgstr ""
+
+#. Tag: devel::lang:tcl, short desc
+#: files/debtags/vocabulary
+msgid "Tcl Development"
+msgstr ""
+
+#. Tag: devel::library, short desc
+#: files/debtags/vocabulary
+msgid "Libraries"
+msgstr ""
+
+#. Tag: devel::machinecode, short desc
+#: files/debtags/vocabulary
+msgid "Machine Code"
+msgstr ""
+
+#. Tag: devel::machinecode, long desc
+#: files/debtags/vocabulary
+msgid " Assemblers and other machine-code development tools."
+msgstr ""
+
+#. Tag: devel::modelling, short desc
+#: files/debtags/vocabulary
+msgid "Modelling"
+msgstr ""
+
+#. Tag: devel::modelling, long desc
+#: files/debtags/vocabulary
+msgid " Programs and libraries that support creation of software models\n with modelling languages like UML or OCL."
+msgstr ""
+
+#. Tag: devel::packaging, short desc
+#: files/debtags/vocabulary
+msgid "Packaging"
+msgstr ""
+
+#. Tag: devel::packaging, long desc
+#: files/debtags/vocabulary
+msgid " Tools for packaging software."
+msgstr ""
+
+#. Tag: devel::prettyprint, short desc
+#: files/debtags/vocabulary
+msgid "Prettyprint"
+msgstr ""
+
+#. Tag: devel::prettyprint, long desc
+#: files/debtags/vocabulary
+msgid " Code pretty-printing and indentation/reformatting."
+msgstr ""
+
+#. Tag: devel::profiler, short desc
+#: files/debtags/vocabulary
+msgid "Profiling"
+msgstr ""
+
+#. Tag: devel::profiler, long desc
+#: files/debtags/vocabulary
+msgid " Profiling and optimization tools."
+msgstr ""
+
+#. Tag: devel::rcs, short desc
+#: files/debtags/vocabulary
+msgid "Revision Control"
+msgstr ""
+
+#. Tag: devel::rcs, long desc
+#: files/debtags/vocabulary
+msgid " RCS (Revision Control System) and SCM (Software Configuration Manager)"
+msgstr ""
+
+#. Tag: devel::rpc, short desc
+#: files/debtags/vocabulary
+msgid "RPC"
+msgstr ""
+
+#. Tag: devel::rpc, long desc
+#: files/debtags/vocabulary
+msgid " Remote Procedure Call, Network transparent programming"
+msgstr ""
+
+#. Tag: devel::runtime, short desc
+#: files/debtags/vocabulary
+msgid "Runtime Support"
+msgstr ""
+
+#. Tag: devel::runtime, long desc
+#: files/debtags/vocabulary
+msgid " Runtime environments of various languages and systems."
+msgstr ""
+
+#. Tag: devel::testing-qa, short desc
+#: files/debtags/vocabulary
+msgid "Testing and QA"
+msgstr ""
+
+#. Tag: devel::testing-qa, long desc
+#: files/debtags/vocabulary
+msgid " Tools for software testing and quality assurance."
+msgstr ""
+
+#. Tag: devel::ui-builder, short desc
+#: files/debtags/vocabulary
+#. Facet: interface, short desc
+#: files/debtags/vocabulary
+msgid "User Interface"
+msgstr ""
+
+#. Tag: devel::ui-builder, long desc
+#: files/debtags/vocabulary
+msgid " Tools for designing user interfaces."
+msgstr ""
+
+#. Tag: devel::web, short desc
+#: files/debtags/vocabulary
+msgid "Web"
+msgstr ""
+
+#. Tag: devel::web, long desc
+#: files/debtags/vocabulary
+msgid " Web-centric frameworks, CGI libraries and other web-specific development\n tools."
+msgstr ""
+
+#. Tag: educational, short desc
+#: files/debtags/vocabulary
+msgid "[Edu] Educational Software"
+msgstr ""
+
+#. Facet: field, short desc
+#: files/debtags/vocabulary
+msgid "Field"
+msgstr ""
+
+#. Tag: field::arts, short desc
+#: files/debtags/vocabulary
+msgid "Arts"
+msgstr ""
+
+#. Tag: field::astronomy, short desc
+#: files/debtags/vocabulary
+msgid "Astronomy"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, short desc
+#: files/debtags/vocabulary
+msgid "Bioinformatics"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, long desc
+#: files/debtags/vocabulary
+msgid " Sequence analysis software."
+msgstr ""
+
+#. Tag: field::biology:molecular, short desc
+#: files/debtags/vocabulary
+msgid "Molecular biology"
+msgstr ""
+
+#. Tag: field::biology:molecular, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to molecular cloning and related wet biology."
+msgstr ""
+
+#. Tag: field::biology:structural, short desc
+#: files/debtags/vocabulary
+msgid "Structural biology"
+msgstr ""
+
+#. Tag: field::biology:structural, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to model tridimentional structures."
+msgstr ""
+
+#. Tag: field::chemistry, short desc
+#: files/debtags/vocabulary
+msgid "Chemistry"
+msgstr ""
+
+#. Tag: field::electronics, short desc
+#: files/debtags/vocabulary
+msgid "Electronics"
+msgstr ""
+
+#. Tag: field::electronics, long desc
+#: files/debtags/vocabulary
+msgid " Circuit editors and other electronics-related software"
+msgstr ""
+
+#. Tag: field::finance, short desc
+#: files/debtags/vocabulary
+msgid "Financial"
+msgstr ""
+
+#. Tag: field::finance, long desc
+#: files/debtags/vocabulary
+msgid " Accounting and financial software"
+msgstr ""
+
+#. Tag: field::genealogy, short desc
+#: files/debtags/vocabulary
+msgid "Genealogy"
+msgstr ""
+
+#. Tag: field::geography, short desc
+#: files/debtags/vocabulary
+msgid "Geography"
+msgstr ""
+
+#. Tag: field::geology, short desc
+#: files/debtags/vocabulary
+msgid "Geology"
+msgstr ""
+
+#. Tag: field::linguistics, short desc
+#: files/debtags/vocabulary
+msgid "Linguistics"
+msgstr ""
+
+#. Tag: field::mathematics, short desc
+#: files/debtags/vocabulary
+msgid "Mathematics"
+msgstr ""
+
+#. Tag: field::medicine, short desc
+#: files/debtags/vocabulary
+msgid "Medicine"
+msgstr ""
+
+#. Tag: field::medicine:imaging, short desc
+#: files/debtags/vocabulary
+msgid "Medical Imaging"
+msgstr ""
+
+#. Tag: field::physics, short desc
+#: files/debtags/vocabulary
+msgid "Physics"
+msgstr ""
+
+#. Tag: field::religion, short desc
+#: files/debtags/vocabulary
+msgid "Religion"
+msgstr ""
+
+#. Tag: field::statistics, short desc
+#: files/debtags/vocabulary
+msgid "Statistics"
+msgstr ""
+
+#. Facet: game, short desc
+#: files/debtags/vocabulary
+msgid "Games and Amusement"
+msgstr ""
+
+#. Tag: game::adventure, short desc
+#: files/debtags/vocabulary
+msgid "Adventure"
+msgstr ""
+
+#. Tag: game::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Action and Arcade"
+msgstr ""
+
+#. Tag: game::board, short desc
+#: files/debtags/vocabulary
+msgid "Board"
+msgstr ""
+
+#. Tag: game::board:chess, short desc
+#: files/debtags/vocabulary
+msgid "Chess"
+msgstr ""
+
+#. Tag: game::card, short desc
+#: files/debtags/vocabulary
+msgid "Card"
+msgstr ""
+
+#. Tag: game::demos, short desc
+#: files/debtags/vocabulary
+msgid "Demo"
+msgstr ""
+
+#. Tag: game::fps, short desc
+#: files/debtags/vocabulary
+msgid "First person shooter"
+msgstr ""
+
+#. Tag: game::mud, short desc
+#: files/debtags/vocabulary
+msgid "Multiplayer RPG"
+msgstr ""
+
+#. Tag: game::mud, long desc
+#: files/debtags/vocabulary
+msgid " MUDs, MOOs, and other multiplayer RPGs"
+msgstr ""
+
+#. Tag: game::platform, short desc
+#: files/debtags/vocabulary
+msgid "Platform"
+msgstr ""
+
+#. Tag: game::puzzle, short desc
+#: files/debtags/vocabulary
+msgid "Puzzle"
+msgstr ""
+
+#. Tag: game::rpg, short desc
+#: files/debtags/vocabulary
+msgid "Role-playing"
+msgstr ""
+
+#. Tag: game::rpg:rogue, short desc
+#: files/debtags/vocabulary
+msgid "Rogue-Like RPG"
+msgstr ""
+
+#. Tag: game::rpg:rogue, long desc
+#: files/debtags/vocabulary
+msgid " Games like Nethack, Angband etc."
+msgstr ""
+
+#. Tag: game::simulation, short desc
+#: files/debtags/vocabulary
+msgid "Simulation"
+msgstr ""
+
+#. Tag: game::sport, short desc
+#: files/debtags/vocabulary
+msgid "Sport games"
+msgstr ""
+
+#. Tag: game::sport:racing, short desc
+#: files/debtags/vocabulary
+msgid "Racing"
+msgstr ""
+
+#. Tag: game::strategy, short desc
+#: files/debtags/vocabulary
+msgid "Strategy"
+msgstr ""
+
+#. Tag: game::tetris, short desc
+#: files/debtags/vocabulary
+msgid "Tetris-like"
+msgstr ""
+
+#. Tag: game::toys, short desc
+#: files/debtags/vocabulary
+msgid "Toy or Gimmick"
+msgstr ""
+
+#. Tag: game::typing, short desc
+#: files/debtags/vocabulary
+msgid "Typing Tutor"
+msgstr ""
+
+#. Facet: hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Enablement"
+msgstr ""
+
+#. Tag: hardware::camera, short desc
+#: files/debtags/vocabulary
+msgid "Digital Camera"
+msgstr ""
+
+#. Tag: hardware::detection, short desc
+#: files/debtags/vocabulary
+msgid "Hardware detection"
+msgstr ""
+
+#. Tag: hardware::embedded, short desc
+#: files/debtags/vocabulary
+msgid "Embedded"
+msgstr ""
+
+#. Tag: hardware::emulation, short desc
+#: files/debtags/vocabulary
+msgid "Emulation"
+msgstr ""
+
+#. Tag: hardware::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Devices"
+msgstr ""
+
+#. Tag: hardware::input:joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick"
+msgstr ""
+
+#. Tag: hardware::input:keyboard, short desc
+#: files/debtags/vocabulary
+msgid "Keyboard"
+msgstr ""
+
+#. Tag: hardware::input:mouse, short desc
+#: files/debtags/vocabulary
+msgid "Mouse"
+msgstr ""
+
+#. Tag: hardware::joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick (legacy)"
+msgstr ""
+
+#. Tag: hardware::hamradio, short desc
+#: files/debtags/vocabulary
+msgid "Ham Radio"
+msgstr ""
+
+#. Tag: hardware::laptop, short desc
+#: files/debtags/vocabulary
+msgid "Laptop"
+msgstr ""
+
+#. Tag: hardware::modem, short desc
+#: files/debtags/vocabulary
+msgid "Modem"
+msgstr ""
+
+#. Tag: hardware::modem:dsl, short desc
+#: files/debtags/vocabulary
+msgid "xDSL Modem"
+msgstr ""
+
+#. Tag: hardware::opengl, short desc
+#: files/debtags/vocabulary
+msgid "Requires video hardware acceleration"
+msgstr ""
+
+#. Tag: hardware::power:ups, short desc
+#: files/debtags/vocabulary
+msgid "UPS"
+msgstr ""
+
+#. Tag: hardware::power:ups, long desc
+#: files/debtags/vocabulary
+msgid " Uninterruptible Power Supply"
+msgstr ""
+
+#. Tag: hardware::power:acpi, short desc
+#: files/debtags/vocabulary
+msgid "ACPI Power Management"
+msgstr ""
+
+#. Tag: hardware::power:apm, short desc
+#: files/debtags/vocabulary
+msgid "APM Power Management"
+msgstr ""
+
+#. Tag: hardware::printer, short desc
+#: files/debtags/vocabulary
+msgid "Printer"
+msgstr ""
+
+#. Tag: hardware::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Image-scanning hardware"
+msgstr ""
+
+#. Tag: hardware::storage, short desc
+#: files/debtags/vocabulary
+msgid "Storage"
+msgstr ""
+
+#. Tag: hardware::storage:cd, short desc
+#: files/debtags/vocabulary
+msgid "CD"
+msgstr ""
+
+#. Tag: hardware::storage:cd, long desc
+#: files/debtags/vocabulary
+msgid " Compact Disc"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, short desc
+#: files/debtags/vocabulary
+msgid "DVD"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, long desc
+#: files/debtags/vocabulary
+msgid " Digital Versatile Disc"
+msgstr ""
+
+#. Tag: hardware::storage:floppy, short desc
+#: files/debtags/vocabulary
+msgid "Floppy disk"
+msgstr ""
+
+#. Tag: hardware::usb, short desc
+#: files/debtags/vocabulary
+msgid "USB"
+msgstr ""
+
+#. Tag: hardware::usb, long desc
+#: files/debtags/vocabulary
+msgid " Universal Serial Bus"
+msgstr ""
+
+#. Tag: hardware::video, short desc
+#: files/debtags/vocabulary
+msgid "Graphics and Video"
+msgstr ""
+
+#. Facet: made-of, short desc
+#: files/debtags/vocabulary
+msgid "Made Of"
+msgstr ""
+
+#. Facet: made-of, long desc
+#: files/debtags/vocabulary
+msgid " The languages or data formats used to make the package"
+msgstr ""
+
+#. Tag: made-of::data:dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionary"
+msgstr ""
+
+#. Tag: made-of::data:font, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::font, short desc
+#: files/debtags/vocabulary
+msgid "Font"
+msgstr ""
+
+#. Tag: made-of::data:html, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::html, short desc
+#: files/debtags/vocabulary
+msgid "HTML Hypertext Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:icons, short desc
+#: files/debtags/vocabulary
+msgid "Icons"
+msgstr ""
+
+#. Tag: made-of::data:info, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::info, short desc
+#: files/debtags/vocabulary
+msgid "Documentation in Info format"
+msgstr ""
+
+#. Tag: made-of::data:man, short desc
+#: files/debtags/vocabulary
+msgid "Manuals in nroff format"
+msgstr ""
+
+#. Tag: made-of::data:pdf, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::pdf, short desc
+#: files/debtags/vocabulary
+msgid "PDF Documents"
+msgstr ""
+
+#. Tag: made-of::data:postscript, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::postscript, short desc
+#: files/debtags/vocabulary
+msgid "Postscript"
+msgstr ""
+
+#. Tag: made-of::data:sgml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::sgml, short desc
+#: files/debtags/vocabulary
+msgid "SGML, Standard Generalized Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:svg, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::svg, short desc
+#: files/debtags/vocabulary
+msgid "SVG, Scalable Vector Graphics"
+msgstr ""
+
+#. Tag: made-of::data:tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX, LaTeX and DVI"
+msgstr ""
+
+#. Tag: made-of::data:vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:xml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::xml, short desc
+#: files/debtags/vocabulary
+msgid "XML"
+msgstr ""
+
+#. Tag: interface::3d, short desc
+#: files/debtags/vocabulary
+msgid "Three-Dimensional"
+msgstr ""
+
+#. Tag: interface::commandline, short desc
+#: files/debtags/vocabulary
+msgid "Command Line"
+msgstr ""
+
+#. Tag: interface::daemon, short desc
+#: files/debtags/vocabulary
+msgid "Daemon"
+msgstr ""
+
+#. Tag: interface::daemon, long desc
+#: files/debtags/vocabulary
+msgid " Runs in background, only a control interface is provided, usually on\n commandline."
+msgstr ""
+
+#. Tag: interface::framebuffer, short desc
+#: files/debtags/vocabulary
+msgid "Framebuffer"
+msgstr ""
+
+#. Tag: interface::shell, short desc
+#: files/debtags/vocabulary
+msgid "Command Shell"
+msgstr ""
+
+#. Tag: interface::svga, short desc
+#: files/debtags/vocabulary
+msgid "Console SVGA"
+msgstr ""
+
+#. Tag: interface::text-mode, short desc
+#: files/debtags/vocabulary
+msgid "Text-based Interactive"
+msgstr ""
+
+#. Tag: interface::web, short desc
+#: files/debtags/vocabulary
+#. Facet: web, short desc
+#: files/debtags/vocabulary
+msgid "World Wide Web"
+msgstr ""
+
+#. Tag: interface::x11, short desc
+#: files/debtags/vocabulary
+msgid "X Window System"
+msgstr ""
+
+#. Facet: implemented-in, short desc
+#: files/debtags/vocabulary
+msgid "Implemented in"
+msgstr ""
+
+#. Tag: implemented-in::ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada"
+msgstr ""
+
+#. Tag: implemented-in::c, short desc
+#: files/debtags/vocabulary
+msgid "C"
+msgstr ""
+
+#. Tag: implemented-in::c++, short desc
+#: files/debtags/vocabulary
+msgid "C++"
+msgstr ""
+
+#. Tag: implemented-in::c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C#"
+msgstr ""
+
+#. Tag: implemented-in::fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran"
+msgstr ""
+
+#. Tag: implemented-in::haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell"
+msgstr ""
+
+#. Tag: implemented-in::java, short desc
+#: files/debtags/vocabulary
+msgid "Java"
+msgstr ""
+
+#. Tag: implemented-in::ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/Javascript"
+msgstr ""
+
+#. Tag: implemented-in::lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp"
+msgstr ""
+
+#. Tag: implemented-in::lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua"
+msgstr ""
+
+#. Tag: implemented-in::ml, short desc
+#: files/debtags/vocabulary
+msgid "ML"
+msgstr ""
+
+#. Tag: implemented-in::objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective C"
+msgstr ""
+
+#. Tag: implemented-in::ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml"
+msgstr ""
+
+#. Tag: implemented-in::perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl"
+msgstr ""
+
+#. Tag: implemented-in::php, short desc
+#: files/debtags/vocabulary
+msgid "PHP"
+msgstr ""
+
+#. Tag: implemented-in::pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike"
+msgstr ""
+
+#. Tag: implemented-in::python, short desc
+#: files/debtags/vocabulary
+msgid "Python"
+msgstr ""
+
+#. Tag: implemented-in::r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R"
+msgstr ""
+
+#. Tag: implemented-in::ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby"
+msgstr ""
+
+#. Tag: implemented-in::scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme"
+msgstr ""
+
+#. Tag: implemented-in::shell, short desc
+#: files/debtags/vocabulary
+msgid "sh, bash, ksh, tcsh and other shells"
+msgstr ""
+
+#. Tag: implemented-in::tcl, short desc
+#: files/debtags/vocabulary
+msgid "TCL Tool Command Language"
+msgstr ""
+
+#. Facet: junior, short desc
+#: files/debtags/vocabulary
+msgid "Junior Applications"
+msgstr ""
+
+#. Facet: junior, long desc
+#: files/debtags/vocabulary
+msgid " Applications recommended for younger users"
+msgstr ""
+
+#. Tag: junior::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Arcade games"
+msgstr ""
+
+#. Tag: junior::games-gl, short desc
+#: files/debtags/vocabulary
+msgid "3D games"
+msgstr ""
+
+#. Tag: junior::meta, short desc
+#: files/debtags/vocabulary
+msgid "Metapackages"
+msgstr ""
+
+#. Facet: mail, short desc
+#: files/debtags/vocabulary
+msgid "Electronic Mail"
+msgstr ""
+
+#. Tag: mail::filters, short desc
+#: files/debtags/vocabulary
+msgid "Filters"
+msgstr ""
+
+#. Tag: mail::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP Protocol"
+msgstr ""
+
+#. Tag: mail::list, short desc
+#: files/debtags/vocabulary
+msgid "Mailing Lists"
+msgstr ""
+
+#. Tag: mail::notification, short desc
+#: files/debtags/vocabulary
+msgid "Notification"
+msgstr ""
+
+#. Tag: mail::notification, long desc
+#: files/debtags/vocabulary
+msgid " Software that notifies users about status of mailbox."
+msgstr ""
+
+#. Tag: mail::pop, short desc
+#: files/debtags/vocabulary
+msgid "POP3 Protocol"
+msgstr ""
+
+#. Tag: mail::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP Protocol"
+msgstr ""
+
+#. Tag: mail::delivery-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Delivery Agent"
+msgstr ""
+
+#. Tag: mail::delivery-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that delivers mail to users' mailboxes."
+msgstr ""
+
+#. Tag: mail::transport-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Transport Agent"
+msgstr ""
+
+#. Tag: mail::transport-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that routes and transmits mail accross the system and the network."
+msgstr ""
+
+#. Tag: mail::user-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail user agent"
+msgstr ""
+
+#. Tag: mail::user-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that allows users to access e-mail."
+msgstr ""
+
+#. Facet: office, short desc
+#: files/debtags/vocabulary
+msgid "Office and business"
+msgstr ""
+
+#. Tag: office::finance, short desc
+#: files/debtags/vocabulary
+msgid "Finance"
+msgstr ""
+
+#. Tag: office::groupware, short desc
+#: files/debtags/vocabulary
+msgid "Groupware"
+msgstr ""
+
+#. Tag: office::presentation, short desc
+#: files/debtags/vocabulary
+msgid "Presentation"
+msgstr ""
+
+#. Tag: office::project-management, short desc
+#: files/debtags/vocabulary
+msgid "Project management"
+msgstr ""
+
+#. Tag: office::spreadsheet, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::spreadsheet, short desc
+#: files/debtags/vocabulary
+msgid "Spreadsheet"
+msgstr ""
+
+#. Facet: works-with, short desc
+#: files/debtags/vocabulary
+msgid "Works with"
+msgstr ""
+
+#. Facet: works-with, long desc
+#: files/debtags/vocabulary
+msgid " These tags describe what is the kind of data (or even processes, or people)\n that the package can work with."
+msgstr ""
+
+#. Tag: works-with::3dmodel, short desc
+#: files/debtags/vocabulary
+msgid "3D Model"
+msgstr ""
+
+#. Tag: works-with::archive, short desc
+#: files/debtags/vocabulary
+msgid "Archive"
+msgstr ""
+
+#. Tag: works-with::audio, short desc
+#: files/debtags/vocabulary
+msgid "Audio"
+msgstr ""
+
+#. Tag: works-with::bugs, short desc
+#: files/debtags/vocabulary
+msgid "Bugs or Issues"
+msgstr ""
+
+#. Tag: works-with::db, short desc
+#: files/debtags/vocabulary
+msgid "Databases"
+msgstr ""
+
+#. Tag: works-with::dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionaries"
+msgstr ""
+
+#. Tag: works-with::dtp, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Publishing (DTP)"
+msgstr ""
+
+#. Tag: works-with::fax, short desc
+#: files/debtags/vocabulary
+msgid "Faxes"
+msgstr ""
+
+#. Tag: works-with::file, short desc
+#: files/debtags/vocabulary
+msgid "Files"
+msgstr ""
+
+#. Tag: works-with::font, short desc
+#: files/debtags/vocabulary
+msgid "Fonts"
+msgstr ""
+
+#. Tag: works-with::im, short desc
+#: files/debtags/vocabulary
+msgid "Instant Messages"
+msgstr ""
+
+#. Tag: works-with::im, long desc
+#: files/debtags/vocabulary
+msgid " The package can connect to some IM network (or networks)."
+msgstr ""
+
+#. Tag: works-with::logfile, short desc
+#: files/debtags/vocabulary
+msgid "System Logs"
+msgstr ""
+
+#. Tag: works-with::mail, short desc
+#: files/debtags/vocabulary
+msgid "Email"
+msgstr ""
+
+#. Tag: works-with::music-notation, short desc
+#: files/debtags/vocabulary
+msgid "Music Notation"
+msgstr ""
+
+#. Tag: works-with::network-traffic, short desc
+#: files/debtags/vocabulary
+msgid "Network traffic"
+msgstr ""
+
+#. Tag: works-with::network-traffic, long desc
+#: files/debtags/vocabulary
+msgid " Routers, shapers, sniffers, firewalls and other tools\n that work with a stream of network packets."
+msgstr ""
+
+#. Tag: works-with::people, short desc
+#: files/debtags/vocabulary
+msgid "People"
+msgstr ""
+
+#. Tag: works-with::pim, short desc
+#: files/debtags/vocabulary
+msgid "Personal Information"
+msgstr ""
+
+#. Tag: works-with::image, short desc
+#: files/debtags/vocabulary
+msgid "Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, short desc
+#: files/debtags/vocabulary
+msgid "Raster Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, long desc
+#: files/debtags/vocabulary
+msgid " Images made of dots, such as photos and scans"
+msgstr ""
+
+#. Tag: works-with::image:vector, short desc
+#: files/debtags/vocabulary
+msgid "Vector Image"
+msgstr ""
+
+#. Tag: works-with::image:vector, long desc
+#: files/debtags/vocabulary
+msgid " Images made of lines, such as graphs or most clipart"
+msgstr ""
+
+#. Tag: works-with::software:package, short desc
+#: files/debtags/vocabulary
+msgid "Packaged software"
+msgstr ""
+
+#. Tag: works-with::software:running, short desc
+#: files/debtags/vocabulary
+msgid "Running programs"
+msgstr ""
+
+#. Tag: works-with::software:source, short desc
+#: files/debtags/vocabulary
+msgid "Source code"
+msgstr ""
+
+#. Tag: works-with::text, short desc
+#: files/debtags/vocabulary
+msgid "Text"
+msgstr ""
+
+#. Tag: works-with::unicode, short desc
+#: files/debtags/vocabulary
+msgid "Unicode"
+msgstr ""
+
+#. Tag: works-with::unicode, long desc
+#: files/debtags/vocabulary
+msgid " Please do not tag programs with simple unicode support,\n doing so would make this tag useless.\n Ultimately all applications should have unicode support."
+msgstr ""
+
+#. Tag: works-with::video, short desc
+#: files/debtags/vocabulary
+msgid "Video and Animation"
+msgstr ""
+
+#. Facet: works-with-format, short desc
+#: files/debtags/vocabulary
+msgid "Supports Format"
+msgstr ""
+
+#. Tag: works-with-format::bib, short desc
+#: files/debtags/vocabulary
+msgid "BibTeX"
+msgstr ""
+
+#. Tag: works-with-format::bib, long desc
+#: files/debtags/vocabulary
+msgid " BibTeX list of references"
+msgstr ""
+
+#. Tag: works-with-format::dvi, short desc
+#: files/debtags/vocabulary
+msgid "TeX DVI"
+msgstr ""
+
+#. Tag: works-with-format::dvi, long desc
+#: files/debtags/vocabulary
+msgid " DeVice Independent page description file, usually generated\n by TeX or LaTeX."
+msgstr ""
+
+#. Tag: works-with-format::ldif, short desc
+#: files/debtags/vocabulary
+msgid "LDIF"
+msgstr ""
+
+#. Tag: works-with-format::ldif, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML 3D Model"
+msgstr ""
+
+#. Tag: works-with-format::vrml, long desc
+#: files/debtags/vocabulary
+msgid " Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: works-with-format::iso9660, short desc
+#: files/debtags/vocabulary
+msgid "ISO 9660 CD Filesystem"
+msgstr ""
+
+#. Tag: works-with-format::tar, short desc
+#: files/debtags/vocabulary
+msgid "Tar Archives"
+msgstr ""
+
+#. Tag: works-with-format::zip, short desc
+#: files/debtags/vocabulary
+msgid "Zip Archives"
+msgstr ""
+
+#. Tag: works-with-format::mp3, short desc
+#: files/debtags/vocabulary
+msgid "MP3 Audio"
+msgstr ""
+
+#. Tag: works-with-format::mpc, short desc
+#: files/debtags/vocabulary
+msgid "Musepack Audio"
+msgstr ""
+
+#. Tag: works-with-format::oggvorbis, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Vorbis Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, short desc
+#: files/debtags/vocabulary
+msgid "MS RIFF Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, long desc
+#: files/debtags/vocabulary
+msgid " Wave uncompressed audio format"
+msgstr ""
+
+#. Tag: works-with-format::jpg, short desc
+#: files/debtags/vocabulary
+msgid "JPEG, Joint Picture Expert Group"
+msgstr ""
+
+#. Tag: works-with-format::gif, short desc
+#: files/debtags/vocabulary
+msgid "GIF, Graphics Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::odf, short desc
+#: files/debtags/vocabulary
+msgid "ODF, Open Document Format"
+msgstr ""
+
+#. Tag: works-with-format::png, short desc
+#: files/debtags/vocabulary
+msgid "PNG, Portable Network Graphics"
+msgstr ""
+
+#. Tag: works-with-format::swf, short desc
+#: files/debtags/vocabulary
+msgid "SWF, ShockWave Flash"
+msgstr ""
+
+#. Tag: works-with-format::tiff, short desc
+#: files/debtags/vocabulary
+msgid "TIFF, Tagged Image File Format"
+msgstr ""
+
+#. Tag: works-with-format::docbook, short desc
+#: files/debtags/vocabulary
+msgid "Docbook"
+msgstr ""
+
+#. Tag: works-with-format::man, short desc
+#: files/debtags/vocabulary
+msgid "Manpages"
+msgstr ""
+
+#. Tag: works-with-format::plaintext, short desc
+#: files/debtags/vocabulary
+msgid "Plain text"
+msgstr ""
+
+#. Tag: works-with-format::tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX and LaTeX"
+msgstr ""
+
+#. Tag: works-with-format::oggtheora, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Theora Video"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, short desc
+#: files/debtags/vocabulary
+msgid "RSS Rich Site Summary"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, long desc
+#: files/debtags/vocabulary
+msgid " XML dialect used to describe resources and websites."
+msgstr ""
+
+#. Tag: works-with-format::xml:xslt, short desc
+#: files/debtags/vocabulary
+msgid "XSL Transformations (XSLT)"
+msgstr ""
+
+#. Facet: scope, short desc
+#: files/debtags/vocabulary
+msgid "Scope"
+msgstr ""
+
+#. Tag: scope::utility, short desc
+#: files/debtags/vocabulary
+msgid "Utility"
+msgstr ""
+
+#. Tag: scope::utility, long desc
+#: files/debtags/vocabulary
+msgid " A narrow-scoped program for particular use case or few use cases. It\n only does something 10-20% of users in the field will need. Often has\n functionality missing from related applications."
+msgstr ""
+
+#. Tag: scope::application, short desc
+#: files/debtags/vocabulary
+#. Tag: web::application, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::application, short desc
+#: files/debtags/vocabulary
+msgid "Application"
+msgstr ""
+
+#. Tag: scope::application, long desc
+#: files/debtags/vocabulary
+msgid " Broad-scoped program for general use. It probably has functionality\n for 80-90% of use cases. The pieces that remain are usually to be\n found as utilities."
+msgstr ""
+
+#. Tag: scope::suite, short desc
+#: files/debtags/vocabulary
+msgid "Suite"
+msgstr ""
+
+#. Tag: scope::suite, long desc
+#: files/debtags/vocabulary
+msgid " Comprehensive suite of applications and utilities on the scale of\n desktop environment or base operating system."
+msgstr ""
+
+#. Facet: role, short desc
+#: files/debtags/vocabulary
+msgid "Role"
+msgstr ""
+
+#. Tag: role::program, short desc
+#: files/debtags/vocabulary
+msgid "Program"
+msgstr ""
+
+#. Tag: role::program, long desc
+#: files/debtags/vocabulary
+msgid " Executable computer program."
+msgstr ""
+
+#. Tag: role::shared-lib, short desc
+#: files/debtags/vocabulary
+msgid "Shared Library"
+msgstr ""
+
+#. Tag: role::shared-lib, long desc
+#: files/debtags/vocabulary
+msgid " Shared libraries used by one or more programs."
+msgstr ""
+
+#. Tag: role::plugin, short desc
+#: files/debtags/vocabulary
+msgid "Plugin"
+msgstr ""
+
+#. Tag: role::plugin, long desc
+#: files/debtags/vocabulary
+msgid " Add-on, pluggable program fragments enhancing functionality\n of some program or system."
+msgstr ""
+
+#. Tag: role::debug-symbols, short desc
+#: files/debtags/vocabulary
+msgid "Debugging symbols"
+msgstr ""
+
+#. Tag: role::debug-symbols, long desc
+#: files/debtags/vocabulary
+msgid " Debugging symbols."
+msgstr ""
+
+#. Tag: role::devel-lib, short desc
+#: files/debtags/vocabulary
+msgid "Development Library"
+msgstr ""
+
+#. Tag: role::devel-lib, long desc
+#: files/debtags/vocabulary
+msgid " Library and header files used in software development or building."
+msgstr ""
+
+#. Tag: role::source, short desc
+#: files/debtags/vocabulary
+msgid "Source Code"
+msgstr ""
+
+#. Tag: role::source, long desc
+#: files/debtags/vocabulary
+msgid " Human-readable code of a program, library or a part thereof."
+msgstr ""
+
+#. Tag: role::data, short desc
+#: files/debtags/vocabulary
+msgid "Standalone Data"
+msgstr ""
+
+#. Tag: role::app-data, short desc
+#: files/debtags/vocabulary
+msgid "Application Data"
+msgstr ""
+
+#. Tag: role::metapackage, short desc
+#: files/debtags/vocabulary
+msgid "Metapackage"
+msgstr ""
+
+#. Tag: role::metapackage, long desc
+#: files/debtags/vocabulary
+msgid " Packages that install suites of other packages."
+msgstr ""
+
+#. Facet: security, short desc
+#: files/debtags/vocabulary
+msgid "Security"
+msgstr ""
+
+#. Facet: security, long desc
+#: files/debtags/vocabulary
+msgid " How the package is related to system security"
+msgstr ""
+
+#. Tag: security::antivirus, short desc
+#: files/debtags/vocabulary
+msgid "Anti-Virus"
+msgstr ""
+
+#. Tag: security::authentication, short desc
+#: files/debtags/vocabulary
+msgid "Authentication"
+msgstr ""
+
+#. Tag: security::cryptography, short desc
+#: files/debtags/vocabulary
+msgid "Cryptography"
+msgstr ""
+
+#. Tag: security::cryptography, long desc
+#: files/debtags/vocabulary
+msgid " Cryptographic and privacy-oriented tools."
+msgstr ""
+
+#. Tag: security::firewall, short desc
+#: files/debtags/vocabulary
+#. Tag: network::firewall, short desc
+#: files/debtags/vocabulary
+msgid "Firewall"
+msgstr ""
+
+#. Tag: security::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics"
+msgstr ""
+
+#. Tag: security::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Post-mortem analysis of intrusions."
+msgstr ""
+
+#. Tag: security::ids, short desc
+#: files/debtags/vocabulary
+msgid "Intrusion Detection"
+msgstr ""
+
+#. Tag: security::integrity, short desc
+#: files/debtags/vocabulary
+msgid "File Integrity"
+msgstr ""
+
+#. Tag: security::integrity, long desc
+#: files/debtags/vocabulary
+msgid " Tools to monitor system for changes in filesystem and report changes\n or tools providing other means to check system integrity."
+msgstr ""
+
+#. Tag: security::log-analyzer, short desc
+#: files/debtags/vocabulary
+msgid "Log Analyzer"
+msgstr ""
+
+#. Tag: security::privacy, short desc
+#: files/debtags/vocabulary
+msgid "Privacy"
+msgstr ""
+
+#. Facet: sound, short desc
+#: files/debtags/vocabulary
+msgid "Sound and Music"
+msgstr ""
+
+#. Tag: sound::compression, short desc
+#: files/debtags/vocabulary
+msgid "Compression"
+msgstr ""
+
+#. Tag: sound::midi, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Software"
+msgstr ""
+
+#. Tag: sound::mixer, short desc
+#: files/debtags/vocabulary
+msgid "Mixing"
+msgstr ""
+
+#. Tag: sound::player, short desc
+#: files/debtags/vocabulary
+msgid "Playback"
+msgstr ""
+
+#. Tag: sound::recorder, short desc
+#: files/debtags/vocabulary
+msgid "Recording"
+msgstr ""
+
+#. Tag: sound::sequencer, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Sequencing"
+msgstr ""
+
+#. Facet: special, short desc
+#: files/debtags/vocabulary
+msgid "Service tags"
+msgstr ""
+
+#. Tag: special::auto-inst-parts, short desc
+#: files/debtags/vocabulary
+msgid "Secondary packages users won't install directly"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, short desc
+#: files/debtags/vocabulary
+msgid "NO IPv6 support"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, long desc
+#: files/debtags/vocabulary
+msgid " Use this for packages that cannot yet or will never support IPv6."
+msgstr ""
+
+#. Tag: special::obsolete, short desc
+#: files/debtags/vocabulary
+msgid "Obsolete Packages"
+msgstr ""
+
+#. Tag: special::obsolete, long desc
+#: files/debtags/vocabulary
+msgid " Packages that are not used any longer, also packages only left for upgrade\n purposes (merged / split packages)"
+msgstr ""
+
+#. Tag: special::invalid-tag, short desc
+#: files/debtags/vocabulary
+msgid "Invalid tag"
+msgstr ""
+
+#. Tag: special::invalid-tag, long desc
+#: files/debtags/vocabulary
+msgid " This tag means that the tag database contains a tag which is not present in\n the tag vocabulary.  The presence of this tag indicates a software bug: this\n should never show up."
+msgstr ""
+
+#. Tag: special::not-yet-tagged, short desc
+#: files/debtags/vocabulary
+msgid "!Not yet tagged packages!"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::a, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with a"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::b, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with b"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::c, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with c"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::d, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with d"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::e, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with e"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::f, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with f"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::g, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with g"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::h, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with h"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::i, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with i"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::j, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with j"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::k, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with k"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::l, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with l"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::m, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with m"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::n, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with n"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::o, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with o"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::p, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with p"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::q, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with q"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::r, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with r"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::s, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with s"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::t, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with t"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::u, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with u"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::v, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with v"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::w, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with w"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::x, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with x"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::y, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with y"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::z, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with z"
+msgstr ""
+
+#. Facet: suite, short desc
+#: files/debtags/vocabulary
+msgid "Application Suite"
+msgstr ""
+
+#. Tag: suite::apache, short desc
+#: files/debtags/vocabulary
+msgid "Apache"
+msgstr ""
+
+#. Tag: suite::eclipse, short desc
+#: files/debtags/vocabulary
+msgid "Eclipse"
+msgstr ""
+
+#. Tag: suite::eclipse, long desc
+#: files/debtags/vocabulary
+msgid " Eclipse tool platform and plugins."
+msgstr ""
+
+#. Tag: suite::emacs, short desc
+#: files/debtags/vocabulary
+msgid "Emacs"
+msgstr ""
+
+#. Tag: suite::gforge, short desc
+#: files/debtags/vocabulary
+msgid "GForge"
+msgstr ""
+
+#. Tag: suite::gforge, long desc
+#: files/debtags/vocabulary
+msgid " A collaborative development platform."
+msgstr ""
+
+#. Tag: suite::gimp, short desc
+#: files/debtags/vocabulary
+msgid "The GIMP"
+msgstr ""
+
+#. Tag: suite::gkrellm, short desc
+#: files/debtags/vocabulary
+msgid "GKrellM Monitors"
+msgstr ""
+
+#. Tag: suite::gnome, short desc
+#: files/debtags/vocabulary
+msgid "GNOME"
+msgstr ""
+
+#. Tag: suite::gnu, short desc
+#: files/debtags/vocabulary
+msgid "GNU"
+msgstr ""
+
+#. Tag: suite::gnu, long desc
+#: files/debtags/vocabulary
+msgid " Gnu's Not Unix. The package is part of the official GNU project"
+msgstr ""
+
+#. Tag: suite::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUStep"
+msgstr ""
+
+#. Tag: suite::gnustep, long desc
+#: files/debtags/vocabulary
+msgid "  GNUStep Desktop and WindowMaker"
+msgstr ""
+
+#. Tag: suite::gpe, short desc
+#: files/debtags/vocabulary
+msgid "GPE"
+msgstr ""
+
+#. Tag: suite::gpe, long desc
+#: files/debtags/vocabulary
+msgid "  GPE Palmtop Environment"
+msgstr ""
+
+#. Tag: suite::kde, short desc
+#: files/debtags/vocabulary
+msgid "KDE"
+msgstr ""
+
+#. Tag: suite::mozilla, short desc
+#: files/debtags/vocabulary
+msgid "Mozilla"
+msgstr ""
+
+#. Tag: suite::mozilla, long desc
+#: files/debtags/vocabulary
+msgid " Mozilla Browser and extensions"
+msgstr ""
+
+#. Tag: suite::netscape, short desc
+#: files/debtags/vocabulary
+msgid "Netscape Navigator"
+msgstr ""
+
+#. Tag: suite::netscape, long desc
+#: files/debtags/vocabulary
+msgid " The pre-6.0 versions of netscape browser"
+msgstr ""
+
+#. Tag: suite::openoffice, short desc
+#: files/debtags/vocabulary
+msgid "OpenOffice.org"
+msgstr ""
+
+#. Tag: suite::opie, short desc
+#: files/debtags/vocabulary
+msgid "Open Palmtop (OPIE)"
+msgstr ""
+
+#. Tag: suite::roxen, short desc
+#: files/debtags/vocabulary
+msgid "Roxen"
+msgstr ""
+
+#. Tag: suite::samba, short desc
+#: files/debtags/vocabulary
+msgid "SAMBA"
+msgstr ""
+
+#. Tag: suite::webmin, short desc
+#: files/debtags/vocabulary
+msgid "Webmin"
+msgstr ""
+
+#. Tag: suite::xfce, short desc
+#: files/debtags/vocabulary
+msgid "XFce"
+msgstr ""
+
+#. Tag: suite::xfce, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight desktop environment for X11."
+msgstr ""
+
+#. Tag: suite::xmms, short desc
+#: files/debtags/vocabulary
+msgid "XMMS"
+msgstr ""
+
+#. Tag: suite::xmms2, short desc
+#: files/debtags/vocabulary
+msgid "XMMS 2"
+msgstr ""
+
+#. Tag: suite::zope, short desc
+#: files/debtags/vocabulary
+msgid "ZOPE"
+msgstr ""
+
+#. Tag: suite::zope, long desc
+#: files/debtags/vocabulary
+msgid " The zope (web) publishing platform."
+msgstr ""
+
+#. Facet: protocol, short desc
+#: files/debtags/vocabulary
+msgid "Network Protocol"
+msgstr ""
+
+#. Tag: protocol::db:mysql, short desc
+#: files/debtags/vocabulary
+msgid "MySQL"
+msgstr ""
+
+#. Tag: protocol::db:mysql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing MySQL database server."
+msgstr ""
+
+#. Tag: protocol::db:psql, short desc
+#: files/debtags/vocabulary
+msgid "PostgreSQL"
+msgstr ""
+
+#. Tag: protocol::db:psql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing PostgreSQL database server."
+msgstr ""
+
+#. Tag: protocol::ldap, short desc
+#: files/debtags/vocabulary
+msgid "LDAP"
+msgstr ""
+
+#. Tag: protocol::ldap, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Access Protocol"
+msgstr ""
+
+#. Tag: protocol::atm, short desc
+#: files/debtags/vocabulary
+msgid "ATM"
+msgstr ""
+
+#. Tag: protocol::atm, long desc
+#: files/debtags/vocabulary
+msgid " Asynchronous Transfer Mode, a high speed protocol for communication between\n computers in a network.\n .\n While ATM is used to implement *DSL networks, it has never gained widespread\n use as a technology for building local area networks (LANs), for which it was\n originally intended.\n .\n Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode"
+msgstr ""
+
+#. Tag: protocol::bittorrent, short desc
+#: files/debtags/vocabulary
+msgid "BitTorrent"
+msgstr ""
+
+#. Tag: protocol::bittorrent, long desc
+#: files/debtags/vocabulary
+msgid " BitTorrent is a protocol for peer-to-peer based file distribution over\n network.\n .\n Although the actual data transport happens between BitTorrent clients, one\n central node, the so-called trackers, is needed to keep a list of all clients\n that download or provide the same file.\n .\n Link: http://www.bittorrent.com/\n Link: http://en.wikipedia.org/wiki/BitTorrent"
+msgstr ""
+
+#. Tag: protocol::corba, short desc
+#: files/debtags/vocabulary
+msgid "CORBA"
+msgstr ""
+
+#. Tag: protocol::corba, long desc
+#: files/debtags/vocabulary
+msgid " Common Object Request Broker Architecture, a standard for interoperability\n between programs written in different languages and running on different \n hardware platforms. CORBA includes a client-server network protocol for\n distributed computing.\n .\n With this network protocol, CORBA clients on different computers and written\n in different languages can exchange objects over a CORBA server such as orbit2\n or omniORB.\n .\n Link: http://www.corba.org/"
+msgstr ""
+
+#. Tag: protocol::dhcp, short desc
+#: files/debtags/vocabulary
+msgid "DHCP"
+msgstr ""
+
+#. Tag: protocol::dhcp, long desc
+#: files/debtags/vocabulary
+msgid " Dynamic Host Configuration Protocol, a client-server network protocol for\n automatic assignment of dynamic IP addresses to computers in a TCP/IP network,\n rather than giving each computer a static IP address.\n .\n Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol\n Link: http://www.ietf.org/rfc/rfc2131.txt"
+msgstr ""
+
+#. Tag: protocol::dns, short desc
+#: files/debtags/vocabulary
+msgid "DNS"
+msgstr ""
+
+#. Tag: protocol::dns, long desc
+#: files/debtags/vocabulary
+msgid " Domain Name System, a protocol to request information associated with domain\n names (like \"www.debian.org\"), most prominently the IP address. The protocol\n is used in communication with a DNS server (like BIND).\n .\n For the Internet, there are 13 root DNS servers around the world that keep the\n addresses of all registered domain names and provide this information to the\n DNS servers of Internet service providers.\n .\n Link: http://en.wikipedia.org/wiki/Domain_Name_System"
+msgstr ""
+
+#. Tag: protocol::ethernet, short desc
+#: files/debtags/vocabulary
+msgid "Ethernet"
+msgstr ""
+
+#. Tag: protocol::ethernet, long desc
+#: files/debtags/vocabulary
+msgid " Ethernet is the most popular networking technology for creating local area\n networks (LANs).\n .\n The computers in an Ethernet network communicate over twisted-pair or fibre\n cables and are identified by their MAC address. Several different types of\n Ethernet exist, distinguishable by the maximum connection speed. The most\n widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).\n .\n Link: http://en.wikipedia.org/wiki/Ethernet"
+msgstr ""
+
+#. Tag: protocol::fidonet, short desc
+#: files/debtags/vocabulary
+msgid "FidoNet"
+msgstr ""
+
+#. Tag: protocol::fidonet, long desc
+#: files/debtags/vocabulary
+msgid " FidoNet is a mailbox system that enjoyed large popularity in the 1980s and\n 1990s.\n .\n The communication between the clients and FidoNet servers  was usually carried\n out over the telephone network using modems and could be used for transferring\n messages (comparable to email) and files.\n .\n Link: http://www.fidonet.org/\n Link: http://en.wikipedia.org/wiki/Fidonet"
+msgstr ""
+
+#. Tag: protocol::finger, short desc
+#: files/debtags/vocabulary
+msgid "Finger"
+msgstr ""
+
+#. Tag: protocol::finger, long desc
+#: files/debtags/vocabulary
+msgid " The Name/Finger protocol is a simple network protocol to provide extensive, \n public information about users of a computer, such as email address, telephone\n numbers, full names etc.\n .\n Due to privacy concerns, the Finger protocol is not widely used any more,\n while it widespread distribution in the early 1990s.\n .\n Link: http://en.wikipedia.org/wiki/Finger_protocol\n Link: http://www.ietf.org/rfc/rfc1288.txt"
+msgstr ""
+
+#. Tag: protocol::ftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::ftp, short desc
+#: files/debtags/vocabulary
+msgid "FTP"
+msgstr ""
+
+#. Tag: protocol::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol, a protocol for exchanging and manipulation files over\n networks and extensively used on the Internet.\n .\n The communication between FTP servers and clients uses two channels, the\n control and the data channel. While FTP was originally used with\n authentication only, most FTP servers on the Internet provide anonymous,\n passwordless access. Since FTP does not support encryption, sensitive data\n transfer is carried out over SFTP today.\n .\n Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc0959.txt"
+msgstr ""
+
+#. Tag: protocol::http, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::http, short desc
+#: files/debtags/vocabulary
+msgid "HTTP"
+msgstr ""
+
+#. Tag: protocol::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol, one of the most important protocols for the\n World Wide Web.\n .\n It controls the data transfer between HTTP servers such as Apache and HTTP\n clients, which are web browsers in most cases. HTTP resources are requested\n via URLs (Universal Resource Locators). While HTTP normally only supports file\n transfer from server to client, the protocol supports sending information to\n HTTP servers, most prominently used in HTML forms.\n .\n Link: http://en.wikipedia.org/wiki/Http\n Link: http://www.ietf.org/rfc/rfc2616.txt"
+msgstr ""
+
+#. Tag: protocol::ident, short desc
+#: files/debtags/vocabulary
+msgid "Ident"
+msgstr ""
+
+#. Tag: protocol::ident, long desc
+#: files/debtags/vocabulary
+msgid " The Ident Internet protocol helps to identify or authenticate the user of\n a network connection.\n .\n Link: http://en.wikipedia.org/wiki/Ident"
+msgstr ""
+
+#. Tag: protocol::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP"
+msgstr ""
+
+#. Tag: protocol::imap, long desc
+#: files/debtags/vocabulary
+msgid " Internet Message Access Protocol, a protocol used for accessing email on a\n server from a email client such as KMail or Evolution.\n .\n When using IMAP, emails stay on the server and can be categorized, edited,\n deleted etc. there, instead of having the user download all messages onto\n the local computer, as POP3 does.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol"
+msgstr ""
+
+#. Tag: protocol::ip, short desc
+#: files/debtags/vocabulary
+msgid "IP"
+msgstr ""
+
+#. Tag: protocol::ip, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v4), a core protocol of the Internet protocol suite and\n the very basis of the Internet.\n .\n Every computer that is connected to the Internet has an IP address (a 4-byte\n number, typically represented in dotted notation like 192.25.206.10).\n Internet IP addresses are given out by the Internet Corporation for Assigned\n Names and Numbers (ICANN). Normally, computers on the Internet are not\n accessed by their IP address, but by their domain name.\n .\n Link: http://en.wikipedia.org/wiki/IPv4\n Link: http://www.ietf.org/rfc/rfc791.txt"
+msgstr ""
+
+#. Tag: protocol::ipv6, short desc
+#: files/debtags/vocabulary
+msgid "IPv6"
+msgstr ""
+
+#. Tag: protocol::ipv6, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v6), the next-generation Internet protocol, which overcomes\n the restrictions of IP (v4), like shortage of IP addresses, and is supposed to\n form the new basis of the Internet in the future, replacing IP (v4).\n .\n Many programs already support IPv6 along with IP (v4), although it is still\n seldomly used.\n .\n Link: http://en.wikipedia.org/wiki/IPv6\n Link: http://www.ipv6.org/"
+msgstr ""
+
+#. Tag: protocol::irc, short desc
+#: files/debtags/vocabulary
+msgid "IRC"
+msgstr ""
+
+#. Tag: protocol::irc, long desc
+#: files/debtags/vocabulary
+msgid " Internet Relay Chat, a protocol for text chatting over network, extensively\n used on the Internet. It supports chat rooms, so-called channels, as well as\n private, one-to-one communication.\n .\n IRC servers are organized in networks, so that a client can connect to a\n geographically near IRC server, that itself is connected to other IRC servers\n spread over the whole world.\n .\n The official Debian channel is #debian on the freenode network.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat"
+msgstr ""
+
+#. Tag: protocol::jabber, short desc
+#: files/debtags/vocabulary
+msgid "Jabber"
+msgstr ""
+
+#. Tag: protocol::jabber, long desc
+#: files/debtags/vocabulary
+msgid " The Jabber protocol is an instant messaging protocol on the basis of the XMPP\n protocol. Additionally to private one-to-one communication, it also supports\n chat rooms, and it is used in the Jabber IM network as well as for the IM\n capabilities for the new GoogleTalk network.\n .\n In contrast to other IM networks like MSN, ICQ or AIM, the Jabber servers are\n free software and can be used to create a private chat platform or have an own\n server to connect to the Jabber network.\n .\n Link: http://www.jabber.org\n Link: http://en.wikipedia.org/wiki/Jabber"
+msgstr ""
+
+#. Tag: protocol::kerberos, short desc
+#: files/debtags/vocabulary
+msgid "Kerberos"
+msgstr ""
+
+#. Tag: protocol::kerberos, long desc
+#: files/debtags/vocabulary
+msgid " Kerberos is a authentication protocol for computer networks for secure\n authentication over an otherwise insecure network, using symmetric\n cryptography and a third party service provider, that is trusted both by\n client and server.\n . \n The authentication mechanism provided by Kerberos is mutual, so that not only\n a server can be sure of a client's identity, but also a client can be sure a\n connection to a server is not intercepted.\n .\n Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29\n Link: http://http://www.ietf.org/rfc/rfc4120.txt"
+msgstr ""
+
+#. Tag: protocol::lpr, short desc
+#: files/debtags/vocabulary
+msgid "LPR"
+msgstr ""
+
+#. Tag: protocol::lpr, long desc
+#: files/debtags/vocabulary
+msgid " The Line Printer Daemon protocol, a protocol used for accessing or providing\n network print services in a Unix network, but also used for local setups.\n .\n CUPS, the Common Unix Printing System, was developed to replace the old\n LPD/LPR system, while maintaining backwards compatibility.\n .\n Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol\n Link: http://www.ietf.org/rfc/rfc1179.txt"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, short desc
+#: files/debtags/vocabulary
+msgid "MSN Messenger"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The MSN messenger protocol is the protocol that is used by Microsoft's own\n instant messaging network.\n .\n The protocol is a proprietary protocol. Although Microsoft once send a draft\n of the protocol specification to the IETF, it has since dated out and clients\n that connect to the MSN Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://www.hypothetic.org/docs/msn/"
+msgstr ""
+
+#. Tag: protocol::nfs, short desc
+#: files/debtags/vocabulary
+msgid "NFS"
+msgstr ""
+
+#. Tag: protocol::nfs, long desc
+#: files/debtags/vocabulary
+msgid " Network File System, a protocol originally developed by Sun Microsystems in\n 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a\n distributed file system, allows a user on a client computer to access files\n over a network as easily as if attached to its local disks.\n .\n Link: http://en.wikipedia.org/wiki/Network_File_System"
+msgstr ""
+
+#. Tag: protocol::nntp, short desc
+#: files/debtags/vocabulary
+msgid "NNTP"
+msgstr ""
+
+#. Tag: protocol::nntp, long desc
+#: files/debtags/vocabulary
+msgid " Network News Transfer Protocol, a protocol for reading in writing Usenet\n articles (a Usenet article is comparable with an email), but also used\n among NNTP servers to transfer articles. \n .\n Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc977.txt"
+msgstr ""
+
+#. Tag: protocol::oscar, short desc
+#: files/debtags/vocabulary
+msgid "OSCAR (AIM/ICQ)"
+msgstr ""
+
+#. Tag: protocol::oscar, long desc
+#: files/debtags/vocabulary
+msgid " Open System for CommunicAtion in Realtime, an instant messaging used by\n AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9\n of the ICQ IM network are also instances of the OSCAR protocol.\n .\n OSCAR is a binary proprietary protocol. Since there is no official documentation,\n clients that connect to AIM or ICQ have to rely on information that has\n been reverse-engineered.\n .\n Link: http://en.wikipedia.org/wiki/OSCAR_protocol\n Link: http://www.oilcan.org/oscar/"
+msgstr ""
+
+#. Tag: protocol::pop3, short desc
+#: files/debtags/vocabulary
+msgid "POP3"
+msgstr ""
+
+#. Tag: protocol::pop3, long desc
+#: files/debtags/vocabulary
+msgid " Post Office Protocol, a protocol to download emails from a mail server,\n designed for users that have only intermittent connection to the Internet.\n .\n In contrast to IMAP server, messages that are downloaded via POP3 are not\n supposed to stay on the server afterwards, since POP3 does not support\n multiple mailboxes for one account on the server.\n .\n Link: http://en.wikipedia.org/wiki/Post_Office_Protocol\n Link: http://www.ietf.org/rfc/rfc1939.txt"
+msgstr ""
+
+#. Tag: protocol::radius, short desc
+#: files/debtags/vocabulary
+msgid "RADIUS"
+msgstr ""
+
+#. Tag: protocol::radius, long desc
+#: files/debtags/vocabulary
+msgid " Remote Authentication Dial In User Service, a protocol for authentication,\n authorization and accounting of network access, mostly used by Internet\n service providers handle handle dial-up Internet connections.\n .\n Link: http://en.wikipedia.org/wiki/RADIUS\n Link: http://www.ietf.org/rfc/rfc2865.txt"
+msgstr ""
+
+#. Tag: protocol::sftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::sftp, short desc
+#: files/debtags/vocabulary
+msgid "SFTP"
+msgstr ""
+
+#. Tag: protocol::sftp, long desc
+#: files/debtags/vocabulary
+msgid " SSH File Transfer Protocol, a protocol for secure, encrypting file exchange\n and manipulation over insecure networks, using the SSH protocol.\n .\n SFTP provides a complete set of file system operations, different from its\n predecessor SCP, which only allowed file transfer. It is not, other than the\n name might suggest, the a version of the FTP protocol executed through an\n SSH channel.\n .\n Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol"
+msgstr ""
+
+#. Tag: protocol::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB"
+msgstr ""
+
+#. Tag: protocol::smb, long desc
+#: files/debtags/vocabulary
+msgid " Server Message Block, a protocol for providing file access and printer sharing\n over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File\n System) is a synonym for SMB\n .\n Although SMB is a proprietary protocol, the Samba project reverse-engineered\n the protocol and developed both client and server programs for better\n interoperability in mixed Unix/Windows networks.\n .\n Link: http://en.wikipedia.org/wiki/Server_Message_Block\n Link: http://www.samba.org/"
+msgstr ""
+
+#. Tag: protocol::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP"
+msgstr ""
+
+#. Tag: protocol::smtp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Mail Transfer Protocol, a protocol or for transmitting emails over the\n Internet.\n .\n Every SMTP server utilizes SMTP to hand on emails to the next mail server\n until an email arrives at its destination, from where it is usually retrieved\n via POP3 or IMAP \n .\n Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc2821.txt"
+msgstr ""
+
+#. Tag: protocol::snmp, short desc
+#: files/debtags/vocabulary
+msgid "SNMP"
+msgstr ""
+
+#. Tag: protocol::snmp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Network Management Protocol, a member of the Internet protocol suite\n and used for monitoring or configuring network devices.\n .\n SNMP servers normally run on network equipment like routers.\n .\n Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol\n Link: http://www.ietf.org/rfc/rfc3411.txt"
+msgstr ""
+
+#. Tag: protocol::soap, short desc
+#: files/debtags/vocabulary
+msgid "SOAP"
+msgstr ""
+
+#. Tag: protocol::soap, long desc
+#: files/debtags/vocabulary
+msgid " Simple Object Access Protocol, a protocol for exchanging messages between\n different computers in a network. The messages are encoded in XML and usually\n sent over HTTP.\n .\n SOAP is used to provide APIs to web services, such as the Google API to\n utilize Google's searching engine from client applications.\n .\n Link: http://en.wikipedia.org/wiki/SOAP\n Link: http://www.w3.org/TR/soap/"
+msgstr ""
+
+#. Tag: protocol::ssh, short desc
+#: files/debtags/vocabulary
+msgid "SSH"
+msgstr ""
+
+#. Tag: protocol::ssh, long desc
+#: files/debtags/vocabulary
+msgid " Secure Shell, a protocol for secure, encrypted network connections. SSH can\n be used to execute programs on a remote host with an SSH server over secure\n otherwise insecure protocols through an SSH channel. The main use is, as the\n name suggest, to provide encrypted login and shell access on remote servers.\n .\n SSH authentication can be done with password or, which is the preferred\n mechanism, via asymmetric public/private key cryptography.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Shell"
+msgstr ""
+
+#. Tag: protocol::ssl, short desc
+#: files/debtags/vocabulary
+msgid "SSL/TLS"
+msgstr ""
+
+#. Tag: protocol::ssl, long desc
+#: files/debtags/vocabulary
+msgid " Secure Socket Layer/Transport Layer Security, a protocol that provides \n secure encrypted communication on the Internet. It is used to authenticate\n the identity of a service provider (such as a Internet banking server) and\n to secure the communications channel.\n .\n Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be\n transmitted over SSL/TLS to secure the transmitted data. In this case, an\n \"S\" is added to the protocol name, like HTTPS, FTPS etc.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer"
+msgstr ""
+
+#. Tag: protocol::tcp, short desc
+#: files/debtags/vocabulary
+msgid "TCP"
+msgstr ""
+
+#. Tag: protocol::tcp, long desc
+#: files/debtags/vocabulary
+msgid " Transport Control Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n TCP is used as the transport protocol for many services on the Internet,\n such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.\n .\n Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol\n Link: http://www.ietf.org/rfc/rfc793.txt"
+msgstr ""
+
+#. Tag: protocol::udp, short desc
+#: files/debtags/vocabulary
+msgid "UDP"
+msgstr ""
+
+#. Tag: protocol::udp, long desc
+#: files/debtags/vocabulary
+msgid " User Datagram Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n UDP is not as reliable as TCP, but faster and thus better fit for\n time-sensitive purposes, like the DNS protocol and VoIP.\n .\n Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol\n Link: http://www.ietf.org/rfc/rfc768.txt"
+msgstr ""
+
+#. Tag: protocol::voip, short desc
+#: files/debtags/vocabulary
+msgid "VoIP"
+msgstr ""
+
+#. Tag: protocol::voip, long desc
+#: files/debtags/vocabulary
+msgid " Voice over IP, a general term for protocols that route voice conversations\n over the Internet.\n .\n Popular VoIP protocols are SIP, H.323 and IAX.\n .\n Link: http://en.wikipedia.org/wiki/Voice_over_IP"
+msgstr ""
+
+#. Tag: protocol::webdav, short desc
+#: files/debtags/vocabulary
+msgid "WebDAV"
+msgstr ""
+
+#. Tag: protocol::webdav, long desc
+#: files/debtags/vocabulary
+msgid " Web-based Distributed Authoring and Versioning, a extension of the HTTP\n protocol to support creating and changing documents on an HTTP server. Thus,\n the client can access the documents on an HTTP server as it would those on the\n local file system.\n .\n Link: http://en.wikipedia.org/wiki/WebDAV\n Link: http://www.ietf.org/rfc/rfc2518.txt"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, short desc
+#: files/debtags/vocabulary
+msgid "XML-RPC"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, long desc
+#: files/debtags/vocabulary
+msgid " XML Remote Procedure Call, a simple protocol for remote procedure calls that\n uses XML for encoding and the HTTP protocol for transport.\n .\n SOAP, which is a considerably more sophisticated protocol, was developed from\n XML-RPC.\n .\n Link: http://en.wikipedia.org/wiki/XML-RPC\n Link: http://www.xmlrpc.com/"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, short desc
+#: files/debtags/vocabulary
+msgid "Yahoo! Messenger"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging\n network.\n .\n This a proprietary binary protocol without any official documentation. Clients\n that connect to the Yahoo! Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger\n Link: http://www.venkydude.com/articles/yahoo.htm"
+msgstr ""
+
+#. Facet: filetransfer, short desc
+#: files/debtags/vocabulary
+msgid "File Transfer"
+msgstr ""
+
+#. Tag: filetransfer::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::sftp, long desc
+#: files/debtags/vocabulary
+msgid " Secure File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB and CIFS"
+msgstr ""
+
+#. Tag: filetransfer::smb, long desc
+#: files/debtags/vocabulary
+msgid " Windows file and printer sharing (SMB)"
+msgstr ""
+
+#. Tag: filetransfer::dcc, short desc
+#: files/debtags/vocabulary
+msgid "IRC DCC"
+msgstr ""
+
+#. Tag: filetransfer::dcc, long desc
+#: files/debtags/vocabulary
+msgid " Direct Client to Client protocol used by Internet Relay Chat clients."
+msgstr ""
+
+#. Facet: uitoolkit, short desc
+#: files/debtags/vocabulary
+msgid "Interface Toolkit"
+msgstr ""
+
+#. Tag: uitoolkit::athena, short desc
+#: files/debtags/vocabulary
+msgid "Athena Widgets"
+msgstr ""
+
+#. Tag: uitoolkit::fltk, short desc
+#: files/debtags/vocabulary
+msgid "FLTK"
+msgstr ""
+
+#. Tag: uitoolkit::glut, short desc
+#: files/debtags/vocabulary
+msgid "GLUT"
+msgstr ""
+
+#. Tag: uitoolkit::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUstep"
+msgstr ""
+
+#. Tag: uitoolkit::gtk, short desc
+#: files/debtags/vocabulary
+msgid "GTK"
+msgstr ""
+
+#. Tag: uitoolkit::motif, short desc
+#: files/debtags/vocabulary
+msgid "Lesstif/Motif"
+msgstr ""
+
+#. Tag: uitoolkit::ncurses, short desc
+#: files/debtags/vocabulary
+msgid "Ncurses TUI"
+msgstr ""
+
+#. Tag: uitoolkit::qt, short desc
+#: files/debtags/vocabulary
+msgid "QT"
+msgstr ""
+
+#. Tag: uitoolkit::sdl, short desc
+#: files/debtags/vocabulary
+msgid "SDL"
+msgstr ""
+
+#. Tag: uitoolkit::tk, short desc
+#: files/debtags/vocabulary
+msgid "TK"
+msgstr ""
+
+#. Tag: uitoolkit::wxwidgets, short desc
+#: files/debtags/vocabulary
+msgid "wxWidgets"
+msgstr ""
+
+#. Tag: uitoolkit::xlib, short desc
+#: files/debtags/vocabulary
+msgid "X library"
+msgstr ""
+
+#. Facet: use, short desc
+#: files/debtags/vocabulary
+msgid "Purpose"
+msgstr ""
+
+#. Tag: use::analysing, short desc
+#: files/debtags/vocabulary
+msgid "Analysing"
+msgstr ""
+
+#. Tag: use::analysing, long desc
+#: files/debtags/vocabulary
+msgid " Software for turning data into knowledge."
+msgstr ""
+
+#. Tag: use::browsing, short desc
+#: files/debtags/vocabulary
+msgid "Browsing"
+msgstr ""
+
+#. Tag: use::chatting, short desc
+#: files/debtags/vocabulary
+msgid "Chatting"
+msgstr ""
+
+#. Tag: use::checking, short desc
+#: files/debtags/vocabulary
+msgid "Checking"
+msgstr ""
+
+#. Tag: use::checking, long desc
+#: files/debtags/vocabulary
+msgid " All sorts of checking, checking a filesystem for validity, checking\n a document for incorrectly spelled words, checking a network for \n routing problems. Verifying."
+msgstr ""
+
+#. Tag: use::comparing, short desc
+#: files/debtags/vocabulary
+msgid "Comparing"
+msgstr ""
+
+#. Tag: use::comparing, long desc
+#: files/debtags/vocabulary
+msgid " To find what relates or differs in two or more objects."
+msgstr ""
+
+#. Tag: use::compressing, short desc
+#: files/debtags/vocabulary
+msgid "Compressing"
+msgstr ""
+
+#. Tag: use::configuring, short desc
+#: files/debtags/vocabulary
+#. Tag: network::configuration, short desc
+#: files/debtags/vocabulary
+msgid "Configuration"
+msgstr ""
+
+#. Tag: use::converting, short desc
+#: files/debtags/vocabulary
+msgid "Data Conversion"
+msgstr ""
+
+#. Tag: use::dialing, short desc
+#: files/debtags/vocabulary
+msgid "Dialup Access"
+msgstr ""
+
+#. Tag: use::downloading, short desc
+#: files/debtags/vocabulary
+msgid "Downloading"
+msgstr ""
+
+#. Tag: use::driver, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Driver"
+msgstr ""
+
+#. Tag: use::editing, short desc
+#: files/debtags/vocabulary
+msgid "Editing"
+msgstr ""
+
+#. Tag: use::entertaining, short desc
+#: files/debtags/vocabulary
+msgid "Entertaining"
+msgstr ""
+
+#. Tag: use::filtering, short desc
+#: files/debtags/vocabulary
+msgid "Filtering"
+msgstr ""
+
+#. Tag: use::gameplaying, short desc
+#: files/debtags/vocabulary
+msgid "Game Playing"
+msgstr ""
+
+#. Tag: use::learning, short desc
+#: files/debtags/vocabulary
+msgid "Learning"
+msgstr ""
+
+#. Tag: use::organizing, short desc
+#: files/debtags/vocabulary
+msgid "Data Organisation"
+msgstr ""
+
+#. Tag: use::playing, short desc
+#: files/debtags/vocabulary
+msgid "Playing Media"
+msgstr ""
+
+#. Tag: use::printing, short desc
+#: files/debtags/vocabulary
+msgid "Printing"
+msgstr ""
+
+#. Tag: use::proxying, short desc
+#: files/debtags/vocabulary
+msgid "Proxying"
+msgstr ""
+
+#. Tag: use::routing, short desc
+#: files/debtags/vocabulary
+#. Tag: network::routing, short desc
+#: files/debtags/vocabulary
+msgid "Routing"
+msgstr ""
+
+#. Tag: use::searching, short desc
+#: files/debtags/vocabulary
+msgid "Searching"
+msgstr ""
+
+#. Tag: use::scanning, short desc
+#: files/debtags/vocabulary
+#. Tag: network::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Scanning"
+msgstr ""
+
+#. Tag: use::storing, short desc
+#: files/debtags/vocabulary
+msgid "Storing"
+msgstr ""
+
+#. Tag: use::synchronizing, short desc
+#: files/debtags/vocabulary
+msgid "Synchronisation"
+msgstr ""
+
+#. Tag: use::timekeeping, short desc
+#: files/debtags/vocabulary
+msgid "Time and Clock"
+msgstr ""
+
+#. Tag: use::transmission, short desc
+#: files/debtags/vocabulary
+msgid "Transmission"
+msgstr ""
+
+#. Tag: use::typesetting, short desc
+#: files/debtags/vocabulary
+msgid "Typesetting"
+msgstr ""
+
+#. Tag: use::viewing, short desc
+#: files/debtags/vocabulary
+msgid "Data Visualization"
+msgstr ""
+
+#. Tag: use::text-formatting, short desc
+#: files/debtags/vocabulary
+msgid "Text Formatting"
+msgstr ""
+
+#. Tag: web::appserver, short desc
+#: files/debtags/vocabulary
+msgid "Application Server"
+msgstr ""
+
+#. Tag: web::blog, short desc
+#: files/debtags/vocabulary
+msgid "Blog Software"
+msgstr ""
+
+#. Tag: web::browser, short desc
+#: files/debtags/vocabulary
+msgid "Browser"
+msgstr ""
+
+#. Tag: web::cms, short desc
+#: files/debtags/vocabulary
+msgid "Content Management (CMS)"
+msgstr ""
+
+#. Tag: web::cgi, short desc
+#: files/debtags/vocabulary
+msgid "CGI"
+msgstr ""
+
+#. Tag: web::commerce, short desc
+#: files/debtags/vocabulary
+msgid "E-commerce"
+msgstr ""
+
+#. Tag: web::forum, short desc
+#: files/debtags/vocabulary
+msgid "Forum"
+msgstr ""
+
+#. Tag: web::portal, short desc
+#: files/debtags/vocabulary
+msgid "Portal"
+msgstr ""
+
+#. Tag: web::scripting, short desc
+#: files/debtags/vocabulary
+msgid "Scripting"
+msgstr ""
+
+#. Tag: web::search-engine, short desc
+#: files/debtags/vocabulary
+msgid "Search engine"
+msgstr ""
+
+#. Tag: web::server, short desc
+#: files/debtags/vocabulary
+#. Tag: network::server, short desc
+#: files/debtags/vocabulary
+msgid "Server"
+msgstr ""
+
+#. Tag: web::wiki, short desc
+#: files/debtags/vocabulary
+msgid "Wiki Software"
+msgstr ""
+
+#. Tag: web::wiki, long desc
+#: files/debtags/vocabulary
+msgid " Wiki software, servers, utilities and plug-ins."
+msgstr ""
+
+#. Facet: network, short desc
+#: files/debtags/vocabulary
+msgid "Networking"
+msgstr ""
+
+#. Tag: network::client, short desc
+#: files/debtags/vocabulary
+msgid "Client"
+msgstr ""
+
+#. Tag: network::hiavailability, short desc
+#: files/debtags/vocabulary
+msgid "High Availability"
+msgstr ""
+
+#. Tag: network::load-balancing, short desc
+#: files/debtags/vocabulary
+msgid "Load Balancing"
+msgstr ""
+
+#. Tag: network::service, short desc
+#: files/debtags/vocabulary
+msgid "Service"
+msgstr ""
+
+#. Tag: network::vpn, short desc
+#: files/debtags/vocabulary
+msgid "VPN or Tunneling"
+msgstr ""
+
+#. Facet: x11, short desc
+#: files/debtags/vocabulary
+msgid "X Windowing System"
+msgstr ""
+
+#. Tag: x11::applet, short desc
+#: files/debtags/vocabulary
+msgid "Applet"
+msgstr ""
+
+#. Tag: x11::display-manager, short desc
+#: files/debtags/vocabulary
+msgid "Login Manager"
+msgstr ""
+
+#. Tag: x11::display-manager, long desc
+#: files/debtags/vocabulary
+msgid " Display managers (graphical login screens)"
+msgstr ""
+
+#. Tag: x11::library, short desc
+#: files/debtags/vocabulary
+msgid "Library"
+msgstr ""
+
+#. Tag: x11::screensaver, short desc
+#: files/debtags/vocabulary
+msgid "Screen Saver"
+msgstr ""
+
+#. Tag: x11::terminal, short desc
+#: files/debtags/vocabulary
+msgid "Terminal Emulator"
+msgstr ""
+
+#. Tag: x11::theme, short desc
+#: files/debtags/vocabulary
+msgid "Theme"
+msgstr ""
+
+#. Tag: x11::window-manager, short desc
+#: files/debtags/vocabulary
+msgid "Window Manager"
+msgstr ""
+
+#. Tag: x11::xserver, short desc
+#: files/debtags/vocabulary
+msgid "X Server"
+msgstr ""
+
+#. Tag: bbs, short desc
+#: files/debtags/vocabulary
+msgid "Bulletin Board Systems"
+msgstr ""
+
+#. Tag: data-exchange, short desc
+#: files/debtags/vocabulary
+msgid "Data Exchange"
+msgstr ""
+
+#. Tag: desktop, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Environment"
+msgstr ""
+
+#. Tag: file-formats, short desc
+#: files/debtags/vocabulary
+msgid "File formats"
+msgstr ""
+
+#. Tag: foreignos, short desc
+#: files/debtags/vocabulary
+msgid "Foreign OS and Hardware"
+msgstr ""
+
+#. Tag: net, short desc
+#: files/debtags/vocabulary
+msgid "IP Networking"
+msgstr ""
+
+#. Tag: netcomm, short desc
+#: files/debtags/vocabulary
+msgid "Network and Communication"
+msgstr ""
+
+#. Tag: numerical, short desc
+#: files/debtags/vocabulary
+msgid "Calculation and numerical computation"
+msgstr ""
+
+#. Tag: office, short desc
+#: files/debtags/vocabulary
+msgid "Office software"
+msgstr ""
+
+#. Tag: protocols, short desc
+#: files/debtags/vocabulary
+msgid "IP protocol support"
+msgstr ""
+
+#. Tag: science, short desc
+#: files/debtags/vocabulary
+msgid "Science"
+msgstr ""
+
+#. Tag: system, short desc
+#: files/debtags/vocabulary
+msgid "System software and maintainance"
+msgstr ""
+
+#. Tag: vi, short desc
+#: files/debtags/vocabulary
+msgid "VI editor"
+msgstr ""
+
diff --git a/po/debtags.pot b/po/debtags.pot
new file mode 100644
index 0000000..c6c289b
--- /dev/null
+++ b/po/debtags.pot
@@ -0,0 +1,3544 @@
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Facet: accessibility, short desc
+#: files/debtags/vocabulary
+msgid "Accessibility Support"
+msgstr ""
+
+#. Tag: accessibility::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Systems"
+msgstr ""
+
+#. Tag: accessibility::input, long desc
+#: files/debtags/vocabulary
+msgid " Applies to input methods for non-latin languages as well as special input\n systems."
+msgstr ""
+
+#. Tag: accessibility::ocr, short desc
+#: files/debtags/vocabulary
+msgid "Text Recognition (OCR)"
+msgstr ""
+
+#. Tag: accessibility::ocr, long desc
+#: files/debtags/vocabulary
+msgid " Optical Character Recognition"
+msgstr ""
+
+#. Tag: accessibility::screen-magnify, short desc
+#: files/debtags/vocabulary
+msgid "Screen Magnification"
+msgstr ""
+
+#. Tag: accessibility::screen-reader, short desc
+#: files/debtags/vocabulary
+msgid "Screen Reading"
+msgstr ""
+
+#. Tag: accessibility::speech, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::speech, short desc
+#: files/debtags/vocabulary
+msgid "Speech Synthesis"
+msgstr ""
+
+#. Tag: accessibility::speech-recognition, short desc
+#: files/debtags/vocabulary
+msgid "Speech Recognition"
+msgstr ""
+
+#. Tag: accessibility::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, short desc
+#: files/debtags/vocabulary
+msgid "Need an extra tag"
+msgstr ""
+
+#. Tag: accessibility::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, long desc
+#: files/debtags/vocabulary
+msgid " The package can be categorised along this facet, but the right tag for it is\n missing.\n .\n Mark a package with this tag to signal the vocabulary maintainers of cases\n where the current tag set is lacking."
+msgstr ""
+
+#. Facet: admin, short desc
+#: files/debtags/vocabulary
+msgid "System Administration"
+msgstr ""
+
+#. Tag: admin::accounting, short desc
+#: files/debtags/vocabulary
+msgid "Accounting"
+msgstr ""
+
+#. Tag: admin::automation, short desc
+#: files/debtags/vocabulary
+msgid "Automation and scheduling"
+msgstr ""
+
+#. Tag: admin::automation, long desc
+#: files/debtags/vocabulary
+msgid " Automating the execution of software in the system."
+msgstr ""
+
+#. Tag: admin::backup, short desc
+#: files/debtags/vocabulary
+msgid "Backup and Restoration"
+msgstr ""
+
+#. Tag: admin::benchmarking, short desc
+#: files/debtags/vocabulary
+msgid "Benchmarking"
+msgstr ""
+
+#. Tag: admin::boot, short desc
+#: files/debtags/vocabulary
+msgid "System Boot"
+msgstr ""
+
+#. Tag: admin::cluster, short desc
+#: files/debtags/vocabulary
+msgid "Clustering"
+msgstr ""
+
+#. Tag: admin::configuring, short desc
+#: files/debtags/vocabulary
+msgid "Configuration Tool"
+msgstr ""
+
+#. Tag: admin::file-distribution, short desc
+#: files/debtags/vocabulary
+msgid "File Distribution"
+msgstr ""
+
+#. Tag: admin::filesystem, short desc
+#: files/debtags/vocabulary
+msgid "Filesystem Tool"
+msgstr ""
+
+#. Tag: admin::filesystem, long desc
+#: files/debtags/vocabulary
+msgid " Creation, maintenance, and use of filesystems"
+msgstr ""
+
+#. Tag: admin::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics and Recovery"
+msgstr ""
+
+#. Tag: admin::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Recovering lost or damaged data.\n This tag will be split into admin::recovery\n and security::forensics."
+msgstr ""
+
+#. Tag: admin::hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Support"
+msgstr ""
+
+#. Tag: admin::install, short desc
+#: files/debtags/vocabulary
+msgid "System installation"
+msgstr ""
+
+#. Tag: admin::issuetracker, short desc
+#: files/debtags/vocabulary
+msgid "Issue tracker"
+msgstr ""
+
+#. Tag: admin::kernel, short desc
+#: files/debtags/vocabulary
+msgid "Kernel or Modules"
+msgstr ""
+
+#. Tag: admin::logging, short desc
+#: files/debtags/vocabulary
+msgid "Logging"
+msgstr ""
+
+#. Tag: admin::login, short desc
+#: files/debtags/vocabulary
+#. Tag: use::login, short desc
+#: files/debtags/vocabulary
+msgid "Login"
+msgstr ""
+
+#. Tag: admin::login, long desc
+#: files/debtags/vocabulary
+msgid " Logging into the system"
+msgstr ""
+
+#. Tag: admin::monitoring, short desc
+#: files/debtags/vocabulary
+#. Tag: use::monitor, short desc
+#: files/debtags/vocabulary
+msgid "Monitoring"
+msgstr ""
+
+#. Tag: admin::package-management, short desc
+#: files/debtags/vocabulary
+msgid "Package Management"
+msgstr ""
+
+#. Tag: admin::power-management, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::power, short desc
+#: files/debtags/vocabulary
+msgid "Power Management"
+msgstr ""
+
+#. Tag: admin::recovery, short desc
+#: files/debtags/vocabulary
+msgid "Data recovery"
+msgstr ""
+
+#. Tag: admin::user-management, short desc
+#: files/debtags/vocabulary
+msgid "User Management"
+msgstr ""
+
+#. Tag: admin::virtualization, short desc
+#: files/debtags/vocabulary
+msgid "Virtualization"
+msgstr ""
+
+#. Tag: admin::virtualization, long desc
+#: files/debtags/vocabulary
+msgid " This is not hardware emulation, but rather those facilities that allow to\n create many isolated compartments inside the same system."
+msgstr ""
+
+#. Facet: biology, short desc
+#: files/debtags/vocabulary
+#. Tag: field::biology, short desc
+#: files/debtags/vocabulary
+msgid "Biology"
+msgstr ""
+
+#. Facet: biology, long desc
+#: files/debtags/vocabulary
+msgid " How is the package related to the field of biology."
+msgstr ""
+
+#. Tag: biology::emboss, short desc
+#: files/debtags/vocabulary
+msgid "EMBOSS"
+msgstr ""
+
+#. Tag: biology::emboss, long desc
+#: files/debtags/vocabulary
+msgid " Packages related to the European Molecular Biology Open Software Suite."
+msgstr ""
+
+#. Tag: biology::format:aln, short desc
+#: files/debtags/vocabulary
+msgid "Clustal/ALN"
+msgstr ""
+
+#. Tag: biology::format:aln, long desc
+#: files/debtags/vocabulary
+msgid " Used in multiple alignment of biological sequences."
+msgstr ""
+
+#. Tag: biology::format:nexus, short desc
+#: files/debtags/vocabulary
+msgid "Nexus"
+msgstr ""
+
+#. Tag: biology::format:nexus, long desc
+#: files/debtags/vocabulary
+msgid " Popular format for phylogenetic trees."
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, short desc
+#: files/debtags/vocabulary
+msgid "Nucleic acids"
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of nucleic acids: \n DNA, RNA but also non-natural nucleic acids such as PNA or LNA."
+msgstr ""
+
+#. Tag: biology::peptidic, short desc
+#: files/debtags/vocabulary
+msgid "Proteins"
+msgstr ""
+
+#. Tag: biology::peptidic, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of aminoacids: peptides and proteins."
+msgstr ""
+
+#. Facet: culture, short desc
+#: files/debtags/vocabulary
+msgid "Culture"
+msgstr ""
+
+#. Facet: culture, long desc
+#: files/debtags/vocabulary
+msgid " The culture for which the package provides special support"
+msgstr ""
+
+#. Tag: culture::afrikaans, short desc
+#: files/debtags/vocabulary
+msgid "Afrikaans"
+msgstr ""
+
+#. Tag: culture::arabic, short desc
+#: files/debtags/vocabulary
+msgid "Arabic"
+msgstr ""
+
+#. Tag: culture::basque, short desc
+#: files/debtags/vocabulary
+msgid "Basque"
+msgstr ""
+
+#. Tag: culture::bengali, short desc
+#: files/debtags/vocabulary
+msgid "Bengali"
+msgstr ""
+
+#. Tag: culture::bokmaal, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Bokmaal"
+msgstr ""
+
+#. Tag: culture::bosnian, short desc
+#: files/debtags/vocabulary
+msgid "Bosnian"
+msgstr ""
+
+#. Tag: culture::brazilian, short desc
+#: files/debtags/vocabulary
+msgid "Brazilian"
+msgstr ""
+
+#. Tag: culture::bulgarian, short desc
+#: files/debtags/vocabulary
+msgid "Bulgarian"
+msgstr ""
+
+#. Tag: culture::catalan, short desc
+#: files/debtags/vocabulary
+msgid "Catalan"
+msgstr ""
+
+#. Tag: culture::chinese, short desc
+#: files/debtags/vocabulary
+msgid "Chinese"
+msgstr ""
+
+#. Tag: culture::czech, short desc
+#: files/debtags/vocabulary
+msgid "Czech"
+msgstr ""
+
+#. Tag: culture::croatian, short desc
+#: files/debtags/vocabulary
+msgid "Croatian"
+msgstr ""
+
+#. Tag: culture::danish, short desc
+#: files/debtags/vocabulary
+msgid "Danish"
+msgstr ""
+
+#. Tag: culture::dutch, short desc
+#: files/debtags/vocabulary
+msgid "Dutch"
+msgstr ""
+
+#. Tag: culture::esperanto, short desc
+#: files/debtags/vocabulary
+msgid "Esperanto"
+msgstr ""
+
+#. Tag: culture::estonian, short desc
+#: files/debtags/vocabulary
+msgid "Estonian"
+msgstr ""
+
+#. Tag: culture::faroese, short desc
+#: files/debtags/vocabulary
+msgid "Faroese"
+msgstr ""
+
+#. Tag: culture::farsi, short desc
+#: files/debtags/vocabulary
+msgid "Farsi"
+msgstr ""
+
+#. Tag: culture::finnish, short desc
+#: files/debtags/vocabulary
+msgid "Finnish"
+msgstr ""
+
+#. Tag: culture::french, short desc
+#: files/debtags/vocabulary
+msgid "French"
+msgstr ""
+
+#. Tag: culture::german, short desc
+#: files/debtags/vocabulary
+msgid "German"
+msgstr ""
+
+#. Tag: culture::greek, short desc
+#: files/debtags/vocabulary
+msgid "Greek"
+msgstr ""
+
+#. Tag: culture::hebrew, short desc
+#: files/debtags/vocabulary
+msgid "Hebrew"
+msgstr ""
+
+#. Tag: culture::hindi, short desc
+#: files/debtags/vocabulary
+msgid "Hindi"
+msgstr ""
+
+#. Tag: culture::hungarian, short desc
+#: files/debtags/vocabulary
+msgid "Hungarian"
+msgstr ""
+
+#. Tag: culture::icelandic, short desc
+#: files/debtags/vocabulary
+msgid "Icelandic"
+msgstr ""
+
+#. Tag: culture::irish, short desc
+#: files/debtags/vocabulary
+msgid "Irish (Gaeilge)"
+msgstr ""
+
+#. Tag: culture::italian, short desc
+#: files/debtags/vocabulary
+msgid "Italian"
+msgstr ""
+
+#. Tag: culture::japanese, short desc
+#: files/debtags/vocabulary
+msgid "Japanese"
+msgstr ""
+
+#. Tag: culture::korean, short desc
+#: files/debtags/vocabulary
+msgid "Korean"
+msgstr ""
+
+#. Tag: culture::mongolian, short desc
+#: files/debtags/vocabulary
+msgid "Mongolian"
+msgstr ""
+
+#. Tag: culture::nynorsk, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Nynorsk"
+msgstr ""
+
+#. Tag: culture::norwegian, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian"
+msgstr ""
+
+#. Tag: culture::polish, short desc
+#: files/debtags/vocabulary
+msgid "Polish"
+msgstr ""
+
+#. Tag: culture::portuguese, short desc
+#: files/debtags/vocabulary
+msgid "Portuguese"
+msgstr ""
+
+#. Tag: culture::punjabi, short desc
+#: files/debtags/vocabulary
+msgid "Punjabi"
+msgstr ""
+
+#. Tag: culture::romanian, short desc
+#: files/debtags/vocabulary
+msgid "Romanian"
+msgstr ""
+
+#. Tag: culture::russian, short desc
+#: files/debtags/vocabulary
+msgid "Russian"
+msgstr ""
+
+#. Tag: culture::serbian, short desc
+#: files/debtags/vocabulary
+msgid "Serbian"
+msgstr ""
+
+#. Tag: culture::slovak, short desc
+#: files/debtags/vocabulary
+msgid "Slovak"
+msgstr ""
+
+#. Tag: culture::spanish, short desc
+#: files/debtags/vocabulary
+msgid "Spanish"
+msgstr ""
+
+#. Tag: culture::swedish, short desc
+#: files/debtags/vocabulary
+msgid "Swedish"
+msgstr ""
+
+#. Tag: culture::taiwanese, short desc
+#: files/debtags/vocabulary
+msgid "Taiwanese"
+msgstr ""
+
+#. Tag: culture::tajik, short desc
+#: files/debtags/vocabulary
+msgid "Tajik"
+msgstr ""
+
+#. Tag: culture::tamil, short desc
+#: files/debtags/vocabulary
+msgid "Tamil"
+msgstr ""
+
+#. Tag: culture::thai, short desc
+#: files/debtags/vocabulary
+msgid "Thai"
+msgstr ""
+
+#. Tag: culture::turkish, short desc
+#: files/debtags/vocabulary
+msgid "Turkish"
+msgstr ""
+
+#. Tag: culture::ukrainian, short desc
+#: files/debtags/vocabulary
+msgid "Ukrainian"
+msgstr ""
+
+#. Tag: culture::uzbek, short desc
+#: files/debtags/vocabulary
+msgid "Uzbek"
+msgstr ""
+
+#. Tag: culture::welsh, short desc
+#: files/debtags/vocabulary
+msgid "Welsh"
+msgstr ""
+
+#. Facet: devel, short desc
+#: files/debtags/vocabulary
+msgid "Software Development"
+msgstr ""
+
+#. Tag: devel::bugtracker, short desc
+#: files/debtags/vocabulary
+msgid "Bug Tracking"
+msgstr ""
+
+#. Tag: devel::buildtools, short desc
+#: files/debtags/vocabulary
+msgid "Build Tool"
+msgstr ""
+
+#. Tag: devel::code-generator, short desc
+#: files/debtags/vocabulary
+msgid "Code Generation"
+msgstr ""
+
+#. Tag: devel::code-generator, long desc
+#: files/debtags/vocabulary
+msgid " Parser, lexer and other code generators"
+msgstr ""
+
+#. Tag: devel::compiler, short desc
+#: files/debtags/vocabulary
+msgid "Compiler"
+msgstr ""
+
+#. Tag: devel::debian, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::debian, short desc
+#: files/debtags/vocabulary
+msgid "Debian"
+msgstr ""
+
+#. Tag: devel::debian, long desc
+#: files/debtags/vocabulary
+msgid " Tools, documentation, etc. of use primarily to Debian developers."
+msgstr ""
+
+#. Tag: devel::debugger, short desc
+#: files/debtags/vocabulary
+msgid "Debugging"
+msgstr ""
+
+#. Tag: devel::doc, short desc
+#: files/debtags/vocabulary
+#. Tag: role::documentation, short desc
+#: files/debtags/vocabulary
+msgid "Documentation"
+msgstr ""
+
+#. Tag: devel::docsystem, short desc
+#: files/debtags/vocabulary
+msgid "Literate Programming"
+msgstr ""
+
+#. Tag: devel::docsystem, long desc
+#: files/debtags/vocabulary
+msgid " Tools and auto-documenters"
+msgstr ""
+
+#. Tag: devel::ecma-cli, short desc
+#: files/debtags/vocabulary
+msgid "ECMA CLI"
+msgstr ""
+
+#. Tag: devel::ecma-cli, long desc
+#: files/debtags/vocabulary
+msgid " Tools and libraries for development with implementations of \n the ECMA CLI (Common Language Infrastructure), like Mono\n or DotGNU Portable.NET."
+msgstr ""
+
+#. Tag: devel::editor, short desc
+#: files/debtags/vocabulary
+msgid "Source Editor"
+msgstr ""
+
+#. Tag: devel::examples, short desc
+#: files/debtags/vocabulary
+msgid "Examples"
+msgstr ""
+
+#. Tag: devel::ide, short desc
+#: files/debtags/vocabulary
+msgid "IDE"
+msgstr ""
+
+#. Tag: devel::ide, long desc
+#: files/debtags/vocabulary
+msgid " Integrated Development Environment"
+msgstr ""
+
+#. Tag: devel::interpreter, short desc
+#: files/debtags/vocabulary
+msgid "Interpreter"
+msgstr ""
+
+#. Tag: devel::i18n, short desc
+#: files/debtags/vocabulary
+msgid "Internationalization"
+msgstr ""
+
+#. Tag: devel::lang:ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada Development"
+msgstr ""
+
+#. Tag: devel::lang:c, short desc
+#: files/debtags/vocabulary
+msgid "C Development"
+msgstr ""
+
+#. Tag: devel::lang:c++, short desc
+#: files/debtags/vocabulary
+msgid "C++ Development"
+msgstr ""
+
+#. Tag: devel::lang:c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C# Development"
+msgstr ""
+
+#. Tag: devel::lang:fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran Development"
+msgstr ""
+
+#. Tag: devel::lang:haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell Development"
+msgstr ""
+
+#. Tag: devel::lang:java, short desc
+#: files/debtags/vocabulary
+msgid "Java Development"
+msgstr ""
+
+#. Tag: devel::lang:ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/JavaScript Development"
+msgstr ""
+
+#. Tag: devel::lang:lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp Development"
+msgstr ""
+
+#. Tag: devel::lang:lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua Development"
+msgstr ""
+
+#. Tag: devel::lang:ml, short desc
+#: files/debtags/vocabulary
+msgid "ML Development"
+msgstr ""
+
+#. Tag: devel::lang:objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective-C Development"
+msgstr ""
+
+#. Tag: devel::lang:ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml Development"
+msgstr ""
+
+#. Tag: devel::lang:octave, short desc
+#: files/debtags/vocabulary
+msgid "GNU Octave Development"
+msgstr ""
+
+#. Tag: devel::lang:pascal, short desc
+#: files/debtags/vocabulary
+msgid "Pascal Development"
+msgstr ""
+
+#. Tag: devel::lang:perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl Development"
+msgstr ""
+
+#. Tag: devel::lang:php, short desc
+#: files/debtags/vocabulary
+msgid "PHP Development"
+msgstr ""
+
+#. Tag: devel::lang:pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike Development"
+msgstr ""
+
+#. Tag: devel::lang:prolog, short desc
+#: files/debtags/vocabulary
+msgid "Prolog Development"
+msgstr ""
+
+#. Tag: devel::lang:python, short desc
+#: files/debtags/vocabulary
+msgid "Python Development"
+msgstr ""
+
+#. Tag: devel::lang:r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R Development"
+msgstr ""
+
+#. Tag: devel::lang:ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby Development"
+msgstr ""
+
+#. Tag: devel::lang:scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme Development"
+msgstr ""
+
+#. Tag: devel::lang:sql, short desc
+#: files/debtags/vocabulary
+msgid "SQL"
+msgstr ""
+
+#. Tag: devel::lang:tcl, short desc
+#: files/debtags/vocabulary
+msgid "Tcl Development"
+msgstr ""
+
+#. Tag: devel::library, short desc
+#: files/debtags/vocabulary
+msgid "Libraries"
+msgstr ""
+
+#. Tag: devel::machinecode, short desc
+#: files/debtags/vocabulary
+msgid "Machine Code"
+msgstr ""
+
+#. Tag: devel::machinecode, long desc
+#: files/debtags/vocabulary
+msgid " Assemblers and other machine-code development tools."
+msgstr ""
+
+#. Tag: devel::modelling, short desc
+#: files/debtags/vocabulary
+msgid "Modelling"
+msgstr ""
+
+#. Tag: devel::modelling, long desc
+#: files/debtags/vocabulary
+msgid " Programs and libraries that support creation of software models\n with modelling languages like UML or OCL."
+msgstr ""
+
+#. Tag: devel::packaging, short desc
+#: files/debtags/vocabulary
+msgid "Packaging"
+msgstr ""
+
+#. Tag: devel::packaging, long desc
+#: files/debtags/vocabulary
+msgid " Tools for packaging software."
+msgstr ""
+
+#. Tag: devel::prettyprint, short desc
+#: files/debtags/vocabulary
+msgid "Prettyprint"
+msgstr ""
+
+#. Tag: devel::prettyprint, long desc
+#: files/debtags/vocabulary
+msgid " Code pretty-printing and indentation/reformatting."
+msgstr ""
+
+#. Tag: devel::profiler, short desc
+#: files/debtags/vocabulary
+msgid "Profiling"
+msgstr ""
+
+#. Tag: devel::profiler, long desc
+#: files/debtags/vocabulary
+msgid " Profiling and optimization tools."
+msgstr ""
+
+#. Tag: devel::rcs, short desc
+#: files/debtags/vocabulary
+msgid "Revision Control"
+msgstr ""
+
+#. Tag: devel::rcs, long desc
+#: files/debtags/vocabulary
+msgid " RCS (Revision Control System) and SCM (Software Configuration Manager)"
+msgstr ""
+
+#. Tag: devel::rpc, short desc
+#: files/debtags/vocabulary
+msgid "RPC"
+msgstr ""
+
+#. Tag: devel::rpc, long desc
+#: files/debtags/vocabulary
+msgid " Remote Procedure Call, Network transparent programming"
+msgstr ""
+
+#. Tag: devel::runtime, short desc
+#: files/debtags/vocabulary
+msgid "Runtime Support"
+msgstr ""
+
+#. Tag: devel::runtime, long desc
+#: files/debtags/vocabulary
+msgid " Runtime environments of various languages and systems."
+msgstr ""
+
+#. Tag: devel::testing-qa, short desc
+#: files/debtags/vocabulary
+msgid "Testing and QA"
+msgstr ""
+
+#. Tag: devel::testing-qa, long desc
+#: files/debtags/vocabulary
+msgid " Tools for software testing and quality assurance."
+msgstr ""
+
+#. Tag: devel::ui-builder, short desc
+#: files/debtags/vocabulary
+#. Facet: interface, short desc
+#: files/debtags/vocabulary
+msgid "User Interface"
+msgstr ""
+
+#. Tag: devel::ui-builder, long desc
+#: files/debtags/vocabulary
+msgid " Tools for designing user interfaces."
+msgstr ""
+
+#. Tag: devel::web, short desc
+#: files/debtags/vocabulary
+msgid "Web"
+msgstr ""
+
+#. Tag: devel::web, long desc
+#: files/debtags/vocabulary
+msgid " Web-centric frameworks, CGI libraries and other web-specific development\n tools."
+msgstr ""
+
+#. Tag: educational, short desc
+#: files/debtags/vocabulary
+msgid "[Edu] Educational Software"
+msgstr ""
+
+#. Facet: field, short desc
+#: files/debtags/vocabulary
+msgid "Field"
+msgstr ""
+
+#. Tag: field::arts, short desc
+#: files/debtags/vocabulary
+msgid "Arts"
+msgstr ""
+
+#. Tag: field::astronomy, short desc
+#: files/debtags/vocabulary
+msgid "Astronomy"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, short desc
+#: files/debtags/vocabulary
+msgid "Bioinformatics"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, long desc
+#: files/debtags/vocabulary
+msgid " Sequence analysis software."
+msgstr ""
+
+#. Tag: field::biology:molecular, short desc
+#: files/debtags/vocabulary
+msgid "Molecular biology"
+msgstr ""
+
+#. Tag: field::biology:molecular, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to molecular cloning and related wet biology."
+msgstr ""
+
+#. Tag: field::biology:structural, short desc
+#: files/debtags/vocabulary
+msgid "Structural biology"
+msgstr ""
+
+#. Tag: field::biology:structural, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to model tridimentional structures."
+msgstr ""
+
+#. Tag: field::chemistry, short desc
+#: files/debtags/vocabulary
+msgid "Chemistry"
+msgstr ""
+
+#. Tag: field::electronics, short desc
+#: files/debtags/vocabulary
+msgid "Electronics"
+msgstr ""
+
+#. Tag: field::electronics, long desc
+#: files/debtags/vocabulary
+msgid " Circuit editors and other electronics-related software"
+msgstr ""
+
+#. Tag: field::finance, short desc
+#: files/debtags/vocabulary
+msgid "Financial"
+msgstr ""
+
+#. Tag: field::finance, long desc
+#: files/debtags/vocabulary
+msgid " Accounting and financial software"
+msgstr ""
+
+#. Tag: field::genealogy, short desc
+#: files/debtags/vocabulary
+msgid "Genealogy"
+msgstr ""
+
+#. Tag: field::geography, short desc
+#: files/debtags/vocabulary
+msgid "Geography"
+msgstr ""
+
+#. Tag: field::geology, short desc
+#: files/debtags/vocabulary
+msgid "Geology"
+msgstr ""
+
+#. Tag: field::linguistics, short desc
+#: files/debtags/vocabulary
+msgid "Linguistics"
+msgstr ""
+
+#. Tag: field::mathematics, short desc
+#: files/debtags/vocabulary
+msgid "Mathematics"
+msgstr ""
+
+#. Tag: field::medicine, short desc
+#: files/debtags/vocabulary
+msgid "Medicine"
+msgstr ""
+
+#. Tag: field::medicine:imaging, short desc
+#: files/debtags/vocabulary
+msgid "Medical Imaging"
+msgstr ""
+
+#. Tag: field::physics, short desc
+#: files/debtags/vocabulary
+msgid "Physics"
+msgstr ""
+
+#. Tag: field::religion, short desc
+#: files/debtags/vocabulary
+msgid "Religion"
+msgstr ""
+
+#. Tag: field::statistics, short desc
+#: files/debtags/vocabulary
+msgid "Statistics"
+msgstr ""
+
+#. Facet: game, short desc
+#: files/debtags/vocabulary
+msgid "Games and Amusement"
+msgstr ""
+
+#. Tag: game::adventure, short desc
+#: files/debtags/vocabulary
+msgid "Adventure"
+msgstr ""
+
+#. Tag: game::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Action and Arcade"
+msgstr ""
+
+#. Tag: game::board, short desc
+#: files/debtags/vocabulary
+msgid "Board"
+msgstr ""
+
+#. Tag: game::board:chess, short desc
+#: files/debtags/vocabulary
+msgid "Chess"
+msgstr ""
+
+#. Tag: game::card, short desc
+#: files/debtags/vocabulary
+msgid "Card"
+msgstr ""
+
+#. Tag: game::demos, short desc
+#: files/debtags/vocabulary
+msgid "Demo"
+msgstr ""
+
+#. Tag: game::fps, short desc
+#: files/debtags/vocabulary
+msgid "First person shooter"
+msgstr ""
+
+#. Tag: game::mud, short desc
+#: files/debtags/vocabulary
+msgid "Multiplayer RPG"
+msgstr ""
+
+#. Tag: game::mud, long desc
+#: files/debtags/vocabulary
+msgid " MUDs, MOOs, and other multiplayer RPGs"
+msgstr ""
+
+#. Tag: game::platform, short desc
+#: files/debtags/vocabulary
+msgid "Platform"
+msgstr ""
+
+#. Tag: game::puzzle, short desc
+#: files/debtags/vocabulary
+msgid "Puzzle"
+msgstr ""
+
+#. Tag: game::rpg, short desc
+#: files/debtags/vocabulary
+msgid "Role-playing"
+msgstr ""
+
+#. Tag: game::rpg:rogue, short desc
+#: files/debtags/vocabulary
+msgid "Rogue-Like RPG"
+msgstr ""
+
+#. Tag: game::rpg:rogue, long desc
+#: files/debtags/vocabulary
+msgid " Games like Nethack, Angband etc."
+msgstr ""
+
+#. Tag: game::simulation, short desc
+#: files/debtags/vocabulary
+msgid "Simulation"
+msgstr ""
+
+#. Tag: game::sport, short desc
+#: files/debtags/vocabulary
+msgid "Sport games"
+msgstr ""
+
+#. Tag: game::sport:racing, short desc
+#: files/debtags/vocabulary
+msgid "Racing"
+msgstr ""
+
+#. Tag: game::strategy, short desc
+#: files/debtags/vocabulary
+msgid "Strategy"
+msgstr ""
+
+#. Tag: game::tetris, short desc
+#: files/debtags/vocabulary
+msgid "Tetris-like"
+msgstr ""
+
+#. Tag: game::toys, short desc
+#: files/debtags/vocabulary
+msgid "Toy or Gimmick"
+msgstr ""
+
+#. Tag: game::typing, short desc
+#: files/debtags/vocabulary
+msgid "Typing Tutor"
+msgstr ""
+
+#. Facet: hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Enablement"
+msgstr ""
+
+#. Tag: hardware::camera, short desc
+#: files/debtags/vocabulary
+msgid "Digital Camera"
+msgstr ""
+
+#. Tag: hardware::detection, short desc
+#: files/debtags/vocabulary
+msgid "Hardware detection"
+msgstr ""
+
+#. Tag: hardware::embedded, short desc
+#: files/debtags/vocabulary
+msgid "Embedded"
+msgstr ""
+
+#. Tag: hardware::emulation, short desc
+#: files/debtags/vocabulary
+msgid "Emulation"
+msgstr ""
+
+#. Tag: hardware::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Devices"
+msgstr ""
+
+#. Tag: hardware::input:joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick"
+msgstr ""
+
+#. Tag: hardware::input:keyboard, short desc
+#: files/debtags/vocabulary
+msgid "Keyboard"
+msgstr ""
+
+#. Tag: hardware::input:mouse, short desc
+#: files/debtags/vocabulary
+msgid "Mouse"
+msgstr ""
+
+#. Tag: hardware::joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick (legacy)"
+msgstr ""
+
+#. Tag: hardware::hamradio, short desc
+#: files/debtags/vocabulary
+msgid "Ham Radio"
+msgstr ""
+
+#. Tag: hardware::laptop, short desc
+#: files/debtags/vocabulary
+msgid "Laptop"
+msgstr ""
+
+#. Tag: hardware::modem, short desc
+#: files/debtags/vocabulary
+msgid "Modem"
+msgstr ""
+
+#. Tag: hardware::modem:dsl, short desc
+#: files/debtags/vocabulary
+msgid "xDSL Modem"
+msgstr ""
+
+#. Tag: hardware::opengl, short desc
+#: files/debtags/vocabulary
+msgid "Requires video hardware acceleration"
+msgstr ""
+
+#. Tag: hardware::power:ups, short desc
+#: files/debtags/vocabulary
+msgid "UPS"
+msgstr ""
+
+#. Tag: hardware::power:ups, long desc
+#: files/debtags/vocabulary
+msgid " Uninterruptible Power Supply"
+msgstr ""
+
+#. Tag: hardware::power:acpi, short desc
+#: files/debtags/vocabulary
+msgid "ACPI Power Management"
+msgstr ""
+
+#. Tag: hardware::power:apm, short desc
+#: files/debtags/vocabulary
+msgid "APM Power Management"
+msgstr ""
+
+#. Tag: hardware::printer, short desc
+#: files/debtags/vocabulary
+msgid "Printer"
+msgstr ""
+
+#. Tag: hardware::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Image-scanning hardware"
+msgstr ""
+
+#. Tag: hardware::storage, short desc
+#: files/debtags/vocabulary
+msgid "Storage"
+msgstr ""
+
+#. Tag: hardware::storage:cd, short desc
+#: files/debtags/vocabulary
+msgid "CD"
+msgstr ""
+
+#. Tag: hardware::storage:cd, long desc
+#: files/debtags/vocabulary
+msgid " Compact Disc"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, short desc
+#: files/debtags/vocabulary
+msgid "DVD"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, long desc
+#: files/debtags/vocabulary
+msgid " Digital Versatile Disc"
+msgstr ""
+
+#. Tag: hardware::storage:floppy, short desc
+#: files/debtags/vocabulary
+msgid "Floppy disk"
+msgstr ""
+
+#. Tag: hardware::usb, short desc
+#: files/debtags/vocabulary
+msgid "USB"
+msgstr ""
+
+#. Tag: hardware::usb, long desc
+#: files/debtags/vocabulary
+msgid " Universal Serial Bus"
+msgstr ""
+
+#. Tag: hardware::video, short desc
+#: files/debtags/vocabulary
+msgid "Graphics and Video"
+msgstr ""
+
+#. Facet: made-of, short desc
+#: files/debtags/vocabulary
+msgid "Made Of"
+msgstr ""
+
+#. Facet: made-of, long desc
+#: files/debtags/vocabulary
+msgid " The languages or data formats used to make the package"
+msgstr ""
+
+#. Tag: made-of::data:dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionary"
+msgstr ""
+
+#. Tag: made-of::data:font, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::font, short desc
+#: files/debtags/vocabulary
+msgid "Font"
+msgstr ""
+
+#. Tag: made-of::data:html, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::html, short desc
+#: files/debtags/vocabulary
+msgid "HTML Hypertext Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:icons, short desc
+#: files/debtags/vocabulary
+msgid "Icons"
+msgstr ""
+
+#. Tag: made-of::data:info, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::info, short desc
+#: files/debtags/vocabulary
+msgid "Documentation in Info format"
+msgstr ""
+
+#. Tag: made-of::data:man, short desc
+#: files/debtags/vocabulary
+msgid "Manuals in nroff format"
+msgstr ""
+
+#. Tag: made-of::data:pdf, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::pdf, short desc
+#: files/debtags/vocabulary
+msgid "PDF Documents"
+msgstr ""
+
+#. Tag: made-of::data:postscript, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::postscript, short desc
+#: files/debtags/vocabulary
+msgid "Postscript"
+msgstr ""
+
+#. Tag: made-of::data:sgml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::sgml, short desc
+#: files/debtags/vocabulary
+msgid "SGML, Standard Generalized Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:svg, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::svg, short desc
+#: files/debtags/vocabulary
+msgid "SVG, Scalable Vector Graphics"
+msgstr ""
+
+#. Tag: made-of::data:tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX, LaTeX and DVI"
+msgstr ""
+
+#. Tag: made-of::data:vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:xml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::xml, short desc
+#: files/debtags/vocabulary
+msgid "XML"
+msgstr ""
+
+#. Tag: interface::3d, short desc
+#: files/debtags/vocabulary
+msgid "Three-Dimensional"
+msgstr ""
+
+#. Tag: interface::commandline, short desc
+#: files/debtags/vocabulary
+msgid "Command Line"
+msgstr ""
+
+#. Tag: interface::daemon, short desc
+#: files/debtags/vocabulary
+msgid "Daemon"
+msgstr ""
+
+#. Tag: interface::daemon, long desc
+#: files/debtags/vocabulary
+msgid " Runs in background, only a control interface is provided, usually on\n commandline."
+msgstr ""
+
+#. Tag: interface::framebuffer, short desc
+#: files/debtags/vocabulary
+msgid "Framebuffer"
+msgstr ""
+
+#. Tag: interface::shell, short desc
+#: files/debtags/vocabulary
+msgid "Command Shell"
+msgstr ""
+
+#. Tag: interface::svga, short desc
+#: files/debtags/vocabulary
+msgid "Console SVGA"
+msgstr ""
+
+#. Tag: interface::text-mode, short desc
+#: files/debtags/vocabulary
+msgid "Text-based Interactive"
+msgstr ""
+
+#. Tag: interface::web, short desc
+#: files/debtags/vocabulary
+#. Facet: web, short desc
+#: files/debtags/vocabulary
+msgid "World Wide Web"
+msgstr ""
+
+#. Tag: interface::x11, short desc
+#: files/debtags/vocabulary
+msgid "X Window System"
+msgstr ""
+
+#. Facet: implemented-in, short desc
+#: files/debtags/vocabulary
+msgid "Implemented in"
+msgstr ""
+
+#. Tag: implemented-in::ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada"
+msgstr ""
+
+#. Tag: implemented-in::c, short desc
+#: files/debtags/vocabulary
+msgid "C"
+msgstr ""
+
+#. Tag: implemented-in::c++, short desc
+#: files/debtags/vocabulary
+msgid "C++"
+msgstr ""
+
+#. Tag: implemented-in::c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C#"
+msgstr ""
+
+#. Tag: implemented-in::fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran"
+msgstr ""
+
+#. Tag: implemented-in::haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell"
+msgstr ""
+
+#. Tag: implemented-in::java, short desc
+#: files/debtags/vocabulary
+msgid "Java"
+msgstr ""
+
+#. Tag: implemented-in::ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/Javascript"
+msgstr ""
+
+#. Tag: implemented-in::lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp"
+msgstr ""
+
+#. Tag: implemented-in::lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua"
+msgstr ""
+
+#. Tag: implemented-in::ml, short desc
+#: files/debtags/vocabulary
+msgid "ML"
+msgstr ""
+
+#. Tag: implemented-in::objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective C"
+msgstr ""
+
+#. Tag: implemented-in::ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml"
+msgstr ""
+
+#. Tag: implemented-in::perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl"
+msgstr ""
+
+#. Tag: implemented-in::php, short desc
+#: files/debtags/vocabulary
+msgid "PHP"
+msgstr ""
+
+#. Tag: implemented-in::pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike"
+msgstr ""
+
+#. Tag: implemented-in::python, short desc
+#: files/debtags/vocabulary
+msgid "Python"
+msgstr ""
+
+#. Tag: implemented-in::r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R"
+msgstr ""
+
+#. Tag: implemented-in::ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby"
+msgstr ""
+
+#. Tag: implemented-in::scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme"
+msgstr ""
+
+#. Tag: implemented-in::shell, short desc
+#: files/debtags/vocabulary
+msgid "sh, bash, ksh, tcsh and other shells"
+msgstr ""
+
+#. Tag: implemented-in::tcl, short desc
+#: files/debtags/vocabulary
+msgid "TCL Tool Command Language"
+msgstr ""
+
+#. Facet: junior, short desc
+#: files/debtags/vocabulary
+msgid "Junior Applications"
+msgstr ""
+
+#. Facet: junior, long desc
+#: files/debtags/vocabulary
+msgid " Applications recommended for younger users"
+msgstr ""
+
+#. Tag: junior::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Arcade games"
+msgstr ""
+
+#. Tag: junior::games-gl, short desc
+#: files/debtags/vocabulary
+msgid "3D games"
+msgstr ""
+
+#. Tag: junior::meta, short desc
+#: files/debtags/vocabulary
+msgid "Metapackages"
+msgstr ""
+
+#. Facet: mail, short desc
+#: files/debtags/vocabulary
+msgid "Electronic Mail"
+msgstr ""
+
+#. Tag: mail::filters, short desc
+#: files/debtags/vocabulary
+msgid "Filters"
+msgstr ""
+
+#. Tag: mail::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP Protocol"
+msgstr ""
+
+#. Tag: mail::list, short desc
+#: files/debtags/vocabulary
+msgid "Mailing Lists"
+msgstr ""
+
+#. Tag: mail::notification, short desc
+#: files/debtags/vocabulary
+msgid "Notification"
+msgstr ""
+
+#. Tag: mail::notification, long desc
+#: files/debtags/vocabulary
+msgid " Software that notifies users about status of mailbox."
+msgstr ""
+
+#. Tag: mail::pop, short desc
+#: files/debtags/vocabulary
+msgid "POP3 Protocol"
+msgstr ""
+
+#. Tag: mail::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP Protocol"
+msgstr ""
+
+#. Tag: mail::delivery-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Delivery Agent"
+msgstr ""
+
+#. Tag: mail::delivery-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that delivers mail to users' mailboxes."
+msgstr ""
+
+#. Tag: mail::transport-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Transport Agent"
+msgstr ""
+
+#. Tag: mail::transport-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that routes and transmits mail accross the system and the network."
+msgstr ""
+
+#. Tag: mail::user-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail user agent"
+msgstr ""
+
+#. Tag: mail::user-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that allows users to access e-mail."
+msgstr ""
+
+#. Facet: office, short desc
+#: files/debtags/vocabulary
+msgid "Office and business"
+msgstr ""
+
+#. Tag: office::finance, short desc
+#: files/debtags/vocabulary
+msgid "Finance"
+msgstr ""
+
+#. Tag: office::groupware, short desc
+#: files/debtags/vocabulary
+msgid "Groupware"
+msgstr ""
+
+#. Tag: office::presentation, short desc
+#: files/debtags/vocabulary
+msgid "Presentation"
+msgstr ""
+
+#. Tag: office::project-management, short desc
+#: files/debtags/vocabulary
+msgid "Project management"
+msgstr ""
+
+#. Tag: office::spreadsheet, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::spreadsheet, short desc
+#: files/debtags/vocabulary
+msgid "Spreadsheet"
+msgstr ""
+
+#. Facet: works-with, short desc
+#: files/debtags/vocabulary
+msgid "Works with"
+msgstr ""
+
+#. Facet: works-with, long desc
+#: files/debtags/vocabulary
+msgid " These tags describe what is the kind of data (or even processes, or people)\n that the package can work with."
+msgstr ""
+
+#. Tag: works-with::3dmodel, short desc
+#: files/debtags/vocabulary
+msgid "3D Model"
+msgstr ""
+
+#. Tag: works-with::archive, short desc
+#: files/debtags/vocabulary
+msgid "Archive"
+msgstr ""
+
+#. Tag: works-with::audio, short desc
+#: files/debtags/vocabulary
+msgid "Audio"
+msgstr ""
+
+#. Tag: works-with::bugs, short desc
+#: files/debtags/vocabulary
+msgid "Bugs or Issues"
+msgstr ""
+
+#. Tag: works-with::db, short desc
+#: files/debtags/vocabulary
+msgid "Databases"
+msgstr ""
+
+#. Tag: works-with::dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionaries"
+msgstr ""
+
+#. Tag: works-with::dtp, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Publishing (DTP)"
+msgstr ""
+
+#. Tag: works-with::fax, short desc
+#: files/debtags/vocabulary
+msgid "Faxes"
+msgstr ""
+
+#. Tag: works-with::file, short desc
+#: files/debtags/vocabulary
+msgid "Files"
+msgstr ""
+
+#. Tag: works-with::font, short desc
+#: files/debtags/vocabulary
+msgid "Fonts"
+msgstr ""
+
+#. Tag: works-with::im, short desc
+#: files/debtags/vocabulary
+msgid "Instant Messages"
+msgstr ""
+
+#. Tag: works-with::im, long desc
+#: files/debtags/vocabulary
+msgid " The package can connect to some IM network (or networks)."
+msgstr ""
+
+#. Tag: works-with::logfile, short desc
+#: files/debtags/vocabulary
+msgid "System Logs"
+msgstr ""
+
+#. Tag: works-with::mail, short desc
+#: files/debtags/vocabulary
+msgid "Email"
+msgstr ""
+
+#. Tag: works-with::music-notation, short desc
+#: files/debtags/vocabulary
+msgid "Music Notation"
+msgstr ""
+
+#. Tag: works-with::network-traffic, short desc
+#: files/debtags/vocabulary
+msgid "Network traffic"
+msgstr ""
+
+#. Tag: works-with::network-traffic, long desc
+#: files/debtags/vocabulary
+msgid " Routers, shapers, sniffers, firewalls and other tools\n that work with a stream of network packets."
+msgstr ""
+
+#. Tag: works-with::people, short desc
+#: files/debtags/vocabulary
+msgid "People"
+msgstr ""
+
+#. Tag: works-with::pim, short desc
+#: files/debtags/vocabulary
+msgid "Personal Information"
+msgstr ""
+
+#. Tag: works-with::image, short desc
+#: files/debtags/vocabulary
+msgid "Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, short desc
+#: files/debtags/vocabulary
+msgid "Raster Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, long desc
+#: files/debtags/vocabulary
+msgid " Images made of dots, such as photos and scans"
+msgstr ""
+
+#. Tag: works-with::image:vector, short desc
+#: files/debtags/vocabulary
+msgid "Vector Image"
+msgstr ""
+
+#. Tag: works-with::image:vector, long desc
+#: files/debtags/vocabulary
+msgid " Images made of lines, such as graphs or most clipart"
+msgstr ""
+
+#. Tag: works-with::software:package, short desc
+#: files/debtags/vocabulary
+msgid "Packaged software"
+msgstr ""
+
+#. Tag: works-with::software:running, short desc
+#: files/debtags/vocabulary
+msgid "Running programs"
+msgstr ""
+
+#. Tag: works-with::software:source, short desc
+#: files/debtags/vocabulary
+msgid "Source code"
+msgstr ""
+
+#. Tag: works-with::text, short desc
+#: files/debtags/vocabulary
+msgid "Text"
+msgstr ""
+
+#. Tag: works-with::unicode, short desc
+#: files/debtags/vocabulary
+msgid "Unicode"
+msgstr ""
+
+#. Tag: works-with::unicode, long desc
+#: files/debtags/vocabulary
+msgid " Please do not tag programs with simple unicode support,\n doing so would make this tag useless.\n Ultimately all applications should have unicode support."
+msgstr ""
+
+#. Tag: works-with::video, short desc
+#: files/debtags/vocabulary
+msgid "Video and Animation"
+msgstr ""
+
+#. Facet: works-with-format, short desc
+#: files/debtags/vocabulary
+msgid "Supports Format"
+msgstr ""
+
+#. Tag: works-with-format::bib, short desc
+#: files/debtags/vocabulary
+msgid "BibTeX"
+msgstr ""
+
+#. Tag: works-with-format::bib, long desc
+#: files/debtags/vocabulary
+msgid " BibTeX list of references"
+msgstr ""
+
+#. Tag: works-with-format::dvi, short desc
+#: files/debtags/vocabulary
+msgid "TeX DVI"
+msgstr ""
+
+#. Tag: works-with-format::dvi, long desc
+#: files/debtags/vocabulary
+msgid " DeVice Independent page description file, usually generated\n by TeX or LaTeX."
+msgstr ""
+
+#. Tag: works-with-format::ldif, short desc
+#: files/debtags/vocabulary
+msgid "LDIF"
+msgstr ""
+
+#. Tag: works-with-format::ldif, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML 3D Model"
+msgstr ""
+
+#. Tag: works-with-format::vrml, long desc
+#: files/debtags/vocabulary
+msgid " Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: works-with-format::iso9660, short desc
+#: files/debtags/vocabulary
+msgid "ISO 9660 CD Filesystem"
+msgstr ""
+
+#. Tag: works-with-format::tar, short desc
+#: files/debtags/vocabulary
+msgid "Tar Archives"
+msgstr ""
+
+#. Tag: works-with-format::zip, short desc
+#: files/debtags/vocabulary
+msgid "Zip Archives"
+msgstr ""
+
+#. Tag: works-with-format::mp3, short desc
+#: files/debtags/vocabulary
+msgid "MP3 Audio"
+msgstr ""
+
+#. Tag: works-with-format::mpc, short desc
+#: files/debtags/vocabulary
+msgid "Musepack Audio"
+msgstr ""
+
+#. Tag: works-with-format::oggvorbis, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Vorbis Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, short desc
+#: files/debtags/vocabulary
+msgid "MS RIFF Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, long desc
+#: files/debtags/vocabulary
+msgid " Wave uncompressed audio format"
+msgstr ""
+
+#. Tag: works-with-format::jpg, short desc
+#: files/debtags/vocabulary
+msgid "JPEG, Joint Picture Expert Group"
+msgstr ""
+
+#. Tag: works-with-format::gif, short desc
+#: files/debtags/vocabulary
+msgid "GIF, Graphics Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::odf, short desc
+#: files/debtags/vocabulary
+msgid "ODF, Open Document Format"
+msgstr ""
+
+#. Tag: works-with-format::png, short desc
+#: files/debtags/vocabulary
+msgid "PNG, Portable Network Graphics"
+msgstr ""
+
+#. Tag: works-with-format::swf, short desc
+#: files/debtags/vocabulary
+msgid "SWF, ShockWave Flash"
+msgstr ""
+
+#. Tag: works-with-format::tiff, short desc
+#: files/debtags/vocabulary
+msgid "TIFF, Tagged Image File Format"
+msgstr ""
+
+#. Tag: works-with-format::docbook, short desc
+#: files/debtags/vocabulary
+msgid "Docbook"
+msgstr ""
+
+#. Tag: works-with-format::man, short desc
+#: files/debtags/vocabulary
+msgid "Manpages"
+msgstr ""
+
+#. Tag: works-with-format::plaintext, short desc
+#: files/debtags/vocabulary
+msgid "Plain text"
+msgstr ""
+
+#. Tag: works-with-format::tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX and LaTeX"
+msgstr ""
+
+#. Tag: works-with-format::oggtheora, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Theora Video"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, short desc
+#: files/debtags/vocabulary
+msgid "RSS Rich Site Summary"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, long desc
+#: files/debtags/vocabulary
+msgid " XML dialect used to describe resources and websites."
+msgstr ""
+
+#. Tag: works-with-format::xml:xslt, short desc
+#: files/debtags/vocabulary
+msgid "XSL Transformations (XSLT)"
+msgstr ""
+
+#. Facet: scope, short desc
+#: files/debtags/vocabulary
+msgid "Scope"
+msgstr ""
+
+#. Tag: scope::utility, short desc
+#: files/debtags/vocabulary
+msgid "Utility"
+msgstr ""
+
+#. Tag: scope::utility, long desc
+#: files/debtags/vocabulary
+msgid " A narrow-scoped program for particular use case or few use cases. It\n only does something 10-20% of users in the field will need. Often has\n functionality missing from related applications."
+msgstr ""
+
+#. Tag: scope::application, short desc
+#: files/debtags/vocabulary
+#. Tag: web::application, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::application, short desc
+#: files/debtags/vocabulary
+msgid "Application"
+msgstr ""
+
+#. Tag: scope::application, long desc
+#: files/debtags/vocabulary
+msgid " Broad-scoped program for general use. It probably has functionality\n for 80-90% of use cases. The pieces that remain are usually to be\n found as utilities."
+msgstr ""
+
+#. Tag: scope::suite, short desc
+#: files/debtags/vocabulary
+msgid "Suite"
+msgstr ""
+
+#. Tag: scope::suite, long desc
+#: files/debtags/vocabulary
+msgid " Comprehensive suite of applications and utilities on the scale of\n desktop environment or base operating system."
+msgstr ""
+
+#. Facet: role, short desc
+#: files/debtags/vocabulary
+msgid "Role"
+msgstr ""
+
+#. Tag: role::program, short desc
+#: files/debtags/vocabulary
+msgid "Program"
+msgstr ""
+
+#. Tag: role::program, long desc
+#: files/debtags/vocabulary
+msgid " Executable computer program."
+msgstr ""
+
+#. Tag: role::shared-lib, short desc
+#: files/debtags/vocabulary
+msgid "Shared Library"
+msgstr ""
+
+#. Tag: role::shared-lib, long desc
+#: files/debtags/vocabulary
+msgid " Shared libraries used by one or more programs."
+msgstr ""
+
+#. Tag: role::plugin, short desc
+#: files/debtags/vocabulary
+msgid "Plugin"
+msgstr ""
+
+#. Tag: role::plugin, long desc
+#: files/debtags/vocabulary
+msgid " Add-on, pluggable program fragments enhancing functionality\n of some program or system."
+msgstr ""
+
+#. Tag: role::debug-symbols, short desc
+#: files/debtags/vocabulary
+msgid "Debugging symbols"
+msgstr ""
+
+#. Tag: role::debug-symbols, long desc
+#: files/debtags/vocabulary
+msgid " Debugging symbols."
+msgstr ""
+
+#. Tag: role::devel-lib, short desc
+#: files/debtags/vocabulary
+msgid "Development Library"
+msgstr ""
+
+#. Tag: role::devel-lib, long desc
+#: files/debtags/vocabulary
+msgid " Library and header files used in software development or building."
+msgstr ""
+
+#. Tag: role::source, short desc
+#: files/debtags/vocabulary
+msgid "Source Code"
+msgstr ""
+
+#. Tag: role::source, long desc
+#: files/debtags/vocabulary
+msgid " Human-readable code of a program, library or a part thereof."
+msgstr ""
+
+#. Tag: role::data, short desc
+#: files/debtags/vocabulary
+msgid "Standalone Data"
+msgstr ""
+
+#. Tag: role::app-data, short desc
+#: files/debtags/vocabulary
+msgid "Application Data"
+msgstr ""
+
+#. Tag: role::metapackage, short desc
+#: files/debtags/vocabulary
+msgid "Metapackage"
+msgstr ""
+
+#. Tag: role::metapackage, long desc
+#: files/debtags/vocabulary
+msgid " Packages that install suites of other packages."
+msgstr ""
+
+#. Facet: security, short desc
+#: files/debtags/vocabulary
+msgid "Security"
+msgstr ""
+
+#. Facet: security, long desc
+#: files/debtags/vocabulary
+msgid " How the package is related to system security"
+msgstr ""
+
+#. Tag: security::antivirus, short desc
+#: files/debtags/vocabulary
+msgid "Anti-Virus"
+msgstr ""
+
+#. Tag: security::authentication, short desc
+#: files/debtags/vocabulary
+msgid "Authentication"
+msgstr ""
+
+#. Tag: security::cryptography, short desc
+#: files/debtags/vocabulary
+msgid "Cryptography"
+msgstr ""
+
+#. Tag: security::cryptography, long desc
+#: files/debtags/vocabulary
+msgid " Cryptographic and privacy-oriented tools."
+msgstr ""
+
+#. Tag: security::firewall, short desc
+#: files/debtags/vocabulary
+#. Tag: network::firewall, short desc
+#: files/debtags/vocabulary
+msgid "Firewall"
+msgstr ""
+
+#. Tag: security::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics"
+msgstr ""
+
+#. Tag: security::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Post-mortem analysis of intrusions."
+msgstr ""
+
+#. Tag: security::ids, short desc
+#: files/debtags/vocabulary
+msgid "Intrusion Detection"
+msgstr ""
+
+#. Tag: security::integrity, short desc
+#: files/debtags/vocabulary
+msgid "File Integrity"
+msgstr ""
+
+#. Tag: security::integrity, long desc
+#: files/debtags/vocabulary
+msgid " Tools to monitor system for changes in filesystem and report changes\n or tools providing other means to check system integrity."
+msgstr ""
+
+#. Tag: security::log-analyzer, short desc
+#: files/debtags/vocabulary
+msgid "Log Analyzer"
+msgstr ""
+
+#. Tag: security::privacy, short desc
+#: files/debtags/vocabulary
+msgid "Privacy"
+msgstr ""
+
+#. Facet: sound, short desc
+#: files/debtags/vocabulary
+msgid "Sound and Music"
+msgstr ""
+
+#. Tag: sound::compression, short desc
+#: files/debtags/vocabulary
+msgid "Compression"
+msgstr ""
+
+#. Tag: sound::midi, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Software"
+msgstr ""
+
+#. Tag: sound::mixer, short desc
+#: files/debtags/vocabulary
+msgid "Mixing"
+msgstr ""
+
+#. Tag: sound::player, short desc
+#: files/debtags/vocabulary
+msgid "Playback"
+msgstr ""
+
+#. Tag: sound::recorder, short desc
+#: files/debtags/vocabulary
+msgid "Recording"
+msgstr ""
+
+#. Tag: sound::sequencer, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Sequencing"
+msgstr ""
+
+#. Facet: special, short desc
+#: files/debtags/vocabulary
+msgid "Service tags"
+msgstr ""
+
+#. Tag: special::auto-inst-parts, short desc
+#: files/debtags/vocabulary
+msgid "Secondary packages users won't install directly"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, short desc
+#: files/debtags/vocabulary
+msgid "NO IPv6 support"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, long desc
+#: files/debtags/vocabulary
+msgid " Use this for packages that cannot yet or will never support IPv6."
+msgstr ""
+
+#. Tag: special::obsolete, short desc
+#: files/debtags/vocabulary
+msgid "Obsolete Packages"
+msgstr ""
+
+#. Tag: special::obsolete, long desc
+#: files/debtags/vocabulary
+msgid " Packages that are not used any longer, also packages only left for upgrade\n purposes (merged / split packages)"
+msgstr ""
+
+#. Tag: special::invalid-tag, short desc
+#: files/debtags/vocabulary
+msgid "Invalid tag"
+msgstr ""
+
+#. Tag: special::invalid-tag, long desc
+#: files/debtags/vocabulary
+msgid " This tag means that the tag database contains a tag which is not present in\n the tag vocabulary.  The presence of this tag indicates a software bug: this\n should never show up."
+msgstr ""
+
+#. Tag: special::not-yet-tagged, short desc
+#: files/debtags/vocabulary
+msgid "!Not yet tagged packages!"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::a, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with a"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::b, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with b"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::c, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with c"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::d, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with d"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::e, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with e"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::f, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with f"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::g, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with g"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::h, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with h"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::i, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with i"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::j, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with j"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::k, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with k"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::l, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with l"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::m, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with m"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::n, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with n"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::o, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with o"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::p, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with p"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::q, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with q"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::r, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with r"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::s, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with s"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::t, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with t"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::u, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with u"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::v, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with v"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::w, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with w"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::x, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with x"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::y, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with y"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::z, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with z"
+msgstr ""
+
+#. Facet: suite, short desc
+#: files/debtags/vocabulary
+msgid "Application Suite"
+msgstr ""
+
+#. Tag: suite::apache, short desc
+#: files/debtags/vocabulary
+msgid "Apache"
+msgstr ""
+
+#. Tag: suite::eclipse, short desc
+#: files/debtags/vocabulary
+msgid "Eclipse"
+msgstr ""
+
+#. Tag: suite::eclipse, long desc
+#: files/debtags/vocabulary
+msgid " Eclipse tool platform and plugins."
+msgstr ""
+
+#. Tag: suite::emacs, short desc
+#: files/debtags/vocabulary
+msgid "Emacs"
+msgstr ""
+
+#. Tag: suite::gforge, short desc
+#: files/debtags/vocabulary
+msgid "GForge"
+msgstr ""
+
+#. Tag: suite::gforge, long desc
+#: files/debtags/vocabulary
+msgid " A collaborative development platform."
+msgstr ""
+
+#. Tag: suite::gimp, short desc
+#: files/debtags/vocabulary
+msgid "The GIMP"
+msgstr ""
+
+#. Tag: suite::gkrellm, short desc
+#: files/debtags/vocabulary
+msgid "GKrellM Monitors"
+msgstr ""
+
+#. Tag: suite::gnome, short desc
+#: files/debtags/vocabulary
+msgid "GNOME"
+msgstr ""
+
+#. Tag: suite::gnu, short desc
+#: files/debtags/vocabulary
+msgid "GNU"
+msgstr ""
+
+#. Tag: suite::gnu, long desc
+#: files/debtags/vocabulary
+msgid " Gnu's Not Unix. The package is part of the official GNU project"
+msgstr ""
+
+#. Tag: suite::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUStep"
+msgstr ""
+
+#. Tag: suite::gnustep, long desc
+#: files/debtags/vocabulary
+msgid "  GNUStep Desktop and WindowMaker"
+msgstr ""
+
+#. Tag: suite::gpe, short desc
+#: files/debtags/vocabulary
+msgid "GPE"
+msgstr ""
+
+#. Tag: suite::gpe, long desc
+#: files/debtags/vocabulary
+msgid "  GPE Palmtop Environment"
+msgstr ""
+
+#. Tag: suite::kde, short desc
+#: files/debtags/vocabulary
+msgid "KDE"
+msgstr ""
+
+#. Tag: suite::mozilla, short desc
+#: files/debtags/vocabulary
+msgid "Mozilla"
+msgstr ""
+
+#. Tag: suite::mozilla, long desc
+#: files/debtags/vocabulary
+msgid " Mozilla Browser and extensions"
+msgstr ""
+
+#. Tag: suite::netscape, short desc
+#: files/debtags/vocabulary
+msgid "Netscape Navigator"
+msgstr ""
+
+#. Tag: suite::netscape, long desc
+#: files/debtags/vocabulary
+msgid " The pre-6.0 versions of netscape browser"
+msgstr ""
+
+#. Tag: suite::openoffice, short desc
+#: files/debtags/vocabulary
+msgid "OpenOffice.org"
+msgstr ""
+
+#. Tag: suite::opie, short desc
+#: files/debtags/vocabulary
+msgid "Open Palmtop (OPIE)"
+msgstr ""
+
+#. Tag: suite::roxen, short desc
+#: files/debtags/vocabulary
+msgid "Roxen"
+msgstr ""
+
+#. Tag: suite::samba, short desc
+#: files/debtags/vocabulary
+msgid "SAMBA"
+msgstr ""
+
+#. Tag: suite::webmin, short desc
+#: files/debtags/vocabulary
+msgid "Webmin"
+msgstr ""
+
+#. Tag: suite::xfce, short desc
+#: files/debtags/vocabulary
+msgid "XFce"
+msgstr ""
+
+#. Tag: suite::xfce, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight desktop environment for X11."
+msgstr ""
+
+#. Tag: suite::xmms, short desc
+#: files/debtags/vocabulary
+msgid "XMMS"
+msgstr ""
+
+#. Tag: suite::xmms2, short desc
+#: files/debtags/vocabulary
+msgid "XMMS 2"
+msgstr ""
+
+#. Tag: suite::zope, short desc
+#: files/debtags/vocabulary
+msgid "ZOPE"
+msgstr ""
+
+#. Tag: suite::zope, long desc
+#: files/debtags/vocabulary
+msgid " The zope (web) publishing platform."
+msgstr ""
+
+#. Facet: protocol, short desc
+#: files/debtags/vocabulary
+msgid "Network Protocol"
+msgstr ""
+
+#. Tag: protocol::db:mysql, short desc
+#: files/debtags/vocabulary
+msgid "MySQL"
+msgstr ""
+
+#. Tag: protocol::db:mysql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing MySQL database server."
+msgstr ""
+
+#. Tag: protocol::db:psql, short desc
+#: files/debtags/vocabulary
+msgid "PostgreSQL"
+msgstr ""
+
+#. Tag: protocol::db:psql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing PostgreSQL database server."
+msgstr ""
+
+#. Tag: protocol::ldap, short desc
+#: files/debtags/vocabulary
+msgid "LDAP"
+msgstr ""
+
+#. Tag: protocol::ldap, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Access Protocol"
+msgstr ""
+
+#. Tag: protocol::atm, short desc
+#: files/debtags/vocabulary
+msgid "ATM"
+msgstr ""
+
+#. Tag: protocol::atm, long desc
+#: files/debtags/vocabulary
+msgid " Asynchronous Transfer Mode, a high speed protocol for communication between\n computers in a network.\n .\n While ATM is used to implement *DSL networks, it has never gained widespread\n use as a technology for building local area networks (LANs), for which it was\n originally intended.\n .\n Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode"
+msgstr ""
+
+#. Tag: protocol::bittorrent, short desc
+#: files/debtags/vocabulary
+msgid "BitTorrent"
+msgstr ""
+
+#. Tag: protocol::bittorrent, long desc
+#: files/debtags/vocabulary
+msgid " BitTorrent is a protocol for peer-to-peer based file distribution over\n network.\n .\n Although the actual data transport happens between BitTorrent clients, one\n central node, the so-called trackers, is needed to keep a list of all clients\n that download or provide the same file.\n .\n Link: http://www.bittorrent.com/\n Link: http://en.wikipedia.org/wiki/BitTorrent"
+msgstr ""
+
+#. Tag: protocol::corba, short desc
+#: files/debtags/vocabulary
+msgid "CORBA"
+msgstr ""
+
+#. Tag: protocol::corba, long desc
+#: files/debtags/vocabulary
+msgid " Common Object Request Broker Architecture, a standard for interoperability\n between programs written in different languages and running on different \n hardware platforms. CORBA includes a client-server network protocol for\n distributed computing.\n .\n With this network protocol, CORBA clients on different computers and written\n in different languages can exchange objects over a CORBA server such as orbit2\n or omniORB.\n .\n Link: http://www.corba.org/"
+msgstr ""
+
+#. Tag: protocol::dhcp, short desc
+#: files/debtags/vocabulary
+msgid "DHCP"
+msgstr ""
+
+#. Tag: protocol::dhcp, long desc
+#: files/debtags/vocabulary
+msgid " Dynamic Host Configuration Protocol, a client-server network protocol for\n automatic assignment of dynamic IP addresses to computers in a TCP/IP network,\n rather than giving each computer a static IP address.\n .\n Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol\n Link: http://www.ietf.org/rfc/rfc2131.txt"
+msgstr ""
+
+#. Tag: protocol::dns, short desc
+#: files/debtags/vocabulary
+msgid "DNS"
+msgstr ""
+
+#. Tag: protocol::dns, long desc
+#: files/debtags/vocabulary
+msgid " Domain Name System, a protocol to request information associated with domain\n names (like \"www.debian.org\"), most prominently the IP address. The protocol\n is used in communication with a DNS server (like BIND).\n .\n For the Internet, there are 13 root DNS servers around the world that keep the\n addresses of all registered domain names and provide this information to the\n DNS servers of Internet service providers.\n .\n Link: http://en.wikipedia.org/wiki/Domain_Name_System"
+msgstr ""
+
+#. Tag: protocol::ethernet, short desc
+#: files/debtags/vocabulary
+msgid "Ethernet"
+msgstr ""
+
+#. Tag: protocol::ethernet, long desc
+#: files/debtags/vocabulary
+msgid " Ethernet is the most popular networking technology for creating local area\n networks (LANs).\n .\n The computers in an Ethernet network communicate over twisted-pair or fibre\n cables and are identified by their MAC address. Several different types of\n Ethernet exist, distinguishable by the maximum connection speed. The most\n widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).\n .\n Link: http://en.wikipedia.org/wiki/Ethernet"
+msgstr ""
+
+#. Tag: protocol::fidonet, short desc
+#: files/debtags/vocabulary
+msgid "FidoNet"
+msgstr ""
+
+#. Tag: protocol::fidonet, long desc
+#: files/debtags/vocabulary
+msgid " FidoNet is a mailbox system that enjoyed large popularity in the 1980s and\n 1990s.\n .\n The communication between the clients and FidoNet servers  was usually carried\n out over the telephone network using modems and could be used for transferring\n messages (comparable to email) and files.\n .\n Link: http://www.fidonet.org/\n Link: http://en.wikipedia.org/wiki/Fidonet"
+msgstr ""
+
+#. Tag: protocol::finger, short desc
+#: files/debtags/vocabulary
+msgid "Finger"
+msgstr ""
+
+#. Tag: protocol::finger, long desc
+#: files/debtags/vocabulary
+msgid " The Name/Finger protocol is a simple network protocol to provide extensive, \n public information about users of a computer, such as email address, telephone\n numbers, full names etc.\n .\n Due to privacy concerns, the Finger protocol is not widely used any more,\n while it widespread distribution in the early 1990s.\n .\n Link: http://en.wikipedia.org/wiki/Finger_protocol\n Link: http://www.ietf.org/rfc/rfc1288.txt"
+msgstr ""
+
+#. Tag: protocol::ftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::ftp, short desc
+#: files/debtags/vocabulary
+msgid "FTP"
+msgstr ""
+
+#. Tag: protocol::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol, a protocol for exchanging and manipulation files over\n networks and extensively used on the Internet.\n .\n The communication between FTP servers and clients uses two channels, the\n control and the data channel. While FTP was originally used with\n authentication only, most FTP servers on the Internet provide anonymous,\n passwordless access. Since FTP does not support encryption, sensitive data\n transfer is carried out over SFTP today.\n .\n Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc0959.txt"
+msgstr ""
+
+#. Tag: protocol::http, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::http, short desc
+#: files/debtags/vocabulary
+msgid "HTTP"
+msgstr ""
+
+#. Tag: protocol::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol, one of the most important protocols for the\n World Wide Web.\n .\n It controls the data transfer between HTTP servers such as Apache and HTTP\n clients, which are web browsers in most cases. HTTP resources are requested\n via URLs (Universal Resource Locators). While HTTP normally only supports file\n transfer from server to client, the protocol supports sending information to\n HTTP servers, most prominently used in HTML forms.\n .\n Link: http://en.wikipedia.org/wiki/Http\n Link: http://www.ietf.org/rfc/rfc2616.txt"
+msgstr ""
+
+#. Tag: protocol::ident, short desc
+#: files/debtags/vocabulary
+msgid "Ident"
+msgstr ""
+
+#. Tag: protocol::ident, long desc
+#: files/debtags/vocabulary
+msgid " The Ident Internet protocol helps to identify or authenticate the user of\n a network connection.\n .\n Link: http://en.wikipedia.org/wiki/Ident"
+msgstr ""
+
+#. Tag: protocol::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP"
+msgstr ""
+
+#. Tag: protocol::imap, long desc
+#: files/debtags/vocabulary
+msgid " Internet Message Access Protocol, a protocol used for accessing email on a\n server from a email client such as KMail or Evolution.\n .\n When using IMAP, emails stay on the server and can be categorized, edited,\n deleted etc. there, instead of having the user download all messages onto\n the local computer, as POP3 does.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol"
+msgstr ""
+
+#. Tag: protocol::ip, short desc
+#: files/debtags/vocabulary
+msgid "IP"
+msgstr ""
+
+#. Tag: protocol::ip, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v4), a core protocol of the Internet protocol suite and\n the very basis of the Internet.\n .\n Every computer that is connected to the Internet has an IP address (a 4-byte\n number, typically represented in dotted notation like 192.25.206.10).\n Internet IP addresses are given out by the Internet Corporation for Assigned\n Names and Numbers (ICANN). Normally, computers on the Internet are not\n accessed by their IP address, but by their domain name.\n .\n Link: http://en.wikipedia.org/wiki/IPv4\n Link: http://www.ietf.org/rfc/rfc791.txt"
+msgstr ""
+
+#. Tag: protocol::ipv6, short desc
+#: files/debtags/vocabulary
+msgid "IPv6"
+msgstr ""
+
+#. Tag: protocol::ipv6, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v6), the next-generation Internet protocol, which overcomes\n the restrictions of IP (v4), like shortage of IP addresses, and is supposed to\n form the new basis of the Internet in the future, replacing IP (v4).\n .\n Many programs already support IPv6 along with IP (v4), although it is still\n seldomly used.\n .\n Link: http://en.wikipedia.org/wiki/IPv6\n Link: http://www.ipv6.org/"
+msgstr ""
+
+#. Tag: protocol::irc, short desc
+#: files/debtags/vocabulary
+msgid "IRC"
+msgstr ""
+
+#. Tag: protocol::irc, long desc
+#: files/debtags/vocabulary
+msgid " Internet Relay Chat, a protocol for text chatting over network, extensively\n used on the Internet. It supports chat rooms, so-called channels, as well as\n private, one-to-one communication.\n .\n IRC servers are organized in networks, so that a client can connect to a\n geographically near IRC server, that itself is connected to other IRC servers\n spread over the whole world.\n .\n The official Debian channel is #debian on the freenode network.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat"
+msgstr ""
+
+#. Tag: protocol::jabber, short desc
+#: files/debtags/vocabulary
+msgid "Jabber"
+msgstr ""
+
+#. Tag: protocol::jabber, long desc
+#: files/debtags/vocabulary
+msgid " The Jabber protocol is an instant messaging protocol on the basis of the XMPP\n protocol. Additionally to private one-to-one communication, it also supports\n chat rooms, and it is used in the Jabber IM network as well as for the IM\n capabilities for the new GoogleTalk network.\n .\n In contrast to other IM networks like MSN, ICQ or AIM, the Jabber servers are\n free software and can be used to create a private chat platform or have an own\n server to connect to the Jabber network.\n .\n Link: http://www.jabber.org\n Link: http://en.wikipedia.org/wiki/Jabber"
+msgstr ""
+
+#. Tag: protocol::kerberos, short desc
+#: files/debtags/vocabulary
+msgid "Kerberos"
+msgstr ""
+
+#. Tag: protocol::kerberos, long desc
+#: files/debtags/vocabulary
+msgid " Kerberos is a authentication protocol for computer networks for secure\n authentication over an otherwise insecure network, using symmetric\n cryptography and a third party service provider, that is trusted both by\n client and server.\n . \n The authentication mechanism provided by Kerberos is mutual, so that not only\n a server can be sure of a client's identity, but also a client can be sure a\n connection to a server is not intercepted.\n .\n Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29\n Link: http://http://www.ietf.org/rfc/rfc4120.txt"
+msgstr ""
+
+#. Tag: protocol::lpr, short desc
+#: files/debtags/vocabulary
+msgid "LPR"
+msgstr ""
+
+#. Tag: protocol::lpr, long desc
+#: files/debtags/vocabulary
+msgid " The Line Printer Daemon protocol, a protocol used for accessing or providing\n network print services in a Unix network, but also used for local setups.\n .\n CUPS, the Common Unix Printing System, was developed to replace the old\n LPD/LPR system, while maintaining backwards compatibility.\n .\n Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol\n Link: http://www.ietf.org/rfc/rfc1179.txt"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, short desc
+#: files/debtags/vocabulary
+msgid "MSN Messenger"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The MSN messenger protocol is the protocol that is used by Microsoft's own\n instant messaging network.\n .\n The protocol is a proprietary protocol. Although Microsoft once send a draft\n of the protocol specification to the IETF, it has since dated out and clients\n that connect to the MSN Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://www.hypothetic.org/docs/msn/"
+msgstr ""
+
+#. Tag: protocol::nfs, short desc
+#: files/debtags/vocabulary
+msgid "NFS"
+msgstr ""
+
+#. Tag: protocol::nfs, long desc
+#: files/debtags/vocabulary
+msgid " Network File System, a protocol originally developed by Sun Microsystems in\n 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a\n distributed file system, allows a user on a client computer to access files\n over a network as easily as if attached to its local disks.\n .\n Link: http://en.wikipedia.org/wiki/Network_File_System"
+msgstr ""
+
+#. Tag: protocol::nntp, short desc
+#: files/debtags/vocabulary
+msgid "NNTP"
+msgstr ""
+
+#. Tag: protocol::nntp, long desc
+#: files/debtags/vocabulary
+msgid " Network News Transfer Protocol, a protocol for reading in writing Usenet\n articles (a Usenet article is comparable with an email), but also used\n among NNTP servers to transfer articles. \n .\n Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc977.txt"
+msgstr ""
+
+#. Tag: protocol::oscar, short desc
+#: files/debtags/vocabulary
+msgid "OSCAR (AIM/ICQ)"
+msgstr ""
+
+#. Tag: protocol::oscar, long desc
+#: files/debtags/vocabulary
+msgid " Open System for CommunicAtion in Realtime, an instant messaging used by\n AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9\n of the ICQ IM network are also instances of the OSCAR protocol.\n .\n OSCAR is a binary proprietary protocol. Since there is no official documentation,\n clients that connect to AIM or ICQ have to rely on information that has\n been reverse-engineered.\n .\n Link: http://en.wikipedia.org/wiki/OSCAR_protocol\n Link: http://www.oilcan.org/oscar/"
+msgstr ""
+
+#. Tag: protocol::pop3, short desc
+#: files/debtags/vocabulary
+msgid "POP3"
+msgstr ""
+
+#. Tag: protocol::pop3, long desc
+#: files/debtags/vocabulary
+msgid " Post Office Protocol, a protocol to download emails from a mail server,\n designed for users that have only intermittent connection to the Internet.\n .\n In contrast to IMAP server, messages that are downloaded via POP3 are not\n supposed to stay on the server afterwards, since POP3 does not support\n multiple mailboxes for one account on the server.\n .\n Link: http://en.wikipedia.org/wiki/Post_Office_Protocol\n Link: http://www.ietf.org/rfc/rfc1939.txt"
+msgstr ""
+
+#. Tag: protocol::radius, short desc
+#: files/debtags/vocabulary
+msgid "RADIUS"
+msgstr ""
+
+#. Tag: protocol::radius, long desc
+#: files/debtags/vocabulary
+msgid " Remote Authentication Dial In User Service, a protocol for authentication,\n authorization and accounting of network access, mostly used by Internet\n service providers handle handle dial-up Internet connections.\n .\n Link: http://en.wikipedia.org/wiki/RADIUS\n Link: http://www.ietf.org/rfc/rfc2865.txt"
+msgstr ""
+
+#. Tag: protocol::sftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::sftp, short desc
+#: files/debtags/vocabulary
+msgid "SFTP"
+msgstr ""
+
+#. Tag: protocol::sftp, long desc
+#: files/debtags/vocabulary
+msgid " SSH File Transfer Protocol, a protocol for secure, encrypting file exchange\n and manipulation over insecure networks, using the SSH protocol.\n .\n SFTP provides a complete set of file system operations, different from its\n predecessor SCP, which only allowed file transfer. It is not, other than the\n name might suggest, the a version of the FTP protocol executed through an\n SSH channel.\n .\n Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol"
+msgstr ""
+
+#. Tag: protocol::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB"
+msgstr ""
+
+#. Tag: protocol::smb, long desc
+#: files/debtags/vocabulary
+msgid " Server Message Block, a protocol for providing file access and printer sharing\n over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File\n System) is a synonym for SMB\n .\n Although SMB is a proprietary protocol, the Samba project reverse-engineered\n the protocol and developed both client and server programs for better\n interoperability in mixed Unix/Windows networks.\n .\n Link: http://en.wikipedia.org/wiki/Server_Message_Block\n Link: http://www.samba.org/"
+msgstr ""
+
+#. Tag: protocol::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP"
+msgstr ""
+
+#. Tag: protocol::smtp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Mail Transfer Protocol, a protocol or for transmitting emails over the\n Internet.\n .\n Every SMTP server utilizes SMTP to hand on emails to the next mail server\n until an email arrives at its destination, from where it is usually retrieved\n via POP3 or IMAP \n .\n Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc2821.txt"
+msgstr ""
+
+#. Tag: protocol::snmp, short desc
+#: files/debtags/vocabulary
+msgid "SNMP"
+msgstr ""
+
+#. Tag: protocol::snmp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Network Management Protocol, a member of the Internet protocol suite\n and used for monitoring or configuring network devices.\n .\n SNMP servers normally run on network equipment like routers.\n .\n Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol\n Link: http://www.ietf.org/rfc/rfc3411.txt"
+msgstr ""
+
+#. Tag: protocol::soap, short desc
+#: files/debtags/vocabulary
+msgid "SOAP"
+msgstr ""
+
+#. Tag: protocol::soap, long desc
+#: files/debtags/vocabulary
+msgid " Simple Object Access Protocol, a protocol for exchanging messages between\n different computers in a network. The messages are encoded in XML and usually\n sent over HTTP.\n .\n SOAP is used to provide APIs to web services, such as the Google API to\n utilize Google's searching engine from client applications.\n .\n Link: http://en.wikipedia.org/wiki/SOAP\n Link: http://www.w3.org/TR/soap/"
+msgstr ""
+
+#. Tag: protocol::ssh, short desc
+#: files/debtags/vocabulary
+msgid "SSH"
+msgstr ""
+
+#. Tag: protocol::ssh, long desc
+#: files/debtags/vocabulary
+msgid " Secure Shell, a protocol for secure, encrypted network connections. SSH can\n be used to execute programs on a remote host with an SSH server over secure\n otherwise insecure protocols through an SSH channel. The main use is, as the\n name suggest, to provide encrypted login and shell access on remote servers.\n .\n SSH authentication can be done with password or, which is the preferred\n mechanism, via asymmetric public/private key cryptography.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Shell"
+msgstr ""
+
+#. Tag: protocol::ssl, short desc
+#: files/debtags/vocabulary
+msgid "SSL/TLS"
+msgstr ""
+
+#. Tag: protocol::ssl, long desc
+#: files/debtags/vocabulary
+msgid " Secure Socket Layer/Transport Layer Security, a protocol that provides \n secure encrypted communication on the Internet. It is used to authenticate\n the identity of a service provider (such as a Internet banking server) and\n to secure the communications channel.\n .\n Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be\n transmitted over SSL/TLS to secure the transmitted data. In this case, an\n \"S\" is added to the protocol name, like HTTPS, FTPS etc.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer"
+msgstr ""
+
+#. Tag: protocol::tcp, short desc
+#: files/debtags/vocabulary
+msgid "TCP"
+msgstr ""
+
+#. Tag: protocol::tcp, long desc
+#: files/debtags/vocabulary
+msgid " Transport Control Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n TCP is used as the transport protocol for many services on the Internet,\n such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.\n .\n Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol\n Link: http://www.ietf.org/rfc/rfc793.txt"
+msgstr ""
+
+#. Tag: protocol::udp, short desc
+#: files/debtags/vocabulary
+msgid "UDP"
+msgstr ""
+
+#. Tag: protocol::udp, long desc
+#: files/debtags/vocabulary
+msgid " User Datagram Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n UDP is not as reliable as TCP, but faster and thus better fit for\n time-sensitive purposes, like the DNS protocol and VoIP.\n .\n Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol\n Link: http://www.ietf.org/rfc/rfc768.txt"
+msgstr ""
+
+#. Tag: protocol::voip, short desc
+#: files/debtags/vocabulary
+msgid "VoIP"
+msgstr ""
+
+#. Tag: protocol::voip, long desc
+#: files/debtags/vocabulary
+msgid " Voice over IP, a general term for protocols that route voice conversations\n over the Internet.\n .\n Popular VoIP protocols are SIP, H.323 and IAX.\n .\n Link: http://en.wikipedia.org/wiki/Voice_over_IP"
+msgstr ""
+
+#. Tag: protocol::webdav, short desc
+#: files/debtags/vocabulary
+msgid "WebDAV"
+msgstr ""
+
+#. Tag: protocol::webdav, long desc
+#: files/debtags/vocabulary
+msgid " Web-based Distributed Authoring and Versioning, a extension of the HTTP\n protocol to support creating and changing documents on an HTTP server. Thus,\n the client can access the documents on an HTTP server as it would those on the\n local file system.\n .\n Link: http://en.wikipedia.org/wiki/WebDAV\n Link: http://www.ietf.org/rfc/rfc2518.txt"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, short desc
+#: files/debtags/vocabulary
+msgid "XML-RPC"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, long desc
+#: files/debtags/vocabulary
+msgid " XML Remote Procedure Call, a simple protocol for remote procedure calls that\n uses XML for encoding and the HTTP protocol for transport.\n .\n SOAP, which is a considerably more sophisticated protocol, was developed from\n XML-RPC.\n .\n Link: http://en.wikipedia.org/wiki/XML-RPC\n Link: http://www.xmlrpc.com/"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, short desc
+#: files/debtags/vocabulary
+msgid "Yahoo! Messenger"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging\n network.\n .\n This a proprietary binary protocol without any official documentation. Clients\n that connect to the Yahoo! Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger\n Link: http://www.venkydude.com/articles/yahoo.htm"
+msgstr ""
+
+#. Facet: filetransfer, short desc
+#: files/debtags/vocabulary
+msgid "File Transfer"
+msgstr ""
+
+#. Tag: filetransfer::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::sftp, long desc
+#: files/debtags/vocabulary
+msgid " Secure File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB and CIFS"
+msgstr ""
+
+#. Tag: filetransfer::smb, long desc
+#: files/debtags/vocabulary
+msgid " Windows file and printer sharing (SMB)"
+msgstr ""
+
+#. Tag: filetransfer::dcc, short desc
+#: files/debtags/vocabulary
+msgid "IRC DCC"
+msgstr ""
+
+#. Tag: filetransfer::dcc, long desc
+#: files/debtags/vocabulary
+msgid " Direct Client to Client protocol used by Internet Relay Chat clients."
+msgstr ""
+
+#. Facet: uitoolkit, short desc
+#: files/debtags/vocabulary
+msgid "Interface Toolkit"
+msgstr ""
+
+#. Tag: uitoolkit::athena, short desc
+#: files/debtags/vocabulary
+msgid "Athena Widgets"
+msgstr ""
+
+#. Tag: uitoolkit::fltk, short desc
+#: files/debtags/vocabulary
+msgid "FLTK"
+msgstr ""
+
+#. Tag: uitoolkit::glut, short desc
+#: files/debtags/vocabulary
+msgid "GLUT"
+msgstr ""
+
+#. Tag: uitoolkit::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUstep"
+msgstr ""
+
+#. Tag: uitoolkit::gtk, short desc
+#: files/debtags/vocabulary
+msgid "GTK"
+msgstr ""
+
+#. Tag: uitoolkit::motif, short desc
+#: files/debtags/vocabulary
+msgid "Lesstif/Motif"
+msgstr ""
+
+#. Tag: uitoolkit::ncurses, short desc
+#: files/debtags/vocabulary
+msgid "Ncurses TUI"
+msgstr ""
+
+#. Tag: uitoolkit::qt, short desc
+#: files/debtags/vocabulary
+msgid "QT"
+msgstr ""
+
+#. Tag: uitoolkit::sdl, short desc
+#: files/debtags/vocabulary
+msgid "SDL"
+msgstr ""
+
+#. Tag: uitoolkit::tk, short desc
+#: files/debtags/vocabulary
+msgid "TK"
+msgstr ""
+
+#. Tag: uitoolkit::wxwidgets, short desc
+#: files/debtags/vocabulary
+msgid "wxWidgets"
+msgstr ""
+
+#. Tag: uitoolkit::xlib, short desc
+#: files/debtags/vocabulary
+msgid "X library"
+msgstr ""
+
+#. Facet: use, short desc
+#: files/debtags/vocabulary
+msgid "Purpose"
+msgstr ""
+
+#. Tag: use::analysing, short desc
+#: files/debtags/vocabulary
+msgid "Analysing"
+msgstr ""
+
+#. Tag: use::analysing, long desc
+#: files/debtags/vocabulary
+msgid " Software for turning data into knowledge."
+msgstr ""
+
+#. Tag: use::browsing, short desc
+#: files/debtags/vocabulary
+msgid "Browsing"
+msgstr ""
+
+#. Tag: use::chatting, short desc
+#: files/debtags/vocabulary
+msgid "Chatting"
+msgstr ""
+
+#. Tag: use::checking, short desc
+#: files/debtags/vocabulary
+msgid "Checking"
+msgstr ""
+
+#. Tag: use::checking, long desc
+#: files/debtags/vocabulary
+msgid " All sorts of checking, checking a filesystem for validity, checking\n a document for incorrectly spelled words, checking a network for \n routing problems. Verifying."
+msgstr ""
+
+#. Tag: use::comparing, short desc
+#: files/debtags/vocabulary
+msgid "Comparing"
+msgstr ""
+
+#. Tag: use::comparing, long desc
+#: files/debtags/vocabulary
+msgid " To find what relates or differs in two or more objects."
+msgstr ""
+
+#. Tag: use::compressing, short desc
+#: files/debtags/vocabulary
+msgid "Compressing"
+msgstr ""
+
+#. Tag: use::configuring, short desc
+#: files/debtags/vocabulary
+#. Tag: network::configuration, short desc
+#: files/debtags/vocabulary
+msgid "Configuration"
+msgstr ""
+
+#. Tag: use::converting, short desc
+#: files/debtags/vocabulary
+msgid "Data Conversion"
+msgstr ""
+
+#. Tag: use::dialing, short desc
+#: files/debtags/vocabulary
+msgid "Dialup Access"
+msgstr ""
+
+#. Tag: use::downloading, short desc
+#: files/debtags/vocabulary
+msgid "Downloading"
+msgstr ""
+
+#. Tag: use::driver, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Driver"
+msgstr ""
+
+#. Tag: use::editing, short desc
+#: files/debtags/vocabulary
+msgid "Editing"
+msgstr ""
+
+#. Tag: use::entertaining, short desc
+#: files/debtags/vocabulary
+msgid "Entertaining"
+msgstr ""
+
+#. Tag: use::filtering, short desc
+#: files/debtags/vocabulary
+msgid "Filtering"
+msgstr ""
+
+#. Tag: use::gameplaying, short desc
+#: files/debtags/vocabulary
+msgid "Game Playing"
+msgstr ""
+
+#. Tag: use::learning, short desc
+#: files/debtags/vocabulary
+msgid "Learning"
+msgstr ""
+
+#. Tag: use::organizing, short desc
+#: files/debtags/vocabulary
+msgid "Data Organisation"
+msgstr ""
+
+#. Tag: use::playing, short desc
+#: files/debtags/vocabulary
+msgid "Playing Media"
+msgstr ""
+
+#. Tag: use::printing, short desc
+#: files/debtags/vocabulary
+msgid "Printing"
+msgstr ""
+
+#. Tag: use::proxying, short desc
+#: files/debtags/vocabulary
+msgid "Proxying"
+msgstr ""
+
+#. Tag: use::routing, short desc
+#: files/debtags/vocabulary
+#. Tag: network::routing, short desc
+#: files/debtags/vocabulary
+msgid "Routing"
+msgstr ""
+
+#. Tag: use::searching, short desc
+#: files/debtags/vocabulary
+msgid "Searching"
+msgstr ""
+
+#. Tag: use::scanning, short desc
+#: files/debtags/vocabulary
+#. Tag: network::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Scanning"
+msgstr ""
+
+#. Tag: use::storing, short desc
+#: files/debtags/vocabulary
+msgid "Storing"
+msgstr ""
+
+#. Tag: use::synchronizing, short desc
+#: files/debtags/vocabulary
+msgid "Synchronisation"
+msgstr ""
+
+#. Tag: use::timekeeping, short desc
+#: files/debtags/vocabulary
+msgid "Time and Clock"
+msgstr ""
+
+#. Tag: use::transmission, short desc
+#: files/debtags/vocabulary
+msgid "Transmission"
+msgstr ""
+
+#. Tag: use::typesetting, short desc
+#: files/debtags/vocabulary
+msgid "Typesetting"
+msgstr ""
+
+#. Tag: use::viewing, short desc
+#: files/debtags/vocabulary
+msgid "Data Visualization"
+msgstr ""
+
+#. Tag: use::text-formatting, short desc
+#: files/debtags/vocabulary
+msgid "Text Formatting"
+msgstr ""
+
+#. Tag: web::appserver, short desc
+#: files/debtags/vocabulary
+msgid "Application Server"
+msgstr ""
+
+#. Tag: web::blog, short desc
+#: files/debtags/vocabulary
+msgid "Blog Software"
+msgstr ""
+
+#. Tag: web::browser, short desc
+#: files/debtags/vocabulary
+msgid "Browser"
+msgstr ""
+
+#. Tag: web::cms, short desc
+#: files/debtags/vocabulary
+msgid "Content Management (CMS)"
+msgstr ""
+
+#. Tag: web::cgi, short desc
+#: files/debtags/vocabulary
+msgid "CGI"
+msgstr ""
+
+#. Tag: web::commerce, short desc
+#: files/debtags/vocabulary
+msgid "E-commerce"
+msgstr ""
+
+#. Tag: web::forum, short desc
+#: files/debtags/vocabulary
+msgid "Forum"
+msgstr ""
+
+#. Tag: web::portal, short desc
+#: files/debtags/vocabulary
+msgid "Portal"
+msgstr ""
+
+#. Tag: web::scripting, short desc
+#: files/debtags/vocabulary
+msgid "Scripting"
+msgstr ""
+
+#. Tag: web::search-engine, short desc
+#: files/debtags/vocabulary
+msgid "Search engine"
+msgstr ""
+
+#. Tag: web::server, short desc
+#: files/debtags/vocabulary
+#. Tag: network::server, short desc
+#: files/debtags/vocabulary
+msgid "Server"
+msgstr ""
+
+#. Tag: web::wiki, short desc
+#: files/debtags/vocabulary
+msgid "Wiki Software"
+msgstr ""
+
+#. Tag: web::wiki, long desc
+#: files/debtags/vocabulary
+msgid " Wiki software, servers, utilities and plug-ins."
+msgstr ""
+
+#. Facet: network, short desc
+#: files/debtags/vocabulary
+msgid "Networking"
+msgstr ""
+
+#. Tag: network::client, short desc
+#: files/debtags/vocabulary
+msgid "Client"
+msgstr ""
+
+#. Tag: network::hiavailability, short desc
+#: files/debtags/vocabulary
+msgid "High Availability"
+msgstr ""
+
+#. Tag: network::load-balancing, short desc
+#: files/debtags/vocabulary
+msgid "Load Balancing"
+msgstr ""
+
+#. Tag: network::service, short desc
+#: files/debtags/vocabulary
+msgid "Service"
+msgstr ""
+
+#. Tag: network::vpn, short desc
+#: files/debtags/vocabulary
+msgid "VPN or Tunneling"
+msgstr ""
+
+#. Facet: x11, short desc
+#: files/debtags/vocabulary
+msgid "X Windowing System"
+msgstr ""
+
+#. Tag: x11::applet, short desc
+#: files/debtags/vocabulary
+msgid "Applet"
+msgstr ""
+
+#. Tag: x11::display-manager, short desc
+#: files/debtags/vocabulary
+msgid "Login Manager"
+msgstr ""
+
+#. Tag: x11::display-manager, long desc
+#: files/debtags/vocabulary
+msgid " Display managers (graphical login screens)"
+msgstr ""
+
+#. Tag: x11::library, short desc
+#: files/debtags/vocabulary
+msgid "Library"
+msgstr ""
+
+#. Tag: x11::screensaver, short desc
+#: files/debtags/vocabulary
+msgid "Screen Saver"
+msgstr ""
+
+#. Tag: x11::terminal, short desc
+#: files/debtags/vocabulary
+msgid "Terminal Emulator"
+msgstr ""
+
+#. Tag: x11::theme, short desc
+#: files/debtags/vocabulary
+msgid "Theme"
+msgstr ""
+
+#. Tag: x11::window-manager, short desc
+#: files/debtags/vocabulary
+msgid "Window Manager"
+msgstr ""
+
+#. Tag: x11::xserver, short desc
+#: files/debtags/vocabulary
+msgid "X Server"
+msgstr ""
+
+#. Tag: bbs, short desc
+#: files/debtags/vocabulary
+msgid "Bulletin Board Systems"
+msgstr ""
+
+#. Tag: data-exchange, short desc
+#: files/debtags/vocabulary
+msgid "Data Exchange"
+msgstr ""
+
+#. Tag: desktop, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Environment"
+msgstr ""
+
+#. Tag: file-formats, short desc
+#: files/debtags/vocabulary
+msgid "File formats"
+msgstr ""
+
+#. Tag: foreignos, short desc
+#: files/debtags/vocabulary
+msgid "Foreign OS and Hardware"
+msgstr ""
+
+#. Tag: net, short desc
+#: files/debtags/vocabulary
+msgid "IP Networking"
+msgstr ""
+
+#. Tag: netcomm, short desc
+#: files/debtags/vocabulary
+msgid "Network and Communication"
+msgstr ""
+
+#. Tag: numerical, short desc
+#: files/debtags/vocabulary
+msgid "Calculation and numerical computation"
+msgstr ""
+
+#. Tag: office, short desc
+#: files/debtags/vocabulary
+msgid "Office software"
+msgstr ""
+
+#. Tag: protocols, short desc
+#: files/debtags/vocabulary
+msgid "IP protocol support"
+msgstr ""
+
+#. Tag: science, short desc
+#: files/debtags/vocabulary
+msgid "Science"
+msgstr ""
+
+#. Tag: system, short desc
+#: files/debtags/vocabulary
+msgid "System software and maintainance"
+msgstr ""
+
+#. Tag: vi, short desc
+#: files/debtags/vocabulary
+msgid "VI editor"
+msgstr ""
+
diff --git a/po/debtags.uk.po b/po/debtags.uk.po
new file mode 100644
index 0000000..c6c289b
--- /dev/null
+++ b/po/debtags.uk.po
@@ -0,0 +1,3544 @@
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Facet: accessibility, short desc
+#: files/debtags/vocabulary
+msgid "Accessibility Support"
+msgstr ""
+
+#. Tag: accessibility::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Systems"
+msgstr ""
+
+#. Tag: accessibility::input, long desc
+#: files/debtags/vocabulary
+msgid " Applies to input methods for non-latin languages as well as special input\n systems."
+msgstr ""
+
+#. Tag: accessibility::ocr, short desc
+#: files/debtags/vocabulary
+msgid "Text Recognition (OCR)"
+msgstr ""
+
+#. Tag: accessibility::ocr, long desc
+#: files/debtags/vocabulary
+msgid " Optical Character Recognition"
+msgstr ""
+
+#. Tag: accessibility::screen-magnify, short desc
+#: files/debtags/vocabulary
+msgid "Screen Magnification"
+msgstr ""
+
+#. Tag: accessibility::screen-reader, short desc
+#: files/debtags/vocabulary
+msgid "Screen Reading"
+msgstr ""
+
+#. Tag: accessibility::speech, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::speech, short desc
+#: files/debtags/vocabulary
+msgid "Speech Synthesis"
+msgstr ""
+
+#. Tag: accessibility::speech-recognition, short desc
+#: files/debtags/vocabulary
+msgid "Speech Recognition"
+msgstr ""
+
+#. Tag: accessibility::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, short desc
+#: files/debtags/vocabulary
+msgid "Need an extra tag"
+msgstr ""
+
+#. Tag: accessibility::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: admin::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: culture::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: devel::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: field::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: game::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: hardware::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: made-of::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: interface::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: implemented-in::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: junior::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: mail::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: office::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: scope::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: role::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: security::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: sound::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: special::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: suite::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: protocol::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: uitoolkit::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: use::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: web::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: network::TODO, long desc
+#: files/debtags/vocabulary
+#. Tag: x11::TODO, long desc
+#: files/debtags/vocabulary
+msgid " The package can be categorised along this facet, but the right tag for it is\n missing.\n .\n Mark a package with this tag to signal the vocabulary maintainers of cases\n where the current tag set is lacking."
+msgstr ""
+
+#. Facet: admin, short desc
+#: files/debtags/vocabulary
+msgid "System Administration"
+msgstr ""
+
+#. Tag: admin::accounting, short desc
+#: files/debtags/vocabulary
+msgid "Accounting"
+msgstr ""
+
+#. Tag: admin::automation, short desc
+#: files/debtags/vocabulary
+msgid "Automation and scheduling"
+msgstr ""
+
+#. Tag: admin::automation, long desc
+#: files/debtags/vocabulary
+msgid " Automating the execution of software in the system."
+msgstr ""
+
+#. Tag: admin::backup, short desc
+#: files/debtags/vocabulary
+msgid "Backup and Restoration"
+msgstr ""
+
+#. Tag: admin::benchmarking, short desc
+#: files/debtags/vocabulary
+msgid "Benchmarking"
+msgstr ""
+
+#. Tag: admin::boot, short desc
+#: files/debtags/vocabulary
+msgid "System Boot"
+msgstr ""
+
+#. Tag: admin::cluster, short desc
+#: files/debtags/vocabulary
+msgid "Clustering"
+msgstr ""
+
+#. Tag: admin::configuring, short desc
+#: files/debtags/vocabulary
+msgid "Configuration Tool"
+msgstr ""
+
+#. Tag: admin::file-distribution, short desc
+#: files/debtags/vocabulary
+msgid "File Distribution"
+msgstr ""
+
+#. Tag: admin::filesystem, short desc
+#: files/debtags/vocabulary
+msgid "Filesystem Tool"
+msgstr ""
+
+#. Tag: admin::filesystem, long desc
+#: files/debtags/vocabulary
+msgid " Creation, maintenance, and use of filesystems"
+msgstr ""
+
+#. Tag: admin::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics and Recovery"
+msgstr ""
+
+#. Tag: admin::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Recovering lost or damaged data.\n This tag will be split into admin::recovery\n and security::forensics."
+msgstr ""
+
+#. Tag: admin::hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Support"
+msgstr ""
+
+#. Tag: admin::install, short desc
+#: files/debtags/vocabulary
+msgid "System installation"
+msgstr ""
+
+#. Tag: admin::issuetracker, short desc
+#: files/debtags/vocabulary
+msgid "Issue tracker"
+msgstr ""
+
+#. Tag: admin::kernel, short desc
+#: files/debtags/vocabulary
+msgid "Kernel or Modules"
+msgstr ""
+
+#. Tag: admin::logging, short desc
+#: files/debtags/vocabulary
+msgid "Logging"
+msgstr ""
+
+#. Tag: admin::login, short desc
+#: files/debtags/vocabulary
+#. Tag: use::login, short desc
+#: files/debtags/vocabulary
+msgid "Login"
+msgstr ""
+
+#. Tag: admin::login, long desc
+#: files/debtags/vocabulary
+msgid " Logging into the system"
+msgstr ""
+
+#. Tag: admin::monitoring, short desc
+#: files/debtags/vocabulary
+#. Tag: use::monitor, short desc
+#: files/debtags/vocabulary
+msgid "Monitoring"
+msgstr ""
+
+#. Tag: admin::package-management, short desc
+#: files/debtags/vocabulary
+msgid "Package Management"
+msgstr ""
+
+#. Tag: admin::power-management, short desc
+#: files/debtags/vocabulary
+#. Tag: hardware::power, short desc
+#: files/debtags/vocabulary
+msgid "Power Management"
+msgstr ""
+
+#. Tag: admin::recovery, short desc
+#: files/debtags/vocabulary
+msgid "Data recovery"
+msgstr ""
+
+#. Tag: admin::user-management, short desc
+#: files/debtags/vocabulary
+msgid "User Management"
+msgstr ""
+
+#. Tag: admin::virtualization, short desc
+#: files/debtags/vocabulary
+msgid "Virtualization"
+msgstr ""
+
+#. Tag: admin::virtualization, long desc
+#: files/debtags/vocabulary
+msgid " This is not hardware emulation, but rather those facilities that allow to\n create many isolated compartments inside the same system."
+msgstr ""
+
+#. Facet: biology, short desc
+#: files/debtags/vocabulary
+#. Tag: field::biology, short desc
+#: files/debtags/vocabulary
+msgid "Biology"
+msgstr ""
+
+#. Facet: biology, long desc
+#: files/debtags/vocabulary
+msgid " How is the package related to the field of biology."
+msgstr ""
+
+#. Tag: biology::emboss, short desc
+#: files/debtags/vocabulary
+msgid "EMBOSS"
+msgstr ""
+
+#. Tag: biology::emboss, long desc
+#: files/debtags/vocabulary
+msgid " Packages related to the European Molecular Biology Open Software Suite."
+msgstr ""
+
+#. Tag: biology::format:aln, short desc
+#: files/debtags/vocabulary
+msgid "Clustal/ALN"
+msgstr ""
+
+#. Tag: biology::format:aln, long desc
+#: files/debtags/vocabulary
+msgid " Used in multiple alignment of biological sequences."
+msgstr ""
+
+#. Tag: biology::format:nexus, short desc
+#: files/debtags/vocabulary
+msgid "Nexus"
+msgstr ""
+
+#. Tag: biology::format:nexus, long desc
+#: files/debtags/vocabulary
+msgid " Popular format for phylogenetic trees."
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, short desc
+#: files/debtags/vocabulary
+msgid "Nucleic acids"
+msgstr ""
+
+#. Tag: biology::nuceleic-acids, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of nucleic acids: \n DNA, RNA but also non-natural nucleic acids such as PNA or LNA."
+msgstr ""
+
+#. Tag: biology::peptidic, short desc
+#: files/debtags/vocabulary
+msgid "Proteins"
+msgstr ""
+
+#. Tag: biology::peptidic, long desc
+#: files/debtags/vocabulary
+msgid " Software that works with sequences of aminoacids: peptides and proteins."
+msgstr ""
+
+#. Facet: culture, short desc
+#: files/debtags/vocabulary
+msgid "Culture"
+msgstr ""
+
+#. Facet: culture, long desc
+#: files/debtags/vocabulary
+msgid " The culture for which the package provides special support"
+msgstr ""
+
+#. Tag: culture::afrikaans, short desc
+#: files/debtags/vocabulary
+msgid "Afrikaans"
+msgstr ""
+
+#. Tag: culture::arabic, short desc
+#: files/debtags/vocabulary
+msgid "Arabic"
+msgstr ""
+
+#. Tag: culture::basque, short desc
+#: files/debtags/vocabulary
+msgid "Basque"
+msgstr ""
+
+#. Tag: culture::bengali, short desc
+#: files/debtags/vocabulary
+msgid "Bengali"
+msgstr ""
+
+#. Tag: culture::bokmaal, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Bokmaal"
+msgstr ""
+
+#. Tag: culture::bosnian, short desc
+#: files/debtags/vocabulary
+msgid "Bosnian"
+msgstr ""
+
+#. Tag: culture::brazilian, short desc
+#: files/debtags/vocabulary
+msgid "Brazilian"
+msgstr ""
+
+#. Tag: culture::bulgarian, short desc
+#: files/debtags/vocabulary
+msgid "Bulgarian"
+msgstr ""
+
+#. Tag: culture::catalan, short desc
+#: files/debtags/vocabulary
+msgid "Catalan"
+msgstr ""
+
+#. Tag: culture::chinese, short desc
+#: files/debtags/vocabulary
+msgid "Chinese"
+msgstr ""
+
+#. Tag: culture::czech, short desc
+#: files/debtags/vocabulary
+msgid "Czech"
+msgstr ""
+
+#. Tag: culture::croatian, short desc
+#: files/debtags/vocabulary
+msgid "Croatian"
+msgstr ""
+
+#. Tag: culture::danish, short desc
+#: files/debtags/vocabulary
+msgid "Danish"
+msgstr ""
+
+#. Tag: culture::dutch, short desc
+#: files/debtags/vocabulary
+msgid "Dutch"
+msgstr ""
+
+#. Tag: culture::esperanto, short desc
+#: files/debtags/vocabulary
+msgid "Esperanto"
+msgstr ""
+
+#. Tag: culture::estonian, short desc
+#: files/debtags/vocabulary
+msgid "Estonian"
+msgstr ""
+
+#. Tag: culture::faroese, short desc
+#: files/debtags/vocabulary
+msgid "Faroese"
+msgstr ""
+
+#. Tag: culture::farsi, short desc
+#: files/debtags/vocabulary
+msgid "Farsi"
+msgstr ""
+
+#. Tag: culture::finnish, short desc
+#: files/debtags/vocabulary
+msgid "Finnish"
+msgstr ""
+
+#. Tag: culture::french, short desc
+#: files/debtags/vocabulary
+msgid "French"
+msgstr ""
+
+#. Tag: culture::german, short desc
+#: files/debtags/vocabulary
+msgid "German"
+msgstr ""
+
+#. Tag: culture::greek, short desc
+#: files/debtags/vocabulary
+msgid "Greek"
+msgstr ""
+
+#. Tag: culture::hebrew, short desc
+#: files/debtags/vocabulary
+msgid "Hebrew"
+msgstr ""
+
+#. Tag: culture::hindi, short desc
+#: files/debtags/vocabulary
+msgid "Hindi"
+msgstr ""
+
+#. Tag: culture::hungarian, short desc
+#: files/debtags/vocabulary
+msgid "Hungarian"
+msgstr ""
+
+#. Tag: culture::icelandic, short desc
+#: files/debtags/vocabulary
+msgid "Icelandic"
+msgstr ""
+
+#. Tag: culture::irish, short desc
+#: files/debtags/vocabulary
+msgid "Irish (Gaeilge)"
+msgstr ""
+
+#. Tag: culture::italian, short desc
+#: files/debtags/vocabulary
+msgid "Italian"
+msgstr ""
+
+#. Tag: culture::japanese, short desc
+#: files/debtags/vocabulary
+msgid "Japanese"
+msgstr ""
+
+#. Tag: culture::korean, short desc
+#: files/debtags/vocabulary
+msgid "Korean"
+msgstr ""
+
+#. Tag: culture::mongolian, short desc
+#: files/debtags/vocabulary
+msgid "Mongolian"
+msgstr ""
+
+#. Tag: culture::nynorsk, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian Nynorsk"
+msgstr ""
+
+#. Tag: culture::norwegian, short desc
+#: files/debtags/vocabulary
+msgid "Norwegian"
+msgstr ""
+
+#. Tag: culture::polish, short desc
+#: files/debtags/vocabulary
+msgid "Polish"
+msgstr ""
+
+#. Tag: culture::portuguese, short desc
+#: files/debtags/vocabulary
+msgid "Portuguese"
+msgstr ""
+
+#. Tag: culture::punjabi, short desc
+#: files/debtags/vocabulary
+msgid "Punjabi"
+msgstr ""
+
+#. Tag: culture::romanian, short desc
+#: files/debtags/vocabulary
+msgid "Romanian"
+msgstr ""
+
+#. Tag: culture::russian, short desc
+#: files/debtags/vocabulary
+msgid "Russian"
+msgstr ""
+
+#. Tag: culture::serbian, short desc
+#: files/debtags/vocabulary
+msgid "Serbian"
+msgstr ""
+
+#. Tag: culture::slovak, short desc
+#: files/debtags/vocabulary
+msgid "Slovak"
+msgstr ""
+
+#. Tag: culture::spanish, short desc
+#: files/debtags/vocabulary
+msgid "Spanish"
+msgstr ""
+
+#. Tag: culture::swedish, short desc
+#: files/debtags/vocabulary
+msgid "Swedish"
+msgstr ""
+
+#. Tag: culture::taiwanese, short desc
+#: files/debtags/vocabulary
+msgid "Taiwanese"
+msgstr ""
+
+#. Tag: culture::tajik, short desc
+#: files/debtags/vocabulary
+msgid "Tajik"
+msgstr ""
+
+#. Tag: culture::tamil, short desc
+#: files/debtags/vocabulary
+msgid "Tamil"
+msgstr ""
+
+#. Tag: culture::thai, short desc
+#: files/debtags/vocabulary
+msgid "Thai"
+msgstr ""
+
+#. Tag: culture::turkish, short desc
+#: files/debtags/vocabulary
+msgid "Turkish"
+msgstr ""
+
+#. Tag: culture::ukrainian, short desc
+#: files/debtags/vocabulary
+msgid "Ukrainian"
+msgstr ""
+
+#. Tag: culture::uzbek, short desc
+#: files/debtags/vocabulary
+msgid "Uzbek"
+msgstr ""
+
+#. Tag: culture::welsh, short desc
+#: files/debtags/vocabulary
+msgid "Welsh"
+msgstr ""
+
+#. Facet: devel, short desc
+#: files/debtags/vocabulary
+msgid "Software Development"
+msgstr ""
+
+#. Tag: devel::bugtracker, short desc
+#: files/debtags/vocabulary
+msgid "Bug Tracking"
+msgstr ""
+
+#. Tag: devel::buildtools, short desc
+#: files/debtags/vocabulary
+msgid "Build Tool"
+msgstr ""
+
+#. Tag: devel::code-generator, short desc
+#: files/debtags/vocabulary
+msgid "Code Generation"
+msgstr ""
+
+#. Tag: devel::code-generator, long desc
+#: files/debtags/vocabulary
+msgid " Parser, lexer and other code generators"
+msgstr ""
+
+#. Tag: devel::compiler, short desc
+#: files/debtags/vocabulary
+msgid "Compiler"
+msgstr ""
+
+#. Tag: devel::debian, short desc
+#: files/debtags/vocabulary
+#. Tag: suite::debian, short desc
+#: files/debtags/vocabulary
+msgid "Debian"
+msgstr ""
+
+#. Tag: devel::debian, long desc
+#: files/debtags/vocabulary
+msgid " Tools, documentation, etc. of use primarily to Debian developers."
+msgstr ""
+
+#. Tag: devel::debugger, short desc
+#: files/debtags/vocabulary
+msgid "Debugging"
+msgstr ""
+
+#. Tag: devel::doc, short desc
+#: files/debtags/vocabulary
+#. Tag: role::documentation, short desc
+#: files/debtags/vocabulary
+msgid "Documentation"
+msgstr ""
+
+#. Tag: devel::docsystem, short desc
+#: files/debtags/vocabulary
+msgid "Literate Programming"
+msgstr ""
+
+#. Tag: devel::docsystem, long desc
+#: files/debtags/vocabulary
+msgid " Tools and auto-documenters"
+msgstr ""
+
+#. Tag: devel::ecma-cli, short desc
+#: files/debtags/vocabulary
+msgid "ECMA CLI"
+msgstr ""
+
+#. Tag: devel::ecma-cli, long desc
+#: files/debtags/vocabulary
+msgid " Tools and libraries for development with implementations of \n the ECMA CLI (Common Language Infrastructure), like Mono\n or DotGNU Portable.NET."
+msgstr ""
+
+#. Tag: devel::editor, short desc
+#: files/debtags/vocabulary
+msgid "Source Editor"
+msgstr ""
+
+#. Tag: devel::examples, short desc
+#: files/debtags/vocabulary
+msgid "Examples"
+msgstr ""
+
+#. Tag: devel::ide, short desc
+#: files/debtags/vocabulary
+msgid "IDE"
+msgstr ""
+
+#. Tag: devel::ide, long desc
+#: files/debtags/vocabulary
+msgid " Integrated Development Environment"
+msgstr ""
+
+#. Tag: devel::interpreter, short desc
+#: files/debtags/vocabulary
+msgid "Interpreter"
+msgstr ""
+
+#. Tag: devel::i18n, short desc
+#: files/debtags/vocabulary
+msgid "Internationalization"
+msgstr ""
+
+#. Tag: devel::lang:ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada Development"
+msgstr ""
+
+#. Tag: devel::lang:c, short desc
+#: files/debtags/vocabulary
+msgid "C Development"
+msgstr ""
+
+#. Tag: devel::lang:c++, short desc
+#: files/debtags/vocabulary
+msgid "C++ Development"
+msgstr ""
+
+#. Tag: devel::lang:c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C# Development"
+msgstr ""
+
+#. Tag: devel::lang:fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran Development"
+msgstr ""
+
+#. Tag: devel::lang:haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell Development"
+msgstr ""
+
+#. Tag: devel::lang:java, short desc
+#: files/debtags/vocabulary
+msgid "Java Development"
+msgstr ""
+
+#. Tag: devel::lang:ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/JavaScript Development"
+msgstr ""
+
+#. Tag: devel::lang:lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp Development"
+msgstr ""
+
+#. Tag: devel::lang:lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua Development"
+msgstr ""
+
+#. Tag: devel::lang:ml, short desc
+#: files/debtags/vocabulary
+msgid "ML Development"
+msgstr ""
+
+#. Tag: devel::lang:objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective-C Development"
+msgstr ""
+
+#. Tag: devel::lang:ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml Development"
+msgstr ""
+
+#. Tag: devel::lang:octave, short desc
+#: files/debtags/vocabulary
+msgid "GNU Octave Development"
+msgstr ""
+
+#. Tag: devel::lang:pascal, short desc
+#: files/debtags/vocabulary
+msgid "Pascal Development"
+msgstr ""
+
+#. Tag: devel::lang:perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl Development"
+msgstr ""
+
+#. Tag: devel::lang:php, short desc
+#: files/debtags/vocabulary
+msgid "PHP Development"
+msgstr ""
+
+#. Tag: devel::lang:pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike Development"
+msgstr ""
+
+#. Tag: devel::lang:prolog, short desc
+#: files/debtags/vocabulary
+msgid "Prolog Development"
+msgstr ""
+
+#. Tag: devel::lang:python, short desc
+#: files/debtags/vocabulary
+msgid "Python Development"
+msgstr ""
+
+#. Tag: devel::lang:r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R Development"
+msgstr ""
+
+#. Tag: devel::lang:ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby Development"
+msgstr ""
+
+#. Tag: devel::lang:scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme Development"
+msgstr ""
+
+#. Tag: devel::lang:sql, short desc
+#: files/debtags/vocabulary
+msgid "SQL"
+msgstr ""
+
+#. Tag: devel::lang:tcl, short desc
+#: files/debtags/vocabulary
+msgid "Tcl Development"
+msgstr ""
+
+#. Tag: devel::library, short desc
+#: files/debtags/vocabulary
+msgid "Libraries"
+msgstr ""
+
+#. Tag: devel::machinecode, short desc
+#: files/debtags/vocabulary
+msgid "Machine Code"
+msgstr ""
+
+#. Tag: devel::machinecode, long desc
+#: files/debtags/vocabulary
+msgid " Assemblers and other machine-code development tools."
+msgstr ""
+
+#. Tag: devel::modelling, short desc
+#: files/debtags/vocabulary
+msgid "Modelling"
+msgstr ""
+
+#. Tag: devel::modelling, long desc
+#: files/debtags/vocabulary
+msgid " Programs and libraries that support creation of software models\n with modelling languages like UML or OCL."
+msgstr ""
+
+#. Tag: devel::packaging, short desc
+#: files/debtags/vocabulary
+msgid "Packaging"
+msgstr ""
+
+#. Tag: devel::packaging, long desc
+#: files/debtags/vocabulary
+msgid " Tools for packaging software."
+msgstr ""
+
+#. Tag: devel::prettyprint, short desc
+#: files/debtags/vocabulary
+msgid "Prettyprint"
+msgstr ""
+
+#. Tag: devel::prettyprint, long desc
+#: files/debtags/vocabulary
+msgid " Code pretty-printing and indentation/reformatting."
+msgstr ""
+
+#. Tag: devel::profiler, short desc
+#: files/debtags/vocabulary
+msgid "Profiling"
+msgstr ""
+
+#. Tag: devel::profiler, long desc
+#: files/debtags/vocabulary
+msgid " Profiling and optimization tools."
+msgstr ""
+
+#. Tag: devel::rcs, short desc
+#: files/debtags/vocabulary
+msgid "Revision Control"
+msgstr ""
+
+#. Tag: devel::rcs, long desc
+#: files/debtags/vocabulary
+msgid " RCS (Revision Control System) and SCM (Software Configuration Manager)"
+msgstr ""
+
+#. Tag: devel::rpc, short desc
+#: files/debtags/vocabulary
+msgid "RPC"
+msgstr ""
+
+#. Tag: devel::rpc, long desc
+#: files/debtags/vocabulary
+msgid " Remote Procedure Call, Network transparent programming"
+msgstr ""
+
+#. Tag: devel::runtime, short desc
+#: files/debtags/vocabulary
+msgid "Runtime Support"
+msgstr ""
+
+#. Tag: devel::runtime, long desc
+#: files/debtags/vocabulary
+msgid " Runtime environments of various languages and systems."
+msgstr ""
+
+#. Tag: devel::testing-qa, short desc
+#: files/debtags/vocabulary
+msgid "Testing and QA"
+msgstr ""
+
+#. Tag: devel::testing-qa, long desc
+#: files/debtags/vocabulary
+msgid " Tools for software testing and quality assurance."
+msgstr ""
+
+#. Tag: devel::ui-builder, short desc
+#: files/debtags/vocabulary
+#. Facet: interface, short desc
+#: files/debtags/vocabulary
+msgid "User Interface"
+msgstr ""
+
+#. Tag: devel::ui-builder, long desc
+#: files/debtags/vocabulary
+msgid " Tools for designing user interfaces."
+msgstr ""
+
+#. Tag: devel::web, short desc
+#: files/debtags/vocabulary
+msgid "Web"
+msgstr ""
+
+#. Tag: devel::web, long desc
+#: files/debtags/vocabulary
+msgid " Web-centric frameworks, CGI libraries and other web-specific development\n tools."
+msgstr ""
+
+#. Tag: educational, short desc
+#: files/debtags/vocabulary
+msgid "[Edu] Educational Software"
+msgstr ""
+
+#. Facet: field, short desc
+#: files/debtags/vocabulary
+msgid "Field"
+msgstr ""
+
+#. Tag: field::arts, short desc
+#: files/debtags/vocabulary
+msgid "Arts"
+msgstr ""
+
+#. Tag: field::astronomy, short desc
+#: files/debtags/vocabulary
+msgid "Astronomy"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, short desc
+#: files/debtags/vocabulary
+msgid "Bioinformatics"
+msgstr ""
+
+#. Tag: field::biology:bioinformatics, long desc
+#: files/debtags/vocabulary
+msgid " Sequence analysis software."
+msgstr ""
+
+#. Tag: field::biology:molecular, short desc
+#: files/debtags/vocabulary
+msgid "Molecular biology"
+msgstr ""
+
+#. Tag: field::biology:molecular, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to molecular cloning and related wet biology."
+msgstr ""
+
+#. Tag: field::biology:structural, short desc
+#: files/debtags/vocabulary
+msgid "Structural biology"
+msgstr ""
+
+#. Tag: field::biology:structural, long desc
+#: files/debtags/vocabulary
+msgid " Software useful to model tridimentional structures."
+msgstr ""
+
+#. Tag: field::chemistry, short desc
+#: files/debtags/vocabulary
+msgid "Chemistry"
+msgstr ""
+
+#. Tag: field::electronics, short desc
+#: files/debtags/vocabulary
+msgid "Electronics"
+msgstr ""
+
+#. Tag: field::electronics, long desc
+#: files/debtags/vocabulary
+msgid " Circuit editors and other electronics-related software"
+msgstr ""
+
+#. Tag: field::finance, short desc
+#: files/debtags/vocabulary
+msgid "Financial"
+msgstr ""
+
+#. Tag: field::finance, long desc
+#: files/debtags/vocabulary
+msgid " Accounting and financial software"
+msgstr ""
+
+#. Tag: field::genealogy, short desc
+#: files/debtags/vocabulary
+msgid "Genealogy"
+msgstr ""
+
+#. Tag: field::geography, short desc
+#: files/debtags/vocabulary
+msgid "Geography"
+msgstr ""
+
+#. Tag: field::geology, short desc
+#: files/debtags/vocabulary
+msgid "Geology"
+msgstr ""
+
+#. Tag: field::linguistics, short desc
+#: files/debtags/vocabulary
+msgid "Linguistics"
+msgstr ""
+
+#. Tag: field::mathematics, short desc
+#: files/debtags/vocabulary
+msgid "Mathematics"
+msgstr ""
+
+#. Tag: field::medicine, short desc
+#: files/debtags/vocabulary
+msgid "Medicine"
+msgstr ""
+
+#. Tag: field::medicine:imaging, short desc
+#: files/debtags/vocabulary
+msgid "Medical Imaging"
+msgstr ""
+
+#. Tag: field::physics, short desc
+#: files/debtags/vocabulary
+msgid "Physics"
+msgstr ""
+
+#. Tag: field::religion, short desc
+#: files/debtags/vocabulary
+msgid "Religion"
+msgstr ""
+
+#. Tag: field::statistics, short desc
+#: files/debtags/vocabulary
+msgid "Statistics"
+msgstr ""
+
+#. Facet: game, short desc
+#: files/debtags/vocabulary
+msgid "Games and Amusement"
+msgstr ""
+
+#. Tag: game::adventure, short desc
+#: files/debtags/vocabulary
+msgid "Adventure"
+msgstr ""
+
+#. Tag: game::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Action and Arcade"
+msgstr ""
+
+#. Tag: game::board, short desc
+#: files/debtags/vocabulary
+msgid "Board"
+msgstr ""
+
+#. Tag: game::board:chess, short desc
+#: files/debtags/vocabulary
+msgid "Chess"
+msgstr ""
+
+#. Tag: game::card, short desc
+#: files/debtags/vocabulary
+msgid "Card"
+msgstr ""
+
+#. Tag: game::demos, short desc
+#: files/debtags/vocabulary
+msgid "Demo"
+msgstr ""
+
+#. Tag: game::fps, short desc
+#: files/debtags/vocabulary
+msgid "First person shooter"
+msgstr ""
+
+#. Tag: game::mud, short desc
+#: files/debtags/vocabulary
+msgid "Multiplayer RPG"
+msgstr ""
+
+#. Tag: game::mud, long desc
+#: files/debtags/vocabulary
+msgid " MUDs, MOOs, and other multiplayer RPGs"
+msgstr ""
+
+#. Tag: game::platform, short desc
+#: files/debtags/vocabulary
+msgid "Platform"
+msgstr ""
+
+#. Tag: game::puzzle, short desc
+#: files/debtags/vocabulary
+msgid "Puzzle"
+msgstr ""
+
+#. Tag: game::rpg, short desc
+#: files/debtags/vocabulary
+msgid "Role-playing"
+msgstr ""
+
+#. Tag: game::rpg:rogue, short desc
+#: files/debtags/vocabulary
+msgid "Rogue-Like RPG"
+msgstr ""
+
+#. Tag: game::rpg:rogue, long desc
+#: files/debtags/vocabulary
+msgid " Games like Nethack, Angband etc."
+msgstr ""
+
+#. Tag: game::simulation, short desc
+#: files/debtags/vocabulary
+msgid "Simulation"
+msgstr ""
+
+#. Tag: game::sport, short desc
+#: files/debtags/vocabulary
+msgid "Sport games"
+msgstr ""
+
+#. Tag: game::sport:racing, short desc
+#: files/debtags/vocabulary
+msgid "Racing"
+msgstr ""
+
+#. Tag: game::strategy, short desc
+#: files/debtags/vocabulary
+msgid "Strategy"
+msgstr ""
+
+#. Tag: game::tetris, short desc
+#: files/debtags/vocabulary
+msgid "Tetris-like"
+msgstr ""
+
+#. Tag: game::toys, short desc
+#: files/debtags/vocabulary
+msgid "Toy or Gimmick"
+msgstr ""
+
+#. Tag: game::typing, short desc
+#: files/debtags/vocabulary
+msgid "Typing Tutor"
+msgstr ""
+
+#. Facet: hardware, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Enablement"
+msgstr ""
+
+#. Tag: hardware::camera, short desc
+#: files/debtags/vocabulary
+msgid "Digital Camera"
+msgstr ""
+
+#. Tag: hardware::detection, short desc
+#: files/debtags/vocabulary
+msgid "Hardware detection"
+msgstr ""
+
+#. Tag: hardware::embedded, short desc
+#: files/debtags/vocabulary
+msgid "Embedded"
+msgstr ""
+
+#. Tag: hardware::emulation, short desc
+#: files/debtags/vocabulary
+msgid "Emulation"
+msgstr ""
+
+#. Tag: hardware::input, short desc
+#: files/debtags/vocabulary
+msgid "Input Devices"
+msgstr ""
+
+#. Tag: hardware::input:joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick"
+msgstr ""
+
+#. Tag: hardware::input:keyboard, short desc
+#: files/debtags/vocabulary
+msgid "Keyboard"
+msgstr ""
+
+#. Tag: hardware::input:mouse, short desc
+#: files/debtags/vocabulary
+msgid "Mouse"
+msgstr ""
+
+#. Tag: hardware::joystick, short desc
+#: files/debtags/vocabulary
+msgid "Joystick (legacy)"
+msgstr ""
+
+#. Tag: hardware::hamradio, short desc
+#: files/debtags/vocabulary
+msgid "Ham Radio"
+msgstr ""
+
+#. Tag: hardware::laptop, short desc
+#: files/debtags/vocabulary
+msgid "Laptop"
+msgstr ""
+
+#. Tag: hardware::modem, short desc
+#: files/debtags/vocabulary
+msgid "Modem"
+msgstr ""
+
+#. Tag: hardware::modem:dsl, short desc
+#: files/debtags/vocabulary
+msgid "xDSL Modem"
+msgstr ""
+
+#. Tag: hardware::opengl, short desc
+#: files/debtags/vocabulary
+msgid "Requires video hardware acceleration"
+msgstr ""
+
+#. Tag: hardware::power:ups, short desc
+#: files/debtags/vocabulary
+msgid "UPS"
+msgstr ""
+
+#. Tag: hardware::power:ups, long desc
+#: files/debtags/vocabulary
+msgid " Uninterruptible Power Supply"
+msgstr ""
+
+#. Tag: hardware::power:acpi, short desc
+#: files/debtags/vocabulary
+msgid "ACPI Power Management"
+msgstr ""
+
+#. Tag: hardware::power:apm, short desc
+#: files/debtags/vocabulary
+msgid "APM Power Management"
+msgstr ""
+
+#. Tag: hardware::printer, short desc
+#: files/debtags/vocabulary
+msgid "Printer"
+msgstr ""
+
+#. Tag: hardware::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Image-scanning hardware"
+msgstr ""
+
+#. Tag: hardware::storage, short desc
+#: files/debtags/vocabulary
+msgid "Storage"
+msgstr ""
+
+#. Tag: hardware::storage:cd, short desc
+#: files/debtags/vocabulary
+msgid "CD"
+msgstr ""
+
+#. Tag: hardware::storage:cd, long desc
+#: files/debtags/vocabulary
+msgid " Compact Disc"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, short desc
+#: files/debtags/vocabulary
+msgid "DVD"
+msgstr ""
+
+#. Tag: hardware::storage:dvd, long desc
+#: files/debtags/vocabulary
+msgid " Digital Versatile Disc"
+msgstr ""
+
+#. Tag: hardware::storage:floppy, short desc
+#: files/debtags/vocabulary
+msgid "Floppy disk"
+msgstr ""
+
+#. Tag: hardware::usb, short desc
+#: files/debtags/vocabulary
+msgid "USB"
+msgstr ""
+
+#. Tag: hardware::usb, long desc
+#: files/debtags/vocabulary
+msgid " Universal Serial Bus"
+msgstr ""
+
+#. Tag: hardware::video, short desc
+#: files/debtags/vocabulary
+msgid "Graphics and Video"
+msgstr ""
+
+#. Facet: made-of, short desc
+#: files/debtags/vocabulary
+msgid "Made Of"
+msgstr ""
+
+#. Facet: made-of, long desc
+#: files/debtags/vocabulary
+msgid " The languages or data formats used to make the package"
+msgstr ""
+
+#. Tag: made-of::data:dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionary"
+msgstr ""
+
+#. Tag: made-of::data:font, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::font, short desc
+#: files/debtags/vocabulary
+msgid "Font"
+msgstr ""
+
+#. Tag: made-of::data:html, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::html, short desc
+#: files/debtags/vocabulary
+msgid "HTML Hypertext Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:icons, short desc
+#: files/debtags/vocabulary
+msgid "Icons"
+msgstr ""
+
+#. Tag: made-of::data:info, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::info, short desc
+#: files/debtags/vocabulary
+msgid "Documentation in Info format"
+msgstr ""
+
+#. Tag: made-of::data:man, short desc
+#: files/debtags/vocabulary
+msgid "Manuals in nroff format"
+msgstr ""
+
+#. Tag: made-of::data:pdf, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::pdf, short desc
+#: files/debtags/vocabulary
+msgid "PDF Documents"
+msgstr ""
+
+#. Tag: made-of::data:postscript, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::postscript, short desc
+#: files/debtags/vocabulary
+msgid "Postscript"
+msgstr ""
+
+#. Tag: made-of::data:sgml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::sgml, short desc
+#: files/debtags/vocabulary
+msgid "SGML, Standard Generalized Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:svg, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::svg, short desc
+#: files/debtags/vocabulary
+msgid "SVG, Scalable Vector Graphics"
+msgstr ""
+
+#. Tag: made-of::data:tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX, LaTeX and DVI"
+msgstr ""
+
+#. Tag: made-of::data:vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: made-of::data:xml, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with-format::xml, short desc
+#: files/debtags/vocabulary
+msgid "XML"
+msgstr ""
+
+#. Tag: interface::3d, short desc
+#: files/debtags/vocabulary
+msgid "Three-Dimensional"
+msgstr ""
+
+#. Tag: interface::commandline, short desc
+#: files/debtags/vocabulary
+msgid "Command Line"
+msgstr ""
+
+#. Tag: interface::daemon, short desc
+#: files/debtags/vocabulary
+msgid "Daemon"
+msgstr ""
+
+#. Tag: interface::daemon, long desc
+#: files/debtags/vocabulary
+msgid " Runs in background, only a control interface is provided, usually on\n commandline."
+msgstr ""
+
+#. Tag: interface::framebuffer, short desc
+#: files/debtags/vocabulary
+msgid "Framebuffer"
+msgstr ""
+
+#. Tag: interface::shell, short desc
+#: files/debtags/vocabulary
+msgid "Command Shell"
+msgstr ""
+
+#. Tag: interface::svga, short desc
+#: files/debtags/vocabulary
+msgid "Console SVGA"
+msgstr ""
+
+#. Tag: interface::text-mode, short desc
+#: files/debtags/vocabulary
+msgid "Text-based Interactive"
+msgstr ""
+
+#. Tag: interface::web, short desc
+#: files/debtags/vocabulary
+#. Facet: web, short desc
+#: files/debtags/vocabulary
+msgid "World Wide Web"
+msgstr ""
+
+#. Tag: interface::x11, short desc
+#: files/debtags/vocabulary
+msgid "X Window System"
+msgstr ""
+
+#. Facet: implemented-in, short desc
+#: files/debtags/vocabulary
+msgid "Implemented in"
+msgstr ""
+
+#. Tag: implemented-in::ada, short desc
+#: files/debtags/vocabulary
+msgid "Ada"
+msgstr ""
+
+#. Tag: implemented-in::c, short desc
+#: files/debtags/vocabulary
+msgid "C"
+msgstr ""
+
+#. Tag: implemented-in::c++, short desc
+#: files/debtags/vocabulary
+msgid "C++"
+msgstr ""
+
+#. Tag: implemented-in::c-sharp, short desc
+#: files/debtags/vocabulary
+msgid "C#"
+msgstr ""
+
+#. Tag: implemented-in::fortran, short desc
+#: files/debtags/vocabulary
+msgid "Fortran"
+msgstr ""
+
+#. Tag: implemented-in::haskell, short desc
+#: files/debtags/vocabulary
+msgid "Haskell"
+msgstr ""
+
+#. Tag: implemented-in::java, short desc
+#: files/debtags/vocabulary
+msgid "Java"
+msgstr ""
+
+#. Tag: implemented-in::ecmascript, short desc
+#: files/debtags/vocabulary
+msgid "Ecmascript/Javascript"
+msgstr ""
+
+#. Tag: implemented-in::lisp, short desc
+#: files/debtags/vocabulary
+msgid "Lisp"
+msgstr ""
+
+#. Tag: implemented-in::lua, short desc
+#: files/debtags/vocabulary
+msgid "Lua"
+msgstr ""
+
+#. Tag: implemented-in::ml, short desc
+#: files/debtags/vocabulary
+msgid "ML"
+msgstr ""
+
+#. Tag: implemented-in::objc, short desc
+#: files/debtags/vocabulary
+msgid "Objective C"
+msgstr ""
+
+#. Tag: implemented-in::ocaml, short desc
+#: files/debtags/vocabulary
+msgid "OCaml"
+msgstr ""
+
+#. Tag: implemented-in::perl, short desc
+#: files/debtags/vocabulary
+msgid "Perl"
+msgstr ""
+
+#. Tag: implemented-in::php, short desc
+#: files/debtags/vocabulary
+msgid "PHP"
+msgstr ""
+
+#. Tag: implemented-in::pike, short desc
+#: files/debtags/vocabulary
+msgid "Pike"
+msgstr ""
+
+#. Tag: implemented-in::python, short desc
+#: files/debtags/vocabulary
+msgid "Python"
+msgstr ""
+
+#. Tag: implemented-in::r, short desc
+#: files/debtags/vocabulary
+msgid "GNU R"
+msgstr ""
+
+#. Tag: implemented-in::ruby, short desc
+#: files/debtags/vocabulary
+msgid "Ruby"
+msgstr ""
+
+#. Tag: implemented-in::scheme, short desc
+#: files/debtags/vocabulary
+msgid "Scheme"
+msgstr ""
+
+#. Tag: implemented-in::shell, short desc
+#: files/debtags/vocabulary
+msgid "sh, bash, ksh, tcsh and other shells"
+msgstr ""
+
+#. Tag: implemented-in::tcl, short desc
+#: files/debtags/vocabulary
+msgid "TCL Tool Command Language"
+msgstr ""
+
+#. Facet: junior, short desc
+#: files/debtags/vocabulary
+msgid "Junior Applications"
+msgstr ""
+
+#. Facet: junior, long desc
+#: files/debtags/vocabulary
+msgid " Applications recommended for younger users"
+msgstr ""
+
+#. Tag: junior::arcade, short desc
+#: files/debtags/vocabulary
+msgid "Arcade games"
+msgstr ""
+
+#. Tag: junior::games-gl, short desc
+#: files/debtags/vocabulary
+msgid "3D games"
+msgstr ""
+
+#. Tag: junior::meta, short desc
+#: files/debtags/vocabulary
+msgid "Metapackages"
+msgstr ""
+
+#. Facet: mail, short desc
+#: files/debtags/vocabulary
+msgid "Electronic Mail"
+msgstr ""
+
+#. Tag: mail::filters, short desc
+#: files/debtags/vocabulary
+msgid "Filters"
+msgstr ""
+
+#. Tag: mail::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP Protocol"
+msgstr ""
+
+#. Tag: mail::list, short desc
+#: files/debtags/vocabulary
+msgid "Mailing Lists"
+msgstr ""
+
+#. Tag: mail::notification, short desc
+#: files/debtags/vocabulary
+msgid "Notification"
+msgstr ""
+
+#. Tag: mail::notification, long desc
+#: files/debtags/vocabulary
+msgid " Software that notifies users about status of mailbox."
+msgstr ""
+
+#. Tag: mail::pop, short desc
+#: files/debtags/vocabulary
+msgid "POP3 Protocol"
+msgstr ""
+
+#. Tag: mail::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP Protocol"
+msgstr ""
+
+#. Tag: mail::delivery-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Delivery Agent"
+msgstr ""
+
+#. Tag: mail::delivery-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that delivers mail to users' mailboxes."
+msgstr ""
+
+#. Tag: mail::transport-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail Transport Agent"
+msgstr ""
+
+#. Tag: mail::transport-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that routes and transmits mail accross the system and the network."
+msgstr ""
+
+#. Tag: mail::user-agent, short desc
+#: files/debtags/vocabulary
+msgid "Mail user agent"
+msgstr ""
+
+#. Tag: mail::user-agent, long desc
+#: files/debtags/vocabulary
+msgid " Software that allows users to access e-mail."
+msgstr ""
+
+#. Facet: office, short desc
+#: files/debtags/vocabulary
+msgid "Office and business"
+msgstr ""
+
+#. Tag: office::finance, short desc
+#: files/debtags/vocabulary
+msgid "Finance"
+msgstr ""
+
+#. Tag: office::groupware, short desc
+#: files/debtags/vocabulary
+msgid "Groupware"
+msgstr ""
+
+#. Tag: office::presentation, short desc
+#: files/debtags/vocabulary
+msgid "Presentation"
+msgstr ""
+
+#. Tag: office::project-management, short desc
+#: files/debtags/vocabulary
+msgid "Project management"
+msgstr ""
+
+#. Tag: office::spreadsheet, short desc
+#: files/debtags/vocabulary
+#. Tag: works-with::spreadsheet, short desc
+#: files/debtags/vocabulary
+msgid "Spreadsheet"
+msgstr ""
+
+#. Facet: works-with, short desc
+#: files/debtags/vocabulary
+msgid "Works with"
+msgstr ""
+
+#. Facet: works-with, long desc
+#: files/debtags/vocabulary
+msgid " These tags describe what is the kind of data (or even processes, or people)\n that the package can work with."
+msgstr ""
+
+#. Tag: works-with::3dmodel, short desc
+#: files/debtags/vocabulary
+msgid "3D Model"
+msgstr ""
+
+#. Tag: works-with::archive, short desc
+#: files/debtags/vocabulary
+msgid "Archive"
+msgstr ""
+
+#. Tag: works-with::audio, short desc
+#: files/debtags/vocabulary
+msgid "Audio"
+msgstr ""
+
+#. Tag: works-with::bugs, short desc
+#: files/debtags/vocabulary
+msgid "Bugs or Issues"
+msgstr ""
+
+#. Tag: works-with::db, short desc
+#: files/debtags/vocabulary
+msgid "Databases"
+msgstr ""
+
+#. Tag: works-with::dictionary, short desc
+#: files/debtags/vocabulary
+msgid "Dictionaries"
+msgstr ""
+
+#. Tag: works-with::dtp, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Publishing (DTP)"
+msgstr ""
+
+#. Tag: works-with::fax, short desc
+#: files/debtags/vocabulary
+msgid "Faxes"
+msgstr ""
+
+#. Tag: works-with::file, short desc
+#: files/debtags/vocabulary
+msgid "Files"
+msgstr ""
+
+#. Tag: works-with::font, short desc
+#: files/debtags/vocabulary
+msgid "Fonts"
+msgstr ""
+
+#. Tag: works-with::im, short desc
+#: files/debtags/vocabulary
+msgid "Instant Messages"
+msgstr ""
+
+#. Tag: works-with::im, long desc
+#: files/debtags/vocabulary
+msgid " The package can connect to some IM network (or networks)."
+msgstr ""
+
+#. Tag: works-with::logfile, short desc
+#: files/debtags/vocabulary
+msgid "System Logs"
+msgstr ""
+
+#. Tag: works-with::mail, short desc
+#: files/debtags/vocabulary
+msgid "Email"
+msgstr ""
+
+#. Tag: works-with::music-notation, short desc
+#: files/debtags/vocabulary
+msgid "Music Notation"
+msgstr ""
+
+#. Tag: works-with::network-traffic, short desc
+#: files/debtags/vocabulary
+msgid "Network traffic"
+msgstr ""
+
+#. Tag: works-with::network-traffic, long desc
+#: files/debtags/vocabulary
+msgid " Routers, shapers, sniffers, firewalls and other tools\n that work with a stream of network packets."
+msgstr ""
+
+#. Tag: works-with::people, short desc
+#: files/debtags/vocabulary
+msgid "People"
+msgstr ""
+
+#. Tag: works-with::pim, short desc
+#: files/debtags/vocabulary
+msgid "Personal Information"
+msgstr ""
+
+#. Tag: works-with::image, short desc
+#: files/debtags/vocabulary
+msgid "Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, short desc
+#: files/debtags/vocabulary
+msgid "Raster Image"
+msgstr ""
+
+#. Tag: works-with::image:raster, long desc
+#: files/debtags/vocabulary
+msgid " Images made of dots, such as photos and scans"
+msgstr ""
+
+#. Tag: works-with::image:vector, short desc
+#: files/debtags/vocabulary
+msgid "Vector Image"
+msgstr ""
+
+#. Tag: works-with::image:vector, long desc
+#: files/debtags/vocabulary
+msgid " Images made of lines, such as graphs or most clipart"
+msgstr ""
+
+#. Tag: works-with::software:package, short desc
+#: files/debtags/vocabulary
+msgid "Packaged software"
+msgstr ""
+
+#. Tag: works-with::software:running, short desc
+#: files/debtags/vocabulary
+msgid "Running programs"
+msgstr ""
+
+#. Tag: works-with::software:source, short desc
+#: files/debtags/vocabulary
+msgid "Source code"
+msgstr ""
+
+#. Tag: works-with::text, short desc
+#: files/debtags/vocabulary
+msgid "Text"
+msgstr ""
+
+#. Tag: works-with::unicode, short desc
+#: files/debtags/vocabulary
+msgid "Unicode"
+msgstr ""
+
+#. Tag: works-with::unicode, long desc
+#: files/debtags/vocabulary
+msgid " Please do not tag programs with simple unicode support,\n doing so would make this tag useless.\n Ultimately all applications should have unicode support."
+msgstr ""
+
+#. Tag: works-with::video, short desc
+#: files/debtags/vocabulary
+msgid "Video and Animation"
+msgstr ""
+
+#. Facet: works-with-format, short desc
+#: files/debtags/vocabulary
+msgid "Supports Format"
+msgstr ""
+
+#. Tag: works-with-format::bib, short desc
+#: files/debtags/vocabulary
+msgid "BibTeX"
+msgstr ""
+
+#. Tag: works-with-format::bib, long desc
+#: files/debtags/vocabulary
+msgid " BibTeX list of references"
+msgstr ""
+
+#. Tag: works-with-format::dvi, short desc
+#: files/debtags/vocabulary
+msgid "TeX DVI"
+msgstr ""
+
+#. Tag: works-with-format::dvi, long desc
+#: files/debtags/vocabulary
+msgid " DeVice Independent page description file, usually generated\n by TeX or LaTeX."
+msgstr ""
+
+#. Tag: works-with-format::ldif, short desc
+#: files/debtags/vocabulary
+msgid "LDIF"
+msgstr ""
+
+#. Tag: works-with-format::ldif, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::vrml, short desc
+#: files/debtags/vocabulary
+msgid "VRML 3D Model"
+msgstr ""
+
+#. Tag: works-with-format::vrml, long desc
+#: files/debtags/vocabulary
+msgid " Virtual Reality Markup Language"
+msgstr ""
+
+#. Tag: works-with-format::iso9660, short desc
+#: files/debtags/vocabulary
+msgid "ISO 9660 CD Filesystem"
+msgstr ""
+
+#. Tag: works-with-format::tar, short desc
+#: files/debtags/vocabulary
+msgid "Tar Archives"
+msgstr ""
+
+#. Tag: works-with-format::zip, short desc
+#: files/debtags/vocabulary
+msgid "Zip Archives"
+msgstr ""
+
+#. Tag: works-with-format::mp3, short desc
+#: files/debtags/vocabulary
+msgid "MP3 Audio"
+msgstr ""
+
+#. Tag: works-with-format::mpc, short desc
+#: files/debtags/vocabulary
+msgid "Musepack Audio"
+msgstr ""
+
+#. Tag: works-with-format::oggvorbis, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Vorbis Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, short desc
+#: files/debtags/vocabulary
+msgid "MS RIFF Audio"
+msgstr ""
+
+#. Tag: works-with-format::wav, long desc
+#: files/debtags/vocabulary
+msgid " Wave uncompressed audio format"
+msgstr ""
+
+#. Tag: works-with-format::jpg, short desc
+#: files/debtags/vocabulary
+msgid "JPEG, Joint Picture Expert Group"
+msgstr ""
+
+#. Tag: works-with-format::gif, short desc
+#: files/debtags/vocabulary
+msgid "GIF, Graphics Interchange Format"
+msgstr ""
+
+#. Tag: works-with-format::odf, short desc
+#: files/debtags/vocabulary
+msgid "ODF, Open Document Format"
+msgstr ""
+
+#. Tag: works-with-format::png, short desc
+#: files/debtags/vocabulary
+msgid "PNG, Portable Network Graphics"
+msgstr ""
+
+#. Tag: works-with-format::swf, short desc
+#: files/debtags/vocabulary
+msgid "SWF, ShockWave Flash"
+msgstr ""
+
+#. Tag: works-with-format::tiff, short desc
+#: files/debtags/vocabulary
+msgid "TIFF, Tagged Image File Format"
+msgstr ""
+
+#. Tag: works-with-format::docbook, short desc
+#: files/debtags/vocabulary
+msgid "Docbook"
+msgstr ""
+
+#. Tag: works-with-format::man, short desc
+#: files/debtags/vocabulary
+msgid "Manpages"
+msgstr ""
+
+#. Tag: works-with-format::plaintext, short desc
+#: files/debtags/vocabulary
+msgid "Plain text"
+msgstr ""
+
+#. Tag: works-with-format::tex, short desc
+#: files/debtags/vocabulary
+msgid "TeX and LaTeX"
+msgstr ""
+
+#. Tag: works-with-format::oggtheora, short desc
+#: files/debtags/vocabulary
+msgid "Ogg Theora Video"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, short desc
+#: files/debtags/vocabulary
+msgid "RSS Rich Site Summary"
+msgstr ""
+
+#. Tag: works-with-format::xml:rss, long desc
+#: files/debtags/vocabulary
+msgid " XML dialect used to describe resources and websites."
+msgstr ""
+
+#. Tag: works-with-format::xml:xslt, short desc
+#: files/debtags/vocabulary
+msgid "XSL Transformations (XSLT)"
+msgstr ""
+
+#. Facet: scope, short desc
+#: files/debtags/vocabulary
+msgid "Scope"
+msgstr ""
+
+#. Tag: scope::utility, short desc
+#: files/debtags/vocabulary
+msgid "Utility"
+msgstr ""
+
+#. Tag: scope::utility, long desc
+#: files/debtags/vocabulary
+msgid " A narrow-scoped program for particular use case or few use cases. It\n only does something 10-20% of users in the field will need. Often has\n functionality missing from related applications."
+msgstr ""
+
+#. Tag: scope::application, short desc
+#: files/debtags/vocabulary
+#. Tag: web::application, short desc
+#: files/debtags/vocabulary
+#. Tag: x11::application, short desc
+#: files/debtags/vocabulary
+msgid "Application"
+msgstr ""
+
+#. Tag: scope::application, long desc
+#: files/debtags/vocabulary
+msgid " Broad-scoped program for general use. It probably has functionality\n for 80-90% of use cases. The pieces that remain are usually to be\n found as utilities."
+msgstr ""
+
+#. Tag: scope::suite, short desc
+#: files/debtags/vocabulary
+msgid "Suite"
+msgstr ""
+
+#. Tag: scope::suite, long desc
+#: files/debtags/vocabulary
+msgid " Comprehensive suite of applications and utilities on the scale of\n desktop environment or base operating system."
+msgstr ""
+
+#. Facet: role, short desc
+#: files/debtags/vocabulary
+msgid "Role"
+msgstr ""
+
+#. Tag: role::program, short desc
+#: files/debtags/vocabulary
+msgid "Program"
+msgstr ""
+
+#. Tag: role::program, long desc
+#: files/debtags/vocabulary
+msgid " Executable computer program."
+msgstr ""
+
+#. Tag: role::shared-lib, short desc
+#: files/debtags/vocabulary
+msgid "Shared Library"
+msgstr ""
+
+#. Tag: role::shared-lib, long desc
+#: files/debtags/vocabulary
+msgid " Shared libraries used by one or more programs."
+msgstr ""
+
+#. Tag: role::plugin, short desc
+#: files/debtags/vocabulary
+msgid "Plugin"
+msgstr ""
+
+#. Tag: role::plugin, long desc
+#: files/debtags/vocabulary
+msgid " Add-on, pluggable program fragments enhancing functionality\n of some program or system."
+msgstr ""
+
+#. Tag: role::debug-symbols, short desc
+#: files/debtags/vocabulary
+msgid "Debugging symbols"
+msgstr ""
+
+#. Tag: role::debug-symbols, long desc
+#: files/debtags/vocabulary
+msgid " Debugging symbols."
+msgstr ""
+
+#. Tag: role::devel-lib, short desc
+#: files/debtags/vocabulary
+msgid "Development Library"
+msgstr ""
+
+#. Tag: role::devel-lib, long desc
+#: files/debtags/vocabulary
+msgid " Library and header files used in software development or building."
+msgstr ""
+
+#. Tag: role::source, short desc
+#: files/debtags/vocabulary
+msgid "Source Code"
+msgstr ""
+
+#. Tag: role::source, long desc
+#: files/debtags/vocabulary
+msgid " Human-readable code of a program, library or a part thereof."
+msgstr ""
+
+#. Tag: role::data, short desc
+#: files/debtags/vocabulary
+msgid "Standalone Data"
+msgstr ""
+
+#. Tag: role::app-data, short desc
+#: files/debtags/vocabulary
+msgid "Application Data"
+msgstr ""
+
+#. Tag: role::metapackage, short desc
+#: files/debtags/vocabulary
+msgid "Metapackage"
+msgstr ""
+
+#. Tag: role::metapackage, long desc
+#: files/debtags/vocabulary
+msgid " Packages that install suites of other packages."
+msgstr ""
+
+#. Facet: security, short desc
+#: files/debtags/vocabulary
+msgid "Security"
+msgstr ""
+
+#. Facet: security, long desc
+#: files/debtags/vocabulary
+msgid " How the package is related to system security"
+msgstr ""
+
+#. Tag: security::antivirus, short desc
+#: files/debtags/vocabulary
+msgid "Anti-Virus"
+msgstr ""
+
+#. Tag: security::authentication, short desc
+#: files/debtags/vocabulary
+msgid "Authentication"
+msgstr ""
+
+#. Tag: security::cryptography, short desc
+#: files/debtags/vocabulary
+msgid "Cryptography"
+msgstr ""
+
+#. Tag: security::cryptography, long desc
+#: files/debtags/vocabulary
+msgid " Cryptographic and privacy-oriented tools."
+msgstr ""
+
+#. Tag: security::firewall, short desc
+#: files/debtags/vocabulary
+#. Tag: network::firewall, short desc
+#: files/debtags/vocabulary
+msgid "Firewall"
+msgstr ""
+
+#. Tag: security::forensics, short desc
+#: files/debtags/vocabulary
+msgid "Forensics"
+msgstr ""
+
+#. Tag: security::forensics, long desc
+#: files/debtags/vocabulary
+msgid " Post-mortem analysis of intrusions."
+msgstr ""
+
+#. Tag: security::ids, short desc
+#: files/debtags/vocabulary
+msgid "Intrusion Detection"
+msgstr ""
+
+#. Tag: security::integrity, short desc
+#: files/debtags/vocabulary
+msgid "File Integrity"
+msgstr ""
+
+#. Tag: security::integrity, long desc
+#: files/debtags/vocabulary
+msgid " Tools to monitor system for changes in filesystem and report changes\n or tools providing other means to check system integrity."
+msgstr ""
+
+#. Tag: security::log-analyzer, short desc
+#: files/debtags/vocabulary
+msgid "Log Analyzer"
+msgstr ""
+
+#. Tag: security::privacy, short desc
+#: files/debtags/vocabulary
+msgid "Privacy"
+msgstr ""
+
+#. Facet: sound, short desc
+#: files/debtags/vocabulary
+msgid "Sound and Music"
+msgstr ""
+
+#. Tag: sound::compression, short desc
+#: files/debtags/vocabulary
+msgid "Compression"
+msgstr ""
+
+#. Tag: sound::midi, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Software"
+msgstr ""
+
+#. Tag: sound::mixer, short desc
+#: files/debtags/vocabulary
+msgid "Mixing"
+msgstr ""
+
+#. Tag: sound::player, short desc
+#: files/debtags/vocabulary
+msgid "Playback"
+msgstr ""
+
+#. Tag: sound::recorder, short desc
+#: files/debtags/vocabulary
+msgid "Recording"
+msgstr ""
+
+#. Tag: sound::sequencer, short desc
+#: files/debtags/vocabulary
+msgid "MIDI Sequencing"
+msgstr ""
+
+#. Facet: special, short desc
+#: files/debtags/vocabulary
+msgid "Service tags"
+msgstr ""
+
+#. Tag: special::auto-inst-parts, short desc
+#: files/debtags/vocabulary
+msgid "Secondary packages users won't install directly"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, short desc
+#: files/debtags/vocabulary
+msgid "NO IPv6 support"
+msgstr ""
+
+#. Tag: special::ipv6-nosupport, long desc
+#: files/debtags/vocabulary
+msgid " Use this for packages that cannot yet or will never support IPv6."
+msgstr ""
+
+#. Tag: special::obsolete, short desc
+#: files/debtags/vocabulary
+msgid "Obsolete Packages"
+msgstr ""
+
+#. Tag: special::obsolete, long desc
+#: files/debtags/vocabulary
+msgid " Packages that are not used any longer, also packages only left for upgrade\n purposes (merged / split packages)"
+msgstr ""
+
+#. Tag: special::invalid-tag, short desc
+#: files/debtags/vocabulary
+msgid "Invalid tag"
+msgstr ""
+
+#. Tag: special::invalid-tag, long desc
+#: files/debtags/vocabulary
+msgid " This tag means that the tag database contains a tag which is not present in\n the tag vocabulary.  The presence of this tag indicates a software bug: this\n should never show up."
+msgstr ""
+
+#. Tag: special::not-yet-tagged, short desc
+#: files/debtags/vocabulary
+msgid "!Not yet tagged packages!"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::a, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with a"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::b, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with b"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::c, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with c"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::d, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with d"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::e, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with e"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::f, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with f"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::g, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with g"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::h, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with h"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::i, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with i"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::j, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with j"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::k, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with k"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::l, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with l"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::m, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with m"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::n, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with n"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::o, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with o"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::p, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with p"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::q, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with q"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::r, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with r"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::s, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with s"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::t, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with t"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::u, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with u"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::v, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with v"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::w, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with w"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::x, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with x"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::y, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with y"
+msgstr ""
+
+#. Tag: special::not-yet-tagged::z, short desc
+#: files/debtags/vocabulary
+msgid "Not yet tagged packages with z"
+msgstr ""
+
+#. Facet: suite, short desc
+#: files/debtags/vocabulary
+msgid "Application Suite"
+msgstr ""
+
+#. Tag: suite::apache, short desc
+#: files/debtags/vocabulary
+msgid "Apache"
+msgstr ""
+
+#. Tag: suite::eclipse, short desc
+#: files/debtags/vocabulary
+msgid "Eclipse"
+msgstr ""
+
+#. Tag: suite::eclipse, long desc
+#: files/debtags/vocabulary
+msgid " Eclipse tool platform and plugins."
+msgstr ""
+
+#. Tag: suite::emacs, short desc
+#: files/debtags/vocabulary
+msgid "Emacs"
+msgstr ""
+
+#. Tag: suite::gforge, short desc
+#: files/debtags/vocabulary
+msgid "GForge"
+msgstr ""
+
+#. Tag: suite::gforge, long desc
+#: files/debtags/vocabulary
+msgid " A collaborative development platform."
+msgstr ""
+
+#. Tag: suite::gimp, short desc
+#: files/debtags/vocabulary
+msgid "The GIMP"
+msgstr ""
+
+#. Tag: suite::gkrellm, short desc
+#: files/debtags/vocabulary
+msgid "GKrellM Monitors"
+msgstr ""
+
+#. Tag: suite::gnome, short desc
+#: files/debtags/vocabulary
+msgid "GNOME"
+msgstr ""
+
+#. Tag: suite::gnu, short desc
+#: files/debtags/vocabulary
+msgid "GNU"
+msgstr ""
+
+#. Tag: suite::gnu, long desc
+#: files/debtags/vocabulary
+msgid " Gnu's Not Unix. The package is part of the official GNU project"
+msgstr ""
+
+#. Tag: suite::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUStep"
+msgstr ""
+
+#. Tag: suite::gnustep, long desc
+#: files/debtags/vocabulary
+msgid "  GNUStep Desktop and WindowMaker"
+msgstr ""
+
+#. Tag: suite::gpe, short desc
+#: files/debtags/vocabulary
+msgid "GPE"
+msgstr ""
+
+#. Tag: suite::gpe, long desc
+#: files/debtags/vocabulary
+msgid "  GPE Palmtop Environment"
+msgstr ""
+
+#. Tag: suite::kde, short desc
+#: files/debtags/vocabulary
+msgid "KDE"
+msgstr ""
+
+#. Tag: suite::mozilla, short desc
+#: files/debtags/vocabulary
+msgid "Mozilla"
+msgstr ""
+
+#. Tag: suite::mozilla, long desc
+#: files/debtags/vocabulary
+msgid " Mozilla Browser and extensions"
+msgstr ""
+
+#. Tag: suite::netscape, short desc
+#: files/debtags/vocabulary
+msgid "Netscape Navigator"
+msgstr ""
+
+#. Tag: suite::netscape, long desc
+#: files/debtags/vocabulary
+msgid " The pre-6.0 versions of netscape browser"
+msgstr ""
+
+#. Tag: suite::openoffice, short desc
+#: files/debtags/vocabulary
+msgid "OpenOffice.org"
+msgstr ""
+
+#. Tag: suite::opie, short desc
+#: files/debtags/vocabulary
+msgid "Open Palmtop (OPIE)"
+msgstr ""
+
+#. Tag: suite::roxen, short desc
+#: files/debtags/vocabulary
+msgid "Roxen"
+msgstr ""
+
+#. Tag: suite::samba, short desc
+#: files/debtags/vocabulary
+msgid "SAMBA"
+msgstr ""
+
+#. Tag: suite::webmin, short desc
+#: files/debtags/vocabulary
+msgid "Webmin"
+msgstr ""
+
+#. Tag: suite::xfce, short desc
+#: files/debtags/vocabulary
+msgid "XFce"
+msgstr ""
+
+#. Tag: suite::xfce, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight desktop environment for X11."
+msgstr ""
+
+#. Tag: suite::xmms, short desc
+#: files/debtags/vocabulary
+msgid "XMMS"
+msgstr ""
+
+#. Tag: suite::xmms2, short desc
+#: files/debtags/vocabulary
+msgid "XMMS 2"
+msgstr ""
+
+#. Tag: suite::zope, short desc
+#: files/debtags/vocabulary
+msgid "ZOPE"
+msgstr ""
+
+#. Tag: suite::zope, long desc
+#: files/debtags/vocabulary
+msgid " The zope (web) publishing platform."
+msgstr ""
+
+#. Facet: protocol, short desc
+#: files/debtags/vocabulary
+msgid "Network Protocol"
+msgstr ""
+
+#. Tag: protocol::db:mysql, short desc
+#: files/debtags/vocabulary
+msgid "MySQL"
+msgstr ""
+
+#. Tag: protocol::db:mysql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing MySQL database server."
+msgstr ""
+
+#. Tag: protocol::db:psql, short desc
+#: files/debtags/vocabulary
+msgid "PostgreSQL"
+msgstr ""
+
+#. Tag: protocol::db:psql, long desc
+#: files/debtags/vocabulary
+msgid " Protocol for accessing PostgreSQL database server."
+msgstr ""
+
+#. Tag: protocol::ldap, short desc
+#: files/debtags/vocabulary
+msgid "LDAP"
+msgstr ""
+
+#. Tag: protocol::ldap, long desc
+#: files/debtags/vocabulary
+msgid " Lightweight Directory Access Protocol"
+msgstr ""
+
+#. Tag: protocol::atm, short desc
+#: files/debtags/vocabulary
+msgid "ATM"
+msgstr ""
+
+#. Tag: protocol::atm, long desc
+#: files/debtags/vocabulary
+msgid " Asynchronous Transfer Mode, a high speed protocol for communication between\n computers in a network.\n .\n While ATM is used to implement *DSL networks, it has never gained widespread\n use as a technology for building local area networks (LANs), for which it was\n originally intended.\n .\n Link: http://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode"
+msgstr ""
+
+#. Tag: protocol::bittorrent, short desc
+#: files/debtags/vocabulary
+msgid "BitTorrent"
+msgstr ""
+
+#. Tag: protocol::bittorrent, long desc
+#: files/debtags/vocabulary
+msgid " BitTorrent is a protocol for peer-to-peer based file distribution over\n network.\n .\n Although the actual data transport happens between BitTorrent clients, one\n central node, the so-called trackers, is needed to keep a list of all clients\n that download or provide the same file.\n .\n Link: http://www.bittorrent.com/\n Link: http://en.wikipedia.org/wiki/BitTorrent"
+msgstr ""
+
+#. Tag: protocol::corba, short desc
+#: files/debtags/vocabulary
+msgid "CORBA"
+msgstr ""
+
+#. Tag: protocol::corba, long desc
+#: files/debtags/vocabulary
+msgid " Common Object Request Broker Architecture, a standard for interoperability\n between programs written in different languages and running on different \n hardware platforms. CORBA includes a client-server network protocol for\n distributed computing.\n .\n With this network protocol, CORBA clients on different computers and written\n in different languages can exchange objects over a CORBA server such as orbit2\n or omniORB.\n .\n Link: http://www.corba.org/"
+msgstr ""
+
+#. Tag: protocol::dhcp, short desc
+#: files/debtags/vocabulary
+msgid "DHCP"
+msgstr ""
+
+#. Tag: protocol::dhcp, long desc
+#: files/debtags/vocabulary
+msgid " Dynamic Host Configuration Protocol, a client-server network protocol for\n automatic assignment of dynamic IP addresses to computers in a TCP/IP network,\n rather than giving each computer a static IP address.\n .\n Link: http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol\n Link: http://www.ietf.org/rfc/rfc2131.txt"
+msgstr ""
+
+#. Tag: protocol::dns, short desc
+#: files/debtags/vocabulary
+msgid "DNS"
+msgstr ""
+
+#. Tag: protocol::dns, long desc
+#: files/debtags/vocabulary
+msgid " Domain Name System, a protocol to request information associated with domain\n names (like \"www.debian.org\"), most prominently the IP address. The protocol\n is used in communication with a DNS server (like BIND).\n .\n For the Internet, there are 13 root DNS servers around the world that keep the\n addresses of all registered domain names and provide this information to the\n DNS servers of Internet service providers.\n .\n Link: http://en.wikipedia.org/wiki/Domain_Name_System"
+msgstr ""
+
+#. Tag: protocol::ethernet, short desc
+#: files/debtags/vocabulary
+msgid "Ethernet"
+msgstr ""
+
+#. Tag: protocol::ethernet, long desc
+#: files/debtags/vocabulary
+msgid " Ethernet is the most popular networking technology for creating local area\n networks (LANs).\n .\n The computers in an Ethernet network communicate over twisted-pair or fibre\n cables and are identified by their MAC address. Several different types of\n Ethernet exist, distinguishable by the maximum connection speed. The most\n widespread types today are 100MBit/s (100BASE-*) or 1GBit/s (1000BASE-*).\n .\n Link: http://en.wikipedia.org/wiki/Ethernet"
+msgstr ""
+
+#. Tag: protocol::fidonet, short desc
+#: files/debtags/vocabulary
+msgid "FidoNet"
+msgstr ""
+
+#. Tag: protocol::fidonet, long desc
+#: files/debtags/vocabulary
+msgid " FidoNet is a mailbox system that enjoyed large popularity in the 1980s and\n 1990s.\n .\n The communication between the clients and FidoNet servers  was usually carried\n out over the telephone network using modems and could be used for transferring\n messages (comparable to email) and files.\n .\n Link: http://www.fidonet.org/\n Link: http://en.wikipedia.org/wiki/Fidonet"
+msgstr ""
+
+#. Tag: protocol::finger, short desc
+#: files/debtags/vocabulary
+msgid "Finger"
+msgstr ""
+
+#. Tag: protocol::finger, long desc
+#: files/debtags/vocabulary
+msgid " The Name/Finger protocol is a simple network protocol to provide extensive, \n public information about users of a computer, such as email address, telephone\n numbers, full names etc.\n .\n Due to privacy concerns, the Finger protocol is not widely used any more,\n while it widespread distribution in the early 1990s.\n .\n Link: http://en.wikipedia.org/wiki/Finger_protocol\n Link: http://www.ietf.org/rfc/rfc1288.txt"
+msgstr ""
+
+#. Tag: protocol::ftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::ftp, short desc
+#: files/debtags/vocabulary
+msgid "FTP"
+msgstr ""
+
+#. Tag: protocol::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol, a protocol for exchanging and manipulation files over\n networks and extensively used on the Internet.\n .\n The communication between FTP servers and clients uses two channels, the\n control and the data channel. While FTP was originally used with\n authentication only, most FTP servers on the Internet provide anonymous,\n passwordless access. Since FTP does not support encryption, sensitive data\n transfer is carried out over SFTP today.\n .\n Link: http://en.wikipedia.org/wiki/File_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc0959.txt"
+msgstr ""
+
+#. Tag: protocol::http, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::http, short desc
+#: files/debtags/vocabulary
+msgid "HTTP"
+msgstr ""
+
+#. Tag: protocol::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol, one of the most important protocols for the\n World Wide Web.\n .\n It controls the data transfer between HTTP servers such as Apache and HTTP\n clients, which are web browsers in most cases. HTTP resources are requested\n via URLs (Universal Resource Locators). While HTTP normally only supports file\n transfer from server to client, the protocol supports sending information to\n HTTP servers, most prominently used in HTML forms.\n .\n Link: http://en.wikipedia.org/wiki/Http\n Link: http://www.ietf.org/rfc/rfc2616.txt"
+msgstr ""
+
+#. Tag: protocol::ident, short desc
+#: files/debtags/vocabulary
+msgid "Ident"
+msgstr ""
+
+#. Tag: protocol::ident, long desc
+#: files/debtags/vocabulary
+msgid " The Ident Internet protocol helps to identify or authenticate the user of\n a network connection.\n .\n Link: http://en.wikipedia.org/wiki/Ident"
+msgstr ""
+
+#. Tag: protocol::imap, short desc
+#: files/debtags/vocabulary
+msgid "IMAP"
+msgstr ""
+
+#. Tag: protocol::imap, long desc
+#: files/debtags/vocabulary
+msgid " Internet Message Access Protocol, a protocol used for accessing email on a\n server from a email client such as KMail or Evolution.\n .\n When using IMAP, emails stay on the server and can be categorized, edited,\n deleted etc. there, instead of having the user download all messages onto\n the local computer, as POP3 does.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol"
+msgstr ""
+
+#. Tag: protocol::ip, short desc
+#: files/debtags/vocabulary
+msgid "IP"
+msgstr ""
+
+#. Tag: protocol::ip, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v4), a core protocol of the Internet protocol suite and\n the very basis of the Internet.\n .\n Every computer that is connected to the Internet has an IP address (a 4-byte\n number, typically represented in dotted notation like 192.25.206.10).\n Internet IP addresses are given out by the Internet Corporation for Assigned\n Names and Numbers (ICANN). Normally, computers on the Internet are not\n accessed by their IP address, but by their domain name.\n .\n Link: http://en.wikipedia.org/wiki/IPv4\n Link: http://www.ietf.org/rfc/rfc791.txt"
+msgstr ""
+
+#. Tag: protocol::ipv6, short desc
+#: files/debtags/vocabulary
+msgid "IPv6"
+msgstr ""
+
+#. Tag: protocol::ipv6, long desc
+#: files/debtags/vocabulary
+msgid " Internet Protocol (v6), the next-generation Internet protocol, which overcomes\n the restrictions of IP (v4), like shortage of IP addresses, and is supposed to\n form the new basis of the Internet in the future, replacing IP (v4).\n .\n Many programs already support IPv6 along with IP (v4), although it is still\n seldomly used.\n .\n Link: http://en.wikipedia.org/wiki/IPv6\n Link: http://www.ipv6.org/"
+msgstr ""
+
+#. Tag: protocol::irc, short desc
+#: files/debtags/vocabulary
+msgid "IRC"
+msgstr ""
+
+#. Tag: protocol::irc, long desc
+#: files/debtags/vocabulary
+msgid " Internet Relay Chat, a protocol for text chatting over network, extensively\n used on the Internet. It supports chat rooms, so-called channels, as well as\n private, one-to-one communication.\n .\n IRC servers are organized in networks, so that a client can connect to a\n geographically near IRC server, that itself is connected to other IRC servers\n spread over the whole world.\n .\n The official Debian channel is #debian on the freenode network.\n .\n Link: http://en.wikipedia.org/wiki/Internet_Relay_Chat"
+msgstr ""
+
+#. Tag: protocol::jabber, short desc
+#: files/debtags/vocabulary
+msgid "Jabber"
+msgstr ""
+
+#. Tag: protocol::jabber, long desc
+#: files/debtags/vocabulary
+msgid " The Jabber protocol is an instant messaging protocol on the basis of the XMPP\n protocol. Additionally to private one-to-one communication, it also supports\n chat rooms, and it is used in the Jabber IM network as well as for the IM\n capabilities for the new GoogleTalk network.\n .\n In contrast to other IM networks like MSN, ICQ or AIM, the Jabber servers are\n free software and can be used to create a private chat platform or have an own\n server to connect to the Jabber network.\n .\n Link: http://www.jabber.org\n Link: http://en.wikipedia.org/wiki/Jabber"
+msgstr ""
+
+#. Tag: protocol::kerberos, short desc
+#: files/debtags/vocabulary
+msgid "Kerberos"
+msgstr ""
+
+#. Tag: protocol::kerberos, long desc
+#: files/debtags/vocabulary
+msgid " Kerberos is a authentication protocol for computer networks for secure\n authentication over an otherwise insecure network, using symmetric\n cryptography and a third party service provider, that is trusted both by\n client and server.\n . \n The authentication mechanism provided by Kerberos is mutual, so that not only\n a server can be sure of a client's identity, but also a client can be sure a\n connection to a server is not intercepted.\n .\n Link: http://en.wikipedia.org/wiki/Kerberos_%28protocol%29\n Link: http://http://www.ietf.org/rfc/rfc4120.txt"
+msgstr ""
+
+#. Tag: protocol::lpr, short desc
+#: files/debtags/vocabulary
+msgid "LPR"
+msgstr ""
+
+#. Tag: protocol::lpr, long desc
+#: files/debtags/vocabulary
+msgid " The Line Printer Daemon protocol, a protocol used for accessing or providing\n network print services in a Unix network, but also used for local setups.\n .\n CUPS, the Common Unix Printing System, was developed to replace the old\n LPD/LPR system, while maintaining backwards compatibility.\n .\n Link: http://en.wikipedia.org/wiki/Line_Printer_Daemon_protocol\n Link: http://www.ietf.org/rfc/rfc1179.txt"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, short desc
+#: files/debtags/vocabulary
+msgid "MSN Messenger"
+msgstr ""
+
+#. Tag: protocol::msn-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The MSN messenger protocol is the protocol that is used by Microsoft's own\n instant messaging network.\n .\n The protocol is a proprietary protocol. Although Microsoft once send a draft\n of the protocol specification to the IETF, it has since dated out and clients\n that connect to the MSN Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://www.hypothetic.org/docs/msn/"
+msgstr ""
+
+#. Tag: protocol::nfs, short desc
+#: files/debtags/vocabulary
+msgid "NFS"
+msgstr ""
+
+#. Tag: protocol::nfs, long desc
+#: files/debtags/vocabulary
+msgid " Network File System, a protocol originally developed by Sun Microsystems in\n 1984 and defined in RFCs 1094, 1813, and 3530 (obsoletes 3010) as a\n distributed file system, allows a user on a client computer to access files\n over a network as easily as if attached to its local disks.\n .\n Link: http://en.wikipedia.org/wiki/Network_File_System"
+msgstr ""
+
+#. Tag: protocol::nntp, short desc
+#: files/debtags/vocabulary
+msgid "NNTP"
+msgstr ""
+
+#. Tag: protocol::nntp, long desc
+#: files/debtags/vocabulary
+msgid " Network News Transfer Protocol, a protocol for reading in writing Usenet\n articles (a Usenet article is comparable with an email), but also used\n among NNTP servers to transfer articles. \n .\n Link: http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc977.txt"
+msgstr ""
+
+#. Tag: protocol::oscar, short desc
+#: files/debtags/vocabulary
+msgid "OSCAR (AIM/ICQ)"
+msgstr ""
+
+#. Tag: protocol::oscar, long desc
+#: files/debtags/vocabulary
+msgid " Open System for CommunicAtion in Realtime, an instant messaging used by\n AOL's instant messaging network (AIM). The protocol versions 7, 8 and 9\n of the ICQ IM network are also instances of the OSCAR protocol.\n .\n OSCAR is a binary proprietary protocol. Since there is no official documentation,\n clients that connect to AIM or ICQ have to rely on information that has\n been reverse-engineered.\n .\n Link: http://en.wikipedia.org/wiki/OSCAR_protocol\n Link: http://www.oilcan.org/oscar/"
+msgstr ""
+
+#. Tag: protocol::pop3, short desc
+#: files/debtags/vocabulary
+msgid "POP3"
+msgstr ""
+
+#. Tag: protocol::pop3, long desc
+#: files/debtags/vocabulary
+msgid " Post Office Protocol, a protocol to download emails from a mail server,\n designed for users that have only intermittent connection to the Internet.\n .\n In contrast to IMAP server, messages that are downloaded via POP3 are not\n supposed to stay on the server afterwards, since POP3 does not support\n multiple mailboxes for one account on the server.\n .\n Link: http://en.wikipedia.org/wiki/Post_Office_Protocol\n Link: http://www.ietf.org/rfc/rfc1939.txt"
+msgstr ""
+
+#. Tag: protocol::radius, short desc
+#: files/debtags/vocabulary
+msgid "RADIUS"
+msgstr ""
+
+#. Tag: protocol::radius, long desc
+#: files/debtags/vocabulary
+msgid " Remote Authentication Dial In User Service, a protocol for authentication,\n authorization and accounting of network access, mostly used by Internet\n service providers handle handle dial-up Internet connections.\n .\n Link: http://en.wikipedia.org/wiki/RADIUS\n Link: http://www.ietf.org/rfc/rfc2865.txt"
+msgstr ""
+
+#. Tag: protocol::sftp, short desc
+#: files/debtags/vocabulary
+#. Tag: filetransfer::sftp, short desc
+#: files/debtags/vocabulary
+msgid "SFTP"
+msgstr ""
+
+#. Tag: protocol::sftp, long desc
+#: files/debtags/vocabulary
+msgid " SSH File Transfer Protocol, a protocol for secure, encrypting file exchange\n and manipulation over insecure networks, using the SSH protocol.\n .\n SFTP provides a complete set of file system operations, different from its\n predecessor SCP, which only allowed file transfer. It is not, other than the\n name might suggest, the a version of the FTP protocol executed through an\n SSH channel.\n .\n Link: http://en.wikipedia.org/wiki/SSH_file_transfer_protocol"
+msgstr ""
+
+#. Tag: protocol::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB"
+msgstr ""
+
+#. Tag: protocol::smb, long desc
+#: files/debtags/vocabulary
+msgid " Server Message Block, a protocol for providing file access and printer sharing\n over network, mainly used by Microsoft Windows(tm). CIFS (Common Internet File\n System) is a synonym for SMB\n .\n Although SMB is a proprietary protocol, the Samba project reverse-engineered\n the protocol and developed both client and server programs for better\n interoperability in mixed Unix/Windows networks.\n .\n Link: http://en.wikipedia.org/wiki/Server_Message_Block\n Link: http://www.samba.org/"
+msgstr ""
+
+#. Tag: protocol::smtp, short desc
+#: files/debtags/vocabulary
+msgid "SMTP"
+msgstr ""
+
+#. Tag: protocol::smtp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Mail Transfer Protocol, a protocol or for transmitting emails over the\n Internet.\n .\n Every SMTP server utilizes SMTP to hand on emails to the next mail server\n until an email arrives at its destination, from where it is usually retrieved\n via POP3 or IMAP \n .\n Link: http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol\n Link: http://www.ietf.org/rfc/rfc2821.txt"
+msgstr ""
+
+#. Tag: protocol::snmp, short desc
+#: files/debtags/vocabulary
+msgid "SNMP"
+msgstr ""
+
+#. Tag: protocol::snmp, long desc
+#: files/debtags/vocabulary
+msgid " Simple Network Management Protocol, a member of the Internet protocol suite\n and used for monitoring or configuring network devices.\n .\n SNMP servers normally run on network equipment like routers.\n .\n Link: http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol\n Link: http://www.ietf.org/rfc/rfc3411.txt"
+msgstr ""
+
+#. Tag: protocol::soap, short desc
+#: files/debtags/vocabulary
+msgid "SOAP"
+msgstr ""
+
+#. Tag: protocol::soap, long desc
+#: files/debtags/vocabulary
+msgid " Simple Object Access Protocol, a protocol for exchanging messages between\n different computers in a network. The messages are encoded in XML and usually\n sent over HTTP.\n .\n SOAP is used to provide APIs to web services, such as the Google API to\n utilize Google's searching engine from client applications.\n .\n Link: http://en.wikipedia.org/wiki/SOAP\n Link: http://www.w3.org/TR/soap/"
+msgstr ""
+
+#. Tag: protocol::ssh, short desc
+#: files/debtags/vocabulary
+msgid "SSH"
+msgstr ""
+
+#. Tag: protocol::ssh, long desc
+#: files/debtags/vocabulary
+msgid " Secure Shell, a protocol for secure, encrypted network connections. SSH can\n be used to execute programs on a remote host with an SSH server over secure\n otherwise insecure protocols through an SSH channel. The main use is, as the\n name suggest, to provide encrypted login and shell access on remote servers.\n .\n SSH authentication can be done with password or, which is the preferred\n mechanism, via asymmetric public/private key cryptography.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Shell"
+msgstr ""
+
+#. Tag: protocol::ssl, short desc
+#: files/debtags/vocabulary
+msgid "SSL/TLS"
+msgstr ""
+
+#. Tag: protocol::ssl, long desc
+#: files/debtags/vocabulary
+msgid " Secure Socket Layer/Transport Layer Security, a protocol that provides \n secure encrypted communication on the Internet. It is used to authenticate\n the identity of a service provider (such as a Internet banking server) and\n to secure the communications channel.\n .\n Otherwise insecure protocols such as FTP, HTTP, IMAP or SMTP can be\n transmitted over SSL/TLS to secure the transmitted data. In this case, an\n \"S\" is added to the protocol name, like HTTPS, FTPS etc.\n .\n Link: http://en.wikipedia.org/wiki/Secure_Sockets_Layer"
+msgstr ""
+
+#. Tag: protocol::tcp, short desc
+#: files/debtags/vocabulary
+msgid "TCP"
+msgstr ""
+
+#. Tag: protocol::tcp, long desc
+#: files/debtags/vocabulary
+msgid " Transport Control Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n TCP is used as the transport protocol for many services on the Internet,\n such as FTP, HTTP, SMTP, POP3, IMAP, NNTP etc.\n .\n Link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol\n Link: http://www.ietf.org/rfc/rfc793.txt"
+msgstr ""
+
+#. Tag: protocol::udp, short desc
+#: files/debtags/vocabulary
+msgid "UDP"
+msgstr ""
+
+#. Tag: protocol::udp, long desc
+#: files/debtags/vocabulary
+msgid " User Datagram Protocol, a core protocol of the Internet protocol suite\n and used for data transport.\n .\n UDP is not as reliable as TCP, but faster and thus better fit for\n time-sensitive purposes, like the DNS protocol and VoIP.\n .\n Link: http://en.wikipedia.org/wiki/User_Datagram_Protocol\n Link: http://www.ietf.org/rfc/rfc768.txt"
+msgstr ""
+
+#. Tag: protocol::voip, short desc
+#: files/debtags/vocabulary
+msgid "VoIP"
+msgstr ""
+
+#. Tag: protocol::voip, long desc
+#: files/debtags/vocabulary
+msgid " Voice over IP, a general term for protocols that route voice conversations\n over the Internet.\n .\n Popular VoIP protocols are SIP, H.323 and IAX.\n .\n Link: http://en.wikipedia.org/wiki/Voice_over_IP"
+msgstr ""
+
+#. Tag: protocol::webdav, short desc
+#: files/debtags/vocabulary
+msgid "WebDAV"
+msgstr ""
+
+#. Tag: protocol::webdav, long desc
+#: files/debtags/vocabulary
+msgid " Web-based Distributed Authoring and Versioning, a extension of the HTTP\n protocol to support creating and changing documents on an HTTP server. Thus,\n the client can access the documents on an HTTP server as it would those on the\n local file system.\n .\n Link: http://en.wikipedia.org/wiki/WebDAV\n Link: http://www.ietf.org/rfc/rfc2518.txt"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, short desc
+#: files/debtags/vocabulary
+msgid "XML-RPC"
+msgstr ""
+
+#. Tag: protocol::xmlrpc, long desc
+#: files/debtags/vocabulary
+msgid " XML Remote Procedure Call, a simple protocol for remote procedure calls that\n uses XML for encoding and the HTTP protocol for transport.\n .\n SOAP, which is a considerably more sophisticated protocol, was developed from\n XML-RPC.\n .\n Link: http://en.wikipedia.org/wiki/XML-RPC\n Link: http://www.xmlrpc.com/"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, short desc
+#: files/debtags/vocabulary
+msgid "Yahoo! Messenger"
+msgstr ""
+
+#. Tag: protocol::yahoo-messenger, long desc
+#: files/debtags/vocabulary
+msgid " The Yahoo! Messenger protocol is used to connect to Yahoo!'s instant messaging\n network.\n .\n This a proprietary binary protocol without any official documentation. Clients\n that connect to the Yahoo! Messenger network have to rely on reverse-engineered\n information.\n .\n Link: http://en.wikipedia.org/wiki/Yahoo%21_Messenger\n Link: http://www.venkydude.com/articles/yahoo.htm"
+msgstr ""
+
+#. Facet: filetransfer, short desc
+#: files/debtags/vocabulary
+msgid "File Transfer"
+msgstr ""
+
+#. Tag: filetransfer::ftp, long desc
+#: files/debtags/vocabulary
+msgid " File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::http, long desc
+#: files/debtags/vocabulary
+msgid " HyperText Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::sftp, long desc
+#: files/debtags/vocabulary
+msgid " Secure File Transfer Protocol"
+msgstr ""
+
+#. Tag: filetransfer::smb, short desc
+#: files/debtags/vocabulary
+msgid "SMB and CIFS"
+msgstr ""
+
+#. Tag: filetransfer::smb, long desc
+#: files/debtags/vocabulary
+msgid " Windows file and printer sharing (SMB)"
+msgstr ""
+
+#. Tag: filetransfer::dcc, short desc
+#: files/debtags/vocabulary
+msgid "IRC DCC"
+msgstr ""
+
+#. Tag: filetransfer::dcc, long desc
+#: files/debtags/vocabulary
+msgid " Direct Client to Client protocol used by Internet Relay Chat clients."
+msgstr ""
+
+#. Facet: uitoolkit, short desc
+#: files/debtags/vocabulary
+msgid "Interface Toolkit"
+msgstr ""
+
+#. Tag: uitoolkit::athena, short desc
+#: files/debtags/vocabulary
+msgid "Athena Widgets"
+msgstr ""
+
+#. Tag: uitoolkit::fltk, short desc
+#: files/debtags/vocabulary
+msgid "FLTK"
+msgstr ""
+
+#. Tag: uitoolkit::glut, short desc
+#: files/debtags/vocabulary
+msgid "GLUT"
+msgstr ""
+
+#. Tag: uitoolkit::gnustep, short desc
+#: files/debtags/vocabulary
+msgid "GNUstep"
+msgstr ""
+
+#. Tag: uitoolkit::gtk, short desc
+#: files/debtags/vocabulary
+msgid "GTK"
+msgstr ""
+
+#. Tag: uitoolkit::motif, short desc
+#: files/debtags/vocabulary
+msgid "Lesstif/Motif"
+msgstr ""
+
+#. Tag: uitoolkit::ncurses, short desc
+#: files/debtags/vocabulary
+msgid "Ncurses TUI"
+msgstr ""
+
+#. Tag: uitoolkit::qt, short desc
+#: files/debtags/vocabulary
+msgid "QT"
+msgstr ""
+
+#. Tag: uitoolkit::sdl, short desc
+#: files/debtags/vocabulary
+msgid "SDL"
+msgstr ""
+
+#. Tag: uitoolkit::tk, short desc
+#: files/debtags/vocabulary
+msgid "TK"
+msgstr ""
+
+#. Tag: uitoolkit::wxwidgets, short desc
+#: files/debtags/vocabulary
+msgid "wxWidgets"
+msgstr ""
+
+#. Tag: uitoolkit::xlib, short desc
+#: files/debtags/vocabulary
+msgid "X library"
+msgstr ""
+
+#. Facet: use, short desc
+#: files/debtags/vocabulary
+msgid "Purpose"
+msgstr ""
+
+#. Tag: use::analysing, short desc
+#: files/debtags/vocabulary
+msgid "Analysing"
+msgstr ""
+
+#. Tag: use::analysing, long desc
+#: files/debtags/vocabulary
+msgid " Software for turning data into knowledge."
+msgstr ""
+
+#. Tag: use::browsing, short desc
+#: files/debtags/vocabulary
+msgid "Browsing"
+msgstr ""
+
+#. Tag: use::chatting, short desc
+#: files/debtags/vocabulary
+msgid "Chatting"
+msgstr ""
+
+#. Tag: use::checking, short desc
+#: files/debtags/vocabulary
+msgid "Checking"
+msgstr ""
+
+#. Tag: use::checking, long desc
+#: files/debtags/vocabulary
+msgid " All sorts of checking, checking a filesystem for validity, checking\n a document for incorrectly spelled words, checking a network for \n routing problems. Verifying."
+msgstr ""
+
+#. Tag: use::comparing, short desc
+#: files/debtags/vocabulary
+msgid "Comparing"
+msgstr ""
+
+#. Tag: use::comparing, long desc
+#: files/debtags/vocabulary
+msgid " To find what relates or differs in two or more objects."
+msgstr ""
+
+#. Tag: use::compressing, short desc
+#: files/debtags/vocabulary
+msgid "Compressing"
+msgstr ""
+
+#. Tag: use::configuring, short desc
+#: files/debtags/vocabulary
+#. Tag: network::configuration, short desc
+#: files/debtags/vocabulary
+msgid "Configuration"
+msgstr ""
+
+#. Tag: use::converting, short desc
+#: files/debtags/vocabulary
+msgid "Data Conversion"
+msgstr ""
+
+#. Tag: use::dialing, short desc
+#: files/debtags/vocabulary
+msgid "Dialup Access"
+msgstr ""
+
+#. Tag: use::downloading, short desc
+#: files/debtags/vocabulary
+msgid "Downloading"
+msgstr ""
+
+#. Tag: use::driver, short desc
+#: files/debtags/vocabulary
+msgid "Hardware Driver"
+msgstr ""
+
+#. Tag: use::editing, short desc
+#: files/debtags/vocabulary
+msgid "Editing"
+msgstr ""
+
+#. Tag: use::entertaining, short desc
+#: files/debtags/vocabulary
+msgid "Entertaining"
+msgstr ""
+
+#. Tag: use::filtering, short desc
+#: files/debtags/vocabulary
+msgid "Filtering"
+msgstr ""
+
+#. Tag: use::gameplaying, short desc
+#: files/debtags/vocabulary
+msgid "Game Playing"
+msgstr ""
+
+#. Tag: use::learning, short desc
+#: files/debtags/vocabulary
+msgid "Learning"
+msgstr ""
+
+#. Tag: use::organizing, short desc
+#: files/debtags/vocabulary
+msgid "Data Organisation"
+msgstr ""
+
+#. Tag: use::playing, short desc
+#: files/debtags/vocabulary
+msgid "Playing Media"
+msgstr ""
+
+#. Tag: use::printing, short desc
+#: files/debtags/vocabulary
+msgid "Printing"
+msgstr ""
+
+#. Tag: use::proxying, short desc
+#: files/debtags/vocabulary
+msgid "Proxying"
+msgstr ""
+
+#. Tag: use::routing, short desc
+#: files/debtags/vocabulary
+#. Tag: network::routing, short desc
+#: files/debtags/vocabulary
+msgid "Routing"
+msgstr ""
+
+#. Tag: use::searching, short desc
+#: files/debtags/vocabulary
+msgid "Searching"
+msgstr ""
+
+#. Tag: use::scanning, short desc
+#: files/debtags/vocabulary
+#. Tag: network::scanner, short desc
+#: files/debtags/vocabulary
+msgid "Scanning"
+msgstr ""
+
+#. Tag: use::storing, short desc
+#: files/debtags/vocabulary
+msgid "Storing"
+msgstr ""
+
+#. Tag: use::synchronizing, short desc
+#: files/debtags/vocabulary
+msgid "Synchronisation"
+msgstr ""
+
+#. Tag: use::timekeeping, short desc
+#: files/debtags/vocabulary
+msgid "Time and Clock"
+msgstr ""
+
+#. Tag: use::transmission, short desc
+#: files/debtags/vocabulary
+msgid "Transmission"
+msgstr ""
+
+#. Tag: use::typesetting, short desc
+#: files/debtags/vocabulary
+msgid "Typesetting"
+msgstr ""
+
+#. Tag: use::viewing, short desc
+#: files/debtags/vocabulary
+msgid "Data Visualization"
+msgstr ""
+
+#. Tag: use::text-formatting, short desc
+#: files/debtags/vocabulary
+msgid "Text Formatting"
+msgstr ""
+
+#. Tag: web::appserver, short desc
+#: files/debtags/vocabulary
+msgid "Application Server"
+msgstr ""
+
+#. Tag: web::blog, short desc
+#: files/debtags/vocabulary
+msgid "Blog Software"
+msgstr ""
+
+#. Tag: web::browser, short desc
+#: files/debtags/vocabulary
+msgid "Browser"
+msgstr ""
+
+#. Tag: web::cms, short desc
+#: files/debtags/vocabulary
+msgid "Content Management (CMS)"
+msgstr ""
+
+#. Tag: web::cgi, short desc
+#: files/debtags/vocabulary
+msgid "CGI"
+msgstr ""
+
+#. Tag: web::commerce, short desc
+#: files/debtags/vocabulary
+msgid "E-commerce"
+msgstr ""
+
+#. Tag: web::forum, short desc
+#: files/debtags/vocabulary
+msgid "Forum"
+msgstr ""
+
+#. Tag: web::portal, short desc
+#: files/debtags/vocabulary
+msgid "Portal"
+msgstr ""
+
+#. Tag: web::scripting, short desc
+#: files/debtags/vocabulary
+msgid "Scripting"
+msgstr ""
+
+#. Tag: web::search-engine, short desc
+#: files/debtags/vocabulary
+msgid "Search engine"
+msgstr ""
+
+#. Tag: web::server, short desc
+#: files/debtags/vocabulary
+#. Tag: network::server, short desc
+#: files/debtags/vocabulary
+msgid "Server"
+msgstr ""
+
+#. Tag: web::wiki, short desc
+#: files/debtags/vocabulary
+msgid "Wiki Software"
+msgstr ""
+
+#. Tag: web::wiki, long desc
+#: files/debtags/vocabulary
+msgid " Wiki software, servers, utilities and plug-ins."
+msgstr ""
+
+#. Facet: network, short desc
+#: files/debtags/vocabulary
+msgid "Networking"
+msgstr ""
+
+#. Tag: network::client, short desc
+#: files/debtags/vocabulary
+msgid "Client"
+msgstr ""
+
+#. Tag: network::hiavailability, short desc
+#: files/debtags/vocabulary
+msgid "High Availability"
+msgstr ""
+
+#. Tag: network::load-balancing, short desc
+#: files/debtags/vocabulary
+msgid "Load Balancing"
+msgstr ""
+
+#. Tag: network::service, short desc
+#: files/debtags/vocabulary
+msgid "Service"
+msgstr ""
+
+#. Tag: network::vpn, short desc
+#: files/debtags/vocabulary
+msgid "VPN or Tunneling"
+msgstr ""
+
+#. Facet: x11, short desc
+#: files/debtags/vocabulary
+msgid "X Windowing System"
+msgstr ""
+
+#. Tag: x11::applet, short desc
+#: files/debtags/vocabulary
+msgid "Applet"
+msgstr ""
+
+#. Tag: x11::display-manager, short desc
+#: files/debtags/vocabulary
+msgid "Login Manager"
+msgstr ""
+
+#. Tag: x11::display-manager, long desc
+#: files/debtags/vocabulary
+msgid " Display managers (graphical login screens)"
+msgstr ""
+
+#. Tag: x11::library, short desc
+#: files/debtags/vocabulary
+msgid "Library"
+msgstr ""
+
+#. Tag: x11::screensaver, short desc
+#: files/debtags/vocabulary
+msgid "Screen Saver"
+msgstr ""
+
+#. Tag: x11::terminal, short desc
+#: files/debtags/vocabulary
+msgid "Terminal Emulator"
+msgstr ""
+
+#. Tag: x11::theme, short desc
+#: files/debtags/vocabulary
+msgid "Theme"
+msgstr ""
+
+#. Tag: x11::window-manager, short desc
+#: files/debtags/vocabulary
+msgid "Window Manager"
+msgstr ""
+
+#. Tag: x11::xserver, short desc
+#: files/debtags/vocabulary
+msgid "X Server"
+msgstr ""
+
+#. Tag: bbs, short desc
+#: files/debtags/vocabulary
+msgid "Bulletin Board Systems"
+msgstr ""
+
+#. Tag: data-exchange, short desc
+#: files/debtags/vocabulary
+msgid "Data Exchange"
+msgstr ""
+
+#. Tag: desktop, short desc
+#: files/debtags/vocabulary
+msgid "Desktop Environment"
+msgstr ""
+
+#. Tag: file-formats, short desc
+#: files/debtags/vocabulary
+msgid "File formats"
+msgstr ""
+
+#. Tag: foreignos, short desc
+#: files/debtags/vocabulary
+msgid "Foreign OS and Hardware"
+msgstr ""
+
+#. Tag: net, short desc
+#: files/debtags/vocabulary
+msgid "IP Networking"
+msgstr ""
+
+#. Tag: netcomm, short desc
+#: files/debtags/vocabulary
+msgid "Network and Communication"
+msgstr ""
+
+#. Tag: numerical, short desc
+#: files/debtags/vocabulary
+msgid "Calculation and numerical computation"
+msgstr ""
+
+#. Tag: office, short desc
+#: files/debtags/vocabulary
+msgid "Office software"
+msgstr ""
+
+#. Tag: protocols, short desc
+#: files/debtags/vocabulary
+msgid "IP protocol support"
+msgstr ""
+
+#. Tag: science, short desc
+#: files/debtags/vocabulary
+msgid "Science"
+msgstr ""
+
+#. Tag: system, short desc
+#: files/debtags/vocabulary
+msgid "System software and maintainance"
+msgstr ""
+
+#. Tag: vi, short desc
+#: files/debtags/vocabulary
+msgid "VI editor"
+msgstr ""
+
diff --git a/po/langs.de.po b/po/langs.de.po
index a08aa41..adde960 100644
--- a/po/langs.de.po
+++ b/po/langs.de.po
@@ -3,7 +3,7 @@ msgstr ""
 "Project-Id-Version: packages.git 2cd81017ac27717adcda738074294c4f5cd9e4cd\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-10-19 23:43+0200\n"
-"PO-Revision-Date: 2007-09-18 19:56+0200\n"
+"PO-Revision-Date: 2007-10-21 17:06+0200\n"
 "Last-Translator: Frank Lichtenheld \n"
 "Language-Team: debian-l10n-german \n"
 "MIME-Version: 1.0\n"
@@ -83,18 +83,16 @@ msgid "Chinese"
 msgstr "Chinesisch"
 
 #: lib/Packages/I18N/LanguageNames.pm:33
-#, fuzzy
 msgid "Chinese (China)"
-msgstr "Chinesisch"
+msgstr "Chinesisch (China)"
 
 #: lib/Packages/I18N/LanguageNames.pm:34
 msgid "Chinese (Hong Kong)"
-msgstr ""
+msgstr "Chinesisch (Hong Kong)"
 
 #: lib/Packages/I18N/LanguageNames.pm:35
-#, fuzzy
 msgid "Chinese (Taiwan)"
-msgstr "Chinesisch"
+msgstr "Chinesisch (Taiwan)"
 
 #: lib/Packages/I18N/LanguageNames.pm:36 lib/Packages/I18N/LanguageNames.pm:37
 msgid "Swedish"
diff --git a/po/pdo.de.po b/po/pdo.de.po
index dd37fb8..5dfc553 100644
--- a/po/pdo.de.po
+++ b/po/pdo.de.po
@@ -2,9 +2,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: packages.git 944e9ffd2b\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-20 00:10+0200\n"
-"PO-Revision-Date: 2007-10-13 18:24+0200\n"
-"Last-Translator: Frank Lichtenheld \n"
+"POT-Creation-Date: 2007-10-21 21:31+0200\n"
+"PO-Revision-Date: 2007-10-21 17:25+0200\n"
+"Last-Translator: Helge Kreutzmann \n"
 "Language-Team: debian-l10n-german \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
@@ -25,17 +25,17 @@ msgstr "Priorität"
 #. Done
 #: lib/Packages/Dispatcher.pm:162
 msgid "search doesn't take any more path elements"
-msgstr ""
+msgstr "Suche nimmt keine Pfadelemente mehr an"
 
 #: lib/Packages/Dispatcher.pm:165
 msgid ""
 "We're supposed to display the homepage here, instead of getting dispatch.pl"
-msgstr ""
+msgstr "Wir sollten die Homepage hier anzeigen statt dispatch.pl zu erhalten"
 
 #: lib/Packages/Dispatcher.pm:188
 #, perl-format
 msgid "%s set more than once in path"
-msgstr ""
+msgstr "%s mehr als einmal im Pfad angegeben"
 
 #: lib/Packages/Dispatcher.pm:223
 #, perl-format
@@ -46,112 +46,126 @@ msgstr "zwei oder mehr Pakete angegeben (%s)"
 msgid "requested format not available for this document"
 msgstr "angefordertes Format nicht verfügbar für dieses Dokument"
 
-#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:30
-#: lib/Packages/DoShow.pm:30
+#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:27
+#: lib/Packages/DoShow.pm:31
 msgid "package not valid or not specified"
 msgstr "Paket nicht gültig oder nicht angegeben"
 
-#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:33
-#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:25
-#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:29 lib/Packages/DoShow.pm:34
 msgid "suite not valid or not specified"
 msgstr "Suite nicht gültig oder nicht angegeben"
 
-#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:36
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
 msgid "architecture not valid or not specified"
 msgstr "Architektur nicht gültig oder nicht angegeben"
 
 #: lib/Packages/DoDownload.pm:36
 #, perl-format
 msgid "more than one suite specified for download (%s)"
-msgstr ""
+msgstr "mehr als eine Suite zum Download angegeben (%s)"
 
 #: lib/Packages/DoDownload.pm:39
 #, perl-format
 msgid "more than one architecture specified for download (%s)"
-msgstr ""
+msgstr "mehr als eine Architektur zum Download angegeben (%s)"
 
-#: lib/Packages/DoFilelist.pm:51
+#: lib/Packages/DoFilelist.pm:48
 msgid "No such package in this suite on this architecture."
 msgstr "Keine Pakete in dieser Suite auf dieser Architektur"
 
-#: lib/Packages/DoFilelist.pm:63
+#: lib/Packages/DoFilelist.pm:60
 msgid "Invalid suite/architecture combination"
 msgstr "Ungültige Suite/Architektur-Kombination"
 
-#: lib/Packages/DoIndex.pm:34 lib/Packages/DoIndex.pm:37
+#: lib/Packages/DoIndex.pm:34
 #, perl-format
 msgid "more than one suite specified for show_static (%s)"
-msgstr ""
+msgstr "mehr als eine Suite für show_static angegeben (%s)"
+
+#: lib/Packages/DoIndex.pm:37
+#, perl-format
+msgid "more than one subsection specified for show_static (%s)"
+msgstr "mehr als ein Unterabschnitt für show_static angegeben (%s)"
 
 #: lib/Packages/DoIndex.pm:73
 #, perl-format
 msgid "couldn't read index file %s: %s"
-msgstr ""
+msgstr "konnte Indexdatei %s nicht lesen: %s"
 
-#: lib/Packages/DoNewPkg.pm:28 lib/Packages/DoShow.pm:36
+#: lib/Packages/DoNewPkg.pm:25
 #, perl-format
-msgid "more than one suite specified for show (%s)"
+msgid "more than one suite specified for newpkg (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:27 lib/Packages/DoSearchContents.pm:25
+#: lib/Packages/DoNewPkg.pm:42
+#, perl-format
+msgid "no newpkg information found for suite %s"
+msgstr "keine Informationen über neue Pakete gefunden für Suite %s"
+
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:23
 msgid "keyword not valid or missing"
-msgstr ""
+msgstr "Suchbegriff ungültig oder nicht angegeben"
 
-#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:28
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:26
 msgid "keyword too short (keywords need to have at least two characters)"
 msgstr ""
+"Suchbegriff zu kurz (Suchbegriffe müssen mindestens zwei Zeichen lang sein)"
 
-#: lib/Packages/DoSearch.pm:165
+#: lib/Packages/DoSearch.pm:163
 msgid "Exact hits"
 msgstr "Genaue Treffer"
 
-#: lib/Packages/DoSearch.pm:174
+#: lib/Packages/DoSearch.pm:172
 msgid "Other hits"
 msgstr "Andere Treffer"
 
-#: lib/Packages/DoSearch.pm:219
+#: lib/Packages/DoSearch.pm:217
 msgid "Virtual package"
 msgstr "Virtuelles Paket"
 
-#: lib/Packages/DoSearchContents.pm:41
+#: lib/Packages/DoSearchContents.pm:39
 #, perl-format
 msgid "more than one suite specified for contents search (%s)"
-msgstr ""
+msgstr "mehr als eine Suite zur Inhaltssuche angegeben (%s)"
 
-#: lib/Packages/DoSearchContents.pm:82
+#: lib/Packages/DoSearchContents.pm:80
 msgid "The search mode you selected doesn't support more than one keyword."
 msgstr ""
+"Der Suchmodus, den Sie ausgewählt haben, unterstützt nicht mehr als einen "
+"Suchbegriff."
+
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr "mehr als eine Suite zum Anzeigen angegeben (%s)"
 
-#: lib/Packages/DoShow.pm:71
+#: lib/Packages/DoShow.pm:72
 msgid "No such package."
 msgstr "Kein passendes Paket gefunden."
 
-#: lib/Packages/DoShow.pm:83
+#: lib/Packages/DoShow.pm:84
 msgid "Package not available in this suite."
 msgstr "Paket in dieser Suite nicht verfügbar"
 
-#: lib/Packages/DoShow.pm:195
+#: lib/Packages/DoShow.pm:197
 msgid " and others"
 msgstr " und andere"
 
-#: lib/Packages/DoShow.pm:425
-msgid "not"
-msgstr "nicht"
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "not %s"
+msgstr "nicht %s"
 
-#: lib/Packages/DoShow.pm:463
+#: lib/Packages/DoShow.pm:465
 msgid "Package not available"
 msgstr "Paket nicht verfügbar"
 
-#: lib/Packages/DoShow.pm:489
+#: lib/Packages/DoShow.pm:491
 msgid "Not available"
 msgstr "Paket nicht verfügbar"
 
 #: lib/Packages/Page.pm:47
 msgid "package has bad maintainer field"
 msgstr "Paket hat ungültiges Betreuer-Feld"
-
-#: lib/Packages/Template.pm:56
-#, perl-format
-msgid "Initialization of Template Engine failed: %s"
-msgstr ""
diff --git a/po/pdo.fi.po b/po/pdo.fi.po
index f759bc2..81642b6 100644
--- a/po/pdo.fi.po
+++ b/po/pdo.fi.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: pdo\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-19 23:43+0200\n"
+"POT-Creation-Date: 2007-10-21 21:31+0200\n"
 "PO-Revision-Date: 2007-10-18 22:06+0300\n"
 "Last-Translator: Tommi Vainikainen \n"
 "Language-Team: Finnish \n"
@@ -51,18 +51,18 @@ msgstr "kaksi tai useampi pakettia määritetty (%s)"
 msgid "requested format not available for this document"
 msgstr "pyydetty muoto ei ole käytettävissä tälle asiakirjalle"
 
-#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:30
-#: lib/Packages/DoShow.pm:30
+#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:27
+#: lib/Packages/DoShow.pm:31
 msgid "package not valid or not specified"
 msgstr "paketti ei kelpaa tai määrittelemättä"
 
-#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:33
-#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:25
-#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:29 lib/Packages/DoShow.pm:34
 msgid "suite not valid or not specified"
 msgstr "jakelu ei kelpaa tai määrittelemättä"
 
-#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:36
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
 msgid "architecture not valid or not specified"
 msgstr "arkkitehtuuri ei kelpaa tai määrittelemättä"
 
@@ -76,79 +76,99 @@ msgstr "useampi kuin yksi jakelu määritetty imuroinnille (%s)"
 msgid "more than one architecture specified for download (%s)"
 msgstr "useampi kuin yksi arkkitehtuuri määritetty imuroinnille (%s)"
 
-#: lib/Packages/DoFilelist.pm:51
+#: lib/Packages/DoFilelist.pm:48
 msgid "No such package in this suite on this architecture."
 msgstr "Pakettia ei löydy tälle arkkitehtuurille tästä jakelusta."
 
-#: lib/Packages/DoFilelist.pm:63
+#: lib/Packages/DoFilelist.pm:60
 msgid "Invalid suite/architecture combination"
 msgstr "Virheellinen jakelu/arkkitehtuuri-yhdistelmä"
 
-#: lib/Packages/DoIndex.pm:34 lib/Packages/DoIndex.pm:37
+#: lib/Packages/DoIndex.pm:34
 #, perl-format
 msgid "more than one suite specified for show_static (%s)"
 msgstr "useampi kuin yksi jakelu määritetty show_static-metodille (%s)"
 
+#: lib/Packages/DoIndex.pm:37
+#, fuzzy, perl-format
+#| msgid "more than one suite specified for show_static (%s)"
+msgid "more than one subsection specified for show_static (%s)"
+msgstr "useampi kuin yksi jakelu määritetty show_static-metodille (%s)"
+
 #: lib/Packages/DoIndex.pm:73
 #, perl-format
 msgid "couldn't read index file %s: %s"
 msgstr "hakemistotiedostoa %s ei voitu lukea: %s"
 
-#: lib/Packages/DoNewPkg.pm:28 lib/Packages/DoShow.pm:36
-#, perl-format
-msgid "more than one suite specified for show (%s)"
+#: lib/Packages/DoNewPkg.pm:25
+#, fuzzy, perl-format
+#| msgid "more than one suite specified for show (%s)"
+msgid "more than one suite specified for newpkg (%s)"
 msgstr "useampi kuin yksi jakelu määritetty show-metodille (%s)"
 
-#: lib/Packages/DoSearch.pm:27 lib/Packages/DoSearchContents.pm:25
+#: lib/Packages/DoNewPkg.pm:42
+#, fuzzy, perl-format
+#| msgid "More Information on %s"
+msgid "no newpkg information found for suite %s"
+msgstr "Lisätietoa paketista %s"
+
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:23
 msgid "keyword not valid or missing"
 msgstr "hakusana ei kelpaa tai puuttuu"
 
-#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:28
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:26
 msgid "keyword too short (keywords need to have at least two characters)"
 msgstr "hakusana liian lyhyt (hakusanassa täytyy olla vähintään kaksi merkkiä)"
 
-#: lib/Packages/DoSearch.pm:165
+#: lib/Packages/DoSearch.pm:163
 msgid "Exact hits"
 msgstr "Tarkat hakutulokset"
 
-#: lib/Packages/DoSearch.pm:174
+#: lib/Packages/DoSearch.pm:172
 msgid "Other hits"
 msgstr "Muut hakutulokset"
 
-#: lib/Packages/DoSearch.pm:219
+#: lib/Packages/DoSearch.pm:217
 msgid "Virtual package"
 msgstr "Näennäispaketti"
 
-#: lib/Packages/DoSearchContents.pm:41
+#: lib/Packages/DoSearchContents.pm:39
 #, perl-format
 msgid "more than one suite specified for contents search (%s)"
 msgstr "useampi kuin yksi jakelu määritetty sisältöhaulle (%s)"
 
-#: lib/Packages/DoSearchContents.pm:82
+#: lib/Packages/DoSearchContents.pm:80
 msgid "The search mode you selected doesn't support more than one keyword."
 msgstr "Valittu hakutapa ei tue useampaa kuin yhtä hakusanaa."
 
-#: lib/Packages/DoShow.pm:71
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr "useampi kuin yksi jakelu määritetty show-metodille (%s)"
+
+#: lib/Packages/DoShow.pm:72
 msgid "No such package."
 msgstr "Pakettia ei löydy."
 
-#: lib/Packages/DoShow.pm:83
+#: lib/Packages/DoShow.pm:84
 msgid "Package not available in this suite."
 msgstr "Paketti ei ole saatavilla tässä jakelussa."
 
-#: lib/Packages/DoShow.pm:195
+#: lib/Packages/DoShow.pm:197
 msgid " and others"
 msgstr " ja muut"
 
-#: lib/Packages/DoShow.pm:425
-msgid "not"
+#: lib/Packages/DoShow.pm:427
+#, fuzzy, perl-format
+#| msgid "not"
+msgid "not %s"
 msgstr "ei"
 
-#: lib/Packages/DoShow.pm:463
+#: lib/Packages/DoShow.pm:465
 msgid "Package not available"
 msgstr "Paketti ei saatavilla"
 
-#: lib/Packages/DoShow.pm:489
+#: lib/Packages/DoShow.pm:491
 msgid "Not available"
 msgstr "Ei saatavilla"
 
@@ -156,10 +176,8 @@ msgstr "Ei saatavilla"
 msgid "package has bad maintainer field"
 msgstr "paketin ylläpitäjätietue on virheellinen"
 
-#: lib/Packages/Template.pm:56
-#, perl-format
-msgid "Initialization of Template Engine failed: %s"
-msgstr "Mallinemoottorin alustus epäonnistui: %s"
+#~ msgid "Initialization of Template Engine failed: %s"
+#~ msgstr "Mallinemoottorin alustus epäonnistui: %s"
 
 #~ msgid ""
 #~ "Warning: The experimental distribution "
@@ -341,9 +359,6 @@ msgstr "Mallinemoottorin alustus epäonnistui: %s"
 #~ msgid "Check for Bug Reports about %s."
 #~ msgstr "Tarkista paketin %s vikailmoitukset."
 
-#~ msgid "More Information on %s"
-#~ msgstr "Lisätietoa paketista %s"
-
 #~ msgid "md5sum"
 #~ msgstr "MD5-summa"
 
diff --git a/po/pdo.fr.po b/po/pdo.fr.po
index 5c052fa..f9c8633 100644
--- a/po/pdo.fr.po
+++ b/po/pdo.fr.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-19 23:43+0200\n"
+"POT-Creation-Date: 2007-10-21 21:31+0200\n"
 "PO-Revision-Date: 2005-10-25 17:52+0200\n"
 "Last-Translator: Guilhelm Panaget \n"
 "Language-Team: French \n"
@@ -54,18 +54,18 @@ msgstr "Paquet source : %s (%s)"
 msgid "requested format not available for this document"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:30
-#: lib/Packages/DoShow.pm:30
+#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:27
+#: lib/Packages/DoShow.pm:31
 msgid "package not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:33
-#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:25
-#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:29 lib/Packages/DoShow.pm:34
 msgid "suite not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:36
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
 msgid "architecture not valid or not specified"
 msgstr ""
 
@@ -79,82 +79,100 @@ msgstr ""
 msgid "more than one architecture specified for download (%s)"
 msgstr ""
 
-#: lib/Packages/DoFilelist.pm:51
+#: lib/Packages/DoFilelist.pm:48
 #, fuzzy
 msgid "No such package in this suite on this architecture."
 msgstr "Aucun paquet dans cette section et cette distribution"
 
-#: lib/Packages/DoFilelist.pm:63
+#: lib/Packages/DoFilelist.pm:60
 msgid "Invalid suite/architecture combination"
 msgstr ""
 
-#: lib/Packages/DoIndex.pm:34 lib/Packages/DoIndex.pm:37
+#: lib/Packages/DoIndex.pm:34
 #, perl-format
 msgid "more than one suite specified for show_static (%s)"
 msgstr ""
 
+#: lib/Packages/DoIndex.pm:37
+#, perl-format
+msgid "more than one subsection specified for show_static (%s)"
+msgstr ""
+
 #: lib/Packages/DoIndex.pm:73
 #, perl-format
 msgid "couldn't read index file %s: %s"
 msgstr ""
 
-#: lib/Packages/DoNewPkg.pm:28 lib/Packages/DoShow.pm:36
+#: lib/Packages/DoNewPkg.pm:25
 #, perl-format
-msgid "more than one suite specified for show (%s)"
+msgid "more than one suite specified for newpkg (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:27 lib/Packages/DoSearchContents.pm:25
+#: lib/Packages/DoNewPkg.pm:42
+#, fuzzy, perl-format
+#| msgid "More Information on %s"
+msgid "no newpkg information found for suite %s"
+msgstr "Plus d'informations sur %s"
+
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:23
 msgid "keyword not valid or missing"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:28
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:26
 msgid "keyword too short (keywords need to have at least two characters)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:165
+#: lib/Packages/DoSearch.pm:163
 msgid "Exact hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:174
+#: lib/Packages/DoSearch.pm:172
 msgid "Other hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:219
+#: lib/Packages/DoSearch.pm:217
 msgid "Virtual package"
 msgstr "Paquet virtuel"
 
-#: lib/Packages/DoSearchContents.pm:41
+#: lib/Packages/DoSearchContents.pm:39
 #, perl-format
 msgid "more than one suite specified for contents search (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearchContents.pm:82
+#: lib/Packages/DoSearchContents.pm:80
 msgid "The search mode you selected doesn't support more than one keyword."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:71
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:72
 #, fuzzy
 msgid "No such package."
 msgstr "Paquet source"
 
-#: lib/Packages/DoShow.pm:83
+#: lib/Packages/DoShow.pm:84
 #, fuzzy
 msgid "Package not available in this suite."
 msgstr "Paquet indisponible"
 
-#: lib/Packages/DoShow.pm:195
+#: lib/Packages/DoShow.pm:197
 msgid " and others"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:425
-msgid "not"
+#: lib/Packages/DoShow.pm:427
+#, fuzzy, perl-format
+#| msgid "not"
+msgid "not %s"
 msgstr "non"
 
-#: lib/Packages/DoShow.pm:463
+#: lib/Packages/DoShow.pm:465
 msgid "Package not available"
 msgstr "Paquet indisponible"
 
-#: lib/Packages/DoShow.pm:489
+#: lib/Packages/DoShow.pm:491
 msgid "Not available"
 msgstr "Indisponible"
 
@@ -162,11 +180,6 @@ msgstr "Indisponible"
 msgid "package has bad maintainer field"
 msgstr ""
 
-#: lib/Packages/Template.pm:56
-#, perl-format
-msgid "Initialization of Template Engine failed: %s"
-msgstr ""
-
 #, fuzzy
 #~ msgid ""
 #~ "Note that the experimental distribution is not self-"
@@ -397,9 +410,6 @@ msgstr ""
 #~ msgid "Check for Bug Reports about %s."
 #~ msgstr "Consulter les rapports de bogues de %s."
 
-#~ msgid "More Information on %s"
-#~ msgstr "Plus d'informations sur %s"
-
 #, fuzzy
 #~ msgid "Details of package %s in %s"
 #~ msgstr "Nouveaux paquets dans « %s »"
diff --git a/po/pdo.hu.po b/po/pdo.hu.po
index fc41200..d3159cf 100644
--- a/po/pdo.hu.po
+++ b/po/pdo.hu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-19 23:43+0200\n"
+"POT-Creation-Date: 2007-10-21 21:31+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -51,18 +51,18 @@ msgstr ""
 msgid "requested format not available for this document"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:30
-#: lib/Packages/DoShow.pm:30
+#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:27
+#: lib/Packages/DoShow.pm:31
 msgid "package not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:33
-#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:25
-#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:29 lib/Packages/DoShow.pm:34
 msgid "suite not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:36
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
 msgid "architecture not valid or not specified"
 msgstr ""
 
@@ -76,87 +76,98 @@ msgstr ""
 msgid "more than one architecture specified for download (%s)"
 msgstr ""
 
-#: lib/Packages/DoFilelist.pm:51
+#: lib/Packages/DoFilelist.pm:48
 msgid "No such package in this suite on this architecture."
 msgstr ""
 
-#: lib/Packages/DoFilelist.pm:63
+#: lib/Packages/DoFilelist.pm:60
 msgid "Invalid suite/architecture combination"
 msgstr ""
 
-#: lib/Packages/DoIndex.pm:34 lib/Packages/DoIndex.pm:37
+#: lib/Packages/DoIndex.pm:34
 #, perl-format
 msgid "more than one suite specified for show_static (%s)"
 msgstr ""
 
+#: lib/Packages/DoIndex.pm:37
+#, perl-format
+msgid "more than one subsection specified for show_static (%s)"
+msgstr ""
+
 #: lib/Packages/DoIndex.pm:73
 #, perl-format
 msgid "couldn't read index file %s: %s"
 msgstr ""
 
-#: lib/Packages/DoNewPkg.pm:28 lib/Packages/DoShow.pm:36
+#: lib/Packages/DoNewPkg.pm:25
 #, perl-format
-msgid "more than one suite specified for show (%s)"
+msgid "more than one suite specified for newpkg (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:27 lib/Packages/DoSearchContents.pm:25
+#: lib/Packages/DoNewPkg.pm:42
+#, perl-format
+msgid "no newpkg information found for suite %s"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:23
 msgid "keyword not valid or missing"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:28
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:26
 msgid "keyword too short (keywords need to have at least two characters)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:165
+#: lib/Packages/DoSearch.pm:163
 msgid "Exact hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:174
+#: lib/Packages/DoSearch.pm:172
 msgid "Other hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:219
+#: lib/Packages/DoSearch.pm:217
 msgid "Virtual package"
 msgstr ""
 
-#: lib/Packages/DoSearchContents.pm:41
+#: lib/Packages/DoSearchContents.pm:39
 #, perl-format
 msgid "more than one suite specified for contents search (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearchContents.pm:82
+#: lib/Packages/DoSearchContents.pm:80
 msgid "The search mode you selected doesn't support more than one keyword."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:71
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:72
 msgid "No such package."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:83
+#: lib/Packages/DoShow.pm:84
 msgid "Package not available in this suite."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:195
+#: lib/Packages/DoShow.pm:197
 msgid " and others"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:425
-msgid "not"
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "not %s"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:463
+#: lib/Packages/DoShow.pm:465
 msgid "Package not available"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:489
+#: lib/Packages/DoShow.pm:491
 msgid "Not available"
 msgstr ""
 
 #: lib/Packages/Page.pm:47
 msgid "package has bad maintainer field"
 msgstr ""
-
-#: lib/Packages/Template.pm:56
-#, perl-format
-msgid "Initialization of Template Engine failed: %s"
-msgstr ""
diff --git a/po/pdo.ja.po b/po/pdo.ja.po
index 4f31078..be04a2d 100644
--- a/po/pdo.ja.po
+++ b/po/pdo.ja.po
@@ -6,8 +6,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: packages.debian.org trunk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-19 23:43+0200\n"
-"PO-Revision-Date: 2007-10-19 20:12+0900\n"
+"POT-Creation-Date: 2007-10-21 21:31+0200\n"
+"PO-Revision-Date: 2007-10-22 00:13+0900\n"
 "Last-Translator: Noritada Kobayashi \n"
 "Language-Team: Japanese \n"
 "MIME-Version: 1.0\n"
@@ -16,146 +16,163 @@ msgstr ""
 
 #: bin/create_index_pages:234
 msgid "Section"
-msgstr ""
+msgstr "セクション"
 
 #: bin/create_index_pages:246
 msgid "Subsection"
-msgstr ""
+msgstr "サブセクション"
 
 #: bin/create_index_pages:258
 msgid "Priority"
-msgstr ""
+msgstr "優先度"
 
 #. Done
 #: lib/Packages/Dispatcher.pm:162
 msgid "search doesn't take any more path elements"
-msgstr ""
+msgstr "search の場合は後ろにパスを追加できません"
 
 #: lib/Packages/Dispatcher.pm:165
 msgid ""
 "We're supposed to display the homepage here, instead of getting dispatch.pl"
 msgstr ""
+"ここには、dispatch.pl を取得するのではなくホームページを表示することになって"
+"います。"
 
 #: lib/Packages/Dispatcher.pm:188
 #, perl-format
 msgid "%s set more than once in path"
-msgstr ""
+msgstr "%s がパスに複数入っています"
 
 #: lib/Packages/Dispatcher.pm:223
 #, perl-format
 msgid "two or more packages specified (%s)"
-msgstr ""
+msgstr "2 つ以上のパッケージが指定されています (%s)"
 
 #: lib/Packages/Dispatcher.pm:321
 msgid "requested format not available for this document"
-msgstr ""
+msgstr "この文書は要求された形式では利用できません"
 
-#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:30
-#: lib/Packages/DoShow.pm:30
+#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:27
+#: lib/Packages/DoShow.pm:31
 msgid "package not valid or not specified"
-msgstr ""
+msgstr "パッケージが不正か、または指定されていません"
 
-#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:33
-#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:25
-#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:29 lib/Packages/DoShow.pm:34
 msgid "suite not valid or not specified"
-msgstr ""
+msgstr "スイートが不正か、または指定されていません"
 
-#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:36
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
 msgid "architecture not valid or not specified"
-msgstr ""
+msgstr "アーキテクチャが不正か、または指定されていません"
 
 #: lib/Packages/DoDownload.pm:36
 #, perl-format
 msgid "more than one suite specified for download (%s)"
-msgstr ""
+msgstr "download に複数のスイートが指定されています (%s)"
 
 #: lib/Packages/DoDownload.pm:39
 #, perl-format
 msgid "more than one architecture specified for download (%s)"
-msgstr ""
+msgstr "download に複数のアーキテクチャが指定されています (%s)"
 
-#: lib/Packages/DoFilelist.pm:51
+#: lib/Packages/DoFilelist.pm:48
 msgid "No such package in this suite on this architecture."
-msgstr ""
+msgstr "このスイートのこのアーキテクチャにはそのようなパッケージはありません。"
 
-#: lib/Packages/DoFilelist.pm:63
+#: lib/Packages/DoFilelist.pm:60
 msgid "Invalid suite/architecture combination"
-msgstr ""
+msgstr "スイートとアーキテクチャの組み合わせが不正です"
 
-#: lib/Packages/DoIndex.pm:34 lib/Packages/DoIndex.pm:37
+#: lib/Packages/DoIndex.pm:34
 #, perl-format
 msgid "more than one suite specified for show_static (%s)"
-msgstr ""
+msgstr "show_static に複数のスイートが指定されています (%s)"
+
+#: lib/Packages/DoIndex.pm:37
+#, perl-format
+msgid "more than one subsection specified for show_static (%s)"
+msgstr "show_static に複数のサブセクションが指定されています (%s)"
 
 #: lib/Packages/DoIndex.pm:73
 #, perl-format
 msgid "couldn't read index file %s: %s"
-msgstr ""
+msgstr "索引ファイル %s を読み込めませんでした: %s"
+
+#: lib/Packages/DoNewPkg.pm:25
+#, fuzzy, perl-format
+#| msgid "more than one suite specified for show (%s)"
+msgid "more than one suite specified for newpkg (%s)"
+msgstr "show に複数のスイートが指定されています (%s)"
 
-#: lib/Packages/DoNewPkg.pm:28 lib/Packages/DoShow.pm:36
+#: lib/Packages/DoNewPkg.pm:42
 #, perl-format
-msgid "more than one suite specified for show (%s)"
+msgid "no newpkg information found for suite %s"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:27 lib/Packages/DoSearchContents.pm:25
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:23
 msgid "keyword not valid or missing"
-msgstr ""
+msgstr "キーワードが不正か、または指定されていません"
 
-#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:28
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:26
 msgid "keyword too short (keywords need to have at least two characters)"
-msgstr ""
+msgstr "キーワードが短すぎます (キーワードは 2 文字以上である必要があります)"
 
-#: lib/Packages/DoSearch.pm:165
+#: lib/Packages/DoSearch.pm:163
 msgid "Exact hits"
 msgstr "完全なヒット"
 
-#: lib/Packages/DoSearch.pm:174
+#: lib/Packages/DoSearch.pm:172
 msgid "Other hits"
 msgstr "その他のヒット"
 
-#: lib/Packages/DoSearch.pm:219
+#: lib/Packages/DoSearch.pm:217
 msgid "Virtual package"
 msgstr "仮想パッケージ"
 
-#: lib/Packages/DoSearchContents.pm:41
+#: lib/Packages/DoSearchContents.pm:39
 #, perl-format
 msgid "more than one suite specified for contents search (%s)"
-msgstr ""
+msgstr "内容の検索 (contents search) に複数のスイートが指定されています (%s)"
 
-#: lib/Packages/DoSearchContents.pm:82
+#: lib/Packages/DoSearchContents.pm:80
 msgid "The search mode you selected doesn't support more than one keyword."
-msgstr ""
+msgstr "選択した検索モードでは複数のキーワード指定はサポートされていません。"
 
-#: lib/Packages/DoShow.pm:71
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr "show に複数のスイートが指定されています (%s)"
+
+#: lib/Packages/DoShow.pm:72
 msgid "No such package."
-msgstr ""
+msgstr "そのようなパッケージはありません。"
 
-#: lib/Packages/DoShow.pm:83
+#: lib/Packages/DoShow.pm:84
 msgid "Package not available in this suite."
-msgstr ""
+msgstr "パッケージはこのスイートでは利用できません。"
 
-#: lib/Packages/DoShow.pm:195
+#: lib/Packages/DoShow.pm:197
 msgid " and others"
-msgstr ""
+msgstr " など"
 
-#: lib/Packages/DoShow.pm:425
-msgid "not"
-msgstr ""
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "not %s"
+msgstr "%s 以外"
 
-#: lib/Packages/DoShow.pm:463
+#: lib/Packages/DoShow.pm:465
 msgid "Package not available"
-msgstr ""
+msgstr "パッケージは利用できません"
 
-#: lib/Packages/DoShow.pm:489
+#: lib/Packages/DoShow.pm:491
 msgid "Not available"
-msgstr ""
+msgstr "入手不能"
 
 #: lib/Packages/Page.pm:47
 msgid "package has bad maintainer field"
-msgstr ""
+msgstr "パッケージのメンテナ (Maintainer) フィールドが不正です"
 
-#: lib/Packages/Template.pm:56
-#, perl-format
-msgid "Initialization of Template Engine failed: %s"
-msgstr ""
+#~ msgid "Initialization of Template Engine failed: %s"
+#~ msgstr "テンプレートエンジンの初期化に失敗しました: %s"
diff --git a/po/pdo.nl.po b/po/pdo.nl.po
index 00e2b4f..a22208f 100644
--- a/po/pdo.nl.po
+++ b/po/pdo.nl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: packages.debian.org\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-19 23:43+0200\n"
+"POT-Creation-Date: 2007-10-21 21:31+0200\n"
 "PO-Revision-Date: 2005-01-03 00:19+0100\n"
 "Last-Translator: Bas Zoetekouw \n"
 "Language-Team: Dutch \n"
@@ -56,18 +56,18 @@ msgstr "Bronpakket: %s (%s)"
 msgid "requested format not available for this document"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:30
-#: lib/Packages/DoShow.pm:30
+#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:27
+#: lib/Packages/DoShow.pm:31
 msgid "package not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:33
-#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:25
-#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:29 lib/Packages/DoShow.pm:34
 msgid "suite not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:36
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
 msgid "architecture not valid or not specified"
 msgstr ""
 
@@ -81,82 +81,100 @@ msgstr ""
 msgid "more than one architecture specified for download (%s)"
 msgstr ""
 
-#: lib/Packages/DoFilelist.pm:51
+#: lib/Packages/DoFilelist.pm:48
 #, fuzzy
 msgid "No such package in this suite on this architecture."
 msgstr "Geen pakketten in deze sectie en deze suite"
 
-#: lib/Packages/DoFilelist.pm:63
+#: lib/Packages/DoFilelist.pm:60
 msgid "Invalid suite/architecture combination"
 msgstr ""
 
-#: lib/Packages/DoIndex.pm:34 lib/Packages/DoIndex.pm:37
+#: lib/Packages/DoIndex.pm:34
 #, perl-format
 msgid "more than one suite specified for show_static (%s)"
 msgstr ""
 
+#: lib/Packages/DoIndex.pm:37
+#, perl-format
+msgid "more than one subsection specified for show_static (%s)"
+msgstr ""
+
 #: lib/Packages/DoIndex.pm:73
 #, perl-format
 msgid "couldn't read index file %s: %s"
 msgstr ""
 
-#: lib/Packages/DoNewPkg.pm:28 lib/Packages/DoShow.pm:36
+#: lib/Packages/DoNewPkg.pm:25
 #, perl-format
-msgid "more than one suite specified for show (%s)"
+msgid "more than one suite specified for newpkg (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:27 lib/Packages/DoSearchContents.pm:25
+#: lib/Packages/DoNewPkg.pm:42
+#, fuzzy, perl-format
+#| msgid "More Information on %s"
+msgid "no newpkg information found for suite %s"
+msgstr "Meer informatie over %s"
+
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:23
 msgid "keyword not valid or missing"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:28
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:26
 msgid "keyword too short (keywords need to have at least two characters)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:165
+#: lib/Packages/DoSearch.pm:163
 msgid "Exact hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:174
+#: lib/Packages/DoSearch.pm:172
 msgid "Other hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:219
+#: lib/Packages/DoSearch.pm:217
 msgid "Virtual package"
 msgstr "Virtueel pakket"
 
-#: lib/Packages/DoSearchContents.pm:41
+#: lib/Packages/DoSearchContents.pm:39
 #, perl-format
 msgid "more than one suite specified for contents search (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearchContents.pm:82
+#: lib/Packages/DoSearchContents.pm:80
 msgid "The search mode you selected doesn't support more than one keyword."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:71
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:72
 #, fuzzy
 msgid "No such package."
 msgstr "Bronpakket"
 
-#: lib/Packages/DoShow.pm:83
+#: lib/Packages/DoShow.pm:84
 #, fuzzy
 msgid "Package not available in this suite."
 msgstr "Pakket niet beschikbaar"
 
-#: lib/Packages/DoShow.pm:195
+#: lib/Packages/DoShow.pm:197
 msgid " and others"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:425
-msgid "not"
+#: lib/Packages/DoShow.pm:427
+#, fuzzy, perl-format
+#| msgid "not"
+msgid "not %s"
 msgstr "niet"
 
-#: lib/Packages/DoShow.pm:463
+#: lib/Packages/DoShow.pm:465
 msgid "Package not available"
 msgstr "Pakket niet beschikbaar"
 
-#: lib/Packages/DoShow.pm:489
+#: lib/Packages/DoShow.pm:491
 msgid "Not available"
 msgstr "Niet beschikbaar"
 
@@ -164,11 +182,6 @@ msgstr "Niet beschikbaar"
 msgid "package has bad maintainer field"
 msgstr ""
 
-#: lib/Packages/Template.pm:56
-#, perl-format
-msgid "Initialization of Template Engine failed: %s"
-msgstr ""
-
 #, fuzzy
 #~ msgid ""
 #~ "Note that the experimental distribution is not self-"
@@ -382,9 +395,6 @@ msgstr ""
 #~ msgid "Check for Bug Reports about %s."
 #~ msgstr "Zoek naar bug-rapporten over %s."
 
-#~ msgid "More Information on %s"
-#~ msgstr "Meer informatie over %s"
-
 #, fuzzy
 #~ msgid "Details of package %s in %s"
 #~ msgstr "Nieuwe pakketten in %s"
diff --git a/po/pdo.pot b/po/pdo.pot
index 4286d66..051e213 100644
--- a/po/pdo.pot
+++ b/po/pdo.pot
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-19 23:43+0200\n"
+"POT-Creation-Date: 2007-10-21 21:31+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -15,18 +15,18 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:30
-#: lib/Packages/DoShow.pm:30
+#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:27
+#: lib/Packages/DoShow.pm:31
 msgid "package not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:33
-#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:25
-#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:29 lib/Packages/DoShow.pm:34
 msgid "suite not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:36
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
 msgid "architecture not valid or not specified"
 msgstr ""
 
@@ -40,79 +40,95 @@ msgstr ""
 msgid "more than one architecture specified for download (%s)"
 msgstr ""
 
-#: lib/Packages/DoFilelist.pm:51
+#: lib/Packages/DoFilelist.pm:48
 msgid "No such package in this suite on this architecture."
 msgstr ""
 
-#: lib/Packages/DoFilelist.pm:63
+#: lib/Packages/DoFilelist.pm:60
 msgid "Invalid suite/architecture combination"
 msgstr ""
 
-#: lib/Packages/DoIndex.pm:34 lib/Packages/DoIndex.pm:37
+#: lib/Packages/DoIndex.pm:34
 #, perl-format
 msgid "more than one suite specified for show_static (%s)"
 msgstr ""
 
+#: lib/Packages/DoIndex.pm:37
+#, perl-format
+msgid "more than one subsection specified for show_static (%s)"
+msgstr ""
+
 #: lib/Packages/DoIndex.pm:73
 #, perl-format
 msgid "couldn't read index file %s: %s"
 msgstr ""
 
-#: lib/Packages/DoNewPkg.pm:28 lib/Packages/DoShow.pm:36
+#: lib/Packages/DoNewPkg.pm:25
 #, perl-format
-msgid "more than one suite specified for show (%s)"
+msgid "more than one suite specified for newpkg (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:27 lib/Packages/DoSearchContents.pm:25
+#: lib/Packages/DoNewPkg.pm:42
+#, perl-format
+msgid "no newpkg information found for suite %s"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:23
 msgid "keyword not valid or missing"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:28
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:26
 msgid "keyword too short (keywords need to have at least two characters)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:165
+#: lib/Packages/DoSearch.pm:163
 msgid "Exact hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:174
+#: lib/Packages/DoSearch.pm:172
 msgid "Other hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:219
+#: lib/Packages/DoSearch.pm:217
 msgid "Virtual package"
 msgstr ""
 
-#: lib/Packages/DoSearchContents.pm:41
+#: lib/Packages/DoSearchContents.pm:39
 #, perl-format
 msgid "more than one suite specified for contents search (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearchContents.pm:82
+#: lib/Packages/DoSearchContents.pm:80
 msgid "The search mode you selected doesn't support more than one keyword."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:71
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:72
 msgid "No such package."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:83
+#: lib/Packages/DoShow.pm:84
 msgid "Package not available in this suite."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:195
+#: lib/Packages/DoShow.pm:197
 msgid " and others"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:425
-msgid "not"
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "not %s"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:463
+#: lib/Packages/DoShow.pm:465
 msgid "Package not available"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:489
+#: lib/Packages/DoShow.pm:491
 msgid "Not available"
 msgstr ""
 
@@ -120,11 +136,6 @@ msgstr ""
 msgid "package has bad maintainer field"
 msgstr ""
 
-#: lib/Packages/Template.pm:56
-#, perl-format
-msgid "Initialization of Template Engine failed: %s"
-msgstr ""
-
 #. Done
 #: lib/Packages/Dispatcher.pm:162
 msgid "search doesn't take any more path elements"
diff --git a/po/pdo.uk.po b/po/pdo.uk.po
index e26f087..3c0dc42 100644
--- a/po/pdo.uk.po
+++ b/po/pdo.uk.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: pdo\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-10-19 23:43+0200\n"
+"POT-Creation-Date: 2007-10-21 21:31+0200\n"
 "PO-Revision-Date: 2005-11-02 14:08+0200\n"
 "Last-Translator: Eugeniy Meshcheryakov \n"
 "Language-Team: Ukrainian\n"
@@ -57,18 +57,18 @@ msgstr "Джерельний пакунок: %s (%s)"
 msgid "requested format not available for this document"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:30
-#: lib/Packages/DoShow.pm:30
+#: lib/Packages/DoDownload.pm:27 lib/Packages/DoFilelist.pm:27
+#: lib/Packages/DoShow.pm:31
 msgid "package not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:33
-#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:25
-#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoDownload.pm:30 lib/Packages/DoFilelist.pm:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:29 lib/Packages/DoShow.pm:34
 msgid "suite not valid or not specified"
 msgstr ""
 
-#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:36
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
 msgid "architecture not valid or not specified"
 msgstr ""
 
@@ -82,82 +82,100 @@ msgstr ""
 msgid "more than one architecture specified for download (%s)"
 msgstr ""
 
-#: lib/Packages/DoFilelist.pm:51
+#: lib/Packages/DoFilelist.pm:48
 #, fuzzy
 msgid "No such package in this suite on this architecture."
 msgstr "Немає пакунків в цій секції цього дистрибутиву"
 
-#: lib/Packages/DoFilelist.pm:63
+#: lib/Packages/DoFilelist.pm:60
 msgid "Invalid suite/architecture combination"
 msgstr ""
 
-#: lib/Packages/DoIndex.pm:34 lib/Packages/DoIndex.pm:37
+#: lib/Packages/DoIndex.pm:34
 #, perl-format
 msgid "more than one suite specified for show_static (%s)"
 msgstr ""
 
+#: lib/Packages/DoIndex.pm:37
+#, perl-format
+msgid "more than one subsection specified for show_static (%s)"
+msgstr ""
+
 #: lib/Packages/DoIndex.pm:73
 #, perl-format
 msgid "couldn't read index file %s: %s"
 msgstr ""
 
-#: lib/Packages/DoNewPkg.pm:28 lib/Packages/DoShow.pm:36
+#: lib/Packages/DoNewPkg.pm:25
 #, perl-format
-msgid "more than one suite specified for show (%s)"
+msgid "more than one suite specified for newpkg (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:27 lib/Packages/DoSearchContents.pm:25
+#: lib/Packages/DoNewPkg.pm:42
+#, fuzzy, perl-format
+#| msgid "More Information on %s"
+msgid "no newpkg information found for suite %s"
+msgstr "Додаткова інформація про %s"
+
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:23
 msgid "keyword not valid or missing"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:28
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:26
 msgid "keyword too short (keywords need to have at least two characters)"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:165
+#: lib/Packages/DoSearch.pm:163
 msgid "Exact hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:174
+#: lib/Packages/DoSearch.pm:172
 msgid "Other hits"
 msgstr ""
 
-#: lib/Packages/DoSearch.pm:219
+#: lib/Packages/DoSearch.pm:217
 msgid "Virtual package"
 msgstr "Віртуальний пакунок"
 
-#: lib/Packages/DoSearchContents.pm:41
+#: lib/Packages/DoSearchContents.pm:39
 #, perl-format
 msgid "more than one suite specified for contents search (%s)"
 msgstr ""
 
-#: lib/Packages/DoSearchContents.pm:82
+#: lib/Packages/DoSearchContents.pm:80
 msgid "The search mode you selected doesn't support more than one keyword."
 msgstr ""
 
-#: lib/Packages/DoShow.pm:71
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:72
 #, fuzzy
 msgid "No such package."
 msgstr "Джерельний пакунок"
 
-#: lib/Packages/DoShow.pm:83
+#: lib/Packages/DoShow.pm:84
 #, fuzzy
 msgid "Package not available in this suite."
 msgstr "Пакунок недоступний"
 
-#: lib/Packages/DoShow.pm:195
+#: lib/Packages/DoShow.pm:197
 msgid " and others"
 msgstr ""
 
-#: lib/Packages/DoShow.pm:425
-msgid "not"
+#: lib/Packages/DoShow.pm:427
+#, fuzzy, perl-format
+#| msgid "not"
+msgid "not %s"
 msgstr "не"
 
-#: lib/Packages/DoShow.pm:463
+#: lib/Packages/DoShow.pm:465
 msgid "Package not available"
 msgstr "Пакунок недоступний"
 
-#: lib/Packages/DoShow.pm:489
+#: lib/Packages/DoShow.pm:491
 msgid "Not available"
 msgstr "Не доступний"
 
@@ -165,11 +183,6 @@ msgstr "Не доступний"
 msgid "package has bad maintainer field"
 msgstr ""
 
-#: lib/Packages/Template.pm:56
-#, perl-format
-msgid "Initialization of Template Engine failed: %s"
-msgstr ""
-
 #, fuzzy
 #~ msgid ""
 #~ "Note that the experimental distribution is not self-"
@@ -393,9 +406,6 @@ msgstr ""
 #~ msgid "Check for Bug Reports about %s."
 #~ msgstr "Перегляньте повідомлення про помилки про %s."
 
-#~ msgid "More Information on %s"
-#~ msgstr "Додаткова інформація про %s"
-
 #, fuzzy
 #~ msgid "Details of package %s in %s"
 #~ msgstr "Нові пакунки в дистрибутиві %s"
diff --git a/po/sections.de.po b/po/sections.de.po
index 48035d6..c6c8571 100644
--- a/po/sections.de.po
+++ b/po/sections.de.po
@@ -5,8 +5,8 @@ msgstr ""
 "Project-Id-Version: packages.git 2cd81017ac27717adcda738074294c4f5cd9e4cd\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-10-19 23:43+0200\n"
-"PO-Revision-Date: 2007-09-18 19:48+0200\n"
-"Last-Translator: Frank Lichtenheld \n"
+"PO-Revision-Date: 2007-10-21 17:32+0200\n"
+"Last-Translator: Helge Kreutzmann \n"
 "Language-Team: debian-l10n-german \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,12 +14,12 @@ msgstr ""
 
 #: lib/Packages/Sections.pm:12
 msgid "Administration Utilities"
-msgstr "Administrierungswerkzeuge"
+msgstr "Administrationswerkzeuge"
 
 #: lib/Packages/Sections.pm:13
 msgid "Utilities to administer system resources, manage user accounts, etc."
 msgstr ""
-"Hilfsprogramme um Systemressourcen zu verwalten, Benutzeraccounts zu "
+"Hilfsprogramme, um Systemressourcen zu verwalten, Benutzerkonten zu "
 "verwalten, usw."
 
 #: lib/Packages/Sections.pm:14
@@ -79,11 +79,11 @@ msgstr "Elektronikprogramme."
 
 #: lib/Packages/Sections.pm:26
 msgid "Embedded software"
-msgstr "Embedded Software"
+msgstr "Eingebettete Software"
 
 #: lib/Packages/Sections.pm:27
 msgid "Software suitable for use in embedded applications."
-msgstr "Software, die für die Benutzung in Embedded-Systemen geeignet ist."
+msgstr "Software, die für die Benutzung in eingebetteten Systemen geeignet ist."
 
 #: lib/Packages/Sections.pm:28
 msgid "Games"
@@ -113,7 +113,7 @@ msgstr "Grafik"
 
 #: lib/Packages/Sections.pm:33
 msgid "Editors, viewers, converters... Everything to become an artist."
-msgstr "Editoren, Viewer, Konverter... Alles um ein Künstler zu werden."
+msgstr "Editoren, Betrachter, Konverter... Alles um ein Künstler zu werden."
 
 #: lib/Packages/Sections.pm:34
 msgid "Ham Radio"
@@ -163,7 +163,7 @@ msgstr "Bibliotheksentwicklung"
 msgid "Libraries necessary for developers to write programs that use them."
 msgstr ""
 "Bibliotheken, die von Entwicklern benötigt werden, um Programme zu "
-"entwicklen, die sie benutzen."
+"entwickeln, die sie benutzen."
 
 #: lib/Packages/Sections.pm:44
 msgid "Mail"
@@ -270,13 +270,13 @@ msgstr "Kommandoshells. Benutzerfreundliche Schnittstellen für Anfänger."
 
 #: lib/Packages/Sections.pm:66
 msgid "Sound"
-msgstr "Sound"
+msgstr "Klang"
 
 #: lib/Packages/Sections.pm:67
 msgid ""
 "Utilities to deal with sound: mixers, players, recorders, CD players, etc."
 msgstr ""
-"Programme um mit Sound zu arbeiten: Mixer, Player, Recorder, CD-Player, usw."
+"Programme um mit Klängen zu arbeiten: Abmischen, Abspielen, Aufzeichnen, CD-Abspielen, usw."
 
 #: lib/Packages/Sections.pm:68
 msgid "TeX"
@@ -296,11 +296,11 @@ msgstr "Programme, um Textdokumente zu formatieren und zu drucken."
 
 #: lib/Packages/Sections.pm:72
 msgid "Translations"
-msgstr ""
+msgstr "Übersetzungen"
 
 #: lib/Packages/Sections.pm:73
 msgid "Translation packages and language support meta packages."
-msgstr ""
+msgstr "Übersetzungspakete und Sprachunterstützungs-Metapakete"
 
 #: lib/Packages/Sections.pm:74
 msgid "Utilities"
@@ -328,7 +328,7 @@ msgstr "Web-Software"
 
 #: lib/Packages/Sections.pm:79
 msgid "Web servers, browsers, proxies, download tools etc."
-msgstr "Web-Server, Browser, Proxies, Download-Tools, usw."
+msgstr "Web-Server, Browser, Proxys, Download-Tools, usw."
 
 #: lib/Packages/Sections.pm:80
 msgid "X Window System software"
@@ -344,7 +344,7 @@ msgstr ""
 
 #: lib/Packages/Sections.pm:82
 msgid "debian-installer udeb packages"
-msgstr "debian-installer udeb-Pakete"
+msgstr "Debian-Installer udeb-Pakete"
 
 #: lib/Packages/Sections.pm:83
 msgid ""
@@ -352,4 +352,4 @@ msgid ""
 "install them on a normal system!"
 msgstr ""
 "Spezielle Pakete zum Erzeugen von angepassten Debian-Installer-Varianten. "
-"Installieren Sie sie nicht in einem normalen System!"
+"Installieren Sie sie nicht auf einem normalen System!"
diff --git a/po/sections.ja.po b/po/sections.ja.po
index 314eaa4..defbbdb 100644
--- a/po/sections.ja.po
+++ b/po/sections.ja.po
@@ -7,7 +7,7 @@ msgstr ""
 "Project-Id-Version: packages.debian.org trunk\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-10-19 23:43+0200\n"
-"PO-Revision-Date: 2007-10-19 18:06+0900\n"
+"PO-Revision-Date: 2007-10-21 12:15+0900\n"
 "Last-Translator: Noritada Kobayashi \n"
 "Language-Team: Japanese \n"
 "MIME-Version: 1.0\n"
@@ -87,9 +87,10 @@ msgstr "組み込みアプリケーションでの使用に適したソフトウ
 msgid "Games"
 msgstr "ゲーム"
 
+# TRANSLATION-FIXME: こんな感じ?
 #: lib/Packages/Sections.pm:29
 msgid "Programs to spend a nice time with after all this setting up."
-msgstr ""
+msgstr "これだけのセットアップをしたあなたの遊び相手となってくれるプログラム。"
 
 #: lib/Packages/Sections.pm:30
 msgid "GNOME"
@@ -99,7 +100,7 @@ msgstr "GNOME"
 msgid ""
 "The GNOME desktop environment, a powerful, easy to use set of integrated "
 "applications."
-msgstr ""
+msgstr "強力で使いやすく統合されたアプリケーション群、GNOME デスクトップ環境。"
 
 #: lib/Packages/Sections.pm:32
 msgid "Graphics"
@@ -113,19 +114,19 @@ msgstr ""
 
 #: lib/Packages/Sections.pm:34
 msgid "Ham Radio"
-msgstr ""
+msgstr "アマチュア無線"
 
 #: lib/Packages/Sections.pm:35
 msgid "Software for ham radio."
-msgstr ""
+msgstr "アマチュア無線用のソフトウェア。"
 
 #: lib/Packages/Sections.pm:36
 msgid "Interpreters"
-msgstr ""
+msgstr "インタプリタ"
 
 #: lib/Packages/Sections.pm:37
 msgid "All kind of interpreters for interpreted languages. Macro processors."
-msgstr ""
+msgstr "インタプリタ言語用の様々なインタプリタやマクロプロセッサ。"
 
 #: lib/Packages/Sections.pm:38
 msgid "KDE"
@@ -136,6 +137,7 @@ msgid ""
 "The K Desktop Environment, a powerful, easy to use set of integrated "
 "applications."
 msgstr ""
+"強力で使いやすく統合されたアプリケーション群、K デスクトップ環境 (KDE)。"
 
 #: lib/Packages/Sections.pm:40
 msgid "Libraries"
@@ -146,185 +148,203 @@ msgid ""
 "Libraries to make other programs work. They provide special features to "
 "developers."
 msgstr ""
+"他のプログラムの動作に必要となるライブラリ。特殊機能を開発者に提供します。"
 
 #: lib/Packages/Sections.pm:42
 msgid "Library development"
-msgstr ""
+msgstr "ライブラリ開発"
 
 #: lib/Packages/Sections.pm:43
 msgid "Libraries necessary for developers to write programs that use them."
-msgstr ""
+msgstr "ライブラリを使用するプログラムを開発者が書くのに必要なライブラリ。"
 
 #: lib/Packages/Sections.pm:44
 msgid "Mail"
-msgstr ""
+msgstr "メール"
 
 #: lib/Packages/Sections.pm:45
 msgid "Programs to route, read, and compose E-mail messages."
 msgstr ""
+"電子メールのメッセージを配送したり読んだり作成したりするためのプログラム。"
 
 #: lib/Packages/Sections.pm:46
 msgid "Mathematics"
-msgstr ""
+msgstr "数学"
 
 #: lib/Packages/Sections.pm:47
 msgid "Math software."
-msgstr ""
+msgstr "数値演算ソフトウェア。"
 
 #: lib/Packages/Sections.pm:48
 msgid "Miscellaneous"
-msgstr ""
+msgstr "その他"
 
 #: lib/Packages/Sections.pm:49
 msgid "Miscellaneous utilities that didn't fit well anywhere else."
-msgstr ""
+msgstr "他のどのセクションにもうまく当てはまらないその他のユーティリティ。"
 
 #: lib/Packages/Sections.pm:50
 msgid "Network"
-msgstr ""
+msgstr "ネットワーク"
 
 #: lib/Packages/Sections.pm:51
 msgid ""
 "Daemons and clients to connect your Debian GNU/Linux system to the world."
 msgstr ""
+"ユーザの Debian GNU/Linux システムへ世界から接続するのに必要なデーモンやクラ"
+"イアント。"
 
 #: lib/Packages/Sections.pm:52
 msgid "Newsgroups"
-msgstr ""
+msgstr "ニュースグループ"
 
 #: lib/Packages/Sections.pm:53
 msgid "Software to access Usenet, to set up news servers, etc."
 msgstr ""
+"Usenet へのアクセスやニュースサーバのセットアップなどのためのソフトウェア。"
 
 #: lib/Packages/Sections.pm:54
 msgid "Old Libraries"
-msgstr ""
+msgstr "旧式ライブラリ"
 
 #: lib/Packages/Sections.pm:55
 msgid ""
 "Old versions of libraries, kept for backward compatibility with old "
 "applications."
 msgstr ""
+"古いアプリケーションとの後方互換性のために提供され続けている、古いバージョン"
+"のライブラリ。"
 
 #: lib/Packages/Sections.pm:56
 msgid "Other OS's and file systems"
-msgstr ""
+msgstr "異なるオペレーティングシステムやファイルシステムのもの"
 
 #: lib/Packages/Sections.pm:57
 msgid ""
 "Software to run programs compiled for other operating system, and to use "
 "their filesystems."
 msgstr ""
+"異なるオペレーティングシステム用にコンパイルされたプログラムを実行するための"
+"ソフトウェアや、他のオペレーティングシステムのファイルシステムを使用するため"
+"のソフトウェア。"
 
 #: lib/Packages/Sections.pm:58
 msgid "Perl"
-msgstr ""
+msgstr "Perl"
 
 #: lib/Packages/Sections.pm:59
 msgid "Everything about Perl, an interpreted scripting language."
-msgstr ""
+msgstr "インタプリタ式スクリプト言語 Perl に関するあらゆるもの。"
 
 #: lib/Packages/Sections.pm:60
 msgid "Python"
-msgstr ""
+msgstr "Python"
 
 #: lib/Packages/Sections.pm:61
 msgid ""
 "Everything about Python, an interpreted, interactive object oriented "
 "language."
-msgstr ""
+msgstr "インタプリタ式対話的オブジェクト指向言語 Python に関するあらゆるもの。"
 
 #: lib/Packages/Sections.pm:62
 msgid "Science"
-msgstr ""
+msgstr "科学"
 
 #: lib/Packages/Sections.pm:63
 msgid "Basic tools for scientific work"
-msgstr ""
+msgstr "科学研究用の基本ツール。"
 
 #: lib/Packages/Sections.pm:64
 msgid "Shells"
-msgstr ""
+msgstr "シェル"
 
 #: lib/Packages/Sections.pm:65
 msgid "Command shells. Friendly user interfaces for beginners."
-msgstr ""
+msgstr "コマンドシェル。初心者に親切なユーザインタフェース。"
 
 #: lib/Packages/Sections.pm:66
 msgid "Sound"
-msgstr ""
+msgstr "サウンド"
 
 #: lib/Packages/Sections.pm:67
 msgid ""
 "Utilities to deal with sound: mixers, players, recorders, CD players, etc."
 msgstr ""
+"音声を扱うユーティリティ: ミキサー・再生ソフト・録音ソフト・CD プレーヤーな"
+"ど。"
 
 #: lib/Packages/Sections.pm:68
 msgid "TeX"
-msgstr ""
+msgstr "TeX"
 
 #: lib/Packages/Sections.pm:69
 msgid "The famous typesetting software and related programs."
-msgstr ""
+msgstr "有名な組版ソフトウェアと関連プログラム。"
 
 #: lib/Packages/Sections.pm:70
 msgid "Text Processing"
-msgstr ""
+msgstr "テキスト処理"
 
 #: lib/Packages/Sections.pm:71
 msgid "Utilities to format and print text documents."
-msgstr ""
+msgstr "テキスト文書の整形・印刷用のユーティリティ。"
 
 #: lib/Packages/Sections.pm:72
 msgid "Translations"
-msgstr ""
+msgstr "翻訳"
 
 #: lib/Packages/Sections.pm:73
 msgid "Translation packages and language support meta packages."
-msgstr ""
+msgstr "翻訳パッケージと各言語サポート用メタパッケージ。"
 
 #: lib/Packages/Sections.pm:74
 msgid "Utilities"
-msgstr ""
+msgstr "ユーティリティ"
 
 #: lib/Packages/Sections.pm:75
 msgid ""
 "Utilities for file/disk manipulation, backup and archive tools, system "
 "monitoring, input systems, etc."
 msgstr ""
+"ファイルやディスクの操作用のユーティリティ、バックアップやアーカイブのための"
+"ツール、システム監視ツール、入力システムなど。"
 
 #: lib/Packages/Sections.pm:76
 msgid "Virtual packages"
-msgstr ""
+msgstr "仮想パッケージ"
 
 #: lib/Packages/Sections.pm:77
 msgid "Virtual packages."
-msgstr ""
+msgstr "仮想的な (実体のない) パッケージ。"
 
 #: lib/Packages/Sections.pm:78
 msgid "Web Software"
-msgstr ""
+msgstr "ウェブソフトウェア"
 
 #: lib/Packages/Sections.pm:79
 msgid "Web servers, browsers, proxies, download tools etc."
-msgstr ""
+msgstr "ウェブサーバ・ブラウザ・プロキシ・ダウンロードツールなど。"
 
 #: lib/Packages/Sections.pm:80
 msgid "X Window System software"
-msgstr ""
+msgstr "X ウィンドウシステムのソフトウェア"
 
 #: lib/Packages/Sections.pm:81
 msgid ""
 "X servers, libraries, fonts, window managers, terminal emulators and many "
 "related applications."
 msgstr ""
+"X サーバやライブラリ、フォント、ウィンドウマネージャ、ターミナルエミュレー"
+"タ、その他多くの関連アプリケーション。"
 
 #: lib/Packages/Sections.pm:82
 msgid "debian-installer udeb packages"
-msgstr ""
+msgstr "debian-installer 用 udeb パッケージ"
 
 #: lib/Packages/Sections.pm:83
 msgid ""
 "Special packages for building customized debian-installer variants. Do not "
 "install them on a normal system!"
 msgstr ""
+"カスタム版 debian-installer をビルドするための特殊パッケージ。通常のシステム"
+"にはインストールしないでください!"
diff --git a/po/templates.de.po b/po/templates.de.po
index 5265b98..8ef3b10 100644
--- a/po/templates.de.po
+++ b/po/templates.de.po
@@ -3,95 +3,98 @@ msgstr ""
 "Project-Id-Version: packages.git c82c758c8\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-10-13 19:05+0200\n"
-"PO-Revision-Date: 2007-10-13 21:25+0200\n"
-"Last-Translator: Frank Lichtenheld \n"
+"PO-Revision-Date: 2007-10-21 17:36+0200\n"
+"Last-Translator: Helge Kreutzmann \n"
 "Language-Team: debian-l10n-german \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: templates/config.tmpl:37
+#: templates/config.tmpl:40
 msgid "Debian Web Mailinglist"
 msgstr "Debian Webseiten-Mailingliste"
 
-#: templates/config.tmpl:42
+#: templates/config.tmpl:45
 msgid "%s Webmaster"
 msgstr "%s-Webmaster"
 
-#: templates/config.tmpl:45
+#: templates/config.tmpl:48
 msgid "%s is a trademark of %s"
 msgstr "%s ist ein eingetragenes Warenzeichen von %s"
 
-#: templates/config.tmpl:50
+#: templates/config.tmpl:53
 msgid ""
 "Please note that this is an experimental version of packages.debian.org. Errors and obsolete "
 "information should be expected"
 msgstr ""
+"Bitte beachten Sie, dass es sich bei dieser Seite um eine experimentelle "
+"Version von packages.debian.org "
+"handelt. Mit Fehlern und veralteten Informationen muss gerechnet werden"
 
 #: templates/config/architectures.tmpl:4
 msgid "Intel x86"
-msgstr ""
+msgstr "Intel x86"
 
 #: templates/config/architectures.tmpl:5
 msgid "Motorola 680x0"
-msgstr ""
+msgstr "Motorola 680x0"
 
 #: templates/config/architectures.tmpl:6
 msgid "SPARC"
-msgstr ""
+msgstr "SPARC"
 
 #: templates/config/architectures.tmpl:7
 msgid "Alpha"
-msgstr ""
+msgstr "Alpha"
 
 #: templates/config/architectures.tmpl:8
 msgid "PowerPC"
-msgstr ""
+msgstr "PowerPC"
 
 #: templates/config/architectures.tmpl:9
 msgid "ARM"
-msgstr ""
+msgstr "ARM"
 
 #: templates/config/architectures.tmpl:10
 msgid "HP PA-RISC"
-msgstr ""
+msgstr "HP PA-RISC"
 
 #: templates/config/architectures.tmpl:11
 msgid "Intel IA-64"
-msgstr ""
+msgstr "Intel IA-64"
 
 #: templates/config/architectures.tmpl:12
 msgid "MIPS (big-endian)"
-msgstr ""
+msgstr "MIPS (big-endian)"
 
 #: templates/config/architectures.tmpl:13
 msgid "MIPS (little-endian)"
-msgstr ""
+msgstr "MIPS (little-endian)"
 
 #: templates/config/architectures.tmpl:14
 msgid "IBM S/390"
-msgstr ""
+msgstr "IBM S/390"
 
 #: templates/config/architectures.tmpl:15
 msgid "Hurd (i386)"
-msgstr ""
+msgstr "Hurd (i386)"
 
 #: templates/config/architectures.tmpl:16
 msgid "AMD64"
-msgstr ""
+msgstr "AMD64"
 
 #: templates/config/architectures.tmpl:17
 msgid "EABI ARM"
-msgstr ""
+msgstr "EABI ARM"
 
 #: templates/config/architectures.tmpl:18
 msgid "GNU/kFreeBSD (i386)"
-msgstr ""
+msgstr "GNU/kFreeBSD (i386)"
 
 #: templates/config/architectures.tmpl:19
 msgid "GNU/kFreeBSD (amd64)"
-msgstr ""
+msgstr "GNU/kFreeBSD (amd64)"
 
 #: templates/config/mirrors.tmpl:182
 msgid "North America"
@@ -148,130 +151,135 @@ msgstr "Download-Seite für %s für %s Rechner"
 msgid "Download Page for %s"
 msgstr "Download-Seite für %s"
 
-#: templates/html/download.tmpl:26
+#: templates/html/download.tmpl:23
 msgid ""
-"If you are running %s, it is strongly suggested to use a\n"
-"package manager like aptitude or\n"
-"synaptic to download and install\n"
-"packages, instead of doing so manually via this website."
+"If you are running %s, it is strongly suggested to use a package manager "
+"like aptitude or synaptic to download "
+"and install packages, instead of doing so manually via this website."
 msgstr ""
+"Falls Sie %s auf Ihrem Rechner einsetzen, wird empfohlen, einen Paket-"
+"Manager wie Aptitude oder Synaptic zum "
+"Herunterladen und Installieren von Paketen zu benutzen und nicht diese "
+"Website."
 
-#: templates/html/download.tmpl:32
+#: templates/html/download.tmpl:25
 msgid ""
-"You should be able to use any of the listed mirrors by adding a\n"
-"line to your /etc/apt/sources.list like this:"
+"You should be able to use any of the listed mirrors by adding a line to your "
+"/etc/apt/sources.list like this:"
 msgstr ""
+"Sie können jeden der aufgeführten Spiegel-Server benutzen, indem Sie eine "
+"Zeile der folgenden Art zu Ihrer /etc/apt/sources.list hinzufügen:"
 
-#: templates/html/download.tmpl:38
+#: templates/html/download.tmpl:30
 msgid "Replacing %s with the mirror in question."
-msgstr ""
+msgstr "Ersetzen Sie dabei %s mit dem gewünschten Spiegel-Server."
 
-#: templates/html/download.tmpl:45 templates/html/show.tmpl:145
+#: templates/html/download.tmpl:37 templates/html/show.tmpl:145
 msgid "Experimental package"
 msgstr "Experimentelles Paket"
 
-#: templates/html/download.tmpl:49
+#: templates/html/download.tmpl:38
 msgid ""
 "Warning: This package is from the experimental "
-"distribution.\n"
-"That means it is likely unstable or buggy, and it may even cause data loss.\n"
-"Please be sure to consult the changelog and other possible documentation "
-"before\n"
-"using it."
+"distribution. That means it is likely unstable or buggy, and it may even "
+"cause data loss. Please be sure to consult the changelog and other possible "
+"documentation before using it."
 msgstr ""
-"Warnung: Dieses Paket ist aus der experimental-"
-"Distribution.\n"
+"Warnung: Dieses Paket ist aus der Experimental-Distribution."
 "Dies bedeutet, dass es höchstwahrscheinlich instabil oder fehlerhaft ist und "
-"sogar Datenverlust verursachen kann. Bitte lesen Sie das Changelog und "
+"sogar Datenverlust verursachen kann. Bitte lesen Sie den Changelog und "
 "andere möglicherweise verfügbare Dokumentation, bevor Sie es benutzen."
 
-#: templates/html/download.tmpl:55 templates/html/show.tmpl:155
+#: templates/html/download.tmpl:41 templates/html/show.tmpl:150
 msgid "debian-installer udeb package"
-msgstr "debian-installer udeb-Paket"
+msgstr "Debian-Installer udeb-Paket"
 
-#: templates/html/download.tmpl:58 templates/html/show.tmpl:158
+#: templates/html/download.tmpl:42 templates/html/show.tmpl:151
 msgid ""
-"Warning: This package is intended for the use in building\n"
-"debian-installer images only.\n"
-"Do not install it on a normal %s system."
+"Warning: This package is intended for the use in building debian-installer images only. Do "
+"not install it on a normal %s system."
 msgstr ""
 "Warnung: Dieses Paket ist nur dazu gedacht, um debian-installer-Images zu erzeugen. "
 "Installieren Sie es nicht auf einem normalen %s-System."
 
-#: templates/html/download.tmpl:67
+#: templates/html/download.tmpl:49
 msgid ""
 "You can download the requested file from the %s subdirectory at any "
 "of these sites:"
 msgstr ""
 "Sie können die angeforderte Datei aus dem %s-Unterverzeichnis auf "
-"jeder dieser Seiten herunterladen:"
+"jeder dieser Sites herunterladen:"
 
-#: templates/html/download.tmpl:93
+#: templates/html/download.tmpl:75
 msgid ""
 "You can download the requested file from the %s subdirectory at:"
 msgstr ""
 "Sie können die angeforderte Datei aus dem %s-Unterverzeichnis "
 "herunterladen:"
 
-#: templates/html/download.tmpl:95
-msgid ""
-"Debian security updates are currently officially distributed only via "
-"security.debian.org."
+#: templates/html/download.tmpl:77
+msgid "%s security updates are officially distributed only via %s."
 msgstr ""
-"Debian-Sicherheitsaktualisierungen werden derzeit offiziell nur über "
-"security.debian.org verbreitet."
+"%s-Sicherheitsaktualisierungen werden offiziell nur über %s "
+"verbreitet."
 
-#: templates/html/download.tmpl:102
+#: templates/html/download.tmpl:84
 msgid ""
-"If none of the above sites are fast enough for you,\n"
-"please see our complete mirror list."
+"If none of the above sites are fast enough for you, please see our complete mirror list."
 msgstr ""
-"Wenn keine der genannten Seiten schnell genug für Sie ist,\n"
-"beachten Sie bitte auch unsere komplette Mirrorliste."
+"Falls keine der genannten Seiten schnell genug für Sie ist, beachten Sie "
+"bitte auch unsere komplette Spiegelliste."
 
-#: templates/html/download.tmpl:113
+#: templates/html/download.tmpl:92
 msgid ""
-"Note that %s is not officially included in the %s archive yet,\n"
-"but the %s porter group keeps their archive in sync with the official "
-"archive as close as possible.\n"
-"See the %s ports page for current information."
+"Note that %s is not officially included in the %s archive yet, but the %s "
+"porter group keeps their archive in sync with the official archive as close "
+"as possible. See the %s ports page for current "
+"information."
 msgstr ""
+"Beachten Sie, dass %s noch nicht offiziell im %s-Archiv ist, aber die "
+"Portierungsgruppe %s hält ihr Archiv mit dem offiziellen Archiv so eng wie "
+"möglich synchron. Lesen Sie die Portierungsseiten von %s  "
+"für aktuelle Informationen."
 
-#: templates/html/download.tmpl:120
+#: templates/html/download.tmpl:96
 msgid ""
 "Note that in some browsers you will need to tell your browser you want the "
-"file saved to a file.\n"
-"For example, in Firefox or Mozilla, you should hold the Shift key when you "
-"click on the URL."
+"file saved to a file. For example, in Firefox or Mozilla, you should hold "
+"the Shift key when you click on the URL."
 msgstr ""
+"Beachten Sie, dass Sie bei einigen Browsern angeben müssen, dass die Datei "
+"als Datei gespeichert werden soll. Bei Firefox oder Mozilla sollten Sie die "
+"Umschalttaste halten, wenn Sie auf eine URL klicken."
 
-#: templates/html/download.tmpl:125
+#: templates/html/download.tmpl:100
 msgid "More information on %s:"
 msgstr "Weitere Informationen über %s:"
 
-#: templates/html/download.tmpl:127
+#: templates/html/download.tmpl:102
 msgid "%s Byte (%s %s)"
 msgstr "%s Byte (%s %s)"
 
-#: templates/html/download.tmpl:127
+#: templates/html/download.tmpl:102
 msgid "Exact Size"
 msgstr "Genaue Größe"
 
-#: templates/html/download.tmpl:128 templates/html/show.tmpl:322
+#: templates/html/download.tmpl:103 templates/html/show.tmpl:320
 msgid "MD5 checksum"
 msgstr "MD5-Prüfsumme"
 
-#: templates/html/download.tmpl:129 templates/html/download.tmpl:130
+#: templates/html/download.tmpl:104 templates/html/download.tmpl:105
 msgid "Not Available"
 msgstr "Nicht verfügbar"
 
-#: templates/html/download.tmpl:129
+#: templates/html/download.tmpl:104
 msgid "SHA1 checksum"
 msgstr "SHA1-Prüfsumme"
 
-#: templates/html/download.tmpl:130
+#: templates/html/download.tmpl:105
 msgid "SHA256 checksum"
 msgstr "SHA256-Prüfsumme"
 
@@ -294,23 +302,23 @@ msgstr "Liste der Dateien"
 msgid "This page is also available in the following languages:"
 msgstr "Diese Seite gibt es auch in den folgenden Sprachen:"
 
-#: templates/html/foot.tmpl:18
+#: templates/html/foot.tmpl:22
 msgid "How to set the default document language"
 msgstr "Wie stellt man die Standardsprache ein"
 
-#: templates/html/foot.tmpl:23 templates/html/head.tmpl:64
+#: templates/html/foot.tmpl:27 templates/html/head.tmpl:64
 msgid "%s Homepage"
 msgstr "%s Homepage"
 
-#: templates/html/foot.tmpl:23
+#: templates/html/foot.tmpl:27
 msgid "Back to:"
 msgstr "Zurück zu:"
 
-#: templates/html/foot.tmpl:23
+#: templates/html/foot.tmpl:27
 msgid "Packages search page"
 msgstr "Paket-Suchseite"
 
-#: templates/html/foot.tmpl:27
+#: templates/html/foot.tmpl:31
 msgid ""
 "To report a problem with the web site, e-mail %s. "
 "For other contact information, see the %s contact page."
@@ -320,19 +328,19 @@ msgstr ""
 "Kontaktinformationen sollten Sie auf die %s-Kontakt-Seite "
 "schauen."
 
-#: templates/html/foot.tmpl:29 templates/txt/index.tmpl:4
+#: templates/html/foot.tmpl:33 templates/txt/index.tmpl:4
 msgid "Generated:"
 msgstr "Erzeugt:"
 
-#: templates/html/foot.tmpl:31
+#: templates/html/foot.tmpl:35
 msgid ""
 "Content Copyright © %s %s; See license terms."
 msgstr ""
-"Copyright © %s %s; %s; Lizenzbestimmungen."
 
-#: templates/html/foot.tmpl:35
+#: templates/html/foot.tmpl:39
 msgid "Learn more about this site"
 msgstr "Mehr Informationen über diese Seite"
 
@@ -368,8 +376,8 @@ msgstr "Überspringen der Navigation"
 msgid "%s Packages Homepage"
 msgstr "%s-Pakete Homepage"
 
-#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:102
-#: templates/html/search_contents.tmpl:126
+#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:100
+#: templates/html/search_contents.tmpl:124
 msgid "Packages"
 msgstr "Pakete"
 
@@ -398,7 +406,7 @@ msgstr "Alle Pakete"
 msgid "Source"
 msgstr "Quellcode"
 
-#: templates/html/index.tmpl:38 templates/html/show.tmpl:250
+#: templates/html/index.tmpl:38 templates/html/show.tmpl:247
 #: templates/txt/index.tmpl:15
 msgid "virtual package provided by"
 msgstr "virtuelles Paket, bereitgestellt durch"
@@ -445,7 +453,7 @@ msgstr ""
 
 #: templates/html/newpkg.tmpl:23
 msgid "[RSS 1.0 Feed]"
-msgstr ""
+msgstr "[RSS 1.0 Feed]"
 
 #: templates/html/newpkg.tmpl:28
 msgid " (%u days old)"
@@ -476,25 +484,28 @@ msgid "Package Search Results"
 msgstr "Debian-Paketsuche: Ergebnisse"
 
 #: templates/html/search.tmpl:33
-#, fuzzy
 msgid ""
 "You can try a different search on the Packages search page."
 msgstr ""
-"Zurück zur: Debian-Projekt-Homepage || Paketsuche"
+"Sie können auf Paketsuchseite eine andere "
+"Suche durchführen."
 
 #: templates/html/search.tmpl:37
 msgid ""
 "You have searched only for words exactly matching your keywords. You can try "
-"to search allowing subword matching."
+"to search allowing subword matching."
 msgstr ""
+"Sie haben nur nach Wörtern gesucht, die exakt auf die Schlüsselwörter "
+"passen. Sie können eine Teilwortsuche ausprobieren."
 
 #: templates/html/search.tmpl:42
 msgid ""
 "%u results have not been displayed due to the search "
 "parameters."
 msgstr ""
+"%u Ergebnisse wurden aufgrund der Suchparameter nicht "
+"angezeigt."
 
 #: templates/html/search.tmpl:52
 msgid "all suites"
@@ -537,7 +548,7 @@ msgstr ""
 
 #: templates/html/search.tmpl:60
 msgid " (including subword matching)"
-msgstr ""
+msgstr " (enthält Teilwortabgleich)"
 
 #: templates/html/search.tmpl:61
 msgid ""
@@ -551,50 +562,61 @@ msgstr ""
 msgid "Found %u matching packages."
 msgstr "%u Pakete gefunden."
 
-#: templates/html/search.tmpl:74
+#: templates/html/search.tmpl:72
 msgid ""
-"Note that this only shows the best matches, sorted by relevance.\n"
-"If the first few packages don't match what you searched for, try using more "
-"keywords or alternative\n"
-"keywords."
+"Note that this only shows the best matches, sorted by relevance. If the "
+"first few packages don't match what you searched for, try using more "
+"keywords or alternative keywords."
 msgstr ""
+"Beachten Sie, dass nur die besten Treffer angezeigt werden, sortiert nach "
+"Relevanz. Falls die ersten paar Pakete nicht auf Ihre Suche passen, "
+"versuchen Sie, mehr oder andere Suchbegriffe zu verwenden."
 
-#: templates/html/search.tmpl:80
+#: templates/html/search.tmpl:74
 msgid ""
-"Your search was too wide so we will only display exact matches.\n"
-"At least %u results have been omitted and will not be displayed.\n"
-"Please consider using a longer keyword or more keywords."
+"Your search was too wide so we will only display exact matches. At least "
+"%u results have been omitted and will not be displayed. Please consider "
+"using a longer keyword or more keywords."
 msgstr ""
+"Ihre Suche ergab zu viele Ergebnisse, nur exakte Treffer werden angezeigt. "
+"Mindestens %u weitere Treffer werden nicht angezeigt. Bitte "
+"benutzen Sie längere oder mehr Suchbegriffe."
 
-#: templates/html/search.tmpl:86 templates/html/search_contents.tmpl:133
+#: templates/html/search.tmpl:79 templates/html/search_contents.tmpl:131
 msgid "Sorry, your search gave no results"
-msgstr ""
+msgstr "Leider ergab Ihre Suche kein Ergebnis"
 
-#: templates/html/search.tmpl:93
+#: templates/html/search.tmpl:86
 msgid "Package %s"
 msgstr "Paket %s"
 
-#: templates/html/search.tmpl:103
+#: templates/html/search.tmpl:96
+msgid "also provided by:"
+msgstr "auch bereitgestellt durch:"
+
+#: templates/html/search.tmpl:96
 msgid "provided by:"
 msgstr "bereitgestellt durch:"
 
-#: templates/html/search.tmpl:111
+#: templates/html/search.tmpl:105
 msgid "Source Package %s"
 msgstr "Quellcode-Paket %s"
 
-#: templates/html/search.tmpl:119
+#: templates/html/search.tmpl:113
 msgid "Binary packages:"
 msgstr "Binär-Pakete:"
 
-#: templates/html/search.tmpl:121
+#: templates/html/search.tmpl:115
 msgid "%u binary packages"
 msgstr "%u binäre Pakete"
 
-#: templates/html/search.tmpl:131
+#: templates/html/search.tmpl:125
 msgid ""
 "%u results have not been displayed because you requested "
 "only exact matches."
 msgstr ""
+"%u Ergebnisse wurde nicht angezeigt, das Sie nur exakte "
+"Treffer verlangt haben."
 
 #: templates/html/search_contents.tmpl:14
 msgid "Package Contents Search Results -- %s"
@@ -606,81 +628,79 @@ msgstr "Debian-Inhalts-Paketsuche: Ergebnisse"
 
 #: templates/html/search_contents.tmpl:34
 msgid "Search for %s within filenames"
-msgstr ""
+msgstr "Suche nach %s in Dateinamen"
 
 #: templates/html/search_contents.tmpl:39
 msgid "Search exact filename %s"
-msgstr ""
+msgstr "Suche exakten Dateinamen %s"
 
 #: templates/html/search_contents.tmpl:44
 msgid "Search for paths ending with %s"
-msgstr ""
+msgstr "Suche nach Pfaden, die auf %s enden"
 
 #: templates/html/search_contents.tmpl:48
 msgid "Search in other suite:"
-msgstr ""
+msgstr "Suche in anderer Suite:"
 
 #: templates/html/search_contents.tmpl:58
 msgid "Limit search to a specific architecture:"
-msgstr ""
+msgstr "Schränke Suche auf bestimmte Architekturen ein:"
 
 #: templates/html/search_contents.tmpl:63
-#, fuzzy
-#| msgid "Search for other versions of %s"
 msgid "Search in all architectures"
-msgstr "Suchen Sie andere Versionen von %s"
+msgstr "Suche in allen Architekturen"
 
 #: templates/html/search_contents.tmpl:73
 msgid "section(s) %s"
-msgstr ""
+msgstr "Abschnitt(e) %s"
 
 #: templates/html/search_contents.tmpl:74
 msgid "architecture(s) %s"
-msgstr ""
+msgstr "Architektur(en) %s"
 
 #: templates/html/search_contents.tmpl:75
 msgid "paths that end with"
-msgstr ""
+msgstr "Pfade die wie folgt enden: "
 
 #: templates/html/search_contents.tmpl:77
 msgid "files named"
-msgstr ""
+msgstr "Dateien mit Namen"
 
 #: templates/html/search_contents.tmpl:79
 msgid "filenames that contain"
-msgstr ""
+msgstr "Dateinamen, die folgendes enthalten: "
 
 #: templates/html/search_contents.tmpl:81
 msgid "You have searched for %s %s in suite %s, %s, and %s."
 msgstr ""
+"Sie haben nach %s %s in der Suite %s, %s, und %s gesucht."
 
 #: templates/html/search_contents.tmpl:85
 msgid "Found %u results."
-msgstr ""
+msgstr "%u Treffer."
 
-#: templates/html/search_contents.tmpl:89
+#: templates/html/search_contents.tmpl:88
 msgid ""
 "Note: Your search was too wide so we will only display only the first about "
-"100 matches.\n"
-"Please consider using a longer keyword or more keywords."
+"100 matches. Please consider using a longer keyword or more keywords."
 msgstr ""
+"Hinweis: Ihre Suche war zu breit, daher werden wir nur die ersten rund 100 "
+"Treffer anzeigen. Bitte verwenden Sie ein längeres oder mehr Schlüsselwörter."
 
-#: templates/html/search_contents.tmpl:99
+#: templates/html/search_contents.tmpl:97
 msgid "Sort results by filename"
-msgstr ""
+msgstr "Sortiere Ergebnisse nach Dateinamen"
 
-#: templates/html/search_contents.tmpl:100
-#: templates/html/search_contents.tmpl:126 templates/html/show.tmpl:322
+#: templates/html/search_contents.tmpl:98
+#: templates/html/search_contents.tmpl:124 templates/html/show.tmpl:320
 msgid "File"
 msgstr "Datei"
 
-#: templates/html/search_contents.tmpl:101
-#, fuzzy
-#| msgid "source package names"
+#: templates/html/search_contents.tmpl:99
 msgid "Sort results by package name"
-msgstr "Quellcodepaketnamen"
+msgstr "Sortiere Ergebnisse nach Paketnamen"
 
-#: templates/html/search_contents.tmpl:116
+#: templates/html/search_contents.tmpl:114
 msgid "not %s"
 msgstr "nicht %s"
 
@@ -694,22 +714,19 @@ msgstr "Alle Pakete in dieser Sektion"
 
 #: templates/html/show.tmpl:16
 msgid "Section:"
-msgstr "Sektion:"
+msgstr "Abschnitt:"
 
 #: templates/html/show.tmpl:21
-#, fuzzy
 msgid "Details of source package %s in %s"
-msgstr "Quellcode-Pakete in »%s«"
+msgstr "Informationen über Quellcode-Paket %s in %s"
 
 #: templates/html/show.tmpl:22
-#, fuzzy
 msgid "Details of package %s in %s"
-msgstr "Neue Pakete in %s"
+msgstr "Informationen über Paket %s in %s"
 
 #: templates/html/show.tmpl:45
-#, fuzzy
 msgid "Source package building this package"
-msgstr "Quellcodepaketnamen"
+msgstr "Quellcode-Paket, aus dem dieses Paket gebaut wird"
 
 #: templates/html/show.tmpl:45
 msgid "Source:"
@@ -729,7 +746,7 @@ msgstr "Paket: %s (%s)"
 
 #: templates/html/show.tmpl:60
 msgid "essential"
-msgstr "Essentiell"
+msgstr "Essenziell"
 
 #: templates/html/show.tmpl:64
 msgid "Links for %s"
@@ -737,7 +754,7 @@ msgstr "Links für %s"
 
 #: templates/html/show.tmpl:65
 msgid "Debian Resources:"
-msgstr ""
+msgstr "Debian-Ressourcen:"
 
 #: templates/html/show.tmpl:67
 msgid "Bug Reports"
@@ -757,11 +774,11 @@ msgstr "Copyright-Datei"
 
 #: templates/html/show.tmpl:81
 msgid "Debian Source Repository"
-msgstr ""
+msgstr "Debian Quellcode-Repository"
 
 #: templates/html/show.tmpl:95
 msgid "Download Source Package %s:"
-msgstr ""
+msgstr "Quellcode-Paket %s herunterladen:"
 
 #: templates/html/show.tmpl:102
 msgid "Not found"
@@ -776,20 +793,16 @@ msgid "Maintainers:"
 msgstr "Betreuer:"
 
 #: templates/html/show.tmpl:114
-#, fuzzy
-#| msgid "Overview over this suite"
 msgid "An overview over the maintainer's packages and uploads"
-msgstr "Übersicht über diese Suite"
+msgstr "Eine Übersicht über die Pakete und Uploads des Betreuers"
 
 #: templates/html/show.tmpl:114
-#, fuzzy
-#| msgid "All Packages"
 msgid "QA Page"
-msgstr "Alle Pakete"
+msgstr "QS-Seite"
 
 #: templates/html/show.tmpl:122
 msgid "External Resources:"
-msgstr ""
+msgstr "Externe Ressourcen:"
 
 #: templates/html/show.tmpl:124
 msgid "Homepage"
@@ -799,31 +812,20 @@ msgstr "Homepage"
 msgid "Similar packages:"
 msgstr "Ähnliche Pakete: "
 
-#: templates/html/show.tmpl:149
-#, fuzzy
-#| msgid ""
-#| "Warning: This package is from the experimental "
-#| "distribution.\n"
-#| "That means it is likely unstable or buggy, and it may even cause data "
-#| "loss.\n"
-#| "Please be sure to consult the changelog and other possible documentation "
-#| "before\n"
-#| "using it."
+#: templates/html/show.tmpl:146
 msgid ""
 "Warning: This package is from the experimental "
-"distribution.\n"
-"That means it is likely unstable or buggy, and it may even cause data loss.\n"
-"Please be sure to consult the changelog and other "
-"possible documentation before\n"
-"using it."
+"distribution. That means it is likely unstable or buggy, and it may even "
+"cause data loss. Please be sure to consult the changelog "
+"and other possible documentation before using it."
 msgstr ""
-"Warnung: Dieses Paket ist aus der experimental-"
-"Distribution.\n"
+"Warnung: Dieses Paket ist aus der Experimental-Distribution."
 "Dies bedeutet, dass es höchstwahrscheinlich instabil oder fehlerhaft ist und "
-"sogar Datenverlust verursachen kann. Bitte lesen Sie das Changelog und "
-"andere möglicherweise verfügbare Dokumentation, bevor Sie es benutzen."
+"sogar Datenverlust verursachen kann. Bitte lesen Sie das Changelog und andere möglicherweise verfügbare Dokumentation, bevor "
+"Sie es benutzen."
 
-#: templates/html/show.tmpl:177
+#: templates/html/show.tmpl:169
 msgid ""
 "This is a virtual package. See the Debian policy "
 "for a definition of virtual "
@@ -833,33 +835,63 @@ msgstr ""
 "\">Debian-Policy für eine Definition von virtuellen Paketen."
 
-#: templates/html/show.tmpl:185
+#: templates/html/show.tmpl:177
 msgid "Tags"
-msgstr ""
+msgstr "Markierungen"
 
-#: templates/html/show.tmpl:206
+#: templates/html/show.tmpl:200
 msgid "Packages providing %s"
 msgstr "Pakete, die %s bereitstellen"
 
-#: templates/html/show.tmpl:215
+#: templates/html/show.tmpl:209
 msgid "The following binary packages are built from this source package:"
 msgstr "Die folgenden Binärpakete werden aus diesem Quellcode-Paket gebaut:"
 
-#: templates/html/show.tmpl:224
+#: templates/html/show.tmpl:218
 msgid "Other Packages Related to %s"
 msgstr "Andere Pakete in Beziehung zu %s"
 
-#: templates/html/show.tmpl:254
-#, fuzzy
-#| msgid "Packages providing %s"
+#: templates/html/show.tmpl:220
+msgid "legend"
+msgstr "Legende"
+
+#: templates/html/show.tmpl:222
+msgid "build-depends"
+msgstr "build-depends"
+
+#: templates/html/show.tmpl:223
+msgid "build-depends-indep"
+msgstr "build-depends-indep"
+
+#: templates/html/show.tmpl:225
+msgid "depends"
+msgstr "hängt ab von"
+
+#: templates/html/show.tmpl:226
+msgid "recommends"
+msgstr "empfiehlt"
+
+#: templates/html/show.tmpl:227
+msgid "suggests"
+msgstr "schlägt vor"
+
+#: templates/html/show.tmpl:237
+msgid "or "
+msgstr "oder "
+
+#: templates/html/show.tmpl:245
+msgid "also a virtual package provided by"
+msgstr "Auch ein virtuelles Paket, bereitgestellt durch"
+
+#: templates/html/show.tmpl:252
 msgid "%u providing packages"
-msgstr "Pakete, die %s bereitstellen"
+msgstr "%u bereitstellende Pakete"
 
-#: templates/html/show.tmpl:272
+#: templates/html/show.tmpl:270
 msgid "Download %s"
 msgstr "%s herunterladen"
 
-#: templates/html/show.tmpl:274
+#: templates/html/show.tmpl:272
 msgid ""
 "The download table links to the download of the package and a file overview. "
 "In addition it gives information about the package size and the installed "
@@ -869,69 +901,69 @@ msgstr ""
 "Dateiliste. Zusätzlich enthält sie Informationen zur Größe der Paketdatei "
 "und der Größe im installierten Zustand."
 
-#: templates/html/show.tmpl:275
+#: templates/html/show.tmpl:273
 msgid "Download for all available architectures"
 msgstr "Download für alle verfügbaren Architekturen"
 
-#: templates/html/show.tmpl:276
+#: templates/html/show.tmpl:274
 msgid "Architecture"
 msgstr "Architektur"
 
-#: templates/html/show.tmpl:277
+#: templates/html/show.tmpl:275
 msgid "Version"
 msgstr "Version"
 
-#: templates/html/show.tmpl:278
+#: templates/html/show.tmpl:276
 msgid "Package Size"
 msgstr "Paketgröße"
 
-#: templates/html/show.tmpl:279
+#: templates/html/show.tmpl:277
 msgid "Installed Size"
 msgstr "Größe (installiert)"
 
-#: templates/html/show.tmpl:280
+#: templates/html/show.tmpl:278
 msgid "Files"
 msgstr "Dateien"
 
-#: templates/html/show.tmpl:288
+#: templates/html/show.tmpl:286
 msgid "(unofficial port)"
-msgstr ""
+msgstr "(inoffizielle Portierung)"
 
-#: templates/html/show.tmpl:299 templates/html/show.tmpl:327
+#: templates/html/show.tmpl:297 templates/html/show.tmpl:325
 msgid "%.1f kB"
 msgstr "%.1f kB"
 
-#: templates/html/show.tmpl:299
+#: templates/html/show.tmpl:297
 msgid "%u kB"
 msgstr "%u kB"
 
-#: templates/html/show.tmpl:302
+#: templates/html/show.tmpl:300
 msgid "list of files"
 msgstr "Liste der Dateien"
 
-#: templates/html/show.tmpl:304
+#: templates/html/show.tmpl:302
 msgid "no current information"
 msgstr "keine aktuellen Informationen"
 
-#: templates/html/show.tmpl:321
+#: templates/html/show.tmpl:319
 msgid "Download information for the files of this source package"
-msgstr ""
+msgstr "Download-Informationen für die Dateien dieses Quellcode-Pakets"
 
-#: templates/html/show.tmpl:322
+#: templates/html/show.tmpl:320
 msgid "Size (in kB)"
 msgstr "Größe (in kB)"
 
-#: templates/html/show.tmpl:340
+#: templates/html/show.tmpl:338
 msgid ""
 "Debian Package Source Repository (VCS: %s)"
 msgstr ""
+"Quellcode-Repository des Debian-Pakets (VCS: %s)"
 
-#: templates/html/show.tmpl:344
-#, fuzzy
-#| msgid "Debian Package Search Results"
+#: templates/html/show.tmpl:342
 msgid "Debian Package Source Repository (Browsable)"
-msgstr "Debian-Paketsuche: Ergebnisse"
+msgstr "Quellcode-Repository des Debian-Pakets (Browsable)"
 
 #: templates/html/suite_index.tmpl:3
 msgid "Index"
@@ -950,49 +982,40 @@ msgid "All source packages"
 msgstr "Alle Quellcode-Pakete"
 
 #: templates/html/tag_index.tmpl:2 templates/html/tag_index.tmpl:7
-#, fuzzy
 msgid "Overview of available Debian Package Tags"
-msgstr "Debian-Paketsuche: Ergebnisse"
+msgstr "Überblick über die verfügbaren Debian-Paket-Markierungen"
 
 #: templates/html/tag_index.tmpl:4
 msgid "About"
-msgstr ""
+msgstr "Über"
 
 #: templates/html/tag_index.tmpl:5
 msgid "Debtags"
 msgstr "Debtags"
 
 #: templates/html/tag_index.tmpl:10
-#, fuzzy
-#| msgid "Packages"
 msgid "Facet: %s"
-msgstr "Pakete"
+msgstr ""
 
 #: templates/rss/newpkg.tmpl:16
 msgid "New %s Packages"
 msgstr "Neue %s Pakete"
 
 #: templates/rss/newpkg.tmpl:20
-#, fuzzy
-#| msgid ""
-#| "Packages that were added to the unstable Debian archive during the last 7 "
-#| "days."
 msgid ""
-"Packages that were added to the %s %s archive (section \"%s\") during the "
-"last 7 days."
+"The following packages were added to suite %s (section %s) in the %s archive "
+"during the last 7 days."
 msgstr ""
-"Pakete, die dem unstable Debian-Archiv während der letzten 7 Tage "
-"hinzugefügt wurden."
+"Die folgenden Pakete wurden der Suite %s (Abschnitt %s) im %s-Archiv während "
+"der letzten 7 Tage hinzugefügt."
 
 #: templates/rss/newpkg.tmpl:23
-#, fuzzy
-#| msgid ""
-#| "Packages that were added to the unstable Debian archive during the last 7 "
-#| "days."
-msgid "Packages that were added to the %s %s archive during the last 7 days."
+msgid ""
+"The following packages were added to suite %s in the %s archive during the "
+"last 7 days."
 msgstr ""
-"Pakete, die dem unstable Debian-Archiv während der letzten 7 Tage "
-"hinzugefügt wurden."
+"Die folgenden Pakete wurden der Suite %s im %s-Archiv während der letzten 7 "
+"Tage hinzugefügt."
 
 #: templates/rss/newpkg.tmpl:28 templates/txt/index.tmpl:5
 msgid "Copyright ©"
@@ -1005,240 +1028,3 @@ msgstr "Alle %s-Pakete in »%s«"
 #: templates/txt/index.tmpl:6
 msgid "See  for the license terms."
 msgstr "Siehe  für die Lizenz-Bestimmungen."
-
-#, fuzzy
-#~| msgid "Copyright ©"
-#~ msgid "Copyright"
-#~ msgstr "Copyright ©"
-
-#, fuzzy
-#~ msgid "No such package in this suite on this architecture."
-#~ msgstr "Keine Pakete in dieser Sektion in dieser Suite"
-
-#~ msgid "Other hits"
-#~ msgstr "Andere Treffer"
-
-#~ msgid "Virtual package"
-#~ msgstr "Virtuelles Paket"
-
-#~ msgid "No such package."
-#~ msgstr "Kein passendes Paket gefunden."
-
-#~ msgid "Package not available in this suite."
-#~ msgstr "Paket in dieser Suite nicht verfügbar"
-
-#~ msgid "Package not available"
-#~ msgstr "Paket nicht verfügbar"
-
-#, fuzzy
-#~ msgid ""
-#~ "Note that the experimental distribution is not self-"
-#~ "contained; missing dependencies are likely found in the unstable distribution."
-#~ msgstr ""
-#~ "Beachten Sie, dass die »experimental«-"
-#~ "Distribution nicht abgeschlossen ist; fehlende Abhängigkeiten werden mit "
-#~ "großer Wahrscheinlichkeit in der »unstable«-Distribution gefunden."
-
-#~ msgid "Versions:"
-#~ msgstr "Versionen:"
-
-#, fuzzy
-#~ msgid ""
-#~ "Note that the \"experimental\" distribution "
-#~ "is not self-contained; missing dependencies are likely found in the \"unstable\" distribution."
-#~ msgstr ""
-#~ "Beachten Sie, dass die »experimental«-"
-#~ "Distribution nicht abgeschlossen ist; fehlende Abhängigkeiten werden mit "
-#~ "großer Wahrscheinlichkeit in der »unstable«-Distribution gefunden."
-
-#~ msgid ""
-#~ "Warning: This package is from the experimental distribution. That means it is likely unstable or buggy, and it may "
-#~ "even cause data loss. If you ignore this warning and install it "
-#~ "nevertheless, you do it on your own risk."
-#~ msgstr ""
-#~ "Warnung: Dieses Paket ist aus der experimental-Distribution. Dies bedeutet, dass es höchstwahrscheinlich instabil "
-#~ "oder fehlerhaft ist und sogar Datenverlust verursachen kann. Wenn Sie "
-#~ "diese Warnung ignorieren und es dennoch installieren, so tun Sie dies auf "
-#~ "eigenes Risiko."
-
-#~ msgid ""
-#~ "Users of experimental packages are encouraged to contact the package "
-#~ "maintainers directly in case of problems."
-#~ msgstr ""
-#~ "Benutzer von experimentellen Paketen sollten direkt den Paketbetreuer im "
-#~ "Falle von Problemen kontaktieren."
-
-#~ msgid "Size:"
-#~ msgstr "Größe:"
-
-#~ msgid ""
-#~ "Warning: The experimental distribution "
-#~ "contains software that is likely unstable or buggy and may even cause "
-#~ "data loss. If you ignore this warning and install it nevertheless, you do "
-#~ "it on your own risk."
-#~ msgstr ""
-#~ "Warnung: Die experimental-Distribution "
-#~ "enthält Software die höchstwahrscheinlich instabil oder fehlerhaft ist "
-#~ "und sogar Datenverlust verursachen kann. Wenn Sie diese Warnung "
-#~ "ignorieren und es dennoch installieren, so tun Sie dies auf eigenes "
-#~ "Risiko."
-
-#~ msgid "Size is measured in kBytes."
-#~ msgstr "Die Größe wird in kBytes angegeben."
-
-#~ msgid "Section"
-#~ msgstr "Sektion"
-
-#~ msgid "Priority"
-#~ msgstr "Priorität"
-
-#~ msgid "yes"
-#~ msgstr "ja"
-
-#~ msgid ""
-#~ "Warning: These packages are intended for the use in building debian-installer "
-#~ "images only. Do not install them on a normal Debian system."
-#~ msgstr ""
-#~ "Warnung: Diese Pakete sind nur dazu gedacht, um debian-installer-Images zu "
-#~ "erzeugen. Installieren Sie sie nicht auf einem normalen Debian-System."
-
-#~ msgid "No packages with this priority in this suite"
-#~ msgstr "Keine Pakete mit dieser Priorität in dieser Suite"
-
-#~ msgid "Software Packages in \"%s\", essential packages"
-#~ msgstr "Software-Pakete in »%s«, essentielle Pakete"
-
-#~ msgid "No essential packages in this suite"
-#~ msgstr "Keine essentiellen Pakete in dieser Suite"
-
-#~ msgid ""
-#~ "Copyright (C) 1997-2005 SPI;\n"
-#~ "See  for the license terms.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Copyright (c) 1997-2005 SPI;\n"
-#~ "Unter  finden Sie die "
-#~ "Lizenzbedingungen.\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "Debian is a registered trademark of Software in the Public Interest, Inc."
-#~ msgstr ""
-#~ "Debian ist ein eingetragenes Warenzeichen von Software in the Public "
-#~ "Interest, Inc."
-
-#~ msgid "Last Modified: "
-#~ msgstr "Zuletzt geändert: "
-
-#~ msgid ""
-#~ "Back to: Debian Project homepage || Packages search page"
-#~ msgstr ""
-#~ "Zurück zur: Debian-Projekt-Homepage || Paketsuche"
-
-#~ msgid "Site map"
-#~ msgstr "Sitemap"
-
-#~ msgid "Development"
-#~ msgstr "Entwicklung"
-
-#~ msgid "Support"
-#~ msgstr "Unterstützung"
-
-#~ msgid "Getting Debian"
-#~ msgstr "Debian besorgen"
-
-#~ msgid "News"
-#~ msgstr "Neues"
-
-#~ msgid "About Debian"
-#~ msgstr "Über Debian"
-
-#~ msgid "Debian Project"
-#~ msgstr "Debian-Projekt"
-
-#~ msgid "Search on:"
-#~ msgstr "Suche in:"
-
-#~ msgid "or"
-#~ msgstr "oder"
-
-#, fuzzy
-#~ msgid "also a virtual package provided by "
-#~ msgstr "Virtuelles Paket"
-
-#~ msgid "See the developer information for %s."
-#~ msgstr "Entwicklerinformationen für %s."
-
-#~ msgid " and %s are responsible for this Debian package."
-#~ msgstr " und %s betreuen dieses Debian-Paket."
-
-#~ msgid "%s is responsible for this Debian package."
-#~ msgstr "%s betreut dieses Debian-Paket."
-
-#~ msgid "View the copyright file"
-#~ msgstr "Die Copyright-Datei"
-
-#~ msgid "View the Debian changelog"
-#~ msgstr "Das Debian-Changelog"
-
-#~ msgid "Check for Bug Reports about %s."
-#~ msgstr "Suchen Sie Fehlerberichte zu %s."
-
-#~ msgid "md5sum"
-#~ msgstr "md5sum"
-
-#~ msgid "virtual package"
-#~ msgstr "Virtuelles Paket"
-
-#~ msgid "Download %s\n"
-#~ msgstr "%s herunterladen\n"
-
-#, fuzzy
-#~ msgid "Nothing found"
-#~ msgstr "Nicht gefunden"
-
-#~ msgid "Can't find that package."
-#~ msgstr "Kann das Paket nicht finden."
-
-#, fuzzy
-#~ msgid ""
-#~ "The following packages were added to suite %s%s in the Debian archive "
-#~ "during the last 7 days."
-#~ msgstr ""
-#~ "Die folgenden Pakete wurden dem unstable Debian-Archiv während der "
-#~ "letzten 7 Tage hinzugefügt."
-
-#, fuzzy
-#~ msgid " (section %s)"
-#~ msgstr "Alle Optionen"
-
-#~ msgid "The MD5sum for %s is %s"
-#~ msgstr "Die MD5-Summe für %s ist %s"
-
-#~ msgid "Search for the package"
-#~ msgstr "Suchen Sie nach dem Paket"
-
-#~ msgid "search for a package"
-#~ msgstr "ein Paket suchen"
-
-#~ msgid "Error"
-#~ msgstr "Fehler"
-
-#~ msgid "Software Packages in \"%s\", priority %s"
-#~ msgstr "Software-Pakete in »%s«, Priorität »%s«"
-
-#~ msgid "Software Packages in \"%s\", subsection %s"
-#~ msgstr "Software-Pakete in »%s«, Sektion %s"
-
-#~ msgid "Source Package:"
-#~ msgstr "Quellcode-Paket:"
diff --git a/po/templates.fi.po b/po/templates.fi.po
index 7128267..37922ce 100644
--- a/po/templates.fi.po
+++ b/po/templates.fi.po
@@ -15,19 +15,19 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: templates/config.tmpl:37
+#: templates/config.tmpl:40
 msgid "Debian Web Mailinglist"
 msgstr ""
 
-#: templates/config.tmpl:42
+#: templates/config.tmpl:45
 msgid "%s Webmaster"
 msgstr "%s-seittimestari"
 
-#: templates/config.tmpl:45
+#: templates/config.tmpl:48
 msgid "%s is a trademark of %s"
 msgstr "%s on %3$s'n tavaramerkki"
 
-#: templates/config.tmpl:50
+#: templates/config.tmpl:53
 msgid ""
 "Please note that this is an experimental version of packages.debian.org. Errors and obsolete "
@@ -157,123 +157,131 @@ msgstr ""
 msgid "Download Page for %s"
 msgstr ""
 
-#: templates/html/download.tmpl:26
+#: templates/html/download.tmpl:23
 msgid ""
-"If you are running %s, it is strongly suggested to use a\n"
-"package manager like aptitude or\n"
-"synaptic to download and install\n"
-"packages, instead of doing so manually via this website."
+"If you are running %s, it is strongly suggested to use a package manager "
+"like aptitude or synaptic to download "
+"and install packages, instead of doing so manually via this website."
 msgstr ""
 
-#: templates/html/download.tmpl:32
+#: templates/html/download.tmpl:25
 msgid ""
-"You should be able to use any of the listed mirrors by adding a\n"
-"line to your /etc/apt/sources.list like this:"
+"You should be able to use any of the listed mirrors by adding a line to your "
+"/etc/apt/sources.list like this:"
 msgstr ""
 
-#: templates/html/download.tmpl:38
+#: templates/html/download.tmpl:30
 msgid "Replacing %s with the mirror in question."
 msgstr ""
 
-#: templates/html/download.tmpl:45 templates/html/show.tmpl:145
+#: templates/html/download.tmpl:37 templates/html/show.tmpl:145
 msgid "Experimental package"
 msgstr "Kokeellinen paketti"
 
-#: templates/html/download.tmpl:49
+#: templates/html/download.tmpl:38
+#, fuzzy
+#| msgid ""
+#| "Warning: This package is from the experimental "
+#| "distribution.\n"
+#| "That means it is likely unstable or buggy, and it may even cause data "
+#| "loss.\n"
+#| "Please be sure to consult the changelog and other possible documentation "
+#| "before\n"
+#| "using it."
 msgid ""
 "Warning: This package is from the experimental "
-"distribution.\n"
-"That means it is likely unstable or buggy, and it may even cause data loss.\n"
-"Please be sure to consult the changelog and other possible documentation "
-"before\n"
-"using it."
+"distribution. That means it is likely unstable or buggy, and it may even "
+"cause data loss. Please be sure to consult the changelog and other possible "
+"documentation before using it."
 msgstr ""
 "Varoitus: Tämä paketti on kokeellisesta "
 "jakelusta. Tämä tarkoittaa, että se on luultavasti epävakaa tai buginen, ja "
 "voi aiheuttaa jopa tiedonhäviötä. Suosittelemme muutoslokiin ja muuhun "
 "mahdolliseen dokumenaatioon tutustumista ennen käyttöönottoa."
 
-#: templates/html/download.tmpl:55 templates/html/show.tmpl:155
+#: templates/html/download.tmpl:41 templates/html/show.tmpl:150
 msgid "debian-installer udeb package"
 msgstr "debian-asentimen udeb-paketti"
 
-#: templates/html/download.tmpl:58 templates/html/show.tmpl:158
+#: templates/html/download.tmpl:42 templates/html/show.tmpl:151
+#, fuzzy
+#| msgid ""
+#| "Warning: This package is intended for the use in building\n"
+#| "debian-"
+#| "installer images only.\n"
+#| "Do not install it on a normal %s system."
 msgid ""
-"Warning: This package is intended for the use in building\n"
-"debian-installer images only.\n"
-"Do not install it on a normal %s system."
+"Warning: This package is intended for the use in building debian-installer images only. Do "
+"not install it on a normal %s system."
 msgstr ""
 "Varoitus: Tämä paketti on tarkoitettu käytettäväksi vain rakennettaessa debian-asentimen "
 "vedoksia. Älä asenna normaaliin %s-järjestelmään."
 
-#: templates/html/download.tmpl:67
+#: templates/html/download.tmpl:49
 msgid ""
 "You can download the requested file from the %s subdirectory at any "
 "of these sites:"
 msgstr ""
 
-#: templates/html/download.tmpl:93
+#: templates/html/download.tmpl:75
 msgid ""
 "You can download the requested file from the %s subdirectory at:"
 msgstr ""
 
-#: templates/html/download.tmpl:95
-msgid ""
-"Debian security updates are currently officially distributed only via "
-"security.debian.org."
+#: templates/html/download.tmpl:77
+msgid "%s security updates are officially distributed only via %s."
 msgstr ""
 
-#: templates/html/download.tmpl:102
+#: templates/html/download.tmpl:84
 msgid ""
-"If none of the above sites are fast enough for you,\n"
-"please see our complete mirror list."
+"If none of the above sites are fast enough for you, please see our complete mirror list."
 msgstr ""
 
-#: templates/html/download.tmpl:113
+#: templates/html/download.tmpl:92
 msgid ""
-"Note that %s is not officially included in the %s archive yet,\n"
-"but the %s porter group keeps their archive in sync with the official "
-"archive as close as possible.\n"
-"See the %s ports page for current information."
+"Note that %s is not officially included in the %s archive yet, but the %s "
+"porter group keeps their archive in sync with the official archive as close "
+"as possible. See the %s ports page for current "
+"information."
 msgstr ""
 
-#: templates/html/download.tmpl:120
+#: templates/html/download.tmpl:96
 msgid ""
 "Note that in some browsers you will need to tell your browser you want the "
-"file saved to a file.\n"
-"For example, in Firefox or Mozilla, you should hold the Shift key when you "
-"click on the URL."
+"file saved to a file. For example, in Firefox or Mozilla, you should hold "
+"the Shift key when you click on the URL."
 msgstr ""
 
-#: templates/html/download.tmpl:125
+#: templates/html/download.tmpl:100
 #, fuzzy
 msgid "More information on %s:"
 msgstr "Lisätietoa paketista %s"
 
-#: templates/html/download.tmpl:127
+#: templates/html/download.tmpl:102
 msgid "%s Byte (%s %s)"
 msgstr "%s tavua (%s %s)"
 
-#: templates/html/download.tmpl:127
+#: templates/html/download.tmpl:102
 #, fuzzy
 msgid "Exact Size"
 msgstr "Paketin koko"
 
-#: templates/html/download.tmpl:128 templates/html/show.tmpl:322
+#: templates/html/download.tmpl:103 templates/html/show.tmpl:320
 msgid "MD5 checksum"
 msgstr "MD5-tarkiste"
 
-#: templates/html/download.tmpl:129 templates/html/download.tmpl:130
+#: templates/html/download.tmpl:104 templates/html/download.tmpl:105
 msgid "Not Available"
 msgstr "Ei saatavilla"
 
-#: templates/html/download.tmpl:129
+#: templates/html/download.tmpl:104
 msgid "SHA1 checksum"
 msgstr "SHA1-tarkiste"
 
-#: templates/html/download.tmpl:130
+#: templates/html/download.tmpl:105
 msgid "SHA256 checksum"
 msgstr "SHA256-tarkiste"
 
@@ -295,25 +303,25 @@ msgstr "Tiedostoluettelo"
 msgid "This page is also available in the following languages:"
 msgstr "Tämä sivu on saatavilla myös seuraavilla kielillä:\n"
 
-#: templates/html/foot.tmpl:18
+#: templates/html/foot.tmpl:22
 #, fuzzy
 msgid "How to set the default document language"
 msgstr "Oletuskielen asettamisohjeet

" -#: templates/html/foot.tmpl:23 templates/html/head.tmpl:64 +#: templates/html/foot.tmpl:27 templates/html/head.tmpl:64 msgid "%s Homepage" msgstr "%s-kotisivu" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Back to:" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 #, fuzzy msgid "Packages search page" msgstr "Kaikki jakelun \"%s\" Debian-paketit" -#: templates/html/foot.tmpl:27 +#: templates/html/foot.tmpl:31 #, fuzzy msgid "" "To report a problem with the web site, e-mail %s. " @@ -323,11 +331,11 @@ msgstr "" "englanniksi osoitteeseen %s. Muut yhteystiedot " "löytyvät Debianin yhteystietosivulta." -#: templates/html/foot.tmpl:29 templates/txt/index.tmpl:4 +#: templates/html/foot.tmpl:33 templates/txt/index.tmpl:4 msgid "Generated:" msgstr "" -#: templates/html/foot.tmpl:31 +#: templates/html/foot.tmpl:35 msgid "" "Content Copyright © %s %s; See license terms." @@ -335,7 +343,7 @@ msgstr "" "Sisältö: Copyright © %s %s. Lue lisenssiehdot." -#: templates/html/foot.tmpl:35 +#: templates/html/foot.tmpl:39 #, fuzzy msgid "Learn more about this site" msgstr "Tämän jakelun yleiskuva" @@ -379,8 +387,8 @@ msgstr "Ohita sivustonavigointi" msgid "%s Packages Homepage" msgstr "Paketin koko" -#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:102 -#: templates/html/search_contents.tmpl:126 +#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:100 +#: templates/html/search_contents.tmpl:124 #, fuzzy msgid "Packages" msgstr "Paketti: %s (%s)" @@ -413,7 +421,7 @@ msgstr "Kaikki paketit" msgid "Source" msgstr "Lähdepaketti" -#: templates/html/index.tmpl:38 templates/html/show.tmpl:250 +#: templates/html/index.tmpl:38 templates/html/show.tmpl:247 #: templates/txt/index.tmpl:15 #, fuzzy msgid "virtual package provided by" @@ -508,7 +516,7 @@ msgstr "" #: templates/html/search.tmpl:37 msgid "" "You have searched only for words exactly matching your keywords. You can try " -"to search allowing subword matching." +"to search allowing subword matching." msgstr "" #: templates/html/search.tmpl:42 @@ -568,49 +576,53 @@ msgstr "" msgid "Found %u matching packages." msgstr "" -#: templates/html/search.tmpl:74 +#: templates/html/search.tmpl:72 msgid "" -"Note that this only shows the best matches, sorted by relevance.\n" -"If the first few packages don't match what you searched for, try using more " -"keywords or alternative\n" -"keywords." +"Note that this only shows the best matches, sorted by relevance. If the " +"first few packages don't match what you searched for, try using more " +"keywords or alternative keywords." msgstr "" -#: templates/html/search.tmpl:80 +#: templates/html/search.tmpl:74 msgid "" -"Your search was too wide so we will only display exact matches.\n" -"At least %u results have been omitted and will not be displayed.\n" -"Please consider using a longer keyword or more keywords." +"Your search was too wide so we will only display exact matches. At least " +"%u results have been omitted and will not be displayed. Please consider " +"using a longer keyword or more keywords." msgstr "" -#: templates/html/search.tmpl:86 templates/html/search_contents.tmpl:133 +#: templates/html/search.tmpl:79 templates/html/search_contents.tmpl:131 msgid "Sorry, your search gave no results" msgstr "Haullasi ei löytynyt yhtään tulosta" -#: templates/html/search.tmpl:93 +#: templates/html/search.tmpl:86 msgid "Package %s" msgstr "Paketti %s" -#: templates/html/search.tmpl:103 +#: templates/html/search.tmpl:96 +#, fuzzy +msgid "also provided by:" +msgstr "näennäispaketti" + +#: templates/html/search.tmpl:96 msgid "provided by:" msgstr "" -#: templates/html/search.tmpl:111 +#: templates/html/search.tmpl:105 #, fuzzy msgid "Source Package %s" msgstr "Lähdepaketti" -#: templates/html/search.tmpl:119 +#: templates/html/search.tmpl:113 #, fuzzy msgid "Binary packages:" msgstr "näennäispaketti" -#: templates/html/search.tmpl:121 +#: templates/html/search.tmpl:115 #, fuzzy msgid "%u binary packages" msgstr "Paketin koko" -#: templates/html/search.tmpl:131 +#: templates/html/search.tmpl:125 msgid "" "%u results have not been displayed because you requested " "only exact matches." @@ -678,28 +690,27 @@ msgstr "" msgid "Found %u results." msgstr "" -#: templates/html/search_contents.tmpl:89 +#: templates/html/search_contents.tmpl:88 msgid "" "Note: Your search was too wide so we will only display only the first about " -"100 matches.\n" -"Please consider using a longer keyword or more keywords." +"100 matches. Please consider using a longer keyword or more keywords." msgstr "" -#: templates/html/search_contents.tmpl:99 +#: templates/html/search_contents.tmpl:97 msgid "Sort results by filename" msgstr "" -#: templates/html/search_contents.tmpl:100 -#: templates/html/search_contents.tmpl:126 templates/html/show.tmpl:322 +#: templates/html/search_contents.tmpl:98 +#: templates/html/search_contents.tmpl:124 templates/html/show.tmpl:320 msgid "File" msgstr "Tiedosto" -#: templates/html/search_contents.tmpl:101 +#: templates/html/search_contents.tmpl:99 #, fuzzy msgid "Sort results by package name" msgstr "Lähdepaketti" -#: templates/html/search_contents.tmpl:116 +#: templates/html/search_contents.tmpl:114 msgid "not %s" msgstr "ei %s" @@ -818,22 +829,20 @@ msgstr "Kotisivu" msgid "Similar packages:" msgstr "Samankaltaisia paketteja:" -#: templates/html/show.tmpl:149 +#: templates/html/show.tmpl:146 #, fuzzy msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other " -"possible documentation before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog " +"and other possible documentation before using it." msgstr "" "Varoitus: Tämä paketti on kokeellisesta " "jakelusta. Tämä tarkoittaa, että se on luultavasti epävakaa tai buginen, ja " "voi aiheuttaa jopa tiedonhäviötä. Mikäli ohitat tämän varoituksen ja asennat " "paketin kaikesta huolimatta, otat vastuun itsellesi." -#: templates/html/show.tmpl:177 +#: templates/html/show.tmpl:169 msgid "" "This is a virtual package. See the Debian policy " "for a definition of virtual " @@ -843,32 +852,67 @@ msgstr "" "kuvaksesta näennäispaketin " "määritelmä." -#: templates/html/show.tmpl:185 +#: templates/html/show.tmpl:177 msgid "Tags" msgstr "Tagit" -#: templates/html/show.tmpl:206 +#: templates/html/show.tmpl:200 msgid "Packages providing %s" msgstr "Paketit, jotka tarjoavat paketin %s" -#: templates/html/show.tmpl:215 +#: templates/html/show.tmpl:209 msgid "The following binary packages are built from this source package:" msgstr "Seuraavat binääripaketit on käännetty tästä lähdepaketista:" -#: templates/html/show.tmpl:224 +#: templates/html/show.tmpl:218 msgid "Other Packages Related to %s" msgstr "Muut pakettiin %s liittyvät paketit" -#: templates/html/show.tmpl:254 +#: templates/html/show.tmpl:220 +msgid "legend" +msgstr "" + +#: templates/html/show.tmpl:222 +msgid "build-depends" +msgstr "" + +#: templates/html/show.tmpl:223 +msgid "build-depends-indep" +msgstr "" + +#: templates/html/show.tmpl:225 +msgid "depends" +msgstr "" + +#: templates/html/show.tmpl:226 +msgid "recommends" +msgstr "" + +#: templates/html/show.tmpl:227 +msgid "suggests" +msgstr "" + +#: templates/html/show.tmpl:237 +#, fuzzy +#| msgid "or" +msgid "or " +msgstr "tai" + +#: templates/html/show.tmpl:245 +#, fuzzy +msgid "also a virtual package provided by" +msgstr "näennäispaketti" + +#: templates/html/show.tmpl:252 #, fuzzy msgid "%u providing packages" msgstr "Paketin koko" -#: templates/html/show.tmpl:272 +#: templates/html/show.tmpl:270 msgid "Download %s" msgstr "Imuroi %s" -#: templates/html/show.tmpl:274 +#: templates/html/show.tmpl:272 msgid "" "The download table links to the download of the package and a file overview. " "In addition it gives information about the package size and the installed " @@ -878,66 +922,66 @@ msgstr "" "Lisäksi se antaa tietoa paketin koosta sekä asennukseen tarvittavasta " "levytilasta." -#: templates/html/show.tmpl:275 +#: templates/html/show.tmpl:273 msgid "Download for all available architectures" msgstr "Imurointi kaikille saataville arkkitehtuureille" -#: templates/html/show.tmpl:276 +#: templates/html/show.tmpl:274 msgid "Architecture" msgstr "Arkkitehtuuri" -#: templates/html/show.tmpl:277 +#: templates/html/show.tmpl:275 msgid "Version" msgstr "Versio" -#: templates/html/show.tmpl:278 +#: templates/html/show.tmpl:276 msgid "Package Size" msgstr "Paketin koko" -#: templates/html/show.tmpl:279 +#: templates/html/show.tmpl:277 msgid "Installed Size" msgstr "Koko asennettuna" -#: templates/html/show.tmpl:280 +#: templates/html/show.tmpl:278 msgid "Files" msgstr "Tiedostot" -#: templates/html/show.tmpl:288 +#: templates/html/show.tmpl:286 msgid "(unofficial port)" msgstr "(epävirallinen siirros)" -#: templates/html/show.tmpl:299 templates/html/show.tmpl:327 +#: templates/html/show.tmpl:297 templates/html/show.tmpl:325 msgid "%.1f kB" msgstr "%.1f kt" -#: templates/html/show.tmpl:299 +#: templates/html/show.tmpl:297 msgid "%u kB" msgstr "%u kt" -#: templates/html/show.tmpl:302 +#: templates/html/show.tmpl:300 msgid "list of files" msgstr "tiedostoluettelo" -#: templates/html/show.tmpl:304 +#: templates/html/show.tmpl:302 #, fuzzy msgid "no current information" msgstr "Lisätietoa paketista %s" -#: templates/html/show.tmpl:321 +#: templates/html/show.tmpl:319 msgid "Download information for the files of this source package" msgstr "" -#: templates/html/show.tmpl:322 +#: templates/html/show.tmpl:320 msgid "Size (in kB)" msgstr "Koko (kt)" -#: templates/html/show.tmpl:340 +#: templates/html/show.tmpl:338 msgid "" "Debian Package Source Repository (VCS: %s)" msgstr "" -#: templates/html/show.tmpl:344 +#: templates/html/show.tmpl:342 #, fuzzy msgid "Debian Package Source Repository (Browsable)" msgstr "Kaikki jakelun \"%s\" Debian-paketit" @@ -984,18 +1028,20 @@ msgstr "Paketin koko" #: templates/rss/newpkg.tmpl:20 #, fuzzy msgid "" -"Packages that were added to the %s %s archive (section \"%s\") during the " -"last 7 days." +"The following packages were added to suite %s (section %s) in the %s archive " +"during the last 7 days." msgstr "" -"Paketit, jotka on lisätty epävakaaseen Debian-arkistoon viimeisen seitsemän " -"(7) päivän aikana." +"Seuraavat paketit on lisätty epävakaaseen Debian-arkistoon viimeisen " +"seitsemän (7) päivän aikana." #: templates/rss/newpkg.tmpl:23 #, fuzzy -msgid "Packages that were added to the %s %s archive during the last 7 days." +msgid "" +"The following packages were added to suite %s in the %s archive during the " +"last 7 days." msgstr "" -"Paketit, jotka on lisätty epävakaaseen Debian-arkistoon viimeisen seitsemän " -"(7) päivän aikana." +"Seuraavat paketit on lisätty epävakaaseen Debian-arkistoon viimeisen " +"seitsemän (7) päivän aikana." #: templates/rss/newpkg.tmpl:28 templates/txt/index.tmpl:5 msgid "Copyright ©" @@ -1010,68 +1056,84 @@ msgstr "Kaikki %s-paketit komponentissa \"%s\"" msgid "See for the license terms." msgstr "Lisenssiehdot sivulla ." -#~ msgid "Versions:" -#~ msgstr "Versiot:" +#~ msgid "Virtual package" +#~ msgstr "Näennäispaketti" -#~ msgid "" -#~ "Copyright (C) 1997-2005 SPI;\n" -#~ "See for the license terms.\n" -#~ "\n" -#~ msgstr "" -#~ "Copyright © 1997-2005 SPI;\n" -#~ "Katso lisenssiehdot sivulta .\n" -#~ "\n" +#~ msgid "Package not available" +#~ msgstr "Paketti ei saatavilla" -#~ msgid "No essential packages in this suite" -#~ msgstr "Kokoelmassa ei ole välttämättömiä paketteja" +#~ msgid "Software Packages in \"%s\", priority %s" +#~ msgstr "Ohjelmistopaketit jakelussa \"%s\" tärkeysasteella %s" -#~ msgid "Software Packages in \"%s\", essential packages" -#~ msgstr "Ohjelmistopaketit jakelussa \"%s\", välttämättömät paketit" +#~ msgid "Download %s\n" +#~ msgstr "Imuroi %s\n" -#~ msgid "No packages with this priority in this suite" -#~ msgstr "Kokoelmassa ei ole paketteja tällä tärkeysasteella" +#~ msgid "virtual package" +#~ msgstr "näennäispaketti" -#~ msgid "" -#~ "Warning: These packages are intended for the use in building debian-installer " -#~ "images only. Do not install them on a normal Debian system." -#~ msgstr "" -#~ "Varoitus: Nämä paketit on tarkoitettu käytettäväksi vain rakennettaessa " -#~ "debian-" -#~ "asentimen vedoksia. Älä asenna normaaliin Debian-järjestelmään." +#~ msgid "Overview over this distribution" +#~ msgstr "Tämän jakelun yleiskuva" -#~ msgid "yes" -#~ msgstr "kyllä" +#~ msgid "md5sum" +#~ msgstr "MD5-summa" -#~ msgid "Priority" -#~ msgstr "Tärkeys" +#~ msgid "Check for Bug Reports about %s." +#~ msgstr "Tarkista paketin %s vikailmoitukset." -#~ msgid "Uploaders" -#~ msgstr "Uploadaajat" +#~ msgid "Source Package:" +#~ msgstr "Lähdepaketti:" -#~ msgid "Size is measured in kBytes." -#~ msgstr "Koko mitataan kilotavuissa." +#~ msgid "View the Debian changelog" +#~ msgstr "Katso Debian-muutoslokia" -#~ msgid "" -#~ "Users of experimental packages are encouraged to contact the package " -#~ "maintainers directly in case of problems." -#~ msgstr "" -#~ "Kokeellisten pakettien käyttäjiä kehotetaan ottamaan ongelmatapauksissa " -#~ "yhteyttä suoraan paketin ylläpitäjiin." +#~ msgid "View the copyright file" +#~ msgstr "Katso copyright-tiedostoa" + +#~ msgid "%s is responsible for this Debian package." +#~ msgstr "%s on vastuussa tästä Debian-paketista." + +#~ msgid " and %s are responsible for this Debian package." +#~ msgstr " ja %s ovat vastuussa tästä Debian-paketista." + +#~ msgid "See the developer information for %s." +#~ msgstr "Katso paketin %s kehittäjätietoja." + +#~ msgid "Debian Project" +#~ msgstr "Debian-projekti" + +#~ msgid "About Debian" +#~ msgstr "Tietoja Debianista" + +#~ msgid "News" +#~ msgstr "Uutiset" + +#~ msgid "Getting Debian" +#~ msgstr "Debianin hankkiminen" + +#~ msgid "Support" +#~ msgstr "Tuki" + +#~ msgid "Development" +#~ msgstr "Kehitys" + +#~ msgid "Site map" +#~ msgstr "Sivustokartta" #~ msgid "" -#~ "Packages that were added to the \"%s\" component next to the unstable " -#~ "Debian archive during the last 7 days." +#~ "Back to: Debian Project homepage || Packages search page" #~ msgstr "" -#~ "Paketit, jotka on lisätty komponenttiin \"%s\" epävakaaseen Debian-" -#~ "arkistoon viimeisen seitsemän (7) päivän aikana." +#~ "Takaisin: Debian-projektin kotisivulle || Pakettien hakusivulle" + +#~ msgid "Last Modified: " +#~ msgstr "Viimeksi muutettu: " #~ msgid "" -#~ "The following packages were added to the \"%s\" component next to the " -#~ "Debian archive during the last 7 days." +#~ "Debian is a registered trademark of Software in the Public Interest, Inc." #~ msgstr "" -#~ "Seuraavat paketit on lisätty komponenttiin \"%s\" Debian-arkistoon " -#~ "viimeisen seitsemän (7) päivän aikana." +#~ "Debian on Software in the Public Interest, Inc.'in rekisteröimä " +#~ "tavaramerkki." #~ msgid "" #~ "Warning: The experimental distribution " @@ -1085,83 +1147,79 @@ msgstr "Lisenssiehdot sivulla ." #~ "paketin kaikesta huolimatta, otat vastuun itsellesi." #~ msgid "" -#~ "Debian is a registered trademark of Software in the Public Interest, Inc." +#~ "The following packages were added to the \"%s\" component next to the " +#~ "Debian archive during the last 7 days." #~ msgstr "" -#~ "Debian on Software in the Public Interest, Inc.'in rekisteröimä " -#~ "tavaramerkki." - -#~ msgid "Last Modified: " -#~ msgstr "Viimeksi muutettu: " +#~ "Seuraavat paketit on lisätty komponenttiin \"%s\" Debian-arkistoon " +#~ "viimeisen seitsemän (7) päivän aikana." #~ msgid "" -#~ "Back to: Debian Project homepage || Packages search page" +#~ "Packages that were added to the \"%s\" component next to the unstable " +#~ "Debian archive during the last 7 days." #~ msgstr "" -#~ "Takaisin: Debian-projektin kotisivulle || Pakettien hakusivulle" - -#~ msgid "Site map" -#~ msgstr "Sivustokartta" - -#~ msgid "Development" -#~ msgstr "Kehitys" - -#~ msgid "Support" -#~ msgstr "Tuki" - -#~ msgid "Getting Debian" -#~ msgstr "Debianin hankkiminen" - -#~ msgid "News" -#~ msgstr "Uutiset" - -#~ msgid "About Debian" -#~ msgstr "Tietoja Debianista" - -#~ msgid "Debian Project" -#~ msgstr "Debian-projekti" - -#~ msgid "or" -#~ msgstr "tai" - -#~ msgid "See the developer information for %s." -#~ msgstr "Katso paketin %s kehittäjätietoja." +#~ "Paketit, jotka on lisätty komponenttiin \"%s\" epävakaaseen Debian-" +#~ "arkistoon viimeisen seitsemän (7) päivän aikana." -#~ msgid " and %s are responsible for this Debian package." -#~ msgstr " ja %s ovat vastuussa tästä Debian-paketista." +#~ msgid "" +#~ "Users of experimental packages are encouraged to contact the package " +#~ "maintainers directly in case of problems." +#~ msgstr "" +#~ "Kokeellisten pakettien käyttäjiä kehotetaan ottamaan ongelmatapauksissa " +#~ "yhteyttä suoraan paketin ylläpitäjiin." -#~ msgid "%s is responsible for this Debian package." -#~ msgstr "%s on vastuussa tästä Debian-paketista." +#~ msgid "Size is measured in kBytes." +#~ msgstr "Koko mitataan kilotavuissa." -#~ msgid "View the copyright file" -#~ msgstr "Katso copyright-tiedostoa" +#~ msgid "Uploaders" +#~ msgstr "Uploadaajat" -#~ msgid "View the Debian changelog" -#~ msgstr "Katso Debian-muutoslokia" +#~ msgid "Priority" +#~ msgstr "Tärkeys" -#~ msgid "Source Package:" -#~ msgstr "Lähdepaketti:" +#~ msgid "yes" +#~ msgstr "kyllä" -#~ msgid "Check for Bug Reports about %s." -#~ msgstr "Tarkista paketin %s vikailmoitukset." +#~ msgid "" +#~ "Warning: These packages are intended for the use in building debian-installer " +#~ "images only. Do not install them on a normal Debian system." +#~ msgstr "" +#~ "Varoitus: Nämä paketit on tarkoitettu käytettäväksi vain rakennettaessa " +#~ "debian-" +#~ "asentimen vedoksia. Älä asenna normaaliin Debian-järjestelmään." -#~ msgid "md5sum" -#~ msgstr "MD5-summa" +#~ msgid "No packages with this priority in this suite" +#~ msgstr "Kokoelmassa ei ole paketteja tällä tärkeysasteella" -#~ msgid "Overview over this distribution" -#~ msgstr "Tämän jakelun yleiskuva" +#~ msgid "Software Packages in \"%s\", essential packages" +#~ msgstr "Ohjelmistopaketit jakelussa \"%s\", välttämättömät paketit" -#~ msgid "virtual package" -#~ msgstr "näennäispaketti" +#~ msgid "No essential packages in this suite" +#~ msgstr "Kokoelmassa ei ole välttämättömiä paketteja" -#~ msgid "Download %s\n" -#~ msgstr "Imuroi %s\n" +#~ msgid "" +#~ "Copyright (C) 1997-2005 SPI;\n" +#~ "See for the license terms.\n" +#~ "\n" +#~ msgstr "" +#~ "Copyright © 1997-2005 SPI;\n" +#~ "Katso lisenssiehdot sivulta .\n" +#~ "\n" -#~ msgid "Software Packages in \"%s\", priority %s" -#~ msgstr "Ohjelmistopaketit jakelussa \"%s\" tärkeysasteella %s" +#~ msgid "Versions:" +#~ msgstr "Versiot:" -#~ msgid "Package not available" -#~ msgstr "Paketti ei saatavilla" +#, fuzzy +#~ msgid "" +#~ "Packages that were added to the %s %s archive during the last 7 days." +#~ msgstr "" +#~ "Paketit, jotka on lisätty epävakaaseen Debian-arkistoon viimeisen " +#~ "seitsemän (7) päivän aikana." -#~ msgid "Virtual package" -#~ msgstr "Näennäispaketti" +#, fuzzy +#~ msgid "" +#~ "Packages that were added to the %s %s archive (section \"%s\") during the " +#~ "last 7 days." +#~ msgstr "" +#~ "Paketit, jotka on lisätty epävakaaseen Debian-arkistoon viimeisen " +#~ "seitsemän (7) päivän aikana." diff --git a/po/templates.fr.po b/po/templates.fr.po index 0a2351b..3127d65 100644 --- a/po/templates.fr.po +++ b/po/templates.fr.po @@ -14,19 +14,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: templates/config.tmpl:37 +#: templates/config.tmpl:40 msgid "Debian Web Mailinglist" msgstr "" -#: templates/config.tmpl:42 +#: templates/config.tmpl:45 msgid "%s Webmaster" msgstr "" -#: templates/config.tmpl:45 +#: templates/config.tmpl:48 msgid "%s is a trademark of %s" msgstr "" -#: templates/config.tmpl:50 +#: templates/config.tmpl:53 msgid "" "Please note that this is an experimental version of packages.debian.org. Errors and obsolete " @@ -154,133 +154,126 @@ msgstr "" msgid "Download Page for %s" msgstr "" -#: templates/html/download.tmpl:26 +#: templates/html/download.tmpl:23 msgid "" -"If you are running %s, it is strongly suggested to use a\n" -"package manager like aptitude or\n" -"synaptic to download and install\n" -"packages, instead of doing so manually via this website." +"If you are running %s, it is strongly suggested to use a package manager " +"like aptitude or synaptic to download " +"and install packages, instead of doing so manually via this website." msgstr "" -#: templates/html/download.tmpl:32 +#: templates/html/download.tmpl:25 msgid "" -"You should be able to use any of the listed mirrors by adding a\n" -"line to your /etc/apt/sources.list like this:" +"You should be able to use any of the listed mirrors by adding a line to your " +"/etc/apt/sources.list like this:" msgstr "" -#: templates/html/download.tmpl:38 +#: templates/html/download.tmpl:30 msgid "Replacing %s with the mirror in question." msgstr "" -#: templates/html/download.tmpl:45 templates/html/show.tmpl:145 +#: templates/html/download.tmpl:37 templates/html/show.tmpl:145 msgid "Experimental package" msgstr "Paquet « experimental Â»" -#: templates/html/download.tmpl:49 +#: templates/html/download.tmpl:38 #, fuzzy msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other possible documentation " -"before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog and other possible " +"documentation before using it." msgstr "" "Avertissement : ce paquet appartient à la distribution « experimental Â». Cela signifie qu'il peut être " "instable ou bogué et peut éventuellement corrompre vos données. Son " "installation s'effectue donc à vos risques et périls." -#: templates/html/download.tmpl:55 templates/html/show.tmpl:155 +#: templates/html/download.tmpl:41 templates/html/show.tmpl:150 msgid "debian-installer udeb package" msgstr "paquet de l'installateur Debian udeb" -#: templates/html/download.tmpl:58 templates/html/show.tmpl:158 +#: templates/html/download.tmpl:42 templates/html/show.tmpl:151 #, fuzzy #| msgid "" #| "Warning: This package is intended for the use in building debian-installer " #| "images only. Do not install it on a normal Debian system." msgid "" -"Warning: This package is intended for the use in building\n" -"debian-installer images only.\n" -"Do not install it on a normal %s system." +"Warning: This package is intended for the use in building debian-installer images only. Do " +"not install it on a normal %s system." msgstr "" "Avertissement : ce paquet est réservé à la construction des images de " "l'installateur " "Debian. Il ne doit pas être installé sur un système Debian classique." -#: templates/html/download.tmpl:67 +#: templates/html/download.tmpl:49 msgid "" "You can download the requested file from the %s subdirectory at any " "of these sites:" msgstr "" -#: templates/html/download.tmpl:93 +#: templates/html/download.tmpl:75 msgid "" "You can download the requested file from the %s subdirectory at:" msgstr "" -#: templates/html/download.tmpl:95 -msgid "" -"Debian security updates are currently officially distributed only via " -"security.debian.org." +#: templates/html/download.tmpl:77 +msgid "%s security updates are officially distributed only via %s." msgstr "" -#: templates/html/download.tmpl:102 +#: templates/html/download.tmpl:84 msgid "" -"If none of the above sites are fast enough for you,\n" -"please see our complete mirror list." +"If none of the above sites are fast enough for you, please see our complete mirror list." msgstr "" -#: templates/html/download.tmpl:113 +#: templates/html/download.tmpl:92 msgid "" -"Note that %s is not officially included in the %s archive yet,\n" -"but the %s porter group keeps their archive in sync with the official " -"archive as close as possible.\n" -"See the %s ports page for current information." +"Note that %s is not officially included in the %s archive yet, but the %s " +"porter group keeps their archive in sync with the official archive as close " +"as possible. See the %s ports page for current " +"information." msgstr "" -#: templates/html/download.tmpl:120 +#: templates/html/download.tmpl:96 msgid "" "Note that in some browsers you will need to tell your browser you want the " -"file saved to a file.\n" -"For example, in Firefox or Mozilla, you should hold the Shift key when you " -"click on the URL." +"file saved to a file. For example, in Firefox or Mozilla, you should hold " +"the Shift key when you click on the URL." msgstr "" -#: templates/html/download.tmpl:125 +#: templates/html/download.tmpl:100 #, fuzzy #| msgid "More Information on %s" msgid "More information on %s:" msgstr "Plus d'informations sur %s" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "%s Byte (%s %s)" msgstr "" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 #, fuzzy #| msgid "Package Size" msgid "Exact Size" msgstr "Taille du paquet" -#: templates/html/download.tmpl:128 templates/html/show.tmpl:322 +#: templates/html/download.tmpl:103 templates/html/show.tmpl:320 msgid "MD5 checksum" msgstr "" -#: templates/html/download.tmpl:129 templates/html/download.tmpl:130 +#: templates/html/download.tmpl:104 templates/html/download.tmpl:105 #, fuzzy #| msgid "Not available" msgid "Not Available" msgstr "Indisponible" -#: templates/html/download.tmpl:129 +#: templates/html/download.tmpl:104 msgid "SHA1 checksum" msgstr "" -#: templates/html/download.tmpl:130 +#: templates/html/download.tmpl:105 msgid "SHA256 checksum" msgstr "" @@ -306,27 +299,27 @@ msgstr "Fichiers" msgid "This page is also available in the following languages:" msgstr "Cette page est aussi disponible dans les langues suivantes :\n" -#: templates/html/foot.tmpl:18 +#: templates/html/foot.tmpl:22 #, fuzzy msgid "How to set the default document language" msgstr "" "Comment configurer la langue par défaut du document

" -#: templates/html/foot.tmpl:23 templates/html/head.tmpl:64 +#: templates/html/foot.tmpl:27 templates/html/head.tmpl:64 #, fuzzy msgid "%s Homepage" msgstr "Taille du paquet" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Back to:" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 #, fuzzy msgid "Packages search page" msgstr "Tous les paquets Debian dans « %s Â»" -#: templates/html/foot.tmpl:27 +#: templates/html/foot.tmpl:31 #, fuzzy #| msgid "" #| "To report a problem with the web site, e-mail %spage " "contact de Debian." -#: templates/html/foot.tmpl:29 templates/txt/index.tmpl:4 +#: templates/html/foot.tmpl:33 templates/txt/index.tmpl:4 msgid "Generated:" msgstr "" -#: templates/html/foot.tmpl:31 +#: templates/html/foot.tmpl:35 #, fuzzy #| msgid "" #| "Copyright © 1997-2005 SPI; " @@ -358,7 +351,7 @@ msgstr "" "Copyright © 1997-2005 SPI ; " "voir les termes de la licence." -#: templates/html/foot.tmpl:35 +#: templates/html/foot.tmpl:39 #, fuzzy msgid "Learn more about this site" msgstr "Vue d'ensemble de cette distribution" @@ -403,8 +396,8 @@ msgstr "Sauter la navigation du site" msgid "%s Packages Homepage" msgstr "Taille du paquet" -#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:102 -#: templates/html/search_contents.tmpl:126 +#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:100 +#: templates/html/search_contents.tmpl:124 #, fuzzy msgid "Packages" msgstr "Paquet : %s (%s)" @@ -441,7 +434,7 @@ msgstr "Tous les paquets" msgid "Source" msgstr "Paquet source :" -#: templates/html/index.tmpl:38 templates/html/show.tmpl:250 +#: templates/html/index.tmpl:38 templates/html/show.tmpl:247 #: templates/txt/index.tmpl:15 #, fuzzy msgid "virtual package provided by" @@ -539,7 +532,7 @@ msgstr "" #: templates/html/search.tmpl:37 msgid "" "You have searched only for words exactly matching your keywords. You can try " -"to search allowing subword matching." +"to search allowing subword matching." msgstr "" #: templates/html/search.tmpl:42 @@ -603,50 +596,54 @@ msgstr "" msgid "Found %u matching packages." msgstr "" -#: templates/html/search.tmpl:74 +#: templates/html/search.tmpl:72 msgid "" -"Note that this only shows the best matches, sorted by relevance.\n" -"If the first few packages don't match what you searched for, try using more " -"keywords or alternative\n" -"keywords." +"Note that this only shows the best matches, sorted by relevance. If the " +"first few packages don't match what you searched for, try using more " +"keywords or alternative keywords." msgstr "" -#: templates/html/search.tmpl:80 +#: templates/html/search.tmpl:74 msgid "" -"Your search was too wide so we will only display exact matches.\n" -"At least %u results have been omitted and will not be displayed.\n" -"Please consider using a longer keyword or more keywords." +"Your search was too wide so we will only display exact matches. At least " +"%u results have been omitted and will not be displayed. Please consider " +"using a longer keyword or more keywords." msgstr "" -#: templates/html/search.tmpl:86 templates/html/search_contents.tmpl:133 +#: templates/html/search.tmpl:79 templates/html/search_contents.tmpl:131 msgid "Sorry, your search gave no results" msgstr "" -#: templates/html/search.tmpl:93 +#: templates/html/search.tmpl:86 #, fuzzy msgid "Package %s" msgstr "Paquet : %s (%s)" -#: templates/html/search.tmpl:103 +#: templates/html/search.tmpl:96 +#, fuzzy +msgid "also provided by:" +msgstr "paquet virtuel" + +#: templates/html/search.tmpl:96 msgid "provided by:" msgstr "" -#: templates/html/search.tmpl:111 +#: templates/html/search.tmpl:105 #, fuzzy msgid "Source Package %s" msgstr "Paquet source" -#: templates/html/search.tmpl:119 +#: templates/html/search.tmpl:113 #, fuzzy msgid "Binary packages:" msgstr "paquet virtuel" -#: templates/html/search.tmpl:121 +#: templates/html/search.tmpl:115 #, fuzzy msgid "%u binary packages" msgstr "Taille du paquet" -#: templates/html/search.tmpl:131 +#: templates/html/search.tmpl:125 msgid "" "%u results have not been displayed because you requested " "only exact matches." @@ -715,28 +712,27 @@ msgstr "" msgid "Found %u results." msgstr "" -#: templates/html/search_contents.tmpl:89 +#: templates/html/search_contents.tmpl:88 msgid "" "Note: Your search was too wide so we will only display only the first about " -"100 matches.\n" -"Please consider using a longer keyword or more keywords." +"100 matches. Please consider using a longer keyword or more keywords." msgstr "" -#: templates/html/search_contents.tmpl:99 +#: templates/html/search_contents.tmpl:97 msgid "Sort results by filename" msgstr "" -#: templates/html/search_contents.tmpl:100 -#: templates/html/search_contents.tmpl:126 templates/html/show.tmpl:322 +#: templates/html/search_contents.tmpl:98 +#: templates/html/search_contents.tmpl:124 templates/html/show.tmpl:320 msgid "File" msgstr "Fichier" -#: templates/html/search_contents.tmpl:101 +#: templates/html/search_contents.tmpl:99 #, fuzzy msgid "Sort results by package name" msgstr "Paquet source" -#: templates/html/search_contents.tmpl:116 +#: templates/html/search_contents.tmpl:114 #, fuzzy #| msgid "not" msgid "not %s" @@ -867,22 +863,20 @@ msgstr "" msgid "Similar packages:" msgstr "paquet virtuel" -#: templates/html/show.tmpl:149 +#: templates/html/show.tmpl:146 #, fuzzy msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other " -"possible documentation before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog " +"and other possible documentation before using it." msgstr "" "Avertissement : ce paquet appartient à la distribution « experimental Â». Cela signifie qu'il peut être " "instable ou bogué et peut éventuellement corrompre vos données. Son " "installation s'effectue donc à vos risques et périls." -#: templates/html/show.tmpl:177 +#: templates/html/show.tmpl:169 msgid "" "This is a virtual package. See the Debian policy " "for a definition of virtual " @@ -892,34 +886,69 @@ msgstr "" "Debian pour une définition " "des paquets virtuels." -#: templates/html/show.tmpl:185 +#: templates/html/show.tmpl:177 msgid "Tags" msgstr "" -#: templates/html/show.tmpl:206 +#: templates/html/show.tmpl:200 msgid "Packages providing %s" msgstr "Paquets fournissant %s" -#: templates/html/show.tmpl:215 +#: templates/html/show.tmpl:209 msgid "The following binary packages are built from this source package:" msgstr "" "Les paquets binaires suivants sont compilés à partir de ce paquet " "source :" -#: templates/html/show.tmpl:224 +#: templates/html/show.tmpl:218 msgid "Other Packages Related to %s" msgstr "Autres paquets associés à %s" -#: templates/html/show.tmpl:254 +#: templates/html/show.tmpl:220 +msgid "legend" +msgstr "" + +#: templates/html/show.tmpl:222 +msgid "build-depends" +msgstr "" + +#: templates/html/show.tmpl:223 +msgid "build-depends-indep" +msgstr "" + +#: templates/html/show.tmpl:225 +msgid "depends" +msgstr "" + +#: templates/html/show.tmpl:226 +msgid "recommends" +msgstr "" + +#: templates/html/show.tmpl:227 +msgid "suggests" +msgstr "" + +#: templates/html/show.tmpl:237 +#, fuzzy +#| msgid "or" +msgid "or " +msgstr "ou" + +#: templates/html/show.tmpl:245 +#, fuzzy +msgid "also a virtual package provided by" +msgstr "paquet virtuel" + +#: templates/html/show.tmpl:252 #, fuzzy msgid "%u providing packages" msgstr "Taille du paquet" -#: templates/html/show.tmpl:272 +#: templates/html/show.tmpl:270 msgid "Download %s" msgstr "Télécharger %s" -#: templates/html/show.tmpl:274 +#: templates/html/show.tmpl:272 msgid "" "The download table links to the download of the package and a file overview. " "In addition it gives information about the package size and the installed " @@ -929,66 +958,66 @@ msgstr "" "un aperçu du fichier. Il indique par ailleurs la taille du paquet et " "l'espace occupé une fois installé." -#: templates/html/show.tmpl:275 +#: templates/html/show.tmpl:273 msgid "Download for all available architectures" msgstr "Télécharger pour toutes les architectures proposées" -#: templates/html/show.tmpl:276 +#: templates/html/show.tmpl:274 msgid "Architecture" msgstr "Architecture" -#: templates/html/show.tmpl:277 +#: templates/html/show.tmpl:275 msgid "Version" msgstr "Version" -#: templates/html/show.tmpl:278 +#: templates/html/show.tmpl:276 msgid "Package Size" msgstr "Taille du paquet" -#: templates/html/show.tmpl:279 +#: templates/html/show.tmpl:277 msgid "Installed Size" msgstr "Espace occupé" -#: templates/html/show.tmpl:280 +#: templates/html/show.tmpl:278 msgid "Files" msgstr "Fichiers" -#: templates/html/show.tmpl:288 +#: templates/html/show.tmpl:286 msgid "(unofficial port)" msgstr "" -#: templates/html/show.tmpl:299 templates/html/show.tmpl:327 +#: templates/html/show.tmpl:297 templates/html/show.tmpl:325 msgid "%.1f kB" msgstr "" -#: templates/html/show.tmpl:299 +#: templates/html/show.tmpl:297 msgid "%u kB" msgstr "" -#: templates/html/show.tmpl:302 +#: templates/html/show.tmpl:300 msgid "list of files" msgstr "liste des fichiers" -#: templates/html/show.tmpl:304 +#: templates/html/show.tmpl:302 #, fuzzy msgid "no current information" msgstr "Plus d'informations sur %s" -#: templates/html/show.tmpl:321 +#: templates/html/show.tmpl:319 msgid "Download information for the files of this source package" msgstr "" -#: templates/html/show.tmpl:322 +#: templates/html/show.tmpl:320 msgid "Size (in kB)" msgstr "Taille (en kOctets)" -#: templates/html/show.tmpl:340 +#: templates/html/show.tmpl:338 msgid "" "Debian Package Source Repository (VCS: %s)" msgstr "" -#: templates/html/show.tmpl:344 +#: templates/html/show.tmpl:342 #, fuzzy msgid "Debian Package Source Repository (Browsable)" msgstr "Tous les paquets Debian dans « %s Â»" @@ -1038,25 +1067,21 @@ msgstr "Taille du paquet" #: templates/rss/newpkg.tmpl:20 #, fuzzy -#| msgid "" -#| "Packages that were added to the unstable Debian archive during the last 7 " -#| "days." msgid "" -"Packages that were added to the %s %s archive (section \"%s\") during the " -"last 7 days." +"The following packages were added to suite %s (section %s) in the %s archive " +"during the last 7 days." msgstr "" -"Paquets ayant été ajoutés à l'archive Debian « unstable Â» au cours " -"des 7 derniers jours." +"Les paquets suivants ont été ajoutés à l'archive Debian « " +"unstable Â» au cours des 7 derniers jours." #: templates/rss/newpkg.tmpl:23 #, fuzzy -#| msgid "" -#| "Packages that were added to the unstable Debian archive during the last 7 " -#| "days." -msgid "Packages that were added to the %s %s archive during the last 7 days." +msgid "" +"The following packages were added to suite %s in the %s archive during the " +"last 7 days." msgstr "" -"Paquets ayant été ajoutés à l'archive Debian « unstable Â» au cours " -"des 7 derniers jours." +"Les paquets suivants ont été ajoutés à l'archive Debian « " +"unstable Â» au cours des 7 derniers jours." #: templates/rss/newpkg.tmpl:28 templates/txt/index.tmpl:5 msgid "Copyright ©" @@ -1073,79 +1098,127 @@ msgid "See for the license terms." msgstr "" #, fuzzy -#~ msgid "" -#~ "Note that the experimental distribution is not self-" -#~ "contained; missing dependencies are likely found in the unstable distribution." -#~ msgstr "" -#~ "Veuillez noter que la distribution « \"experimental\" Â» n'est pas autosuffisante ; certaines " -#~ "dépendances peuvent se trouver dans la distribution « \"unstable\" Â»." +#~ msgid "two or more packages specified (%s)" +#~ msgstr "Paquet source : %s (%s)" -#~ msgid "Versions:" -#~ msgstr "Versions :" +#, fuzzy +#~ msgid "No such package in this suite on this architecture." +#~ msgstr "Aucun paquet dans cette section et cette distribution" -#~ msgid "" -#~ "Copyright (C) 1997-2005 SPI;\n" -#~ "See for the license terms.\n" -#~ "\n" -#~ msgstr "" -#~ "Copyright © 1997-2005 SPI ;voir " -#~ "les termes de la licence.\n" +#~ msgid "Virtual package" +#~ msgstr "Paquet virtuel" -#~ msgid "No essential packages in this suite" -#~ msgstr "Aucun paquet essentiel dans cette distribution" +#, fuzzy +#~ msgid "No such package." +#~ msgstr "Paquet source" -#~ msgid "Software Packages in \"%s\", essential packages" -#~ msgstr "Paquets de « %s Â», paquets essentiels" +#, fuzzy +#~ msgid "Package not available in this suite." +#~ msgstr "Paquet indisponible" -#~ msgid "No packages with this priority in this suite" -#~ msgstr "Aucun paquet de cette priorité et cette distribution" +#~ msgid "Package not available" +#~ msgstr "Paquet indisponible" + +#, fuzzy +#~ msgid "Software Packages in \"%s\", subsection %s" +#~ msgstr "Paquets de « %s Â», section %s" + +#~ msgid "Software Packages in \"%s\", priority %s" +#~ msgstr "Paquets de « %s Â», priorité %s" + +#, fuzzy +#~ msgid "search for a package" +#~ msgstr "Liste de tous les paquets" + +#, fuzzy +#~ msgid " (section %s)" +#~ msgstr "Section" +#, fuzzy #~ msgid "" -#~ "Warning: These packages are intended for the use in building debian-installer " -#~ "images only. Do not install them on a normal Debian system." +#~ "The following packages were added to suite %s%s in the Debian archive " +#~ "during the last 7 days." #~ msgstr "" -#~ "Avertissement : ces paquets sont réservés à la construction des " -#~ "images de l'installateur Debian. Ils ne doivent pas être installés sur un " -#~ "système Debian classique." +#~ "Les paquets suivants ont été ajoutés à l'archive Debian « " +#~ "unstable Â» au cours des 7 derniers jours." -#~ msgid "yes" -#~ msgstr "oui" +#, fuzzy +#~ msgid "Nothing found" +#~ msgstr "Introuvable" -#~ msgid "Priority" -#~ msgstr "Priorité" +#~ msgid "Download %s\n" +#~ msgstr "Télécharger %s\n" -#~ msgid "Uploaders" -#~ msgstr "Expéditeurs" +#~ msgid "virtual package" +#~ msgstr "paquet virtuel" -#~ msgid "Size is measured in kBytes." -#~ msgstr "La taille est indiquée en kOctets" +#~ msgid "Overview over this distribution" +#~ msgstr "Vue d'ensemble de cette distribution" -#~ msgid "" -#~ "Users of experimental packages are encouraged to contact the package " -#~ "maintainers directly in case of problems." +#~ msgid "md5sum" +#~ msgstr "code de contrôle MD5" + +#~ msgid "Check for Bug Reports about %s." +#~ msgstr "Consulter les rapports de bogues de %s." + +#~ msgid "Source Package:" +#~ msgstr "Paquet source :" + +#~ msgid "View the Debian changelog" +#~ msgstr "Consulter le journal des modifications Debian" + +#~ msgid "View the copyright file" +#~ msgstr "Consulter le fichier de licence" + +#~ msgid "%s is responsible for this Debian package." +#~ msgstr "%s est responsable de ce paquet Debian." + +#~ msgid " and %s are responsible for this Debian package." +#~ msgstr " et %s sont responsables de ce paquet Debian." + +#~ msgid "See the developer information for %s." #~ msgstr "" -#~ "Nous encourageons les utilisateurs de paquets d'« " -#~ "experimental Â» rencontrant des problèmes à contacter directement le " -#~ "responsable du paquet." +#~ "Consulter les informations de développement de %s." + +#, fuzzy +#~ msgid "Search on:" +#~ msgstr "Recherche" + +#~ msgid "Debian Project" +#~ msgstr "Projet Debian" + +#~ msgid "About Debian" +#~ msgstr "À propos de Debian" + +#~ msgid "News" +#~ msgstr "Actualités" + +#~ msgid "Getting Debian" +#~ msgstr "Obtenir Debian" + +#~ msgid "Support" +#~ msgstr "Assistance" + +#~ msgid "Development" +#~ msgstr "Le coin du développeur" + +#~ msgid "Site map" +#~ msgstr "Plan du site" #~ msgid "" -#~ "Packages that were added to the \"%s\" component next to the unstable " -#~ "Debian archive during the last 7 days." +#~ "Back to: Debian Project homepage || Packages search page" #~ msgstr "" -#~ "Paquets ayant été ajoutés à la section « %s Â» de l'archive " -#~ "Debian « unstable Â» au cours des 7 derniers jours." +#~ "Retour à la : Page d'accueil du Projet Debian || " +#~ "Page de recherche de paquets" + +#~ msgid "Last Modified: " +#~ msgstr "Dernière modification : " #~ msgid "" -#~ "The following packages were added to the \"%s\" component next to the " -#~ "Debian archive during the last 7 days." +#~ "Debian is a registered trademark of Software in the Public Interest, Inc." #~ msgstr "" -#~ "Les paquets suivants ont été ajoutés à la section « %s Â» de " -#~ "l'archive Debian au cours des 7 derniers jours." +#~ "Debian est une marque déposée de Software in the Public Interest, Inc." #~ msgid "" #~ "Warning: The experimental distribution " @@ -1159,131 +1232,97 @@ msgstr "" #~ "installation s'effectue donc à vos risques et périls." #~ msgid "" -#~ "Debian is a registered trademark of Software in the Public Interest, Inc." +#~ "The following packages were added to the \"%s\" component next to the " +#~ "Debian archive during the last 7 days." #~ msgstr "" -#~ "Debian est une marque déposée de Software in the Public Interest, Inc." - -#~ msgid "Last Modified: " -#~ msgstr "Dernière modification : " +#~ "Les paquets suivants ont été ajoutés à la section « %s Â» de " +#~ "l'archive Debian au cours des 7 derniers jours." #~ msgid "" -#~ "Back to: Debian Project homepage || Packages search page" +#~ "Packages that were added to the \"%s\" component next to the unstable " +#~ "Debian archive during the last 7 days." #~ msgstr "" -#~ "Retour à la : Page d'accueil du Projet Debian || " -#~ "Page de recherche de paquets" - -#~ msgid "Site map" -#~ msgstr "Plan du site" - -#~ msgid "Development" -#~ msgstr "Le coin du développeur" - -#~ msgid "Support" -#~ msgstr "Assistance" - -#~ msgid "Getting Debian" -#~ msgstr "Obtenir Debian" - -#~ msgid "News" -#~ msgstr "Actualités" - -#~ msgid "About Debian" -#~ msgstr "À propos de Debian" - -#~ msgid "Debian Project" -#~ msgstr "Projet Debian" - -#, fuzzy -#~ msgid "Search on:" -#~ msgstr "Recherche" - -#~ msgid "or" -#~ msgstr "ou" - -#, fuzzy -#~ msgid "also a virtual package provided by " -#~ msgstr "paquet virtuel" +#~ "Paquets ayant été ajoutés à la section « %s Â» de l'archive " +#~ "Debian « unstable Â» au cours des 7 derniers jours." -#~ msgid "See the developer information for %s." +#~ msgid "" +#~ "Users of experimental packages are encouraged to contact the package " +#~ "maintainers directly in case of problems." #~ msgstr "" -#~ "Consulter les informations de développement de %s." - -#~ msgid " and %s are responsible for this Debian package." -#~ msgstr " et %s sont responsables de ce paquet Debian." - -#~ msgid "%s is responsible for this Debian package." -#~ msgstr "%s est responsable de ce paquet Debian." - -#~ msgid "View the copyright file" -#~ msgstr "Consulter le fichier de licence" - -#~ msgid "View the Debian changelog" -#~ msgstr "Consulter le journal des modifications Debian" - -#~ msgid "Source Package:" -#~ msgstr "Paquet source :" - -#~ msgid "Check for Bug Reports about %s." -#~ msgstr "Consulter les rapports de bogues de %s." - -#~ msgid "md5sum" -#~ msgstr "code de contrôle MD5" +#~ "Nous encourageons les utilisateurs de paquets d'« " +#~ "experimental Â» rencontrant des problèmes à contacter directement le " +#~ "responsable du paquet." -#~ msgid "Overview over this distribution" -#~ msgstr "Vue d'ensemble de cette distribution" +#~ msgid "Size is measured in kBytes." +#~ msgstr "La taille est indiquée en kOctets" -#~ msgid "virtual package" -#~ msgstr "paquet virtuel" +#~ msgid "Uploaders" +#~ msgstr "Expéditeurs" -#~ msgid "Download %s\n" -#~ msgstr "Télécharger %s\n" +#~ msgid "Priority" +#~ msgstr "Priorité" -#, fuzzy -#~ msgid "Nothing found" -#~ msgstr "Introuvable" +#~ msgid "yes" +#~ msgstr "oui" -#, fuzzy #~ msgid "" -#~ "The following packages were added to suite %s%s in the Debian archive " -#~ "during the last 7 days." +#~ "Warning: These packages are intended for the use in building debian-installer " +#~ "images only. Do not install them on a normal Debian system." #~ msgstr "" -#~ "Les paquets suivants ont été ajoutés à l'archive Debian « " -#~ "unstable Â» au cours des 7 derniers jours." - -#, fuzzy -#~ msgid " (section %s)" -#~ msgstr "Section" +#~ "Avertissement : ces paquets sont réservés à la construction des " +#~ "images de l'installateur Debian. Ils ne doivent pas être installés sur un " +#~ "système Debian classique." -#, fuzzy -#~ msgid "search for a package" -#~ msgstr "Liste de tous les paquets" +#~ msgid "No packages with this priority in this suite" +#~ msgstr "Aucun paquet de cette priorité et cette distribution" -#~ msgid "Software Packages in \"%s\", priority %s" -#~ msgstr "Paquets de « %s Â», priorité %s" +#~ msgid "Software Packages in \"%s\", essential packages" +#~ msgstr "Paquets de « %s Â», paquets essentiels" -#, fuzzy -#~ msgid "Software Packages in \"%s\", subsection %s" -#~ msgstr "Paquets de « %s Â», section %s" +#~ msgid "No essential packages in this suite" +#~ msgstr "Aucun paquet essentiel dans cette distribution" -#~ msgid "Package not available" -#~ msgstr "Paquet indisponible" +#~ msgid "" +#~ "Copyright (C) 1997-2005 SPI;\n" +#~ "See for the license terms.\n" +#~ "\n" +#~ msgstr "" +#~ "Copyright © 1997-2005 SPI ;voir " +#~ "les termes de la licence.\n" -#, fuzzy -#~ msgid "Package not available in this suite." -#~ msgstr "Paquet indisponible" +#~ msgid "Versions:" +#~ msgstr "Versions :" #, fuzzy -#~ msgid "No such package." -#~ msgstr "Paquet source" - -#~ msgid "Virtual package" -#~ msgstr "Paquet virtuel" +#~ msgid "" +#~ "Note that the experimental distribution is not self-" +#~ "contained; missing dependencies are likely found in the unstable distribution." +#~ msgstr "" +#~ "Veuillez noter que la distribution « \"experimental\" Â» n'est pas autosuffisante ; certaines " +#~ "dépendances peuvent se trouver dans la distribution « \"unstable\" Â»." #, fuzzy -#~ msgid "No such package in this suite on this architecture." -#~ msgstr "Aucun paquet dans cette section et cette distribution" +#~| msgid "" +#~| "Packages that were added to the unstable Debian archive during the last " +#~| "7 days." +#~ msgid "" +#~ "Packages that were added to the %s %s archive during the last 7 days." +#~ msgstr "" +#~ "Paquets ayant été ajoutés à l'archive Debian « unstable Â» au " +#~ "cours des 7 derniers jours." #, fuzzy -#~ msgid "two or more packages specified (%s)" -#~ msgstr "Paquet source : %s (%s)" +#~| msgid "" +#~| "Packages that were added to the unstable Debian archive during the last " +#~| "7 days." +#~ msgid "" +#~ "Packages that were added to the %s %s archive (section \"%s\") during the " +#~ "last 7 days." +#~ msgstr "" +#~ "Paquets ayant été ajoutés à l'archive Debian « unstable Â» au " +#~ "cours des 7 derniers jours." diff --git a/po/templates.hu.po b/po/templates.hu.po index 296aafd..ae39f89 100644 --- a/po/templates.hu.po +++ b/po/templates.hu.po @@ -3,19 +3,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: templates/config.tmpl:37 +#: templates/config.tmpl:40 msgid "Debian Web Mailinglist" msgstr "" -#: templates/config.tmpl:42 +#: templates/config.tmpl:45 msgid "%s Webmaster" msgstr "" -#: templates/config.tmpl:45 +#: templates/config.tmpl:48 msgid "%s is a trademark of %s" msgstr "" -#: templates/config.tmpl:50 +#: templates/config.tmpl:53 msgid "" "Please note that this is an experimental version of packages.debian.org. Errors and obsolete " @@ -141,114 +141,107 @@ msgstr "" msgid "Download Page for %s" msgstr "" -#: templates/html/download.tmpl:26 +#: templates/html/download.tmpl:23 msgid "" -"If you are running %s, it is strongly suggested to use a\n" -"package manager like aptitude or\n" -"synaptic to download and install\n" -"packages, instead of doing so manually via this website." +"If you are running %s, it is strongly suggested to use a package manager " +"like aptitude or synaptic to download " +"and install packages, instead of doing so manually via this website." msgstr "" -#: templates/html/download.tmpl:32 +#: templates/html/download.tmpl:25 msgid "" -"You should be able to use any of the listed mirrors by adding a\n" -"line to your /etc/apt/sources.list like this:" +"You should be able to use any of the listed mirrors by adding a line to your " +"/etc/apt/sources.list like this:" msgstr "" -#: templates/html/download.tmpl:38 +#: templates/html/download.tmpl:30 msgid "Replacing %s with the mirror in question." msgstr "" -#: templates/html/download.tmpl:45 templates/html/show.tmpl:145 +#: templates/html/download.tmpl:37 templates/html/show.tmpl:145 msgid "Experimental package" msgstr "" -#: templates/html/download.tmpl:49 +#: templates/html/download.tmpl:38 msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other possible documentation " -"before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog and other possible " +"documentation before using it." msgstr "" -#: templates/html/download.tmpl:55 templates/html/show.tmpl:155 +#: templates/html/download.tmpl:41 templates/html/show.tmpl:150 msgid "debian-installer udeb package" msgstr "" -#: templates/html/download.tmpl:58 templates/html/show.tmpl:158 +#: templates/html/download.tmpl:42 templates/html/show.tmpl:151 msgid "" -"Warning: This package is intended for the use in building\n" -"debian-installer images only.\n" -"Do not install it on a normal %s system." +"Warning: This package is intended for the use in building debian-installer images only. Do " +"not install it on a normal %s system." msgstr "" -#: templates/html/download.tmpl:67 +#: templates/html/download.tmpl:49 msgid "" "You can download the requested file from the %s subdirectory at any " "of these sites:" msgstr "" -#: templates/html/download.tmpl:93 +#: templates/html/download.tmpl:75 msgid "" "You can download the requested file from the %s subdirectory at:" msgstr "" -#: templates/html/download.tmpl:95 -msgid "" -"Debian security updates are currently officially distributed only via " -"security.debian.org." +#: templates/html/download.tmpl:77 +msgid "%s security updates are officially distributed only via %s." msgstr "" -#: templates/html/download.tmpl:102 +#: templates/html/download.tmpl:84 msgid "" -"If none of the above sites are fast enough for you,\n" -"please see our complete mirror list." +"If none of the above sites are fast enough for you, please see our complete mirror list." msgstr "" -#: templates/html/download.tmpl:113 +#: templates/html/download.tmpl:92 msgid "" -"Note that %s is not officially included in the %s archive yet,\n" -"but the %s porter group keeps their archive in sync with the official " -"archive as close as possible.\n" -"See the %s ports page for current information." +"Note that %s is not officially included in the %s archive yet, but the %s " +"porter group keeps their archive in sync with the official archive as close " +"as possible. See the %s ports page for current " +"information." msgstr "" -#: templates/html/download.tmpl:120 +#: templates/html/download.tmpl:96 msgid "" "Note that in some browsers you will need to tell your browser you want the " -"file saved to a file.\n" -"For example, in Firefox or Mozilla, you should hold the Shift key when you " -"click on the URL." +"file saved to a file. For example, in Firefox or Mozilla, you should hold " +"the Shift key when you click on the URL." msgstr "" -#: templates/html/download.tmpl:125 +#: templates/html/download.tmpl:100 msgid "More information on %s:" msgstr "" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "%s Byte (%s %s)" msgstr "" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "Exact Size" msgstr "" -#: templates/html/download.tmpl:128 templates/html/show.tmpl:322 +#: templates/html/download.tmpl:103 templates/html/show.tmpl:320 msgid "MD5 checksum" msgstr "" -#: templates/html/download.tmpl:129 templates/html/download.tmpl:130 +#: templates/html/download.tmpl:104 templates/html/download.tmpl:105 msgid "Not Available" msgstr "" -#: templates/html/download.tmpl:129 +#: templates/html/download.tmpl:104 msgid "SHA1 checksum" msgstr "" -#: templates/html/download.tmpl:130 +#: templates/html/download.tmpl:105 msgid "SHA256 checksum" msgstr "" @@ -269,39 +262,39 @@ msgstr "" msgid "This page is also available in the following languages:" msgstr "" -#: templates/html/foot.tmpl:18 +#: templates/html/foot.tmpl:22 msgid "How to set the default document language" msgstr "" -#: templates/html/foot.tmpl:23 templates/html/head.tmpl:64 +#: templates/html/foot.tmpl:27 templates/html/head.tmpl:64 msgid "%s Homepage" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Back to:" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Packages search page" msgstr "" -#: templates/html/foot.tmpl:27 +#: templates/html/foot.tmpl:31 msgid "" "To report a problem with the web site, e-mail %s. " "For other contact information, see the %s contact page." msgstr "" -#: templates/html/foot.tmpl:29 templates/txt/index.tmpl:4 +#: templates/html/foot.tmpl:33 templates/txt/index.tmpl:4 msgid "Generated:" msgstr "" -#: templates/html/foot.tmpl:31 +#: templates/html/foot.tmpl:35 msgid "" "Content Copyright © %s %s; See license terms." msgstr "" -#: templates/html/foot.tmpl:35 +#: templates/html/foot.tmpl:39 msgid "Learn more about this site" msgstr "" @@ -337,8 +330,8 @@ msgstr "" msgid "%s Packages Homepage" msgstr "" -#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:102 -#: templates/html/search_contents.tmpl:126 +#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:100 +#: templates/html/search_contents.tmpl:124 msgid "Packages" msgstr "" @@ -367,7 +360,7 @@ msgstr "" msgid "Source" msgstr "" -#: templates/html/index.tmpl:38 templates/html/show.tmpl:250 +#: templates/html/index.tmpl:38 templates/html/show.tmpl:247 #: templates/txt/index.tmpl:15 msgid "virtual package provided by" msgstr "" @@ -443,7 +436,7 @@ msgstr "" #: templates/html/search.tmpl:37 msgid "" "You have searched only for words exactly matching your keywords. You can try " -"to search allowing subword matching." +"to search allowing subword matching." msgstr "" #: templates/html/search.tmpl:42 @@ -503,46 +496,49 @@ msgstr "" msgid "Found %u matching packages." msgstr "" -#: templates/html/search.tmpl:74 +#: templates/html/search.tmpl:72 msgid "" -"Note that this only shows the best matches, sorted by relevance.\n" -"If the first few packages don't match what you searched for, try using more " -"keywords or alternative\n" -"keywords." +"Note that this only shows the best matches, sorted by relevance. If the " +"first few packages don't match what you searched for, try using more " +"keywords or alternative keywords." msgstr "" -#: templates/html/search.tmpl:80 +#: templates/html/search.tmpl:74 msgid "" -"Your search was too wide so we will only display exact matches.\n" -"At least %u results have been omitted and will not be displayed.\n" -"Please consider using a longer keyword or more keywords." +"Your search was too wide so we will only display exact matches. At least " +"%u results have been omitted and will not be displayed. Please consider " +"using a longer keyword or more keywords." msgstr "" -#: templates/html/search.tmpl:86 templates/html/search_contents.tmpl:133 +#: templates/html/search.tmpl:79 templates/html/search_contents.tmpl:131 msgid "Sorry, your search gave no results" msgstr "" -#: templates/html/search.tmpl:93 +#: templates/html/search.tmpl:86 msgid "Package %s" msgstr "" -#: templates/html/search.tmpl:103 +#: templates/html/search.tmpl:96 +msgid "also provided by:" +msgstr "" + +#: templates/html/search.tmpl:96 msgid "provided by:" msgstr "" -#: templates/html/search.tmpl:111 +#: templates/html/search.tmpl:105 msgid "Source Package %s" msgstr "" -#: templates/html/search.tmpl:119 +#: templates/html/search.tmpl:113 msgid "Binary packages:" msgstr "" -#: templates/html/search.tmpl:121 +#: templates/html/search.tmpl:115 msgid "%u binary packages" msgstr "" -#: templates/html/search.tmpl:131 +#: templates/html/search.tmpl:125 msgid "" "%u results have not been displayed because you requested " "only exact matches." @@ -608,27 +604,26 @@ msgstr "" msgid "Found %u results." msgstr "" -#: templates/html/search_contents.tmpl:89 +#: templates/html/search_contents.tmpl:88 msgid "" "Note: Your search was too wide so we will only display only the first about " -"100 matches.\n" -"Please consider using a longer keyword or more keywords." +"100 matches. Please consider using a longer keyword or more keywords." msgstr "" -#: templates/html/search_contents.tmpl:99 +#: templates/html/search_contents.tmpl:97 msgid "Sort results by filename" msgstr "" -#: templates/html/search_contents.tmpl:100 -#: templates/html/search_contents.tmpl:126 templates/html/show.tmpl:322 +#: templates/html/search_contents.tmpl:98 +#: templates/html/search_contents.tmpl:124 templates/html/show.tmpl:320 msgid "File" msgstr "" -#: templates/html/search_contents.tmpl:101 +#: templates/html/search_contents.tmpl:99 msgid "Sort results by package name" msgstr "" -#: templates/html/search_contents.tmpl:116 +#: templates/html/search_contents.tmpl:114 msgid "not %s" msgstr "" @@ -740,113 +735,143 @@ msgstr "" msgid "Similar packages:" msgstr "" -#: templates/html/show.tmpl:149 +#: templates/html/show.tmpl:146 msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other " -"possible documentation before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog " +"and other possible documentation before using it." msgstr "" -#: templates/html/show.tmpl:177 +#: templates/html/show.tmpl:169 msgid "" "This is a virtual package. See the Debian policy " "for a definition of virtual " "packages." msgstr "" -#: templates/html/show.tmpl:185 +#: templates/html/show.tmpl:177 msgid "Tags" msgstr "" -#: templates/html/show.tmpl:206 +#: templates/html/show.tmpl:200 msgid "Packages providing %s" msgstr "" -#: templates/html/show.tmpl:215 +#: templates/html/show.tmpl:209 msgid "The following binary packages are built from this source package:" msgstr "" -#: templates/html/show.tmpl:224 +#: templates/html/show.tmpl:218 msgid "Other Packages Related to %s" msgstr "" -#: templates/html/show.tmpl:254 +#: templates/html/show.tmpl:220 +msgid "legend" +msgstr "" + +#: templates/html/show.tmpl:222 +msgid "build-depends" +msgstr "" + +#: templates/html/show.tmpl:223 +msgid "build-depends-indep" +msgstr "" + +#: templates/html/show.tmpl:225 +msgid "depends" +msgstr "" + +#: templates/html/show.tmpl:226 +msgid "recommends" +msgstr "" + +#: templates/html/show.tmpl:227 +msgid "suggests" +msgstr "" + +#: templates/html/show.tmpl:237 +msgid "or " +msgstr "" + +#: templates/html/show.tmpl:245 +msgid "also a virtual package provided by" +msgstr "" + +#: templates/html/show.tmpl:252 msgid "%u providing packages" msgstr "" -#: templates/html/show.tmpl:272 +#: templates/html/show.tmpl:270 msgid "Download %s" msgstr "" -#: templates/html/show.tmpl:274 +#: templates/html/show.tmpl:272 msgid "" "The download table links to the download of the package and a file overview. " "In addition it gives information about the package size and the installed " "size." msgstr "" -#: templates/html/show.tmpl:275 +#: templates/html/show.tmpl:273 msgid "Download for all available architectures" msgstr "" -#: templates/html/show.tmpl:276 +#: templates/html/show.tmpl:274 msgid "Architecture" msgstr "" -#: templates/html/show.tmpl:277 +#: templates/html/show.tmpl:275 msgid "Version" msgstr "" -#: templates/html/show.tmpl:278 +#: templates/html/show.tmpl:276 msgid "Package Size" msgstr "" -#: templates/html/show.tmpl:279 +#: templates/html/show.tmpl:277 msgid "Installed Size" msgstr "" -#: templates/html/show.tmpl:280 +#: templates/html/show.tmpl:278 msgid "Files" msgstr "" -#: templates/html/show.tmpl:288 +#: templates/html/show.tmpl:286 msgid "(unofficial port)" msgstr "" -#: templates/html/show.tmpl:299 templates/html/show.tmpl:327 +#: templates/html/show.tmpl:297 templates/html/show.tmpl:325 msgid "%.1f kB" msgstr "" -#: templates/html/show.tmpl:299 +#: templates/html/show.tmpl:297 msgid "%u kB" msgstr "" -#: templates/html/show.tmpl:302 +#: templates/html/show.tmpl:300 msgid "list of files" msgstr "" -#: templates/html/show.tmpl:304 +#: templates/html/show.tmpl:302 msgid "no current information" msgstr "" -#: templates/html/show.tmpl:321 +#: templates/html/show.tmpl:319 msgid "Download information for the files of this source package" msgstr "" -#: templates/html/show.tmpl:322 +#: templates/html/show.tmpl:320 msgid "Size (in kB)" msgstr "" -#: templates/html/show.tmpl:340 +#: templates/html/show.tmpl:338 msgid "" "Debian Package Source Repository (VCS: %s)" msgstr "" -#: templates/html/show.tmpl:344 +#: templates/html/show.tmpl:342 msgid "Debian Package Source Repository (Browsable)" msgstr "" @@ -888,12 +913,14 @@ msgstr "" #: templates/rss/newpkg.tmpl:20 msgid "" -"Packages that were added to the %s %s archive (section \"%s\") during the " -"last 7 days." +"The following packages were added to suite %s (section %s) in the %s archive " +"during the last 7 days." msgstr "" #: templates/rss/newpkg.tmpl:23 -msgid "Packages that were added to the %s %s archive during the last 7 days." +msgid "" +"The following packages were added to suite %s in the %s archive during the " +"last 7 days." msgstr "" #: templates/rss/newpkg.tmpl:28 templates/txt/index.tmpl:5 diff --git a/po/templates.ja.po b/po/templates.ja.po index 1e71a5b..2c0240b 100644 --- a/po/templates.ja.po +++ b/po/templates.ja.po @@ -7,26 +7,26 @@ msgstr "" "Project-Id-Version: packages.debian.org trunk\n" "Report-Msgid-Bugs-To: debian-www@lists.debian.org\n" "POT-Creation-Date: 2007-10-14 03:22+0200\n" -"PO-Revision-Date: 2007-10-20 04:31+0900\n" +"PO-Revision-Date: 2007-10-21 18:52+0900\n" "Last-Translator: Noritada Kobayashi \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: templates/config.tmpl:37 +#: templates/config.tmpl:40 msgid "Debian Web Mailinglist" msgstr "Debian ウェブメーリングリスト" -#: templates/config.tmpl:42 +#: templates/config.tmpl:45 msgid "%s Webmaster" msgstr "%s ウェブマスター" -#: templates/config.tmpl:45 +#: templates/config.tmpl:48 msgid "%s is a trademark of %s" -msgstr "%s は %3$s の登録商標です。" +msgstr "%1$s は %3$s の登録商標です。" -#: templates/config.tmpl:50 +#: templates/config.tmpl:53 msgid "" "Please note that this is an experimental version of packages.debian.org. Errors and obsolete " @@ -154,64 +154,60 @@ msgstr "%2$s マシン用 %1$s のダウンロードページ" msgid "Download Page for %s" msgstr "%s のダウンロードページ" -#: templates/html/download.tmpl:26 +#: templates/html/download.tmpl:23 msgid "" -"If you are running %s, it is strongly suggested to use a\n" -"package manager like aptitude or\n" -"synaptic to download and install\n" -"packages, instead of doing so manually via this website." +"If you are running %s, it is strongly suggested to use a package manager " +"like aptitude or synaptic to download " +"and install packages, instead of doing so manually via this website." msgstr "" "%s を使用している場合、パッケージのダウンロードやインストールはこのウェブサイ" "トから手動で行うのではなく、aptitude や synaptic のようなパッケージマネージャを用いて行うことを強くお勧めしま" "す。" -#: templates/html/download.tmpl:32 +#: templates/html/download.tmpl:25 msgid "" -"You should be able to use any of the listed mirrors by adding a\n" -"line to your /etc/apt/sources.list like this:" +"You should be able to use any of the listed mirrors by adding a line to your " +"/etc/apt/sources.list like this:" msgstr "" "次のような行を /etc/apt/sources.list に追加して、以下の一覧にある" "ミラーのうち使いたいものを利用可能にすべきでしょう。" -#: templates/html/download.tmpl:38 +#: templates/html/download.tmpl:30 msgid "Replacing %s with the mirror in question." msgstr "%s を使いたいミラーに置き換えてください。" -#: templates/html/download.tmpl:45 templates/html/show.tmpl:145 +#: templates/html/download.tmpl:37 templates/html/show.tmpl:145 msgid "Experimental package" msgstr "試験的な (experimental の) パッケージ" -#: templates/html/download.tmpl:49 +#: templates/html/download.tmpl:38 msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other possible documentation " -"before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog and other possible " +"documentation before using it." msgstr "" "警告: このパッケージは experimental ディストリビューションの" "ものです。つまり、おそらく不安定でバグがあり、それどころかデータの損失を起こ" "すかもしれません。使用前には、変更履歴やその他の参照可能なドキュメントを必ず" "調べてください。" -#: templates/html/download.tmpl:55 templates/html/show.tmpl:155 +#: templates/html/download.tmpl:41 templates/html/show.tmpl:150 msgid "debian-installer udeb package" msgstr "debian-installer 用の udeb パッケージ" -#: templates/html/download.tmpl:58 templates/html/show.tmpl:158 +#: templates/html/download.tmpl:42 templates/html/show.tmpl:151 msgid "" -"Warning: This package is intended for the use in building\n" -"debian-installer images only.\n" -"Do not install it on a normal %s system." +"Warning: This package is intended for the use in building debian-installer images only. Do " +"not install it on a normal %s system." msgstr "" "警告: このパッケージは、debian-installer イメージのビルド時における使用のみを意図して" "います。通常の %s システムにはインストールしないでください。" -#: templates/html/download.tmpl:67 +#: templates/html/download.tmpl:49 msgid "" "You can download the requested file from the %s subdirectory at any " "of these sites:" @@ -219,77 +215,78 @@ msgstr "" "要求のファイルは、以下のいずれのサイトでも %s サブディレクトリからダ" "ウンロード可能です。" -#: templates/html/download.tmpl:93 +#: templates/html/download.tmpl:75 msgid "" "You can download the requested file from the %s subdirectory at:" msgstr "" "要求のファイルは、以下のサイトの %s サブディレクトリからダウンロード" "可能です。" -#: templates/html/download.tmpl:95 -msgid "" -"Debian security updates are currently officially distributed only via " -"security.debian.org." +#: templates/html/download.tmpl:77 +#, fuzzy +#| msgid "" +#| "Debian security updates are currently officially distributed only via " +#| "security.debian.org." +msgid "%s security updates are officially distributed only via %s." msgstr "" "Debian セキュリティアップデートは、現在のところ公式には security.debian." "org のみで配布されています。" -#: templates/html/download.tmpl:102 +#: templates/html/download.tmpl:84 msgid "" -"If none of the above sites are fast enough for you,\n" -"please see our complete mirror list." +"If none of the above sites are fast enough for you, please see our complete mirror list." msgstr "" "上記のサイトのいずれでも不十分な速度しか出ない場合は、ミラーの" "完全な一覧ををご覧ください。" -#: templates/html/download.tmpl:113 +#: templates/html/download.tmpl:92 msgid "" -"Note that %s is not officially included in the %s archive yet,\n" -"but the %s porter group keeps their archive in sync with the official " -"archive as close as possible.\n" -"See the %s ports page for current information." +"Note that %s is not officially included in the %s archive yet, but the %s " +"porter group keeps their archive in sync with the official archive as close " +"as possible. See the %s ports page for current " +"information." msgstr "" "注意: %s はまだ、%s のアーカイブに公式に含まれているわけではありません。%s 移" "植グループが、このアーカイブと公式アーカイブが可能なかぎり同期するよう維持し" "ているのです。現在の情報については %s 移植版のページをご覧" "ください。" -#: templates/html/download.tmpl:120 +#: templates/html/download.tmpl:96 msgid "" "Note that in some browsers you will need to tell your browser you want the " -"file saved to a file.\n" -"For example, in Firefox or Mozilla, you should hold the Shift key when you " -"click on the URL." +"file saved to a file. For example, in Firefox or Mozilla, you should hold " +"the Shift key when you click on the URL." msgstr "" -"注意: 一部のブラウザでは、ダウンロードするファイルを保存るようブラウザに教え" -"る必要があります。例えば、Firefox や Mozilla では URL をクリックする際に " -"Shift キーを押してください。" +"注意: 一部のブラウザでは、ファイルをダウンロードして保存するようブラウザに指" +"示する必要があります。例えば、Firefox や Mozilla では、Shift キーを押しなが" +"ら URL をクリックしてください。" -#: templates/html/download.tmpl:125 +#: templates/html/download.tmpl:100 msgid "More information on %s:" msgstr "%s に関するさらに詳しい情報:" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "%s Byte (%s %s)" msgstr "%s Byte (%s %s)" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "Exact Size" msgstr "正確なサイズ" -#: templates/html/download.tmpl:128 templates/html/show.tmpl:322 +#: templates/html/download.tmpl:103 templates/html/show.tmpl:320 msgid "MD5 checksum" msgstr "MD5 チェックサム" -#: templates/html/download.tmpl:129 templates/html/download.tmpl:130 +#: templates/html/download.tmpl:104 templates/html/download.tmpl:105 msgid "Not Available" msgstr "入手不能" -#: templates/html/download.tmpl:129 +#: templates/html/download.tmpl:104 msgid "SHA1 checksum" msgstr "SHA1 チェックサム" -#: templates/html/download.tmpl:130 +#: templates/html/download.tmpl:105 msgid "SHA256 checksum" msgstr "SHA256 チェックサム" @@ -314,24 +311,24 @@ msgid "This page is also available in the following languages:" msgstr "このページは以下の言語でもご覧になれます。" # See webwml/japanese/po/templates.ja.po in the web site CVS repository. -#: templates/html/foot.tmpl:18 +#: templates/html/foot.tmpl:22 msgid "How to set the default document language" msgstr "デフォルトの言語を設定するには" -#: templates/html/foot.tmpl:23 templates/html/head.tmpl:64 +#: templates/html/foot.tmpl:27 templates/html/head.tmpl:64 msgid "%s Homepage" msgstr "%s ホームページ" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Back to:" msgstr "戻る:" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Packages search page" msgstr "パッケージ検索ページ" # See webwml/japanese/po/templates.ja.po in the web site CVS repository. -#: templates/html/foot.tmpl:27 +#: templates/html/foot.tmpl:31 msgid "" "To report a problem with the web site, e-mail %s. " "For other contact information, see the %s contact page." @@ -340,12 +337,12 @@ msgstr "" "てください。その他の連絡先に関する情報は、%s のコンタクトペー" "ジをご覧ください。" -#: templates/html/foot.tmpl:29 templates/txt/index.tmpl:4 +#: templates/html/foot.tmpl:33 templates/txt/index.tmpl:4 msgid "Generated:" msgstr "生成:" # See webwml/japanese/po/templates.ja.po in the web site CVS repository. -#: templates/html/foot.tmpl:31 +#: templates/html/foot.tmpl:35 msgid "" "Content Copyright © %s %s; See license terms." @@ -353,7 +350,7 @@ msgstr "" "Content Copyright © %s %s; ライセンス" "条項をご覧ください。" -#: templates/html/foot.tmpl:35 +#: templates/html/foot.tmpl:39 msgid "Learn more about this site" msgstr "このサイトについてさらに詳しく知るには" @@ -367,7 +364,7 @@ msgstr "パッケージ名" #: templates/html/head.tmpl:50 msgid "descriptions" -msgstr "説明" +msgstr "パッケージ説明" #: templates/html/head.tmpl:51 msgid "source package names" @@ -389,8 +386,8 @@ msgstr "ナビゲーションをスキップ" msgid "%s Packages Homepage" msgstr "%s パッケージホームページ" -#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:102 -#: templates/html/search_contents.tmpl:126 +#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:100 +#: templates/html/search_contents.tmpl:124 msgid "Packages" msgstr "パッケージ" @@ -402,9 +399,10 @@ msgstr "\"%s\" の %s %s に含まれるソースパッケージ" msgid "Source Packages in \"%s\"" msgstr "\"%s\" に含まれるソースパッケージ" +# TRANSLATION-FIXME: "%3$s Section", "%3$s Subsection", and "Priority %s" would be the best. #: templates/html/index.tmpl:6 msgid "Software Packages in \"%s\", %s %s" -msgstr "\"%s\" の %s %s に含まれるソフトウェアパッケージ" +msgstr "\"%s\" の%s %s に含まれるソフトウェアパッケージ" #: templates/html/index.tmpl:7 msgid "Software Packages in \"%s\"" @@ -419,10 +417,10 @@ msgstr "すべてのパッケージ" msgid "Source" msgstr "ソース" -#: templates/html/index.tmpl:38 templates/html/show.tmpl:250 +#: templates/html/index.tmpl:38 templates/html/show.tmpl:247 #: templates/txt/index.tmpl:15 msgid "virtual package provided by" -msgstr "以下のパッケージによって提供される仮想パッケージ: " +msgstr "以下のパッケージによって提供される仮想パッケージです: " #: templates/html/newpkg.tmpl:2 templates/html/newpkg.tmpl:7 msgid "New Packages in \"%s\"" @@ -502,8 +500,10 @@ msgstr "" #: templates/html/search.tmpl:37 msgid "" "You have searched only for words exactly matching your keywords. You can try " -"to search allowing subword matching." +"to search allowing subword matching." msgstr "" +"キーワードに完全に一致する単語のみを検索しました。単語の部分的" +"な一致を有効にして検索してみるとよいでしょう。" #: templates/html/search.tmpl:42 msgid "" @@ -548,7 +548,7 @@ msgstr "ソースパッケージ" #: templates/html/search.tmpl:57 msgid "" "You have searched for %s that names contain %s in %s, %s, and %s." -msgstr "%2$s を名前に含む%1$sを、%s、%s、%sで検索しました。" +msgstr "%2$s を名前に含む%1$sを、%3$s、%4$s、%5$sで検索しました。" #: templates/html/search.tmpl:60 msgid " (including subword matching)" @@ -565,52 +565,55 @@ msgstr "" msgid "Found %u matching packages." msgstr "%u 個の一致するパッケージが見つかりました。" -#: templates/html/search.tmpl:74 +#: templates/html/search.tmpl:72 msgid "" -"Note that this only shows the best matches, sorted by relevance.\n" -"If the first few packages don't match what you searched for, try using more " -"keywords or alternative\n" -"keywords." +"Note that this only shows the best matches, sorted by relevance. If the " +"first few packages don't match what you searched for, try using more " +"keywords or alternative keywords." msgstr "" "注意: この結果は、最もよく一致したものを妥当性の順に表示しているだけです。最" "初のいくつかのパッケージが検索しようとしたものと一致していない場合は、キー" "ワードを追加するか他のキーワードを用いてみてください。" -#: templates/html/search.tmpl:80 +#: templates/html/search.tmpl:74 msgid "" -"Your search was too wide so we will only display exact matches.\n" -"At least %u results have been omitted and will not be displayed.\n" -"Please consider using a longer keyword or more keywords." +"Your search was too wide so we will only display exact matches. At least " +"%u results have been omitted and will not be displayed. Please consider " +"using a longer keyword or more keywords." msgstr "" "あまりにも幅の広い検索なので、ここでは完全に一致するものを表示するだけに留め" "ています。少なくとも %u 個の結果が省略され、非表示となっています。さ" "らに長いキーワードを用いるか、キーワードを追加することを検討してください。" -#: templates/html/search.tmpl:86 templates/html/search_contents.tmpl:133 +#: templates/html/search.tmpl:79 templates/html/search_contents.tmpl:131 msgid "Sorry, your search gave no results" msgstr "残念ながら、検索結果はありませんでした" -#: templates/html/search.tmpl:93 +#: templates/html/search.tmpl:86 msgid "Package %s" msgstr "%s パッケージ" -#: templates/html/search.tmpl:103 +#: templates/html/search.tmpl:96 +msgid "also provided by:" +msgstr "また、以下のパッケージによって提供されてもいます:" + +#: templates/html/search.tmpl:96 msgid "provided by:" -msgstr "提供:" +msgstr "以下のパッケージによって提供されています:" -#: templates/html/search.tmpl:111 +#: templates/html/search.tmpl:105 msgid "Source Package %s" msgstr "%s ソースパッケージ" -#: templates/html/search.tmpl:119 +#: templates/html/search.tmpl:113 msgid "Binary packages:" msgstr "バイナリパッケージ:" -#: templates/html/search.tmpl:121 +#: templates/html/search.tmpl:115 msgid "%u binary packages" msgstr "%u 個のバイナリパッケージ" -#: templates/html/search.tmpl:131 +#: templates/html/search.tmpl:125 msgid "" "%u results have not been displayed because you requested " "only exact matches." @@ -672,37 +675,37 @@ msgstr "を名前に含むファイル" #: templates/html/search_contents.tmpl:81 msgid "You have searched for %s %s in suite %s, %s, and %s." -msgstr "%2$s %1$sを、%s スイート、%s、%sで検索しました。" +msgstr "" +"%2$s %1$sを、%3$s スイート、%4$s、%5$sで検索しました。" #: templates/html/search_contents.tmpl:85 msgid "Found %u results." msgstr "%u 個の結果が見つかりました。" # FIXME: "... only ... only ..." is OK? -#: templates/html/search_contents.tmpl:89 +#: templates/html/search_contents.tmpl:88 msgid "" "Note: Your search was too wide so we will only display only the first about " -"100 matches.\n" -"Please consider using a longer keyword or more keywords." +"100 matches. Please consider using a longer keyword or more keywords." msgstr "" "注意: あまりにも幅の広い検索なので、ここでは最初の約 100 個の結果のみを表示す" "るだけに留めています。さらに長いキーワードを用いるか、キーワードを追加するこ" "とを検討してください。" -#: templates/html/search_contents.tmpl:99 +#: templates/html/search_contents.tmpl:97 msgid "Sort results by filename" msgstr "ファイル名の順に結果を並び換える" -#: templates/html/search_contents.tmpl:100 -#: templates/html/search_contents.tmpl:126 templates/html/show.tmpl:322 +#: templates/html/search_contents.tmpl:98 +#: templates/html/search_contents.tmpl:124 templates/html/show.tmpl:320 msgid "File" msgstr "ファイル" -#: templates/html/search_contents.tmpl:101 +#: templates/html/search_contents.tmpl:99 msgid "Sort results by package name" msgstr "パッケージ名の順に結果を並び換える" -#: templates/html/search_contents.tmpl:116 +#: templates/html/search_contents.tmpl:114 msgid "not %s" msgstr "%s 以外" @@ -814,21 +817,19 @@ msgstr "ホームページ" msgid "Similar packages:" msgstr "類似のパッケージ:" -#: templates/html/show.tmpl:149 +#: templates/html/show.tmpl:146 msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other " -"possible documentation before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog " +"and other possible documentation before using it." msgstr "" "警告: このパッケージは experimental ディストリビューションの" "ものです。つまり、おそらく不安定でバグがあり、それどころかデータの損失を起こ" "すかもしれません。使用前には、変更履歴やその他の参照可能な" "ドキュメントを必ず調べてください。" -#: templates/html/show.tmpl:177 +#: templates/html/show.tmpl:169 msgid "" "This is a virtual package. See the Debian policy " "for a definition of virtual " @@ -838,33 +839,63 @@ msgstr "" "\">仮想パッケージの定義については Debian ポリシーマニュア" "ルを参照してください。" -#: templates/html/show.tmpl:185 +#: templates/html/show.tmpl:177 msgid "Tags" msgstr "タグ" -#: templates/html/show.tmpl:206 +#: templates/html/show.tmpl:200 msgid "Packages providing %s" msgstr "%s を提供するパッケージ" -#: templates/html/show.tmpl:215 +#: templates/html/show.tmpl:209 msgid "The following binary packages are built from this source package:" msgstr "以下のバイナリパッケージがこのソースパッケージからビルドされています。" -#: templates/html/show.tmpl:224 +#: templates/html/show.tmpl:218 msgid "Other Packages Related to %s" msgstr "その他の %s 関連パッケージ" -#: templates/html/show.tmpl:254 +#: templates/html/show.tmpl:220 +msgid "legend" +msgstr "凡例" + +#: templates/html/show.tmpl:222 +msgid "build-depends" +msgstr "構築依存" + +#: templates/html/show.tmpl:223 +msgid "build-depends-indep" +msgstr "構築依存 (アーキテクチャ非依存)" + +#: templates/html/show.tmpl:225 +msgid "depends" +msgstr "依存" + +#: templates/html/show.tmpl:226 +msgid "recommends" +msgstr "推奨" + +#: templates/html/show.tmpl:227 +msgid "suggests" +msgstr "提案" + +#: templates/html/show.tmpl:237 +msgid "or " +msgstr "または " + +#: templates/html/show.tmpl:245 +msgid "also a virtual package provided by" +msgstr "以下のパッケージによって提供される仮想パッケージでもあります: " + +#: templates/html/show.tmpl:252 msgid "%u providing packages" msgstr "%u 個の提供パッケージ" -#: templates/html/show.tmpl:272 -#, fuzzy -#| msgid "Download" +#: templates/html/show.tmpl:270 msgid "Download %s" -msgstr "ダウンロード" +msgstr "%s のダウンロード" -#: templates/html/show.tmpl:274 +#: templates/html/show.tmpl:272 msgid "" "The download table links to the download of the package and a file overview. " "In addition it gives information about the package size and the installed " @@ -874,59 +905,59 @@ msgstr "" "リンク。加えて、パッケージサイズやインストールサイズに関する情報も含んでいま" "す。" -#: templates/html/show.tmpl:275 +#: templates/html/show.tmpl:273 msgid "Download for all available architectures" msgstr "すべての利用可能アーキテクチャ向けのダウンロード" -#: templates/html/show.tmpl:276 +#: templates/html/show.tmpl:274 msgid "Architecture" msgstr "アーキテクチャ" -#: templates/html/show.tmpl:277 +#: templates/html/show.tmpl:275 msgid "Version" msgstr "バージョン" -#: templates/html/show.tmpl:278 +#: templates/html/show.tmpl:276 msgid "Package Size" msgstr "パッケージサイズ" -#: templates/html/show.tmpl:279 +#: templates/html/show.tmpl:277 msgid "Installed Size" msgstr "インストールサイズ" -#: templates/html/show.tmpl:280 +#: templates/html/show.tmpl:278 msgid "Files" msgstr "ファイル" -#: templates/html/show.tmpl:288 +#: templates/html/show.tmpl:286 msgid "(unofficial port)" msgstr "(非公式の移植版)" -#: templates/html/show.tmpl:299 templates/html/show.tmpl:327 +#: templates/html/show.tmpl:297 templates/html/show.tmpl:325 msgid "%.1f kB" msgstr "%.1f kB" -#: templates/html/show.tmpl:299 +#: templates/html/show.tmpl:297 msgid "%u kB" msgstr "%u kB" -#: templates/html/show.tmpl:302 +#: templates/html/show.tmpl:300 msgid "list of files" msgstr "ファイル一覧" -#: templates/html/show.tmpl:304 +#: templates/html/show.tmpl:302 msgid "no current information" msgstr "現在の情報はありません" -#: templates/html/show.tmpl:321 +#: templates/html/show.tmpl:319 msgid "Download information for the files of this source package" msgstr "このソースパッケージのファイルのダウンロードに関する情報" -#: templates/html/show.tmpl:322 +#: templates/html/show.tmpl:320 msgid "Size (in kB)" msgstr "サイズ (単位: kB)" -#: templates/html/show.tmpl:340 +#: templates/html/show.tmpl:338 msgid "" "Debian Package Source Repository (VCS: %s)" @@ -934,7 +965,7 @@ msgstr "" "Debian パッケージソースリポジトリ (VCS: %s)" -#: templates/html/show.tmpl:344 +#: templates/html/show.tmpl:342 msgid "Debian Package Source Repository (Browsable)" msgstr "Debian パッケージソースリポジトリ (ブラウザで表示可能)" @@ -976,14 +1007,19 @@ msgstr "新規 %s パッケージ" #: templates/rss/newpkg.tmpl:20 msgid "" -"Packages that were added to the %s %s archive (section \"%s\") during the " -"last 7 days." +"The following packages were added to suite %s (section %s) in the %s archive " +"during the last 7 days." msgstr "" -"%s %s アーカイブ (\"%s\" セクション) に最近 7 日間に追加されたパッケージ。" +"以下のパッケージは、%3$s アーカイブの %1$s スイート (%2$s セクション) に最近 " +"7 日間に追加されたものです。" #: templates/rss/newpkg.tmpl:23 -msgid "Packages that were added to the %s %s archive during the last 7 days." -msgstr "%s %s アーカイブに最近 7 日間に追加されたパッケージ。" +msgid "" +"The following packages were added to suite %s in the %s archive during the " +"last 7 days." +msgstr "" +"以下のパッケージは、%2$s アーカイブの %1$s スイートに最近 7 日間に追加された" +"ものです。" #: templates/rss/newpkg.tmpl:28 templates/txt/index.tmpl:5 msgid "Copyright ©" @@ -996,3 +1032,13 @@ msgstr "\"%s\" に含まれるすべての %s パッケージ" #: templates/txt/index.tmpl:6 msgid "See for the license terms." msgstr "ライセンス条項については をご覧ください。" + +#~ msgid "" +#~ "Packages that were added to the %s %s archive during the last 7 days." +#~ msgstr "%s %s アーカイブに最近 7 日間に追加されたパッケージ。" + +#~ msgid "" +#~ "Packages that were added to the %s %s archive (section \"%s\") during the " +#~ "last 7 days." +#~ msgstr "" +#~ "%s %s アーカイブ (\"%s\" セクション) に最近 7 日間に追加されたパッケージ。" diff --git a/po/templates.nl.po b/po/templates.nl.po index a173b76..a2f9703 100644 --- a/po/templates.nl.po +++ b/po/templates.nl.po @@ -16,19 +16,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: templates/config.tmpl:37 +#: templates/config.tmpl:40 msgid "Debian Web Mailinglist" msgstr "" -#: templates/config.tmpl:42 +#: templates/config.tmpl:45 msgid "%s Webmaster" msgstr "" -#: templates/config.tmpl:45 +#: templates/config.tmpl:48 msgid "%s is a trademark of %s" msgstr "" -#: templates/config.tmpl:50 +#: templates/config.tmpl:53 msgid "" "Please note that this is an experimental version of packages.debian.org. Errors and obsolete " @@ -156,37 +156,34 @@ msgstr "" msgid "Download Page for %s" msgstr "" -#: templates/html/download.tmpl:26 +#: templates/html/download.tmpl:23 msgid "" -"If you are running %s, it is strongly suggested to use a\n" -"package manager like aptitude or\n" -"synaptic to download and install\n" -"packages, instead of doing so manually via this website." +"If you are running %s, it is strongly suggested to use a package manager " +"like aptitude or synaptic to download " +"and install packages, instead of doing so manually via this website." msgstr "" -#: templates/html/download.tmpl:32 +#: templates/html/download.tmpl:25 msgid "" -"You should be able to use any of the listed mirrors by adding a\n" -"line to your /etc/apt/sources.list like this:" +"You should be able to use any of the listed mirrors by adding a line to your " +"/etc/apt/sources.list like this:" msgstr "" -#: templates/html/download.tmpl:38 +#: templates/html/download.tmpl:30 msgid "Replacing %s with the mirror in question." msgstr "" -#: templates/html/download.tmpl:45 templates/html/show.tmpl:145 +#: templates/html/download.tmpl:37 templates/html/show.tmpl:145 msgid "Experimental package" msgstr "Experimenteel pakket" -#: templates/html/download.tmpl:49 +#: templates/html/download.tmpl:38 #, fuzzy msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other possible documentation " -"before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog and other possible " +"documentation before using it." msgstr "" "Waarschuwing: Dit pakket komt uit de &lquot;experimental&rquot; distributie. Dit houdt in dat het " @@ -194,97 +191,93 @@ msgstr "" "Als u deze waarschuwing negeert en het pakket toch installeert, dan is dat " "op uw eigen risico." -#: templates/html/download.tmpl:55 templates/html/show.tmpl:155 +#: templates/html/download.tmpl:41 templates/html/show.tmpl:150 #, fuzzy #| msgid "List of all packages" msgid "debian-installer udeb package" msgstr "Lijst van alle pakketten" -#: templates/html/download.tmpl:58 templates/html/show.tmpl:158 +#: templates/html/download.tmpl:42 templates/html/show.tmpl:151 #, fuzzy #| msgid "" #| "Warning: This package is intended for the use in building debian-installer " #| "images only. Do not install it on a normal Debian system." msgid "" -"Warning: This package is intended for the use in building\n" -"debian-installer images only.\n" -"Do not install it on a normal %s system." +"Warning: This package is intended for the use in building debian-installer images only. Do " +"not install it on a normal %s system." msgstr "" "Waarschuwing: Dit pakket is alleen bedoeld voor gebruik tijden het bouwen " "van het Debian " "installatie programma. Installeer het niet op een normaal Debian systeem." -#: templates/html/download.tmpl:67 +#: templates/html/download.tmpl:49 msgid "" "You can download the requested file from the %s subdirectory at any " "of these sites:" msgstr "" -#: templates/html/download.tmpl:93 +#: templates/html/download.tmpl:75 msgid "" "You can download the requested file from the %s subdirectory at:" msgstr "" -#: templates/html/download.tmpl:95 -msgid "" -"Debian security updates are currently officially distributed only via " -"security.debian.org." +#: templates/html/download.tmpl:77 +msgid "%s security updates are officially distributed only via %s." msgstr "" -#: templates/html/download.tmpl:102 +#: templates/html/download.tmpl:84 msgid "" -"If none of the above sites are fast enough for you,\n" -"please see our complete mirror list." +"If none of the above sites are fast enough for you, please see our complete mirror list." msgstr "" -#: templates/html/download.tmpl:113 +#: templates/html/download.tmpl:92 msgid "" -"Note that %s is not officially included in the %s archive yet,\n" -"but the %s porter group keeps their archive in sync with the official " -"archive as close as possible.\n" -"See the %s ports page for current information." +"Note that %s is not officially included in the %s archive yet, but the %s " +"porter group keeps their archive in sync with the official archive as close " +"as possible. See the %s ports page for current " +"information." msgstr "" -#: templates/html/download.tmpl:120 +#: templates/html/download.tmpl:96 msgid "" "Note that in some browsers you will need to tell your browser you want the " -"file saved to a file.\n" -"For example, in Firefox or Mozilla, you should hold the Shift key when you " -"click on the URL." +"file saved to a file. For example, in Firefox or Mozilla, you should hold " +"the Shift key when you click on the URL." msgstr "" -#: templates/html/download.tmpl:125 +#: templates/html/download.tmpl:100 #, fuzzy #| msgid "More Information on %s" msgid "More information on %s:" msgstr "Meer informatie over %s" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "%s Byte (%s %s)" msgstr "" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 #, fuzzy msgid "Exact Size" msgstr "Pakket niet beschikbaar" -#: templates/html/download.tmpl:128 templates/html/show.tmpl:322 +#: templates/html/download.tmpl:103 templates/html/show.tmpl:320 msgid "MD5 checksum" msgstr "" -#: templates/html/download.tmpl:129 templates/html/download.tmpl:130 +#: templates/html/download.tmpl:104 templates/html/download.tmpl:105 #, fuzzy #| msgid "Not available" msgid "Not Available" msgstr "Niet beschikbaar" -#: templates/html/download.tmpl:129 +#: templates/html/download.tmpl:104 msgid "SHA1 checksum" msgstr "" -#: templates/html/download.tmpl:130 +#: templates/html/download.tmpl:105 msgid "SHA256 checksum" msgstr "" @@ -309,26 +302,26 @@ msgstr "Bestand" msgid "This page is also available in the following languages:" msgstr "Deze pagina is ook beschikbaar in de volgende talen:\n" -#: templates/html/foot.tmpl:18 +#: templates/html/foot.tmpl:22 #, fuzzy msgid "How to set the default document language" msgstr "Hoe u de standaard taal kunt instellen

" -#: templates/html/foot.tmpl:23 templates/html/head.tmpl:64 +#: templates/html/foot.tmpl:27 templates/html/head.tmpl:64 #, fuzzy msgid "%s Homepage" msgstr "Pakket niet beschikbaar" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Back to:" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 #, fuzzy msgid "Packages search page" msgstr "Alle Debianpakketten in \"%s\"" -#: templates/html/foot.tmpl:27 +#: templates/html/foot.tmpl:31 #, fuzzy #| msgid "" #| "To report a problem with the web site, e-mail %s%s. Voor meer informatie om met ons in contact te " "komen, zie de contact pagina." -#: templates/html/foot.tmpl:29 templates/txt/index.tmpl:4 +#: templates/html/foot.tmpl:33 templates/txt/index.tmpl:4 msgid "Generated:" msgstr "" -#: templates/html/foot.tmpl:31 +#: templates/html/foot.tmpl:35 #, fuzzy #| msgid "" #| "Copyright © 1997-2005 SPI; " @@ -358,7 +351,7 @@ msgstr "" "Copyright © 1997-2005 SPI; Ziede " "licentievoorwaarden." -#: templates/html/foot.tmpl:35 +#: templates/html/foot.tmpl:39 #, fuzzy msgid "Learn more about this site" msgstr "Overzicht van deze distributie" @@ -401,8 +394,8 @@ msgstr "" msgid "%s Packages Homepage" msgstr "Pakket niet beschikbaar" -#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:102 -#: templates/html/search_contents.tmpl:126 +#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:100 +#: templates/html/search_contents.tmpl:124 #, fuzzy msgid "Packages" msgstr "Pakket: %s (%s)" @@ -439,7 +432,7 @@ msgstr "Alle pakketten" msgid "Source" msgstr "Bronpakket:" -#: templates/html/index.tmpl:38 templates/html/show.tmpl:250 +#: templates/html/index.tmpl:38 templates/html/show.tmpl:247 #: templates/txt/index.tmpl:15 #, fuzzy msgid "virtual package provided by" @@ -537,7 +530,7 @@ msgstr "" #: templates/html/search.tmpl:37 msgid "" "You have searched only for words exactly matching your keywords. You can try " -"to search allowing subword matching." +"to search allowing subword matching." msgstr "" #: templates/html/search.tmpl:42 @@ -600,50 +593,54 @@ msgstr "" msgid "Found %u matching packages." msgstr "" -#: templates/html/search.tmpl:74 +#: templates/html/search.tmpl:72 msgid "" -"Note that this only shows the best matches, sorted by relevance.\n" -"If the first few packages don't match what you searched for, try using more " -"keywords or alternative\n" -"keywords." +"Note that this only shows the best matches, sorted by relevance. If the " +"first few packages don't match what you searched for, try using more " +"keywords or alternative keywords." msgstr "" -#: templates/html/search.tmpl:80 +#: templates/html/search.tmpl:74 msgid "" -"Your search was too wide so we will only display exact matches.\n" -"At least %u results have been omitted and will not be displayed.\n" -"Please consider using a longer keyword or more keywords." +"Your search was too wide so we will only display exact matches. At least " +"%u results have been omitted and will not be displayed. Please consider " +"using a longer keyword or more keywords." msgstr "" -#: templates/html/search.tmpl:86 templates/html/search_contents.tmpl:133 +#: templates/html/search.tmpl:79 templates/html/search_contents.tmpl:131 msgid "Sorry, your search gave no results" msgstr "" -#: templates/html/search.tmpl:93 +#: templates/html/search.tmpl:86 #, fuzzy msgid "Package %s" msgstr "Pakket: %s (%s)" -#: templates/html/search.tmpl:103 +#: templates/html/search.tmpl:96 +#, fuzzy +msgid "also provided by:" +msgstr "virtueel pakket" + +#: templates/html/search.tmpl:96 msgid "provided by:" msgstr "" -#: templates/html/search.tmpl:111 +#: templates/html/search.tmpl:105 #, fuzzy msgid "Source Package %s" msgstr "Bronpakket" -#: templates/html/search.tmpl:119 +#: templates/html/search.tmpl:113 #, fuzzy msgid "Binary packages:" msgstr "virtueel pakket" -#: templates/html/search.tmpl:121 +#: templates/html/search.tmpl:115 #, fuzzy msgid "%u binary packages" msgstr "Pakket niet beschikbaar" -#: templates/html/search.tmpl:131 +#: templates/html/search.tmpl:125 msgid "" "%u results have not been displayed because you requested " "only exact matches." @@ -712,28 +709,27 @@ msgstr "" msgid "Found %u results." msgstr "" -#: templates/html/search_contents.tmpl:89 +#: templates/html/search_contents.tmpl:88 msgid "" "Note: Your search was too wide so we will only display only the first about " -"100 matches.\n" -"Please consider using a longer keyword or more keywords." +"100 matches. Please consider using a longer keyword or more keywords." msgstr "" -#: templates/html/search_contents.tmpl:99 +#: templates/html/search_contents.tmpl:97 msgid "Sort results by filename" msgstr "" -#: templates/html/search_contents.tmpl:100 -#: templates/html/search_contents.tmpl:126 templates/html/show.tmpl:322 +#: templates/html/search_contents.tmpl:98 +#: templates/html/search_contents.tmpl:124 templates/html/show.tmpl:320 msgid "File" msgstr "Bestand" -#: templates/html/search_contents.tmpl:101 +#: templates/html/search_contents.tmpl:99 #, fuzzy msgid "Sort results by package name" msgstr "Bronpakket" -#: templates/html/search_contents.tmpl:116 +#: templates/html/search_contents.tmpl:114 #, fuzzy #| msgid "not" msgid "not %s" @@ -864,15 +860,13 @@ msgstr "" msgid "Similar packages:" msgstr "virtueel pakket" -#: templates/html/show.tmpl:149 +#: templates/html/show.tmpl:146 #, fuzzy msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other " -"possible documentation before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog " +"and other possible documentation before using it." msgstr "" "Waarschuwing: Dit pakket komt uit de &lquot;experimental&rquot; distributie. Dit houdt in dat het " @@ -880,7 +874,7 @@ msgstr "" "Als u deze waarschuwing negeert en het pakket toch installeert, dan is dat " "op uw eigen risico." -#: templates/html/show.tmpl:177 +#: templates/html/show.tmpl:169 msgid "" "This is a virtual package. See the Debian policy " "for a definition of virtual " @@ -890,100 +884,135 @@ msgstr "" "beleidshandboek voor de definitie van een virtueel pakket." -#: templates/html/show.tmpl:185 +#: templates/html/show.tmpl:177 msgid "Tags" msgstr "" -#: templates/html/show.tmpl:206 +#: templates/html/show.tmpl:200 msgid "Packages providing %s" msgstr "Pakketten die %s leveren:" -#: templates/html/show.tmpl:215 +#: templates/html/show.tmpl:209 msgid "The following binary packages are built from this source package:" msgstr "De volgende binaire pakketten worden van dit bronpakket gebouwd:" -#: templates/html/show.tmpl:224 +#: templates/html/show.tmpl:218 msgid "Other Packages Related to %s" msgstr "Andere pakketten die aan %s zijn gerelateerd" -#: templates/html/show.tmpl:254 +#: templates/html/show.tmpl:220 +msgid "legend" +msgstr "" + +#: templates/html/show.tmpl:222 +msgid "build-depends" +msgstr "" + +#: templates/html/show.tmpl:223 +msgid "build-depends-indep" +msgstr "" + +#: templates/html/show.tmpl:225 +msgid "depends" +msgstr "" + +#: templates/html/show.tmpl:226 +msgid "recommends" +msgstr "" + +#: templates/html/show.tmpl:227 +msgid "suggests" +msgstr "" + +#: templates/html/show.tmpl:237 +#, fuzzy +#| msgid "or" +msgid "or " +msgstr "of" + +#: templates/html/show.tmpl:245 +#, fuzzy +msgid "also a virtual package provided by" +msgstr "virtueel pakket" + +#: templates/html/show.tmpl:252 #, fuzzy msgid "%u providing packages" msgstr "Pakket niet beschikbaar" -#: templates/html/show.tmpl:272 +#: templates/html/show.tmpl:270 msgid "Download %s" msgstr "Download %s" -#: templates/html/show.tmpl:274 +#: templates/html/show.tmpl:272 msgid "" "The download table links to the download of the package and a file overview. " "In addition it gives information about the package size and the installed " "size." msgstr "" -#: templates/html/show.tmpl:275 +#: templates/html/show.tmpl:273 msgid "Download for all available architectures" msgstr "" -#: templates/html/show.tmpl:276 +#: templates/html/show.tmpl:274 msgid "Architecture" msgstr "" -#: templates/html/show.tmpl:277 +#: templates/html/show.tmpl:275 msgid "Version" msgstr "Versie" -#: templates/html/show.tmpl:278 +#: templates/html/show.tmpl:276 #, fuzzy msgid "Package Size" msgstr "Pakket niet beschikbaar" -#: templates/html/show.tmpl:279 +#: templates/html/show.tmpl:277 msgid "Installed Size" msgstr "Geïnstalleerde grootte" -#: templates/html/show.tmpl:280 +#: templates/html/show.tmpl:278 #, fuzzy msgid "Files" msgstr "Bestand" -#: templates/html/show.tmpl:288 +#: templates/html/show.tmpl:286 msgid "(unofficial port)" msgstr "" -#: templates/html/show.tmpl:299 templates/html/show.tmpl:327 +#: templates/html/show.tmpl:297 templates/html/show.tmpl:325 msgid "%.1f kB" msgstr "" -#: templates/html/show.tmpl:299 +#: templates/html/show.tmpl:297 msgid "%u kB" msgstr "" -#: templates/html/show.tmpl:302 +#: templates/html/show.tmpl:300 msgid "list of files" msgstr "lijst van bestanden" -#: templates/html/show.tmpl:304 +#: templates/html/show.tmpl:302 #, fuzzy msgid "no current information" msgstr "Meer informatie over %s" -#: templates/html/show.tmpl:321 +#: templates/html/show.tmpl:319 msgid "Download information for the files of this source package" msgstr "" -#: templates/html/show.tmpl:322 +#: templates/html/show.tmpl:320 msgid "Size (in kB)" msgstr "Grootte (in kB)" -#: templates/html/show.tmpl:340 +#: templates/html/show.tmpl:338 msgid "" "Debian Package Source Repository (VCS: %s)" msgstr "" -#: templates/html/show.tmpl:344 +#: templates/html/show.tmpl:342 #, fuzzy msgid "Debian Package Source Repository (Browsable)" msgstr "Alle Debianpakketten in \"%s\"" @@ -1033,25 +1062,21 @@ msgstr "Pakket niet beschikbaar" #: templates/rss/newpkg.tmpl:20 #, fuzzy -#| msgid "" -#| "Packages that were added to the unstable Debian archive during the last 7 " -#| "days." msgid "" -"Packages that were added to the %s %s archive (section \"%s\") during the " -"last 7 days." +"The following packages were added to suite %s (section %s) in the %s archive " +"during the last 7 days." msgstr "" -"Pakketten die in de afgelopen 7 dagen aan de «unstable» distributie zijn " -"toegevoegd." +"De volgende pakketten zijn in de afgelopen 7 dagen aan de «unstable» " +"distributie toegevoegd." #: templates/rss/newpkg.tmpl:23 #, fuzzy -#| msgid "" -#| "Packages that were added to the unstable Debian archive during the last 7 " -#| "days." -msgid "Packages that were added to the %s %s archive during the last 7 days." +msgid "" +"The following packages were added to suite %s in the %s archive during the " +"last 7 days." msgstr "" -"Pakketten die in de afgelopen 7 dagen aan de «unstable» distributie zijn " -"toegevoegd." +"De volgende pakketten zijn in de afgelopen 7 dagen aan de «unstable» " +"distributie toegevoegd." #: templates/rss/newpkg.tmpl:28 templates/txt/index.tmpl:5 msgid "Copyright ©" @@ -1068,206 +1093,220 @@ msgid "See for the license terms." msgstr "" #, fuzzy -#~ msgid "" -#~ "Note that the experimental distribution is not self-" -#~ "contained; missing dependencies are likely found in the unstable distribution." -#~ msgstr "" -#~ "Merk op dat de «experimental» distributie " -#~ "niet op zichzelf staat; ontbrekende afhankelijkheden kunnen " -#~ "waarschijnlijk worden gevonden in de «a href=\"../../unstable/" -#~ "\">unstable» distributie." - -#~ msgid "Versions:" -#~ msgstr "Versies:" +#~ msgid "two or more packages specified (%s)" +#~ msgstr "Bronpakket: %s (%s)" -#~ msgid "" -#~ "Copyright (C) 1997-2005 SPI;\n" -#~ "See for the license terms.\n" -#~ "\n" -#~ msgstr "" -#~ "Copyright (C) 1997-2005 SPI;\n" -#~ "Zie voor de licentievoorwaarden.\n" -#~ "\n" +#, fuzzy +#~ msgid "No such package in this suite on this architecture." +#~ msgstr "Geen pakketten in deze sectie en deze suite" -#~ msgid "No essential packages in this suite" -#~ msgstr "Geen essentiële pakketten in deze suite" +#~ msgid "Virtual package" +#~ msgstr "Virtueel pakket" -#~ msgid "Software Packages in \"%s\", essential packages" -#~ msgstr "Softwarepakketten in \"%s\", essentiële pakketten" +#, fuzzy +#~ msgid "No such package." +#~ msgstr "Bronpakket" -#~ msgid "No packages with this priority in this suite" -#~ msgstr "Geen pakketten met deze prioriteit in deze suite" +#, fuzzy +#~ msgid "Package not available in this suite." +#~ msgstr "Pakket niet beschikbaar" -#~ msgid "" -#~ "Warning: These packages are intended for the use in building debian-installer " -#~ "images only. Do not install them on a normal Debian system." -#~ msgstr "" -#~ "Waarschuwing: Deze pakketten zijn alleen bedoeld voor gebruik tijden het " -#~ "bouwen van het Debian installatie programma. Installeer het niet op een normaal " -#~ "Debian systeem." +#~ msgid "Package not available" +#~ msgstr "Pakket niet beschikbaar" -#~ msgid "yes" -#~ msgstr "ja" +#, fuzzy +#~ msgid "Software Packages in \"%s\", subsection %s" +#~ msgstr "Softwarepakketten in \"%s\", %s sectie" -#~ msgid "Priority" -#~ msgstr "Prioriteit" +#~ msgid "Software Packages in \"%s\", priority %s" +#~ msgstr "Softwarepakketten in \"%s\", prioriteit %s" -#~ msgid "Uploaders" -#~ msgstr "Uploaders" +#, fuzzy +#~ msgid "search for a package" +#~ msgstr "Lijst van alle pakketten" -#~ msgid "Size is measured in kBytes." -#~ msgstr "De grootte is aangegeven in kBytes." +#, fuzzy +#~ msgid " (section %s)" +#~ msgstr "Sectie" +#, fuzzy #~ msgid "" -#~ "Users of experimental packages are encouraged to contact the package " -#~ "maintainers directly in case of problems." +#~ "The following packages were added to suite %s%s in the Debian archive " +#~ "during the last 7 days." #~ msgstr "" -#~ "Gebruikers van pakketten uit «experimental» kunnen, in het geval van " -#~ "problemen, het beste direct de beheerder van het pakket contacteren." +#~ "De volgende pakketten zijn in de afgelopen 7 dagen aan de «unstable» " +#~ "distributie toegevoegd." -#~ msgid "" -#~ "Warning: The experimental distribution " -#~ "contains software that is likely unstable or buggy and may even cause " -#~ "data loss. If you ignore this warning and install it nevertheless, you do " -#~ "it on your own risk." -#~ msgstr "" -#~ "Waarschuwing: De «experimental» distributie " -#~ "bevat programmatuur die hoogstwaarschijnlijk onstabiel is, veel fouten " -#~ "bevat of zelfs dataverlies kan veroorzaken. Als u deze waarschuwing " -#~ "negeert en het toch installeert, dan is dat op uw eigen risico." +#, fuzzy +#~ msgid "Nothing found" +#~ msgstr "Niet gevonden" -#~ msgid "Size:" -#~ msgstr "Grootte:" +#~ msgid "Download %s\n" +#~ msgstr "Download %s\n" -#~ msgid "" -#~ "Debian is a registered trademark of Software in the Public Interest, Inc." -#~ msgstr "" -#~ "Debian is een geregistreerd handelsmerk van Software in the Public " -#~ "Interest, Inc." +#~ msgid "virtual package" +#~ msgstr "virtueel pakket" -#~ msgid "Last Modified: " -#~ msgstr "Laatst gewijzigd:" +#~ msgid "Overview over this distribution" +#~ msgstr "Overzicht van deze distributie" -#~ msgid "" -#~ "Back to: Debian Project homepage || Packages search page" -#~ msgstr "" -#~ "Terug naar: Debian Project hoofdpagina || Pakketten zoekpagina" +#~ msgid "md5sum" +#~ msgstr "md5sum" -#~ msgid "Site map" -#~ msgstr "Index" +#~ msgid "Check for Bug Reports about %s." +#~ msgstr "Zoek naar bug-rapporten over %s." -#~ msgid "Development" -#~ msgstr "Ontwikkeling" +#~ msgid "Source Package:" +#~ msgstr "Bronpakket:" -#~ msgid "Support" -#~ msgstr "Ondersteuning" +#~ msgid "View the Debian changelog" +#~ msgstr "Bekijk de Debian changelog" -#~ msgid "Getting Debian" -#~ msgstr "Verkrijgen" +#~ msgid "View the copyright file" +#~ msgstr "Bekijk het bestand met auteursrecht-informatie" -#~ msgid "News" -#~ msgstr "Nieuws" +#~ msgid "%s is responsible for this Debian package." +#~ msgstr "%s is verantwoordelijk voor die Debian pakket." -#~ msgid "About Debian" -#~ msgstr "Over Debian" +#~ msgid " and %s are responsible for this Debian package." +#~ msgstr " en %s zijn verantwoordelijk voor dit Debian pakket." -#~ msgid "Debian Project" -#~ msgstr "Debian Project" +#~ msgid "See the developer information for %s." +#~ msgstr "Zie de informatie voor ontwikkelaars voor %s." #, fuzzy #~ msgid "Search on:" #~ msgstr "Zoeken" -#~ msgid "or" -#~ msgstr "of" +#~ msgid "Debian Project" +#~ msgstr "Debian Project" -#, fuzzy -#~ msgid "also a virtual package provided by " -#~ msgstr "virtueel pakket" +#~ msgid "About Debian" +#~ msgstr "Over Debian" -#~ msgid "See the developer information for %s." -#~ msgstr "Zie de informatie voor ontwikkelaars voor %s." +#~ msgid "News" +#~ msgstr "Nieuws" -#~ msgid " and %s are responsible for this Debian package." -#~ msgstr " en %s zijn verantwoordelijk voor dit Debian pakket." +#~ msgid "Getting Debian" +#~ msgstr "Verkrijgen" -#~ msgid "%s is responsible for this Debian package." -#~ msgstr "%s is verantwoordelijk voor die Debian pakket." +#~ msgid "Support" +#~ msgstr "Ondersteuning" -#~ msgid "View the copyright file" -#~ msgstr "Bekijk het bestand met auteursrecht-informatie" +#~ msgid "Development" +#~ msgstr "Ontwikkeling" -#~ msgid "View the Debian changelog" -#~ msgstr "Bekijk de Debian changelog" +#~ msgid "Site map" +#~ msgstr "Index" -#~ msgid "Source Package:" -#~ msgstr "Bronpakket:" +#~ msgid "" +#~ "Back to: Debian Project homepage || Packages search page" +#~ msgstr "" +#~ "Terug naar: Debian Project hoofdpagina || Pakketten zoekpagina" -#~ msgid "Check for Bug Reports about %s." -#~ msgstr "Zoek naar bug-rapporten over %s." +#~ msgid "Last Modified: " +#~ msgstr "Laatst gewijzigd:" -#~ msgid "md5sum" -#~ msgstr "md5sum" +#~ msgid "" +#~ "Debian is a registered trademark of Software in the Public Interest, Inc." +#~ msgstr "" +#~ "Debian is een geregistreerd handelsmerk van Software in the Public " +#~ "Interest, Inc." -#~ msgid "Overview over this distribution" -#~ msgstr "Overzicht van deze distributie" +#~ msgid "Size:" +#~ msgstr "Grootte:" -#~ msgid "virtual package" -#~ msgstr "virtueel pakket" +#~ msgid "" +#~ "Warning: The experimental distribution " +#~ "contains software that is likely unstable or buggy and may even cause " +#~ "data loss. If you ignore this warning and install it nevertheless, you do " +#~ "it on your own risk." +#~ msgstr "" +#~ "Waarschuwing: De «experimental» distributie " +#~ "bevat programmatuur die hoogstwaarschijnlijk onstabiel is, veel fouten " +#~ "bevat of zelfs dataverlies kan veroorzaken. Als u deze waarschuwing " +#~ "negeert en het toch installeert, dan is dat op uw eigen risico." -#~ msgid "Download %s\n" -#~ msgstr "Download %s\n" +#~ msgid "" +#~ "Users of experimental packages are encouraged to contact the package " +#~ "maintainers directly in case of problems." +#~ msgstr "" +#~ "Gebruikers van pakketten uit «experimental» kunnen, in het geval van " +#~ "problemen, het beste direct de beheerder van het pakket contacteren." -#, fuzzy -#~ msgid "Nothing found" -#~ msgstr "Niet gevonden" +#~ msgid "Size is measured in kBytes." +#~ msgstr "De grootte is aangegeven in kBytes." + +#~ msgid "Uploaders" +#~ msgstr "Uploaders" + +#~ msgid "Priority" +#~ msgstr "Prioriteit" + +#~ msgid "yes" +#~ msgstr "ja" -#, fuzzy #~ msgid "" -#~ "The following packages were added to suite %s%s in the Debian archive " -#~ "during the last 7 days." +#~ "Warning: These packages are intended for the use in building debian-installer " +#~ "images only. Do not install them on a normal Debian system." #~ msgstr "" -#~ "De volgende pakketten zijn in de afgelopen 7 dagen aan de «unstable» " -#~ "distributie toegevoegd." - -#, fuzzy -#~ msgid " (section %s)" -#~ msgstr "Sectie" +#~ "Waarschuwing: Deze pakketten zijn alleen bedoeld voor gebruik tijden het " +#~ "bouwen van het Debian installatie programma. Installeer het niet op een normaal " +#~ "Debian systeem." -#, fuzzy -#~ msgid "search for a package" -#~ msgstr "Lijst van alle pakketten" +#~ msgid "No packages with this priority in this suite" +#~ msgstr "Geen pakketten met deze prioriteit in deze suite" -#~ msgid "Software Packages in \"%s\", priority %s" -#~ msgstr "Softwarepakketten in \"%s\", prioriteit %s" +#~ msgid "Software Packages in \"%s\", essential packages" +#~ msgstr "Softwarepakketten in \"%s\", essentiële pakketten" -#, fuzzy -#~ msgid "Software Packages in \"%s\", subsection %s" -#~ msgstr "Softwarepakketten in \"%s\", %s sectie" +#~ msgid "No essential packages in this suite" +#~ msgstr "Geen essentiële pakketten in deze suite" -#~ msgid "Package not available" -#~ msgstr "Pakket niet beschikbaar" +#~ msgid "" +#~ "Copyright (C) 1997-2005 SPI;\n" +#~ "See for the license terms.\n" +#~ "\n" +#~ msgstr "" +#~ "Copyright (C) 1997-2005 SPI;\n" +#~ "Zie voor de licentievoorwaarden.\n" +#~ "\n" -#, fuzzy -#~ msgid "Package not available in this suite." -#~ msgstr "Pakket niet beschikbaar" +#~ msgid "Versions:" +#~ msgstr "Versies:" #, fuzzy -#~ msgid "No such package." -#~ msgstr "Bronpakket" - -#~ msgid "Virtual package" -#~ msgstr "Virtueel pakket" +#~ msgid "" +#~ "Note that the experimental distribution is not self-" +#~ "contained; missing dependencies are likely found in the unstable distribution." +#~ msgstr "" +#~ "Merk op dat de «experimental» distributie " +#~ "niet op zichzelf staat; ontbrekende afhankelijkheden kunnen " +#~ "waarschijnlijk worden gevonden in de «a href=\"../../unstable/" +#~ "\">unstable» distributie." #, fuzzy -#~ msgid "No such package in this suite on this architecture." -#~ msgstr "Geen pakketten in deze sectie en deze suite" +#~| msgid "" +#~| "Packages that were added to the unstable Debian archive during the last " +#~| "7 days." +#~ msgid "" +#~ "Packages that were added to the %s %s archive during the last 7 days." +#~ msgstr "" +#~ "Pakketten die in de afgelopen 7 dagen aan de «unstable» distributie zijn " +#~ "toegevoegd." #, fuzzy -#~ msgid "two or more packages specified (%s)" -#~ msgstr "Bronpakket: %s (%s)" +#~| msgid "" +#~| "Packages that were added to the unstable Debian archive during the last " +#~| "7 days." +#~ msgid "" +#~ "Packages that were added to the %s %s archive (section \"%s\") during the " +#~ "last 7 days." +#~ msgstr "" +#~ "Pakketten die in de afgelopen 7 dagen aan de «unstable» distributie zijn " +#~ "toegevoegd." diff --git a/po/templates.pot b/po/templates.pot index c56433b..dd15aff 100644 --- a/po/templates.pot +++ b/po/templates.pot @@ -3,19 +3,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: templates/config.tmpl:37 +#: templates/config.tmpl:40 msgid "Debian Web Mailinglist" msgstr "" -#: templates/config.tmpl:42 +#: templates/config.tmpl:45 msgid "%s Webmaster" msgstr "" -#: templates/config.tmpl:45 +#: templates/config.tmpl:48 msgid "%s is a trademark of %s" msgstr "" -#: templates/config.tmpl:50 +#: templates/config.tmpl:53 msgid "Please note that this is an experimental version of packages.debian.org. Errors and obsolete information should be expected" msgstr "" @@ -143,88 +143,88 @@ msgstr "" msgid "Download Page for %s" msgstr "" -#: templates/html/download.tmpl:26 -msgid "If you are running %s, it is strongly suggested to use a\npackage manager like aptitude or\nsynaptic to download and install\npackages, instead of doing so manually via this website." +#: templates/html/download.tmpl:23 +msgid "If you are running %s, it is strongly suggested to use a package manager like aptitude or synaptic to download and install packages, instead of doing so manually via this website." msgstr "" -#: templates/html/download.tmpl:32 -msgid "You should be able to use any of the listed mirrors by adding a\nline to your /etc/apt/sources.list like this:" +#: templates/html/download.tmpl:25 +msgid "You should be able to use any of the listed mirrors by adding a line to your /etc/apt/sources.list like this:" msgstr "" -#: templates/html/download.tmpl:38 +#: templates/html/download.tmpl:30 msgid "Replacing %s with the mirror in question." msgstr "" -#: templates/html/download.tmpl:45 +#: templates/html/download.tmpl:37 #: templates/html/show.tmpl:145 msgid "Experimental package" msgstr "" -#: templates/html/download.tmpl:49 -msgid "Warning: This package is from the experimental distribution.\nThat means it is likely unstable or buggy, and it may even cause data loss.\nPlease be sure to consult the changelog and other possible documentation before\nusing it." +#: templates/html/download.tmpl:38 +msgid "Warning: This package is from the experimental distribution. That means it is likely unstable or buggy, and it may even cause data loss. Please be sure to consult the changelog and other possible documentation before using it." msgstr "" -#: templates/html/download.tmpl:55 -#: templates/html/show.tmpl:155 +#: templates/html/download.tmpl:41 +#: templates/html/show.tmpl:150 msgid "debian-installer udeb package" msgstr "" -#: templates/html/download.tmpl:58 -#: templates/html/show.tmpl:158 -msgid "Warning: This package is intended for the use in building\ndebian-installer images only.\nDo not install it on a normal %s system." +#: templates/html/download.tmpl:42 +#: templates/html/show.tmpl:151 +msgid "Warning: This package is intended for the use in building debian-installer images only. Do not install it on a normal %s system." msgstr "" -#: templates/html/download.tmpl:67 +#: templates/html/download.tmpl:49 msgid "You can download the requested file from the %s subdirectory at any of these sites:" msgstr "" -#: templates/html/download.tmpl:93 +#: templates/html/download.tmpl:75 msgid "You can download the requested file from the %s subdirectory at:" msgstr "" -#: templates/html/download.tmpl:95 -msgid "Debian security updates are currently officially distributed only via security.debian.org." +#: templates/html/download.tmpl:77 +msgid "%s security updates are officially distributed only via %s." msgstr "" -#: templates/html/download.tmpl:102 -msgid "If none of the above sites are fast enough for you,\nplease see our complete mirror list." +#: templates/html/download.tmpl:84 +msgid "If none of the above sites are fast enough for you, please see our complete mirror list." msgstr "" -#: templates/html/download.tmpl:113 -msgid "Note that %s is not officially included in the %s archive yet,\nbut the %s porter group keeps their archive in sync with the official archive as close as possible.\nSee the %s ports page for current information." +#: templates/html/download.tmpl:92 +msgid "Note that %s is not officially included in the %s archive yet, but the %s porter group keeps their archive in sync with the official archive as close as possible. See the %s ports page for current information." msgstr "" -#: templates/html/download.tmpl:120 -msgid "Note that in some browsers you will need to tell your browser you want the file saved to a file.\nFor example, in Firefox or Mozilla, you should hold the Shift key when you click on the URL." +#: templates/html/download.tmpl:96 +msgid "Note that in some browsers you will need to tell your browser you want the file saved to a file. For example, in Firefox or Mozilla, you should hold the Shift key when you click on the URL." msgstr "" -#: templates/html/download.tmpl:125 +#: templates/html/download.tmpl:100 msgid "More information on %s:" msgstr "" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "Exact Size" msgstr "" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "%s Byte (%s %s)" msgstr "" -#: templates/html/download.tmpl:128 -#: templates/html/show.tmpl:322 +#: templates/html/download.tmpl:103 +#: templates/html/show.tmpl:320 msgid "MD5 checksum" msgstr "" -#: templates/html/download.tmpl:129 +#: templates/html/download.tmpl:104 msgid "SHA1 checksum" msgstr "" -#: templates/html/download.tmpl:129 -#: templates/html/download.tmpl:130 +#: templates/html/download.tmpl:104 +#: templates/html/download.tmpl:105 msgid "Not Available" msgstr "" -#: templates/html/download.tmpl:130 +#: templates/html/download.tmpl:105 msgid "SHA256 checksum" msgstr "" @@ -244,37 +244,37 @@ msgstr "" msgid "This page is also available in the following languages:" msgstr "" -#: templates/html/foot.tmpl:18 +#: templates/html/foot.tmpl:22 msgid "How to set the default document language" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Back to:" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 #: templates/html/head.tmpl:64 msgid "%s Homepage" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Packages search page" msgstr "" -#: templates/html/foot.tmpl:27 +#: templates/html/foot.tmpl:31 msgid "To report a problem with the web site, e-mail %s. For other contact information, see the %s contact page." msgstr "" -#: templates/html/foot.tmpl:29 +#: templates/html/foot.tmpl:33 #: templates/txt/index.tmpl:4 msgid "Generated:" msgstr "" -#: templates/html/foot.tmpl:31 +#: templates/html/foot.tmpl:35 msgid "Content Copyright © %s %s; See license terms." msgstr "" -#: templates/html/foot.tmpl:35 +#: templates/html/foot.tmpl:39 msgid "Learn more about this site" msgstr "" @@ -311,8 +311,8 @@ msgid "%s Packages Homepage" msgstr "" #: templates/html/head.tmpl:65 -#: templates/html/search_contents.tmpl:102 -#: templates/html/search_contents.tmpl:126 +#: templates/html/search_contents.tmpl:100 +#: templates/html/search_contents.tmpl:124 msgid "Packages" msgstr "" @@ -343,7 +343,7 @@ msgid "Source" msgstr "" #: templates/html/index.tmpl:38 -#: templates/html/show.tmpl:250 +#: templates/html/show.tmpl:247 #: templates/txt/index.tmpl:15 msgid "virtual package provided by" msgstr "" @@ -413,7 +413,7 @@ msgid "You can try a different search on the Pack msgstr "" #: templates/html/search.tmpl:37 -msgid "You have searched only for words exactly matching your keywords. You can try to search allowing subword matching." +msgid "You have searched only for words exactly matching your keywords. You can try to search allowing subword matching." msgstr "" #: templates/html/search.tmpl:42 @@ -470,40 +470,44 @@ msgstr "" msgid "Found %u matching packages." msgstr "" -#: templates/html/search.tmpl:74 -msgid "Note that this only shows the best matches, sorted by relevance.\nIf the first few packages don't match what you searched for, try using more keywords or alternative\nkeywords." +#: templates/html/search.tmpl:72 +msgid "Note that this only shows the best matches, sorted by relevance. If the first few packages don't match what you searched for, try using more keywords or alternative keywords." msgstr "" -#: templates/html/search.tmpl:80 -msgid "Your search was too wide so we will only display exact matches.\nAt least %u results have been omitted and will not be displayed.\nPlease consider using a longer keyword or more keywords." +#: templates/html/search.tmpl:74 +msgid "Your search was too wide so we will only display exact matches. At least %u results have been omitted and will not be displayed. Please consider using a longer keyword or more keywords." msgstr "" -#: templates/html/search.tmpl:86 -#: templates/html/search_contents.tmpl:133 +#: templates/html/search.tmpl:79 +#: templates/html/search_contents.tmpl:131 msgid "Sorry, your search gave no results" msgstr "" -#: templates/html/search.tmpl:93 +#: templates/html/search.tmpl:86 msgid "Package %s" msgstr "" -#: templates/html/search.tmpl:103 +#: templates/html/search.tmpl:96 +msgid "also provided by:" +msgstr "" + +#: templates/html/search.tmpl:96 msgid "provided by:" msgstr "" -#: templates/html/search.tmpl:111 +#: templates/html/search.tmpl:105 msgid "Source Package %s" msgstr "" -#: templates/html/search.tmpl:119 +#: templates/html/search.tmpl:113 msgid "Binary packages:" msgstr "" -#: templates/html/search.tmpl:121 +#: templates/html/search.tmpl:115 msgid "%u binary packages" msgstr "" -#: templates/html/search.tmpl:131 +#: templates/html/search.tmpl:125 msgid "%u results have not been displayed because you requested only exact matches." msgstr "" @@ -567,25 +571,25 @@ msgstr "" msgid "Found %u results." msgstr "" -#: templates/html/search_contents.tmpl:89 -msgid "Note: Your search was too wide so we will only display only the first about 100 matches.\nPlease consider using a longer keyword or more keywords." +#: templates/html/search_contents.tmpl:88 +msgid "Note: Your search was too wide so we will only display only the first about 100 matches. Please consider using a longer keyword or more keywords." msgstr "" -#: templates/html/search_contents.tmpl:99 +#: templates/html/search_contents.tmpl:97 msgid "Sort results by filename" msgstr "" -#: templates/html/search_contents.tmpl:100 -#: templates/html/search_contents.tmpl:126 -#: templates/html/show.tmpl:322 +#: templates/html/search_contents.tmpl:98 +#: templates/html/search_contents.tmpl:124 +#: templates/html/show.tmpl:320 msgid "File" msgstr "" -#: templates/html/search_contents.tmpl:101 +#: templates/html/search_contents.tmpl:99 msgid "Sort results by package name" msgstr "" -#: templates/html/search_contents.tmpl:116 +#: templates/html/search_contents.tmpl:114 msgid "not %s" msgstr "" @@ -698,100 +702,132 @@ msgstr "" msgid "Similar packages:" msgstr "" -#: templates/html/show.tmpl:149 -msgid "Warning: This package is from the experimental distribution.\nThat means it is likely unstable or buggy, and it may even cause data loss.\nPlease be sure to consult the changelog and other possible documentation before\nusing it." +#: templates/html/show.tmpl:146 +msgid "Warning: This package is from the experimental distribution. That means it is likely unstable or buggy, and it may even cause data loss. Please be sure to consult the changelog and other possible documentation before using it." msgstr "" -#: templates/html/show.tmpl:177 +#: templates/html/show.tmpl:169 msgid "This is a virtual package. See the Debian policy for a definition of virtual packages." msgstr "" -#: templates/html/show.tmpl:185 +#: templates/html/show.tmpl:177 msgid "Tags" msgstr "" -#: templates/html/show.tmpl:206 +#: templates/html/show.tmpl:200 msgid "Packages providing %s" msgstr "" -#: templates/html/show.tmpl:215 +#: templates/html/show.tmpl:209 msgid "The following binary packages are built from this source package:" msgstr "" -#: templates/html/show.tmpl:224 +#: templates/html/show.tmpl:218 msgid "Other Packages Related to %s" msgstr "" -#: templates/html/show.tmpl:254 +#: templates/html/show.tmpl:220 +msgid "legend" +msgstr "" + +#: templates/html/show.tmpl:222 +msgid "build-depends" +msgstr "" + +#: templates/html/show.tmpl:223 +msgid "build-depends-indep" +msgstr "" + +#: templates/html/show.tmpl:225 +msgid "depends" +msgstr "" + +#: templates/html/show.tmpl:226 +msgid "recommends" +msgstr "" + +#: templates/html/show.tmpl:227 +msgid "suggests" +msgstr "" + +#: templates/html/show.tmpl:237 +msgid "or " +msgstr "" + +#: templates/html/show.tmpl:245 +msgid "also a virtual package provided by" +msgstr "" + +#: templates/html/show.tmpl:252 msgid "%u providing packages" msgstr "" -#: templates/html/show.tmpl:272 +#: templates/html/show.tmpl:270 msgid "Download %s" msgstr "" -#: templates/html/show.tmpl:274 +#: templates/html/show.tmpl:272 msgid "The download table links to the download of the package and a file overview. In addition it gives information about the package size and the installed size." msgstr "" -#: templates/html/show.tmpl:275 +#: templates/html/show.tmpl:273 msgid "Download for all available architectures" msgstr "" -#: templates/html/show.tmpl:276 +#: templates/html/show.tmpl:274 msgid "Architecture" msgstr "" -#: templates/html/show.tmpl:277 +#: templates/html/show.tmpl:275 msgid "Version" msgstr "" -#: templates/html/show.tmpl:278 +#: templates/html/show.tmpl:276 msgid "Package Size" msgstr "" -#: templates/html/show.tmpl:279 +#: templates/html/show.tmpl:277 msgid "Installed Size" msgstr "" -#: templates/html/show.tmpl:280 +#: templates/html/show.tmpl:278 msgid "Files" msgstr "" -#: templates/html/show.tmpl:288 +#: templates/html/show.tmpl:286 msgid "(unofficial port)" msgstr "" -#: templates/html/show.tmpl:299 -#: templates/html/show.tmpl:327 +#: templates/html/show.tmpl:297 +#: templates/html/show.tmpl:325 msgid "%.1f kB" msgstr "" -#: templates/html/show.tmpl:299 +#: templates/html/show.tmpl:297 msgid "%u kB" msgstr "" -#: templates/html/show.tmpl:302 +#: templates/html/show.tmpl:300 msgid "list of files" msgstr "" -#: templates/html/show.tmpl:304 +#: templates/html/show.tmpl:302 msgid "no current information" msgstr "" -#: templates/html/show.tmpl:321 +#: templates/html/show.tmpl:319 msgid "Download information for the files of this source package" msgstr "" -#: templates/html/show.tmpl:322 +#: templates/html/show.tmpl:320 msgid "Size (in kB)" msgstr "" -#: templates/html/show.tmpl:340 +#: templates/html/show.tmpl:338 msgid "Debian Package Source Repository (VCS: %s)" msgstr "" -#: templates/html/show.tmpl:344 +#: templates/html/show.tmpl:342 msgid "Debian Package Source Repository (Browsable)" msgstr "" @@ -834,11 +870,11 @@ msgid "New %s Packages" msgstr "" #: templates/rss/newpkg.tmpl:20 -msgid "Packages that were added to the %s %s archive (section \"%s\") during the last 7 days." +msgid "The following packages were added to suite %s (section %s) in the %s archive during the last 7 days." msgstr "" #: templates/rss/newpkg.tmpl:23 -msgid "Packages that were added to the %s %s archive during the last 7 days." +msgid "The following packages were added to suite %s in the %s archive during the last 7 days." msgstr "" #: templates/rss/newpkg.tmpl:28 diff --git a/po/templates.uk.po b/po/templates.uk.po index bfb9ffe..823e4ac 100644 --- a/po/templates.uk.po +++ b/po/templates.uk.po @@ -17,19 +17,19 @@ msgstr "" "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" -#: templates/config.tmpl:37 +#: templates/config.tmpl:40 msgid "Debian Web Mailinglist" msgstr "" -#: templates/config.tmpl:42 +#: templates/config.tmpl:45 msgid "%s Webmaster" msgstr "" -#: templates/config.tmpl:45 +#: templates/config.tmpl:48 msgid "%s is a trademark of %s" msgstr "" -#: templates/config.tmpl:50 +#: templates/config.tmpl:53 msgid "" "Please note that this is an experimental version of packages.debian.org. Errors and obsolete " @@ -157,133 +157,126 @@ msgstr "" msgid "Download Page for %s" msgstr "" -#: templates/html/download.tmpl:26 +#: templates/html/download.tmpl:23 msgid "" -"If you are running %s, it is strongly suggested to use a\n" -"package manager like aptitude or\n" -"synaptic to download and install\n" -"packages, instead of doing so manually via this website." +"If you are running %s, it is strongly suggested to use a package manager " +"like aptitude or synaptic to download " +"and install packages, instead of doing so manually via this website." msgstr "" -#: templates/html/download.tmpl:32 +#: templates/html/download.tmpl:25 msgid "" -"You should be able to use any of the listed mirrors by adding a\n" -"line to your /etc/apt/sources.list like this:" +"You should be able to use any of the listed mirrors by adding a line to your " +"/etc/apt/sources.list like this:" msgstr "" -#: templates/html/download.tmpl:38 +#: templates/html/download.tmpl:30 msgid "Replacing %s with the mirror in question." msgstr "" -#: templates/html/download.tmpl:45 templates/html/show.tmpl:145 +#: templates/html/download.tmpl:37 templates/html/show.tmpl:145 msgid "Experimental package" msgstr "Експериментальний пакунок" -#: templates/html/download.tmpl:49 +#: templates/html/download.tmpl:38 #, fuzzy msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other possible documentation " -"before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog and other possible " +"documentation before using it." msgstr "" "Увага: Це пакунок експериментального " "дистрибутиву. Це означає, що він напевне нестабільний або в ньому є помилки, " "і він навіть може призвести до втрати даних. Якщо ви проігноруєте це " "попередження і встановите його, то робіть це на ваш ризик." -#: templates/html/download.tmpl:55 templates/html/show.tmpl:155 +#: templates/html/download.tmpl:41 templates/html/show.tmpl:150 msgid "debian-installer udeb package" msgstr "udeb-пакунок встановлювача" -#: templates/html/download.tmpl:58 templates/html/show.tmpl:158 +#: templates/html/download.tmpl:42 templates/html/show.tmpl:151 #, fuzzy #| msgid "" #| "Warning: This package is intended for the use in building debian-installer " #| "images only. Do not install it on a normal Debian system." msgid "" -"Warning: This package is intended for the use in building\n" -"debian-installer images only.\n" -"Do not install it on a normal %s system." +"Warning: This package is intended for the use in building debian-installer images only. Do " +"not install it on a normal %s system." msgstr "" "Увага: цей пакунок призначений для використання тільки при створенні образів " "встановлювача " "Debian. Не встановлюйте його на звичайній системі Debian." -#: templates/html/download.tmpl:67 +#: templates/html/download.tmpl:49 msgid "" "You can download the requested file from the %s subdirectory at any " "of these sites:" msgstr "" -#: templates/html/download.tmpl:93 +#: templates/html/download.tmpl:75 msgid "" "You can download the requested file from the %s subdirectory at:" msgstr "" -#: templates/html/download.tmpl:95 -msgid "" -"Debian security updates are currently officially distributed only via " -"security.debian.org." +#: templates/html/download.tmpl:77 +msgid "%s security updates are officially distributed only via %s." msgstr "" -#: templates/html/download.tmpl:102 +#: templates/html/download.tmpl:84 msgid "" -"If none of the above sites are fast enough for you,\n" -"please see our complete mirror list." +"If none of the above sites are fast enough for you, please see our complete mirror list." msgstr "" -#: templates/html/download.tmpl:113 +#: templates/html/download.tmpl:92 msgid "" -"Note that %s is not officially included in the %s archive yet,\n" -"but the %s porter group keeps their archive in sync with the official " -"archive as close as possible.\n" -"See the %s ports page for current information." +"Note that %s is not officially included in the %s archive yet, but the %s " +"porter group keeps their archive in sync with the official archive as close " +"as possible. See the %s ports page for current " +"information." msgstr "" -#: templates/html/download.tmpl:120 +#: templates/html/download.tmpl:96 msgid "" "Note that in some browsers you will need to tell your browser you want the " -"file saved to a file.\n" -"For example, in Firefox or Mozilla, you should hold the Shift key when you " -"click on the URL." +"file saved to a file. For example, in Firefox or Mozilla, you should hold " +"the Shift key when you click on the URL." msgstr "" -#: templates/html/download.tmpl:125 +#: templates/html/download.tmpl:100 #, fuzzy #| msgid "More Information on %s" msgid "More information on %s:" msgstr "Додаткова інформація про %s" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 msgid "%s Byte (%s %s)" msgstr "" -#: templates/html/download.tmpl:127 +#: templates/html/download.tmpl:102 #, fuzzy #| msgid "Package Size" msgid "Exact Size" msgstr "Розмір пакунка" -#: templates/html/download.tmpl:128 templates/html/show.tmpl:322 +#: templates/html/download.tmpl:103 templates/html/show.tmpl:320 msgid "MD5 checksum" msgstr "" -#: templates/html/download.tmpl:129 templates/html/download.tmpl:130 +#: templates/html/download.tmpl:104 templates/html/download.tmpl:105 #, fuzzy #| msgid "Not available" msgid "Not Available" msgstr "Не доступний" -#: templates/html/download.tmpl:129 +#: templates/html/download.tmpl:104 msgid "SHA1 checksum" msgstr "" -#: templates/html/download.tmpl:130 +#: templates/html/download.tmpl:105 msgid "SHA256 checksum" msgstr "" @@ -309,26 +302,26 @@ msgstr "Файли" msgid "This page is also available in the following languages:" msgstr "Ця сторінка також доступна наступними мовами:\n" -#: templates/html/foot.tmpl:18 +#: templates/html/foot.tmpl:22 #, fuzzy msgid "How to set the default document language" msgstr "Як встановити мову документа за замовчанням

" -#: templates/html/foot.tmpl:23 templates/html/head.tmpl:64 +#: templates/html/foot.tmpl:27 templates/html/head.tmpl:64 #, fuzzy msgid "%s Homepage" msgstr "Розмір пакунка" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 msgid "Back to:" msgstr "" -#: templates/html/foot.tmpl:23 +#: templates/html/foot.tmpl:27 #, fuzzy msgid "Packages search page" msgstr "Всі пакунки Debian в дистрибутиві „%s“" -#: templates/html/foot.tmpl:27 +#: templates/html/foot.tmpl:31 #, fuzzy #| msgid "" #| "To report a problem with the web site, e-mail %s%s. Додаткову інформацію дивиться на сторінці з контактною інформацією." -#: templates/html/foot.tmpl:29 templates/txt/index.tmpl:4 +#: templates/html/foot.tmpl:33 templates/txt/index.tmpl:4 msgid "Generated:" msgstr "" -#: templates/html/foot.tmpl:31 +#: templates/html/foot.tmpl:35 #, fuzzy #| msgid "" #| "Copyright © 1997-2005 SPI; " @@ -358,7 +351,7 @@ msgstr "" "Авторські права © 1997-2005 SPI; " "Дивіться умови ліцензії." -#: templates/html/foot.tmpl:35 +#: templates/html/foot.tmpl:39 #, fuzzy msgid "Learn more about this site" msgstr "Огляд цього дистрибутива" @@ -403,8 +396,8 @@ msgstr "Пропустити меню" msgid "%s Packages Homepage" msgstr "Розмір пакунка" -#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:102 -#: templates/html/search_contents.tmpl:126 +#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:100 +#: templates/html/search_contents.tmpl:124 #, fuzzy msgid "Packages" msgstr "Пакунок: %s (%s)" @@ -441,7 +434,7 @@ msgstr "Всі пакунки" msgid "Source" msgstr "Джерельний пакунок:" -#: templates/html/index.tmpl:38 templates/html/show.tmpl:250 +#: templates/html/index.tmpl:38 templates/html/show.tmpl:247 #: templates/txt/index.tmpl:15 #, fuzzy msgid "virtual package provided by" @@ -538,7 +531,7 @@ msgstr "" #: templates/html/search.tmpl:37 msgid "" "You have searched only for words exactly matching your keywords. You can try " -"to search allowing subword matching." +"to search allowing subword matching." msgstr "" #: templates/html/search.tmpl:42 @@ -602,50 +595,54 @@ msgstr "" msgid "Found %u matching packages." msgstr "" -#: templates/html/search.tmpl:74 +#: templates/html/search.tmpl:72 msgid "" -"Note that this only shows the best matches, sorted by relevance.\n" -"If the first few packages don't match what you searched for, try using more " -"keywords or alternative\n" -"keywords." +"Note that this only shows the best matches, sorted by relevance. If the " +"first few packages don't match what you searched for, try using more " +"keywords or alternative keywords." msgstr "" -#: templates/html/search.tmpl:80 +#: templates/html/search.tmpl:74 msgid "" -"Your search was too wide so we will only display exact matches.\n" -"At least %u results have been omitted and will not be displayed.\n" -"Please consider using a longer keyword or more keywords." +"Your search was too wide so we will only display exact matches. At least " +"%u results have been omitted and will not be displayed. Please consider " +"using a longer keyword or more keywords." msgstr "" -#: templates/html/search.tmpl:86 templates/html/search_contents.tmpl:133 +#: templates/html/search.tmpl:79 templates/html/search_contents.tmpl:131 msgid "Sorry, your search gave no results" msgstr "" -#: templates/html/search.tmpl:93 +#: templates/html/search.tmpl:86 #, fuzzy msgid "Package %s" msgstr "Пакунок: %s (%s)" -#: templates/html/search.tmpl:103 +#: templates/html/search.tmpl:96 +#, fuzzy +msgid "also provided by:" +msgstr "віртуальний пакунок" + +#: templates/html/search.tmpl:96 msgid "provided by:" msgstr "" -#: templates/html/search.tmpl:111 +#: templates/html/search.tmpl:105 #, fuzzy msgid "Source Package %s" msgstr "Джерельний пакунок" -#: templates/html/search.tmpl:119 +#: templates/html/search.tmpl:113 #, fuzzy msgid "Binary packages:" msgstr "віртуальний пакунок" -#: templates/html/search.tmpl:121 +#: templates/html/search.tmpl:115 #, fuzzy msgid "%u binary packages" msgstr "Розмір пакунка" -#: templates/html/search.tmpl:131 +#: templates/html/search.tmpl:125 msgid "" "%u results have not been displayed because you requested " "only exact matches." @@ -714,28 +711,27 @@ msgstr "" msgid "Found %u results." msgstr "" -#: templates/html/search_contents.tmpl:89 +#: templates/html/search_contents.tmpl:88 msgid "" "Note: Your search was too wide so we will only display only the first about " -"100 matches.\n" -"Please consider using a longer keyword or more keywords." +"100 matches. Please consider using a longer keyword or more keywords." msgstr "" -#: templates/html/search_contents.tmpl:99 +#: templates/html/search_contents.tmpl:97 msgid "Sort results by filename" msgstr "" -#: templates/html/search_contents.tmpl:100 -#: templates/html/search_contents.tmpl:126 templates/html/show.tmpl:322 +#: templates/html/search_contents.tmpl:98 +#: templates/html/search_contents.tmpl:124 templates/html/show.tmpl:320 msgid "File" msgstr "Файл" -#: templates/html/search_contents.tmpl:101 +#: templates/html/search_contents.tmpl:99 #, fuzzy msgid "Sort results by package name" msgstr "Джерельний пакунок" -#: templates/html/search_contents.tmpl:116 +#: templates/html/search_contents.tmpl:114 #, fuzzy #| msgid "not" msgid "not %s" @@ -866,22 +862,20 @@ msgstr "" msgid "Similar packages:" msgstr "віртуальний пакунок" -#: templates/html/show.tmpl:149 +#: templates/html/show.tmpl:146 #, fuzzy msgid "" "Warning: This package is from the experimental " -"distribution.\n" -"That means it is likely unstable or buggy, and it may even cause data loss.\n" -"Please be sure to consult the changelog and other " -"possible documentation before\n" -"using it." +"distribution. That means it is likely unstable or buggy, and it may even " +"cause data loss. Please be sure to consult the changelog " +"and other possible documentation before using it." msgstr "" "Увага: Це пакунок експериментального " "дистрибутиву. Це означає, що він напевне нестабільний або в ньому є помилки, " "і він навіть може призвести до втрати даних. Якщо ви проігноруєте це " "попередження і встановите його, то робіть це на ваш ризик." -#: templates/html/show.tmpl:177 +#: templates/html/show.tmpl:169 msgid "" "This is a virtual package. See the Debian policy " "for a definition of virtual " @@ -891,32 +885,67 @@ msgstr "" "\">Політику Debian щоб дізнатись про визначення віртуальних пакунків." -#: templates/html/show.tmpl:185 +#: templates/html/show.tmpl:177 msgid "Tags" msgstr "" -#: templates/html/show.tmpl:206 +#: templates/html/show.tmpl:200 msgid "Packages providing %s" msgstr "Пакунки що надають %s" -#: templates/html/show.tmpl:215 +#: templates/html/show.tmpl:209 msgid "The following binary packages are built from this source package:" msgstr "Наступні двійкові пакунки побудовано з цього джерельного пакунка:" -#: templates/html/show.tmpl:224 +#: templates/html/show.tmpl:218 msgid "Other Packages Related to %s" msgstr "Інші пакунки пов'язані з %s" -#: templates/html/show.tmpl:254 +#: templates/html/show.tmpl:220 +msgid "legend" +msgstr "" + +#: templates/html/show.tmpl:222 +msgid "build-depends" +msgstr "" + +#: templates/html/show.tmpl:223 +msgid "build-depends-indep" +msgstr "" + +#: templates/html/show.tmpl:225 +msgid "depends" +msgstr "" + +#: templates/html/show.tmpl:226 +msgid "recommends" +msgstr "" + +#: templates/html/show.tmpl:227 +msgid "suggests" +msgstr "" + +#: templates/html/show.tmpl:237 +#, fuzzy +#| msgid "or" +msgid "or " +msgstr "або" + +#: templates/html/show.tmpl:245 +#, fuzzy +msgid "also a virtual package provided by" +msgstr "віртуальний пакунок" + +#: templates/html/show.tmpl:252 #, fuzzy msgid "%u providing packages" msgstr "Розмір пакунка" -#: templates/html/show.tmpl:272 +#: templates/html/show.tmpl:270 msgid "Download %s" msgstr "Завантажити %s" -#: templates/html/show.tmpl:274 +#: templates/html/show.tmpl:272 msgid "" "The download table links to the download of the package and a file overview. " "In addition it gives information about the package size and the installed " @@ -926,66 +955,66 @@ msgstr "" "файлів. Додатково, вона містить інформацію про розмір пакунка та розмір " "після встановлення." -#: templates/html/show.tmpl:275 +#: templates/html/show.tmpl:273 msgid "Download for all available architectures" msgstr "Завантаження для всіх доступних архітектур" -#: templates/html/show.tmpl:276 +#: templates/html/show.tmpl:274 msgid "Architecture" msgstr "Архітектура" -#: templates/html/show.tmpl:277 +#: templates/html/show.tmpl:275 msgid "Version" msgstr "Версія" -#: templates/html/show.tmpl:278 +#: templates/html/show.tmpl:276 msgid "Package Size" msgstr "Розмір пакунка" -#: templates/html/show.tmpl:279 +#: templates/html/show.tmpl:277 msgid "Installed Size" msgstr "Розмір після встановлення" -#: templates/html/show.tmpl:280 +#: templates/html/show.tmpl:278 msgid "Files" msgstr "Файли" -#: templates/html/show.tmpl:288 +#: templates/html/show.tmpl:286 msgid "(unofficial port)" msgstr "" -#: templates/html/show.tmpl:299 templates/html/show.tmpl:327 +#: templates/html/show.tmpl:297 templates/html/show.tmpl:325 msgid "%.1f kB" msgstr "" -#: templates/html/show.tmpl:299 +#: templates/html/show.tmpl:297 msgid "%u kB" msgstr "" -#: templates/html/show.tmpl:302 +#: templates/html/show.tmpl:300 msgid "list of files" msgstr "список файлів" -#: templates/html/show.tmpl:304 +#: templates/html/show.tmpl:302 #, fuzzy msgid "no current information" msgstr "Додаткова інформація про %s" -#: templates/html/show.tmpl:321 +#: templates/html/show.tmpl:319 msgid "Download information for the files of this source package" msgstr "" -#: templates/html/show.tmpl:322 +#: templates/html/show.tmpl:320 msgid "Size (in kB)" msgstr "Розмір (в кБ)" -#: templates/html/show.tmpl:340 +#: templates/html/show.tmpl:338 msgid "" "Debian Package Source Repository (VCS: %s)" msgstr "" -#: templates/html/show.tmpl:344 +#: templates/html/show.tmpl:342 #, fuzzy msgid "Debian Package Source Repository (Browsable)" msgstr "Всі пакунки Debian в дистрибутиві „%s“" @@ -1035,25 +1064,21 @@ msgstr "Розмір пакунка" #: templates/rss/newpkg.tmpl:20 #, fuzzy -#| msgid "" -#| "Packages that were added to the unstable Debian archive during the last 7 " -#| "days." msgid "" -"Packages that were added to the %s %s archive (section \"%s\") during the " -"last 7 days." +"The following packages were added to suite %s (section %s) in the %s archive " +"during the last 7 days." msgstr "" -"Пакунки які біли додані до нестабільного архіву Debian впродовж останніх 7 " -"днів." +"Наступні пакунки було додано до нестабільного архіву Debian протягом " +"останніх семи днів." #: templates/rss/newpkg.tmpl:23 #, fuzzy -#| msgid "" -#| "Packages that were added to the unstable Debian archive during the last 7 " -#| "days." -msgid "Packages that were added to the %s %s archive during the last 7 days." +msgid "" +"The following packages were added to suite %s in the %s archive during the " +"last 7 days." msgstr "" -"Пакунки які біли додані до нестабільного архіву Debian впродовж останніх 7 " -"днів." +"Наступні пакунки було додано до нестабільного архіву Debian протягом " +"останніх семи днів." #: templates/rss/newpkg.tmpl:28 templates/txt/index.tmpl:5 msgid "Copyright ©" @@ -1070,213 +1095,227 @@ msgid "See for the license terms." msgstr "" #, fuzzy -#~ msgid "" -#~ "Note that the experimental distribution is not self-" -#~ "contained; missing dependencies are likely found in the unstable distribution." -#~ msgstr "" -#~ "Майте на увазі, що „експериментальний“ " -#~ "дистрибутив не є самодостатнім; відсутні залежності скоріше за все є „нестабільному“ дистрибутиві." - -#~ msgid "Versions:" -#~ msgstr "Версії:" - -#~ msgid "" -#~ "Copyright (C) 1997-2005 SPI;\n" -#~ "See for the license terms.\n" -#~ "\n" -#~ msgstr "" -#~ "Copyright (C) 1997-2005 SPI;\n" -#~ "Перегляньте щодо умов ліцензії.\n" -#~ "\n" +#~ msgid "two or more packages specified (%s)" +#~ msgstr "Джерельний пакунок: %s (%s)" -#~ msgid "No essential packages in this suite" -#~ msgstr "Немає необхідних пакунків в цьому дистрибутиві" +#, fuzzy +#~ msgid "No such package in this suite on this architecture." +#~ msgstr "Немає пакунків в цій секції цього дистрибутиву" -#~ msgid "Software Packages in \"%s\", essential packages" -#~ msgstr "Пакунки в дистрибутиві „%s“, необхідні пакунки" +#~ msgid "Virtual package" +#~ msgstr "Віртуальний пакунок" -#~ msgid "No packages with this priority in this suite" -#~ msgstr "Немає пакунків з цим пріоритетом в цьому розділі" +#, fuzzy +#~ msgid "No such package." +#~ msgstr "Джерельний пакунок" -#~ msgid "" -#~ "Warning: These packages are intended for the use in building debian-installer " -#~ "images only. Do not install them on a normal Debian system." -#~ msgstr "" -#~ "Увага: Ці пакунки призначені для використання тільки при побудові образів " -#~ "встановлювача " -#~ "Debian. Не встановлюйте їх на нормальній системі Debian." +#, fuzzy +#~ msgid "Package not available in this suite." +#~ msgstr "Пакунок недоступний" -#~ msgid "yes" -#~ msgstr "так" +#~ msgid "Package not available" +#~ msgstr "Пакунок недоступний" -#~ msgid "Priority" -#~ msgstr "Приоритет" +#, fuzzy +#~ msgid "Software Packages in \"%s\", subsection %s" +#~ msgstr "Пакунки в дистрибутиві „%s“, розділі %s" -#~ msgid "Uploaders" -#~ msgstr "Завантажувачі" +#~ msgid "Software Packages in \"%s\", priority %s" +#~ msgstr "Пакунки в дистрибутиві „%s“, пріоритет %s" -#~ msgid "Size is measured in kBytes." -#~ msgstr "Розмір даний в кілобайтах." +#, fuzzy +#~ msgid "search for a package" +#~ msgstr "Список всіх пакунків" -#~ msgid "" -#~ "Users of experimental packages are encouraged to contact the package " -#~ "maintainers directly in case of problems." -#~ msgstr "" -#~ "Користувачам експериментальних пакунків у випадку виникнення проблем " -#~ "рекомендується зв'язуватись зі супроводжуючими пакунків напряму." +#, fuzzy +#~ msgid " (section %s)" +#~ msgstr "Розділ" +#, fuzzy #~ msgid "" -#~ "Packages that were added to the \"%s\" component next to the unstable " -#~ "Debian archive during the last 7 days." +#~ "The following packages were added to suite %s%s in the Debian archive " +#~ "during the last 7 days." #~ msgstr "" -#~ "Пакунки які було додано до компоненту „%s“ впродовж останніх 7 днів." +#~ "Наступні пакунки було додано до нестабільного архіву Debian протягом " +#~ "останніх семи днів." -#~ msgid "" -#~ "The following packages were added to the \"%s\" component next to the " -#~ "Debian archive during the last 7 days." -#~ msgstr "" -#~ "Наступні пакунки було додано до компоненту „%s“ впродовж останніх 7 днів." +#, fuzzy +#~ msgid "Nothing found" +#~ msgstr "Не знайдено" -#~ msgid "" -#~ "Warning: The experimental distribution " -#~ "contains software that is likely unstable or buggy and may even cause " -#~ "data loss. If you ignore this warning and install it nevertheless, you do " -#~ "it on your own risk." -#~ msgstr "" -#~ "Увага: „Експериментальний“ містить програмне " -#~ "забезпечення, яке напевне є нестабільним або містить помилки і навіть " -#~ "може спричинити втрату даних. Якщо ви проігноруєте це попередження і " -#~ "встановите його, то робіть це на ваш ризик." +#~ msgid "Download %s\n" +#~ msgstr "Завантажити %s\n" -#~ msgid "" -#~ "Debian is a registered trademark of Software in the Public Interest, Inc." -#~ msgstr "" -#~ "Debian є зареєстрованою торговою маркою Software in the Public Interest, " -#~ "Inc." +#~ msgid "virtual package" +#~ msgstr "віртуальний пакунок" -#~ msgid "Last Modified: " -#~ msgstr "Остання зміна:" +#~ msgid "Overview over this distribution" +#~ msgstr "Огляд цього дистрибутива" -#~ msgid "" -#~ "Back to: Debian Project homepage || Packages search page" -#~ msgstr "" -#~ "Повернутися до: головної сторінки проекту Debian || " -#~ "сторінки пошуку пакунків" +#~ msgid "md5sum" +#~ msgstr "сума MD5" -#~ msgid "Site map" -#~ msgstr "Карта сайту" +#~ msgid "Check for Bug Reports about %s." +#~ msgstr "Перегляньте повідомлення про помилки про %s." -#~ msgid "Development" -#~ msgstr "Розробка" +#~ msgid "Source Package:" +#~ msgstr "Джерельний пакунок:" -#~ msgid "Support" -#~ msgstr "Підтримка" +#~ msgid "View the Debian changelog" +#~ msgstr "Переглянути журнал змін Debian" -#~ msgid "Getting Debian" -#~ msgstr "Отримання Debian" +#~ msgid "View the copyright file" +#~ msgstr "Переглянути файл з авторськими правами" -#~ msgid "News" -#~ msgstr "Новини" +#~ msgid "%s is responsible for this Debian package." +#~ msgstr "%s відповідає за цей пакунок Debian" -#~ msgid "About Debian" -#~ msgstr "Про Debian" +#~ msgid " and %s are responsible for this Debian package." +#~ msgstr " і %s відповідають з цей пакунок Debian." -#~ msgid "Debian Project" -#~ msgstr "Проект Debian" +#~ msgid "See the developer information for %s." +#~ msgstr "Перегляньте інформацію для розробників про %s." #, fuzzy #~ msgid "Search on:" #~ msgstr "Пошук" -#~ msgid "or" -#~ msgstr "або" - -#, fuzzy -#~ msgid "also a virtual package provided by " -#~ msgstr "віртуальний пакунок" +#~ msgid "Debian Project" +#~ msgstr "Проект Debian" -#~ msgid "See the developer information for %s." -#~ msgstr "Перегляньте інформацію для розробників про %s." +#~ msgid "About Debian" +#~ msgstr "Про Debian" -#~ msgid " and %s are responsible for this Debian package." -#~ msgstr " і %s відповідають з цей пакунок Debian." +#~ msgid "News" +#~ msgstr "Новини" -#~ msgid "%s is responsible for this Debian package." -#~ msgstr "%s відповідає за цей пакунок Debian" +#~ msgid "Getting Debian" +#~ msgstr "Отримання Debian" -#~ msgid "View the copyright file" -#~ msgstr "Переглянути файл з авторськими правами" +#~ msgid "Support" +#~ msgstr "Підтримка" -#~ msgid "View the Debian changelog" -#~ msgstr "Переглянути журнал змін Debian" +#~ msgid "Development" +#~ msgstr "Розробка" -#~ msgid "Source Package:" -#~ msgstr "Джерельний пакунок:" +#~ msgid "Site map" +#~ msgstr "Карта сайту" -#~ msgid "Check for Bug Reports about %s." -#~ msgstr "Перегляньте повідомлення про помилки про %s." +#~ msgid "" +#~ "Back to: Debian Project homepage || Packages search page" +#~ msgstr "" +#~ "Повернутися до: головної сторінки проекту Debian || " +#~ "сторінки пошуку пакунків" -#~ msgid "md5sum" -#~ msgstr "сума MD5" +#~ msgid "Last Modified: " +#~ msgstr "Остання зміна:" -#~ msgid "Overview over this distribution" -#~ msgstr "Огляд цього дистрибутива" +#~ msgid "" +#~ "Debian is a registered trademark of Software in the Public Interest, Inc." +#~ msgstr "" +#~ "Debian є зареєстрованою торговою маркою Software in the Public Interest, " +#~ "Inc." -#~ msgid "virtual package" -#~ msgstr "віртуальний пакунок" +#~ msgid "" +#~ "Warning: The experimental distribution " +#~ "contains software that is likely unstable or buggy and may even cause " +#~ "data loss. If you ignore this warning and install it nevertheless, you do " +#~ "it on your own risk." +#~ msgstr "" +#~ "Увага: „Експериментальний“ містить програмне " +#~ "забезпечення, яке напевне є нестабільним або містить помилки і навіть " +#~ "може спричинити втрату даних. Якщо ви проігноруєте це попередження і " +#~ "встановите його, то робіть це на ваш ризик." -#~ msgid "Download %s\n" -#~ msgstr "Завантажити %s\n" +#~ msgid "" +#~ "The following packages were added to the \"%s\" component next to the " +#~ "Debian archive during the last 7 days." +#~ msgstr "" +#~ "Наступні пакунки було додано до компоненту „%s“ впродовж останніх 7 днів." -#, fuzzy -#~ msgid "Nothing found" -#~ msgstr "Не знайдено" +#~ msgid "" +#~ "Packages that were added to the \"%s\" component next to the unstable " +#~ "Debian archive during the last 7 days." +#~ msgstr "" +#~ "Пакунки які було додано до компоненту „%s“ впродовж останніх 7 днів." -#, fuzzy #~ msgid "" -#~ "The following packages were added to suite %s%s in the Debian archive " -#~ "during the last 7 days." +#~ "Users of experimental packages are encouraged to contact the package " +#~ "maintainers directly in case of problems." #~ msgstr "" -#~ "Наступні пакунки було додано до нестабільного архіву Debian протягом " -#~ "останніх семи днів." +#~ "Користувачам експериментальних пакунків у випадку виникнення проблем " +#~ "рекомендується зв'язуватись зі супроводжуючими пакунків напряму." -#, fuzzy -#~ msgid " (section %s)" -#~ msgstr "Розділ" +#~ msgid "Size is measured in kBytes." +#~ msgstr "Розмір даний в кілобайтах." -#, fuzzy -#~ msgid "search for a package" -#~ msgstr "Список всіх пакунків" +#~ msgid "Uploaders" +#~ msgstr "Завантажувачі" -#~ msgid "Software Packages in \"%s\", priority %s" -#~ msgstr "Пакунки в дистрибутиві „%s“, пріоритет %s" +#~ msgid "Priority" +#~ msgstr "Приоритет" -#, fuzzy -#~ msgid "Software Packages in \"%s\", subsection %s" -#~ msgstr "Пакунки в дистрибутиві „%s“, розділі %s" +#~ msgid "yes" +#~ msgstr "так" -#~ msgid "Package not available" -#~ msgstr "Пакунок недоступний" +#~ msgid "" +#~ "Warning: These packages are intended for the use in building debian-installer " +#~ "images only. Do not install them on a normal Debian system." +#~ msgstr "" +#~ "Увага: Ці пакунки призначені для використання тільки при побудові образів " +#~ "встановлювача " +#~ "Debian. Не встановлюйте їх на нормальній системі Debian." -#, fuzzy -#~ msgid "Package not available in this suite." -#~ msgstr "Пакунок недоступний" +#~ msgid "No packages with this priority in this suite" +#~ msgstr "Немає пакунків з цим пріоритетом в цьому розділі" -#, fuzzy -#~ msgid "No such package." -#~ msgstr "Джерельний пакунок" +#~ msgid "Software Packages in \"%s\", essential packages" +#~ msgstr "Пакунки в дистрибутиві „%s“, необхідні пакунки" -#~ msgid "Virtual package" -#~ msgstr "Віртуальний пакунок" +#~ msgid "No essential packages in this suite" +#~ msgstr "Немає необхідних пакунків в цьому дистрибутиві" + +#~ msgid "" +#~ "Copyright (C) 1997-2005 SPI;\n" +#~ "See for the license terms.\n" +#~ "\n" +#~ msgstr "" +#~ "Copyright (C) 1997-2005 SPI;\n" +#~ "Перегляньте щодо умов ліцензії.\n" +#~ "\n" + +#~ msgid "Versions:" +#~ msgstr "Версії:" #, fuzzy -#~ msgid "No such package in this suite on this architecture." -#~ msgstr "Немає пакунків в цій секції цього дистрибутиву" +#~ msgid "" +#~ "Note that the experimental distribution is not self-" +#~ "contained; missing dependencies are likely found in the unstable distribution." +#~ msgstr "" +#~ "Майте на увазі, що „експериментальний“ " +#~ "дистрибутив не є самодостатнім; відсутні залежності скоріше за все є „нестабільному“ дистрибутиві." #, fuzzy -#~ msgid "two or more packages specified (%s)" -#~ msgstr "Джерельний пакунок: %s (%s)" +#~| msgid "" +#~| "Packages that were added to the unstable Debian archive during the last " +#~| "7 days." +#~ msgid "" +#~ "Packages that were added to the %s %s archive during the last 7 days." +#~ msgstr "" +#~ "Пакунки які біли додані до нестабільного архіву Debian впродовж останніх " +#~ "7 днів." + +#, fuzzy +#~| msgid "" +#~| "Packages that were added to the unstable Debian archive during the last " +#~| "7 days." +#~ msgid "" +#~ "Packages that were added to the %s %s archive (section \"%s\") during the " +#~ "last 7 days." +#~ msgstr "" +#~ "Пакунки які біли додані до нестабільного архіву Debian впродовж останніх " +#~ "7 днів." diff --git a/static/debian.css b/static/debian.css index 0a1b594..fce9493 100644 --- a/static/debian.css +++ b/static/debian.css @@ -328,7 +328,7 @@ blockquote.question p span { padding-top: 3px; bottom: 0; text-align: center; - margin: 0px; + margin: 1em 0 0 0; border-top: 1px solid #BFC3DC; } diff --git a/templates/config.tmpl b/templates/config.tmpl index 7f95493..86e7cc9 100644 --- a/templates/config.tmpl +++ b/templates/config.tmpl @@ -13,6 +13,9 @@ ddpo_url = 'http://qa.debian.org/developer.php?login=' src_bugs_url = bugs_url _ 'src:' mirror_url = 'http://ftp.debian.org/' + security_mirror = 'security.debian.org' + security_mirror_url = security_mirror _ '/debian-security' + security_suite_suffix = '/updates' changelogs_url = 'http://packages.debian.org/changelogs/' policy_url = 'http://www.debian.org/doc/debian-policy/' cn_help_url = homepage _ 'intro/cn' diff --git a/templates/html/download.tmpl b/templates/html/download.tmpl index 360d0cf..66b9212 100644 --- a/templates/html/download.tmpl +++ b/templates/html/download.tmpl @@ -20,13 +20,9 @@ [% END %]
-

[% g('If you are running %s, it is strongly suggested to use a -package manager like aptitude or -synaptic to download and install -packages, instead of doing so manually via this website.', +

[% g('If you are running %s, it is strongly suggested to use a package manager like aptitude or synaptic to download and install packages, instead of doing so manually via this website.', organisation, make_url('aptitude','','arch',''), make_url('synaptic','','arch','')) %]

-

[% g('You should be able to use any of the listed mirrors by adding a -line to your /etc/apt/sources.list like this:') %]

+

[% g('You should be able to use any of the listed mirrors by adding a line to your /etc/apt/sources.list like this:') %]

[% IF archive != "security" %]
 deb http://[% mirrors.$archive.europa.0 %] [% suite %] main [% section IF section != main_section %]
@@ -34,21 +30,16 @@ deb http://[% mirrors.$archive.europa.0 %] [% suite %] main [% section
 

[% g('Replacing %s with the mirror in question.', mirrors.$archive.europa.0) %] [% ELSE %]

-deb http://security.debian.org/debian-security [% suite _ "/updates" %] main [% section IF section != main_section %]
+deb [% 'http://' _ security_mirror_url %] [% suite _ security_suite_suffix %] main [% section IF section != main_section %]
 
[%- END %] [% IF suite == "experimental" %]

[% g('Experimental package') %]

-

[% g('Warning: This package is from the experimental distribution. -That means it is likely unstable or buggy, and it may even cause data loss. -Please be sure to consult the changelog and other possible documentation before -using it.') %]

+

[% g('Warning: This package is from the experimental distribution. That means it is likely unstable or buggy, and it may even cause data loss. Please be sure to consult the changelog and other possible documentation before using it.') %]

[% END %] [% IF subsection == "debian-installer" %]

[% g('debian-installer udeb package') %]

-

[% g('Warning: This package is intended for the use in building -debian-installer images only. -Do not install it on a normal %s system.', organisation) %]

+

[% g('Warning: This package is intended for the use in building debian-installer images only. Do not install it on a normal %s system.', organisation) %]

[% END %]
@@ -82,15 +73,15 @@ Do not install it on a normal %s system.', organisation) %]

[% ELSE %]

[% g('You can download the requested file from the %s subdirectory at:', filename.directory) %]

- -

[% g('Debian security updates are currently officially distributed only via security.debian.org.') %]

+ +

[% g('%s security updates are officially distributed only via %s.', + organisation, security_mirror) %]

[% END %]
[% IF a.mirror_list %] -

[% g('If none of the above sites are fast enough for you, -please see our complete mirror list.', a.mirror_list ) %]

+

[% g('If none of the above sites are fast enough for you, please see our complete mirror list.', a.mirror_list ) %]

[% END %] [% IF a.unofficial_port %] @@ -98,14 +89,11 @@ please see our complete mirror list.', a.mirror_list ) %]

[% IF port.url_name; SET port.url = ports_url _ port.url_name _ '/'; END -%] -

[% g('Note that %s is not officially included in the %s archive yet, -but the %s porter group keeps their archive in sync with the official archive as close as possible. -See the %s ports page for current information.', +

[% g('Note that %s is not officially included in the %s archive yet, but the %s porter group keeps their archive in sync with the official archive as close as possible. See the %s ports page for current information.', port.name, organisation, port.name, port.url, port.name) %]

[% END %] -

[% g('Note that in some browsers you will need to tell your browser you want the file saved to a file. -For example, in Firefox or Mozilla, you should hold the Shift key when you click on the URL.') %]

+

[% g('Note that in some browsers you will need to tell your browser you want the file saved to a file. For example, in Firefox or Mozilla, you should hold the Shift key when you click on the URL.') %]

diff --git a/templates/html/foot.tmpl b/templates/html/foot.tmpl index a08d34c..ed94954 100644 --- a/templates/html/foot.tmpl +++ b/templates/html/foot.tmpl @@ -11,7 +11,11 @@ Total page evaluation took [% benchmark %]

[% g('This page is also available in the following languages:') %]

diff --git a/templates/html/search.tmpl b/templates/html/search.tmpl index 3427f2a..205e85b 100644 --- a/templates/html/search.tmpl +++ b/templates/html/search.tmpl @@ -34,8 +34,8 @@ searchformurl) %]

[% IF opts.searchon != "names" && opts.exact %] -

[% g('You have searched only for words exactly matching your keywords. You can try to search allowing subword matching.', - make_search_url('',"keywords=$keyword_esc",'exact',0) ) %] +

[% g('You have searched only for words exactly matching your keywords. You can try to search allowing subword matching.', + make_search_url('',"keywords=$keyword_esc",'exact',0) ) %]

[% END %] [% END %] [% IF opts.searchon == "names" && non_results %] @@ -69,13 +69,10 @@ [% IF too_many_hits %] [% IF opts.searchon != "names" %] -

[% g("Note that this only shows the best matches, sorted by relevance. -If the first few packages don't match what you searched for, try using more keywords or alternative -keywords.") %]

+

[% g("Note that this only shows the best matches, sorted by relevance. If the first few packages don't match what you searched for, try using more keywords or alternative keywords.") %]

[% ELSE %] -

[% g('Your search was too wide so we will only display exact matches. -At least %u results have been omitted and will not be displayed. -Please consider using a longer keyword or more keywords.', too_many_hits) %]

+

[% g('Your search was too wide so we will only display exact matches. At least %u results have been omitted and will not be displayed. Please consider using a longer keyword or more keywords.', + too_many_hits) %]

[% END; END %] [% UNLESS results %] @@ -91,12 +88,13 @@ Please consider using a longer keyword or more keywords.', too_many_hits) %]

[% FOREACH s IN suites; suite = s.suite %]
  • [% suite %] - [%- ' (' _ suite_aliases.$suite _ ')' IF suite_aliases.$suite %][% ' (' _ s.subsection _ ')' IF s.subsection %]: [% s.desc %] [%- IF s.section != main_section %] [[% s.section %]][% END %] + [%- ' (' _ suite_aliases.$suite _ ')' IF suite_aliases.$suite %][% ' (' _ s.subsection _ ')' IF s.subsection %]: [% IF s.trans_desc.$lang; s.trans_desc.$lang | html; ELSE; s.desc | html; END %] [%- IF s.section && s.section != main_section %] [[% s.section %]][% END %] [% FOREACH s.versions %]
    [% version %] [%- IF archive != main_archive %] [[% archive %]][% END %]: [% architectures.join(' ') %] [% END %] [% IF s.providers %] -
    [% 'also ' IF s.versions.size > 0 %][% g('provided by:') %] [% FOREACH provider IN s.providers %][% provider %][% ', ' UNLESS loop.last %][% END %] +
    [% IF s.versions.size > 0; g('also provided by:'); ELSE; g('provided by:'); END %] + [% FOREACH provider IN s.providers.sort %][% provider %][% ', ' UNLESS loop.last %][% END %] [% END %]
  • [% END %] @@ -112,7 +110,7 @@ Please consider using a longer keyword or more keywords.', too_many_hits) %]

  • [% origin %] ([% subsection %]): [% version %] [%- IF section %] [[% section %]][% END %] [%- IF real_archive %] [[% real_archive %]][% END %] -
    [% g('Binary packages:') %] [% FOREACH binary IN binaries %][% binary %][% ', ' UNLESS loop.last %][% END %] +
    [% g('Binary packages:') %] [% FOREACH binary IN binaries.sort %][% binary %][% ', ' UNLESS loop.last %][% END %] [% IF binaries.size > 10 %] [% END %] diff --git a/templates/html/search_contents.tmpl b/templates/html/search_contents.tmpl index 513b451..93ff2c6 100644 --- a/templates/html/search_contents.tmpl +++ b/templates/html/search_contents.tmpl @@ -85,8 +85,7 @@ [% g('Found %u results.', results.size) %] [% IF too_many_hits %] -

    [% g('Note: Your search was too wide so we will only display only the first about 100 matches. -Please consider using a longer keyword or more keywords.') %]

    +

    [% g('Note: Your search was too wide so we will only display only the first about 100 matches. Please consider using a longer keyword or more keywords.') %]

    [% END %] diff --git a/templates/html/show.tmpl b/templates/html/show.tmpl index edca00b..2221593 100644 --- a/templates/html/show.tmpl +++ b/templates/html/show.tmpl @@ -143,16 +143,13 @@ [% changelog_link = 'changelog'; changelog_link = "$changelogs_url$files.changelog.path" %]

    [% g('Experimental package') %]

    -

    [% g('Warning: This package is from the experimental distribution. -That means it is likely unstable or buggy, and it may even cause data loss. -Please be sure to consult the changelog and other possible documentation before -using it.', changelog_link) %]

    +

    [% g('Warning: This package is from the experimental distribution. That means it is likely unstable or buggy, and it may even cause data loss. Please be sure to consult the changelog and other possible documentation before using it.', + changelog_link) %]

    [% END %] [% IF subsection == "debian-installer" %]

    [% g('debian-installer udeb package') %]

    -

    [% g('Warning: This package is intended for the use in building -debian-installer images only. -Do not install it on a normal %s system.', organisation ) %]

    +

    [% g('Warning: This package is intended for the use in building debian-installer images only. Do not install it on a normal %s system.', + organisation ) %]

    [% END %] [% END %] @@ -179,14 +176,16 @@ Do not install it on a normal %s system.', organisation ) %]

    [% g('Tags') %]: [%- END %] - [% facet = tag.0; - facet_name = debtags_voc.$facet; - tag_id = "$tag.0::$tag.1"; - tag_name = debtags_voc.$tag_id; + [% facet = tag.0; lfacet = "$facet-$lang"; + facet_name = debtags_voc.$lfacet; + SET facet_name = debtags_voc.$facet UNLESS facet_name; + tag_id = "$tag.0::$tag.1"; ltag = "$tag_id-$lang"; + tag_name = debtags_voc.$ltag; + SET tag_name = debtags_voc.$tag_id UNLESS tag_name; %] [% facet_name _ ': ' UNLESS old_facet && facet == old_facet %] [% IF tag_name %] - [% tag_name %][% ', ' UNLESS loop.last %] + [% tag_name | html %][% ', ' UNLESS loop.last %] [% ELSE %] [% tag_id %][% ', ' UNLESS loop.last %] [% END %] @@ -197,19 +196,19 @@ Do not install it on a normal %s system.', organisation ) %]

    [%- END %] [% END %] -[% FOREACH providers %] +[% FOREACH p IN providers %] [% IF loop.first %]

    [% g('Packages providing %s', pkg) %]

    [% END %] -
    [% IF available %][% name %][% ELSE %][% name %][% END %]
    -
    [% desc %]
    +
    [% IF p.available %][% p.name %][% ELSE; p.name; END %]
    +
    [% IF p.trans_desc.$lang; p.trans_desc.$lang | html; ELSE; p.desc | html; END %]
    [% '
    ' IF loop.last %] [% END %]
    [% END %] -[% FOREACH binaries %] +[% FOREACH b IN binaries %] [% IF loop.first %]
    [% g('The following binary packages are built from this source package:') %]
    [% END %] -
    [% IF available %][% name %][% ELSE %][% name %][% END %]
    -
    [% desc %]
    +
    [% IF b.available %][% b.name %][% ELSE; b.name; END %]
    +
    [% IF b.trans_desc.$lang; b.trans_desc.$lang | html; ELSE; b.desc | html; END %]
    [% '
    ' IF loop.last %] [% END %] @@ -235,16 +234,20 @@ Do not install it on a normal %s system.', organisation ) %]

    [% '
  • ' UNLESS is_old_pkgs %] [% FOREACH alternatives %] [% '
    ' IF loop.first %] -
    [% IF loop.first %][% id %]:[% ELSE %]or [% END %] +
    [% IF loop.first %][% id %]:[% ELSE %][% g('or ') %][% END %] [% IF suite %][% name %][% ELSE %][% name %][% END %] [% ' (' _ version _ ')' IF version %] [% ' [' _ arch_str _ ']' IF arch_str %]
    [%- IF !is_old_pkgs -%] -
    [% desc -%] +
    [% IF trans_desc.$lang; trans_desc.$lang | html; ELSE; desc | html; END -%] [%- IF providers.pkgs.size > 0 -%] - [% '
    also a ' IF providers.also %][% g('virtual package provided by') %] + [% IF providers.also; + '
    ' _ g('also a virtual package provided by'); + ELSE; + g('virtual package provided by'); + END; %] [% js_id = name %] - [% FOREACH provider IN providers.pkgs %][% provider %][% ', ' UNLESS loop.last %][% END %] + [% FOREACH provider IN providers.pkgs.sort %][% provider %][% ', ' UNLESS loop.last %][% END %] [% IF providers.pkgs.size > 10 %] [% END %] diff --git a/templates/rss/newpkg.tmpl b/templates/rss/newpkg.tmpl index 1137d4f..c95ee53 100644 --- a/templates/rss/newpkg.tmpl +++ b/templates/rss/newpkg.tmpl @@ -16,12 +16,12 @@ [% g('New %s Packages', organisation) %] [% root_url %]newpkg -[%- IF section; - g('Packages that were added to the %s %s archive (section "%s") during the last 7 days.', - suite, organisation, section); +[%- IF section; + g('The following packages were added to suite %s (section %s) in the %s archive during the last 7 days.', + suite, section, organisation); ELSE; - g('Packages that were added to the %s %s archive during the last 7 days.', - suite, organisation, section); + g('The following packages were added to suite %s in the %s archive during the last 7 days.', + suite, organisation); END; -%] [% lang %]