]> git.deb.at Git - deb/packages.git/commitdiff
Merge commit 'alioth/master'
authorFrank Lichtenheld <frank@lichtenheld.de>
Sun, 25 Nov 2007 13:11:09 +0000 (14:11 +0100)
committerFrank Lichtenheld <frank@lichtenheld.de>
Sun, 25 Nov 2007 13:11:09 +0000 (14:11 +0100)
bin/parse-translations
config.sh.sed.in
cron.d/120synctrans
lib/Packages/CommonCode.pm [new file with mode: 0644]
lib/Packages/I18N/LanguageNames.pm
lib/Packages/I18N/Languages.pm
po/debtags.zh-cn.po [new file with mode: 0644]
po/langs.zh-cn.po [new file with mode: 0644]
po/pdo.zh-cn.po [new file with mode: 0644]
po/sections.zh-cn.po [new file with mode: 0644]
po/templates.zh-cn.po [new file with mode: 0644]

index 095820421b1871347712295016b770f1b561434a..314602499f4fdbb866824054c1cb49102065fe00 100755 (executable)
@@ -46,8 +46,9 @@ $/ = "";
 my $fixja = Text::Iconv->new("EUC-JP", "UTF-8");
 
 foreach my $lang (@DDTP_LANGUAGES) {
-    print "Reading Translations for $lang...";
-    open PKG, "zcat $TOPDIR/archive/*/*/*/i18n/Translation-$lang.gz|";
+    (my $locale = $lang) =~ s/^([a-z]{2})-([a-z]{2})$/"$1_".uc($2)/e;
+    print "Reading Translations for $lang ($locale)...";
+    open PKG, "zcat $TOPDIR/archive/*/*/*/i18n/Translation-$locale.gz|";
     my $count = 0;
     while (<PKG>) {
        next if /^\s*$/;
@@ -64,12 +65,13 @@ foreach my $lang (@DDTP_LANGUAGES) {
        # Skip double descriptions
        next if exists($descriptions{$data{"description-md5"}}{$lang});
        # some weirdnesses in the files
-       next unless defined $data{"description-".lc($lang)};
+       next unless defined $data{"description-".lc($locale)};
        if ($lang eq 'ja') {
            my $fixed = $fixja->convert($data{"description-ja"});
            $data{"description-ja"} = $fixed if $fixed;
        }
-       $descriptions{$data{"description-md5"}}{$lang} = $data{"description-".lc($lang)};
+       $descriptions{$data{"description-md5"}}{$lang} =
+           $data{"description-".lc($locale)};
        $count++;
     }
     print "($count)\n";
index bea71b8dbc2264c52a102e7d46618c7bec9b1aea..6356319ed43022e4a1b61e93a71ab8d4f4ab03a5 100644 (file)
@@ -36,8 +36,8 @@ root=""
 
 # Architectures
 #
-polangs="de fi fr hu ja nl sv uk"
-ddtplangs="ca cs da de eo es fi fr go hu it ja km_KH ko nl pl pt pt_BR ru sk sv uk zh zh_CN zh_TW"
+polangs="de fi fr hu ja nl sv uk zh-cn"
+ddtplangs="ca cs da de eo es fi fr hu it ja km-kh ko nl pl pt pt-br ru sk sv uk zh-cn zh-tw"
 archives="us security amd64 gnuab backports volatile"
 sections="main contrib non-free"
 parts="$sections"
index 115b59fa86c8ad8e9e63011e8e7e047a798adeb4..437aa921d9cdf0332ee99c8dc4a6eeba2c031a16 100755 (executable)
@@ -19,9 +19,10 @@ then
          test -d us/${dist}/${part}/i18n || mkdir -p us/${dist}/${part}/i18n
          for lang in $ddtplangs
          do
-           echo retrieve translated Descs $dist/$part/$lang
+           locale=$(echo $lang|perl -p -e 's/^([a-z]{2})-([a-z]{2})$/"$1_".uc($2)/e')
+           echo "retrieve translated Descs $dist/$part/$lang ($locale)"
             (cd us/${dist}/${part}/i18n &&
-                wget -q -N ${ddtp_ftpsite}/dists/${dist}/${part}/i18n/Translation-$lang.gz)
+                wget -q -N ${ddtp_ftpsite}/dists/${dist}/${part}/i18n/Translation-$locale.gz)
          done
        done
     done
diff --git a/lib/Packages/CommonCode.pm b/lib/Packages/CommonCode.pm
new file mode 100644 (file)
index 0000000..b33f7b4
--- /dev/null
@@ -0,0 +1,70 @@
+# Packages::CommonCode - random utility functions
+#
+# Copyright (C) 2006  Jeroen van Wolffelaar <jeroen@wolffelaar.nl>
+# Copyright (C) 2006-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 1 of the License, or
+#    (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program; if not, write to the Free Software
+#    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+package Packages::CommonCode;
+
+use strict;
+use warnings;
+
+use DB_File;
+use File::Path;
+
+use base 'Exporter';
+
+our %EXPORT_TAGS = ( 'all' => [ qw(parse_control_par activate activate_dir mkdirp) ] );
+our @EXPORT_OK = @{$EXPORT_TAGS{all}};
+
+sub parse_control_par {
+    local ($_) = @_;
+
+    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;
+    }
+
+    return %data;
+}
+
+sub activate {
+    my ($file) = @_;
+
+    rename("${file}.new", $file);
+}
+
+sub activate_dir {
+    my ($dir) = @_;
+
+    my $tmp = "${dir}.old";
+    rename($dir, $tmp);
+    activate($dir);
+    rmtree($tmp);
+}
+
+sub mkdirp {
+    my ($dir) = @_;
+
+    -d $dir || mkpath($dir);
+}
+
+1;
index 65ab7f957e1e5e8b9380b21ead389f704f9ad884..6155f336e3d1fa6e1eb1f5b10a060e6ef4daf9c1 100644 (file)
@@ -27,17 +27,17 @@ my %ctrans = (
        ko    => N_("Korean"),
        es    => N_("Spanish"),
        pt    => N_("Portuguese"),
-       pt_BR => N_("Portuguese (Brasilia)"),
-       pt_PT => N_("Portuguese (Portugal)"),
+       'pt-br'=> N_("Portuguese (Brasilia)"),
+       'pt-pt'=> N_("Portuguese (Portugal)"),
        zh    => N_("Chinese"),
-       zh_CN => N_("Chinese (China)"),
-       zh_HK => N_("Chinese (Hong Kong)"),
-       zh_TW => N_("Chinese (Taiwan)"),
+       'zh-cn'=> N_("Chinese (China)"),
+       'zh-hk'=> N_("Chinese (Hong Kong)"),
+       'zh-tw'=> N_("Chinese (Taiwan)"),
        sv    => N_("Swedish"),
-       sv_SE => N_("Swedish"),
+       'sv-se'=> N_("Swedish"),
        pl    => N_("Polish"),
        'no'  => N_("Norwegian"),
-       'tr'    => N_("Turkish"),
+       'tr'  => N_("Turkish"),
        ru    => N_("Russian"),
        cs    => N_("Czech"),
        eo    => N_("Esperanto"),
index ae63ee787ef9403a44f36e2e00f329365fad1e0e..404aadd2a22038e2a9fd17a2fc06044371e0ee9d 100644 (file)
@@ -74,20 +74,20 @@ my %selflang = (
                "no"   => 'norsk&nbsp;(bokm&aring;l)',
                pl     => 'polski',
                pt     => 'Portugu&ecirc;s (pt)',
-               pt_PT  => 'Portugu&ecirc;s (pt)',
-               pt_BR  => 'Portugu&ecirc;s (br)',
+               'pt-pt'=> 'Portugu&ecirc;s (pt)',
+               'pt-br'=> 'Portugu&ecirc;s (br)',
                ro     => 'rom&acirc;n&#259;',
                ru     => '&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;',
                sk     => 'slovensky',
                sv     => 'svenska',
-               sv_SE  => 'svenska',
+               'sv-se'=> 'svenska',
                sl     => 'sloven&#353;&#269;ina',
                tr     => 'T&uuml;rk&ccedil;e',
                uk     => '&#1091;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072;',
                zh     => '&#20013;&#25991;',
-               zh_CN  => '&#31777;&#39636;&#20013;&#25991;',
-               zh_HK  => '&#27491;&#39636;&#20013;&#25991;',
-               zh_TW  => '&#27491;&#39636;&#20013;&#25991;',
+               'zh-cn'=> '&#20013;&#25991;',
+               'zh-hk'=> '&#27491;&#39636;&#20013;&#25991;',
+               'zh-tw'=> '&#20013;&#25991;',
                );
 
 # language directory name => Latin transliteration of the language name
@@ -104,10 +104,10 @@ my %translit = (
                ko => "Hangul", # Not sure. "Hanguk-Mal" (=Spoken Korean)?
                ru => "Russkij",
                uk => "ukrajins'ka",
-               zh => "Zhongzu", # Not printed due to Chinese-specific code; kept for sort order
-               zh_CN => "Simplified Chinese",
-               zh_HK => "Traditional Chinese",
-               zh_TW => "Traditional Chinese",
+               zh => "Zhongzu",
+               'zh-cn'=> "Zhongzu,&#31616;",
+               'zh-hk'=> "Zhongzu,HK",
+               'zh-tw'=> "Zhongzu,&#32321;",
                );
 
 # second transliteration table, used for languages starting with a latin
diff --git a/po/debtags.zh-cn.po b/po/debtags.zh-cn.po
new file mode 100644 (file)
index 0000000..b154069
--- /dev/null
@@ -0,0 +1,3549 @@
+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::aviation, short desc
+#: files/debtags/vocabulary
+msgid "Aviation"
+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.zh-cn.po b/po/langs.zh-cn.po
new file mode 100644 (file)
index 0000000..1249103
--- /dev/null
@@ -0,0 +1,159 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: langs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-10-19 23:43+0200\n"
+"PO-Revision-Date: 2007-10-18 21:36+0800\n"
+"Last-Translator: Vern Sun <s5unty@gmail.com>\n"
+"Language-Team: Chinese\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: lib/Packages/I18N/LanguageNames.pm:15
+msgid "Arabic"
+msgstr "阿拉伯语"
+
+#: lib/Packages/I18N/LanguageNames.pm:16
+msgid "Finnish"
+msgstr "芬兰语"
+
+#: lib/Packages/I18N/LanguageNames.pm:17
+msgid "Croatian"
+msgstr "克罗地亚语"
+
+#: lib/Packages/I18N/LanguageNames.pm:18
+msgid "Danish"
+msgstr "丹麦语"
+
+#: lib/Packages/I18N/LanguageNames.pm:19
+msgid "Dutch"
+msgstr "荷兰语"
+
+#: lib/Packages/I18N/LanguageNames.pm:20
+msgid "English"
+msgstr "英语"
+
+#: lib/Packages/I18N/LanguageNames.pm:21
+msgid "Persian"
+msgstr "波斯语"
+
+#: lib/Packages/I18N/LanguageNames.pm:22
+msgid "French"
+msgstr "法语"
+
+#: lib/Packages/I18N/LanguageNames.pm:23
+msgid "German"
+msgstr "德语"
+
+#: lib/Packages/I18N/LanguageNames.pm:24
+msgid "Armenian"
+msgstr "美式英语"
+
+#: lib/Packages/I18N/LanguageNames.pm:25
+msgid "Italian"
+msgstr "意大利语"
+
+#: lib/Packages/I18N/LanguageNames.pm:26
+msgid "Japanese"
+msgstr "日语"
+
+#: lib/Packages/I18N/LanguageNames.pm:27
+msgid "Korean"
+msgstr "韩语"
+
+#: lib/Packages/I18N/LanguageNames.pm:28
+msgid "Spanish"
+msgstr "西班牙语"
+
+#: lib/Packages/I18N/LanguageNames.pm:29
+msgid "Portuguese"
+msgstr "葡萄牙语"
+
+#: lib/Packages/I18N/LanguageNames.pm:30
+msgid "Portuguese (Brasilia)"
+msgstr "葡萄牙语 (巴西)"
+
+#: lib/Packages/I18N/LanguageNames.pm:31
+msgid "Portuguese (Portugal)"
+msgstr "葡萄牙语 (葡萄牙)"
+
+#: lib/Packages/I18N/LanguageNames.pm:32
+msgid "Chinese"
+msgstr "中文"
+
+#: lib/Packages/I18N/LanguageNames.pm:33
+msgid "Chinese (China)"
+msgstr "中文 (大陆)"
+
+#: lib/Packages/I18N/LanguageNames.pm:34
+msgid "Chinese (Hong Kong)"
+msgstr "中文 (香港)"
+
+#: lib/Packages/I18N/LanguageNames.pm:35
+msgid "Chinese (Taiwan)"
+msgstr "中文 (台湾)"
+
+#: lib/Packages/I18N/LanguageNames.pm:36 lib/Packages/I18N/LanguageNames.pm:37
+msgid "Swedish"
+msgstr "瑞典语"
+
+#: lib/Packages/I18N/LanguageNames.pm:38
+msgid "Polish"
+msgstr "波兰语"
+
+#: lib/Packages/I18N/LanguageNames.pm:39
+msgid "Norwegian"
+msgstr "挪威语"
+
+#: lib/Packages/I18N/LanguageNames.pm:40
+msgid "Turkish"
+msgstr "土耳其语"
+
+#: lib/Packages/I18N/LanguageNames.pm:41
+msgid "Russian"
+msgstr "俄语"
+
+#: lib/Packages/I18N/LanguageNames.pm:42
+msgid "Czech"
+msgstr "捷克语"
+
+#: lib/Packages/I18N/LanguageNames.pm:43
+msgid "Esperanto"
+msgstr "世界语"
+
+#: lib/Packages/I18N/LanguageNames.pm:44
+msgid "Hungarian"
+msgstr "匈牙利语"
+
+#: lib/Packages/I18N/LanguageNames.pm:45
+msgid "Romanian"
+msgstr "罗马尼亚语"
+
+#: lib/Packages/I18N/LanguageNames.pm:46
+msgid "Slovak"
+msgstr "斯洛伐克语"
+
+#: lib/Packages/I18N/LanguageNames.pm:47
+msgid "Greek"
+msgstr "希腊语"
+
+#: lib/Packages/I18N/LanguageNames.pm:48
+msgid "Catalan"
+msgstr "加泰罗尼亚语"
+
+#: lib/Packages/I18N/LanguageNames.pm:49
+msgid "Lithuanian"
+msgstr "立陶宛语"
+
+#: lib/Packages/I18N/LanguageNames.pm:50
+msgid "Slovene"
+msgstr "斯洛文尼亚语"
+
+#: lib/Packages/I18N/LanguageNames.pm:51
+msgid "Bulgarian"
+msgstr "保加利亚语"
+
+#: lib/Packages/I18N/LanguageNames.pm:52
+msgid "Ukrainian"
+msgstr "乌克兰语"
diff --git a/po/pdo.zh-cn.po b/po/pdo.zh-cn.po
new file mode 100644 (file)
index 0000000..c7c5106
--- /dev/null
@@ -0,0 +1,148 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: pdo\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-11-17 21:01+0100\n"
+"PO-Revision-Date: 2007-10-26 19:48+0800\n"
+"Last-Translator: Vern Sun <s5unty@gmail.com>\n"
+"Language-Team: Chinese\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: 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:30
+#: lib/Packages/DoIndex.pm:31 lib/Packages/DoNewPkg.pm:22
+#: lib/Packages/DoSearchContents.pm:30 lib/Packages/DoShow.pm:34
+msgid "suite not valid or not specified"
+msgstr "发行版不合法或未指定"
+
+#: lib/Packages/DoDownload.pm:33 lib/Packages/DoFilelist.pm:33
+msgid "architecture not valid or not specified"
+msgstr "硬件架构不合法或未指定"
+
+#: lib/Packages/DoDownload.pm:36
+#, perl-format
+msgid "more than one suite specified for download (%s)"
+msgstr "不止一套发行版被指定下载(%s)"
+
+#: lib/Packages/DoDownload.pm:40
+#, perl-format
+msgid "more than one architecture specified for download (%s)"
+msgstr "不止一种硬件架构被指定下载(%s)"
+
+#: lib/Packages/DoFilelist.pm:48
+msgid "No such package in this suite on this architecture."
+msgstr "在此发行版中这种硬件架构下缺少这样的软件包"
+
+#: lib/Packages/DoFilelist.pm:60
+msgid "Invalid suite/architecture combination"
+msgstr "无效的发行版/硬件架构组合"
+
+#: lib/Packages/DoIndex.pm:34
+#, perl-format
+msgid "more than one suite specified for show_static (%s)"
+msgstr "不止一套发行版被指定 show_static(%s)"
+
+#: lib/Packages/DoIndex.pm:38
+#, perl-format
+msgid "more than one subsection specified for show_static (%s)"
+msgstr "不止一套子版面被指定 show_static(%s)"
+
+#: lib/Packages/DoIndex.pm:75
+#, perl-format
+msgid "couldn't read index file %s: %s"
+msgstr "未能读取索引文件 %s: %s"
+
+#: lib/Packages/DoNewPkg.pm:25
+#, perl-format
+msgid "more than one suite specified for newpkg (%s)"
+msgstr "不止一套发行版被指定显示(%s)"
+
+#: lib/Packages/DoNewPkg.pm:43
+#, perl-format
+msgid "no newpkg information found for suite %s"
+msgstr "没能在发行版 %s 中找到相关信息"
+
+#: lib/Packages/DoSearch.pm:25 lib/Packages/DoSearchContents.pm:24
+msgid "keyword not valid or missing"
+msgstr "关键字不合法或不存在"
+
+#: lib/Packages/DoSearch.pm:28 lib/Packages/DoSearchContents.pm:27
+msgid "keyword too short (keywords need to have at least two characters)"
+msgstr "关键字太短(关键字需要至少包含两个字符)"
+
+#: lib/Packages/DoSearch.pm:165
+msgid "Exact hits"
+msgstr "完整匹配"
+
+#: lib/Packages/DoSearch.pm:175
+msgid "Other hits"
+msgstr "部分匹配"
+
+#: lib/Packages/DoSearch.pm:234
+msgid "Virtual package"
+msgstr "虚包"
+
+#: lib/Packages/DoSearchContents.pm:40
+#, perl-format
+msgid "more than one suite specified for contents search (%s)"
+msgstr "不止一套发行版被指定要求搜索其内容(%s)"
+
+#: lib/Packages/DoSearchContents.pm:82
+msgid "The search mode you selected doesn't support more than one keyword."
+msgstr "您选择的搜索模式不支持多个关键字。"
+
+#: lib/Packages/DoShow.pm:37
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr "不止一套发行版被指定显示(%s)"
+
+#: lib/Packages/DoShow.pm:73
+msgid "No such package."
+msgstr "没有这样的软件包。"
+
+#: lib/Packages/DoShow.pm:85
+msgid "Package not available in this suite."
+msgstr "软件包在当前发行版中暂时不可用。"
+
+#: lib/Packages/DoShow.pm:198
+msgid " and others"
+msgstr " 以及其他的"
+
+#: lib/Packages/DoShow.pm:429
+#, perl-format
+msgid "not %s"
+msgstr "缺 %s"
+
+#: lib/Packages/DoShow.pm:479
+msgid "Package not available"
+msgstr "软件包暂时不可用"
+
+#: lib/Packages/DoShow.pm:518
+msgid "Not available"
+msgstr "暂时不可用"
+
+#: lib/Packages/Page.pm:47
+msgid "package has bad maintainer field"
+msgstr "软件包存在错误的维护者字段"
+
+#: lib/Packages/Dispatcher.pm:312
+msgid "requested format not available for this document"
+msgstr "要求的格式在此文档中暂时不可用"
+
+#: bin/create_index_pages:233
+msgid "Section"
+msgstr "版面"
+
+#: bin/create_index_pages:245
+msgid "Subsection"
+msgstr "子版面"
+
+#: bin/create_index_pages:257
+msgid "Priority"
+msgstr "优先级"
diff --git a/po/sections.zh-cn.po b/po/sections.zh-cn.po
new file mode 100644 (file)
index 0000000..9349673
--- /dev/null
@@ -0,0 +1,326 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: sections\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-10-19 23:43+0200\n"
+"PO-Revision-Date: 2007-10-26 19:47+0800\n"
+"Last-Translator: Vern Sun <s5unty@gmail.com>\n"
+"Language-Team: Chinese\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: lib/Packages/Sections.pm:12
+msgid "Administration Utilities"
+msgstr "实用管理工具"
+
+#: lib/Packages/Sections.pm:13
+msgid "Utilities to administer system resources, manage user accounts, etc."
+msgstr "管理系统资源,维护用户账号等实用工具。"
+
+#: lib/Packages/Sections.pm:14
+msgid "Base Utilities"
+msgstr "基础实用工具"
+
+#: lib/Packages/Sections.pm:15
+msgid "Basic needed utilities of every Debian system."
+msgstr "任何 Debian 系统必备的实用工具。"
+
+#: lib/Packages/Sections.pm:16
+msgid "Communication Programs"
+msgstr "通讯程序"
+
+#: lib/Packages/Sections.pm:17
+msgid "Software to use your modem in the old fashioned style."
+msgstr "用于您老式调制解调器的软件。"
+
+#: lib/Packages/Sections.pm:18
+msgid "Development"
+msgstr "开发"
+
+#: lib/Packages/Sections.pm:19
+msgid ""
+"Development utilities, compilers, development environments, libraries, etc."
+msgstr "实用开发工具,编译器,开发环境,链接库,等等。"
+
+#: lib/Packages/Sections.pm:20
+msgid "Documentation"
+msgstr "文档"
+
+#: lib/Packages/Sections.pm:21
+msgid ""
+"FAQs, HOWTOs and other documents trying to explain everything related to "
+"Debian, and software needed to browse documentation (man, info, etc)."
+msgstr ""
+"FAQs,HOWTOs 以及其他的、尝试讲解有关 Debian 一切的文档,以及阅读文档时所需的"
+"软件(man,info,等)。"
+
+#: lib/Packages/Sections.pm:22
+msgid "Editors"
+msgstr "编辑器"
+
+#: lib/Packages/Sections.pm:23
+msgid "Software to edit files. Programming environments."
+msgstr "编辑文件的软件。程序编写环境。"
+
+#: lib/Packages/Sections.pm:24
+msgid "Electronics"
+msgstr "电子工程学"
+
+#: lib/Packages/Sections.pm:25
+msgid "Electronics utilities."
+msgstr "实用电子工程学工具。"
+
+#: lib/Packages/Sections.pm:26
+msgid "Embedded software"
+msgstr "嵌入式软件"
+
+#: lib/Packages/Sections.pm:27
+msgid "Software suitable for use in embedded applications."
+msgstr "适合于嵌入式应用的软件。"
+
+#: lib/Packages/Sections.pm:28
+msgid "Games"
+msgstr "游戏"
+
+#: lib/Packages/Sections.pm:29
+msgid "Programs to spend a nice time with after all this setting up."
+msgstr "这些程序装完以后可以用来消谴娱乐。"
+
+#: lib/Packages/Sections.pm:30
+msgid "GNOME"
+msgstr "GNOME"
+
+#: lib/Packages/Sections.pm:31
+msgid ""
+"The GNOME desktop environment, a powerful, easy to use set of integrated "
+"applications."
+msgstr "GNOME 桌面环境,一组强大的、易用的、集成的应用程序。"
+
+#: lib/Packages/Sections.pm:32
+msgid "Graphics"
+msgstr "图形"
+
+#: lib/Packages/Sections.pm:33
+msgid "Editors, viewers, converters... Everything to become an artist."
+msgstr "编辑器,浏览器,转换器……成为一名艺术家所需的一切。"
+
+#: lib/Packages/Sections.pm:34
+msgid "Ham Radio"
+msgstr "业余无线电"
+
+#: lib/Packages/Sections.pm:35
+msgid "Software for ham radio."
+msgstr "业余无线电软件。"
+
+#: lib/Packages/Sections.pm:36
+msgid "Interpreters"
+msgstr "解释器"
+
+#: lib/Packages/Sections.pm:37
+msgid "All kind of interpreters for interpreted languages. Macro processors."
+msgstr "各种解释型语言的解释器。巨集处理器。"
+
+#: lib/Packages/Sections.pm:38
+msgid "KDE"
+msgstr "KDE"
+
+#: lib/Packages/Sections.pm:39
+msgid ""
+"The K Desktop Environment, a powerful, easy to use set of integrated "
+"applications."
+msgstr "KDE 桌面环境。一组强大的、易用的、集成的应用程序。"
+
+#: lib/Packages/Sections.pm:40
+msgid "Libraries"
+msgstr "链接库"
+
+#: lib/Packages/Sections.pm:41
+msgid ""
+"Libraries to make other programs work. They provide special features to "
+"developers."
+msgstr "提供其他程序工作的链接库。是它们让开发者富有特色。"
+
+#: lib/Packages/Sections.pm:42
+msgid "Library development"
+msgstr "链接库开发"
+
+#: lib/Packages/Sections.pm:43
+msgid "Libraries necessary for developers to write programs that use them."
+msgstr "当开发者要编写一些调用链接库的程序时所必需的链接库"
+
+#: lib/Packages/Sections.pm:44
+msgid "Mail"
+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 "数学"
+
+#: lib/Packages/Sections.pm:47
+msgid "Math software."
+msgstr "数学软件。"
+
+#: lib/Packages/Sections.pm:48
+msgid "Miscellaneous"
+msgstr "五花八门"
+
+#: lib/Packages/Sections.pm:49
+msgid "Miscellaneous utilities that didn't fit well anywhere else."
+msgstr "放在其他地方都不合适的各式各样的实用程序。"
+
+#: lib/Packages/Sections.pm:50
+msgid "Network"
+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 "新闻组"
+
+#: lib/Packages/Sections.pm:53
+msgid "Software to access Usenet, to set up news servers, etc."
+msgstr "访问新闻网,设置新闻服务器等软件。"
+
+#: lib/Packages/Sections.pm:54
+msgid "Old Libraries"
+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 "其他操作系统和文件系统"
+
+#: 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 "Perl"
+
+#: lib/Packages/Sections.pm:59
+msgid "Everything about Perl, an interpreted scripting language."
+msgstr "一切有关 Perl 的内容,一种解释型的脚本语言。"
+
+#: lib/Packages/Sections.pm:60
+msgid "Python"
+msgstr "Python"
+
+#: lib/Packages/Sections.pm:61
+msgid ""
+"Everything about Python, an interpreted, interactive object oriented "
+"language."
+msgstr "一切有关 Python 的内容,一种解释型、面向对象的语言"
+
+#: lib/Packages/Sections.pm:62
+msgid "Science"
+msgstr "科研"
+
+#: lib/Packages/Sections.pm:63
+msgid "Basic tools for scientific work"
+msgstr "科研工作的初级工具"
+
+#: lib/Packages/Sections.pm:64
+msgid "Shells"
+msgstr "Shells"
+
+#: lib/Packages/Sections.pm:65
+msgid "Command shells. Friendly user interfaces for beginners."
+msgstr "命令行。友好的用户和计算机的交互界面。"
+
+#: lib/Packages/Sections.pm:66
+msgid "Sound"
+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 "TeX"
+
+#: lib/Packages/Sections.pm:69
+msgid "The famous typesetting software and related programs."
+msgstr "流行的文档排版及相关处理程序"
+
+#: lib/Packages/Sections.pm:70
+msgid "Text Processing"
+msgstr "文本处理"
+
+#: lib/Packages/Sections.pm:71
+msgid "Utilities to format and print text documents."
+msgstr "格式化和打印文本文档的实用工具。"
+
+#: lib/Packages/Sections.pm:72
+msgid "Translations"
+msgstr "翻译"
+
+#: lib/Packages/Sections.pm:73
+msgid "Translation packages and language support meta packages."
+msgstr "一些提供翻译支持或语言支持的,自身不含内容但却依赖其他软件包的元包"
+
+#: lib/Packages/Sections.pm:74
+msgid "Utilities"
+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 "虚包"
+
+#: lib/Packages/Sections.pm:77
+msgid "Virtual packages."
+msgstr "虚拟的、逻辑的、概念上的软件包。"
+
+#: lib/Packages/Sections.pm:78
+msgid "Web Software"
+msgstr "网页软件"
+
+#: lib/Packages/Sections.pm:79
+msgid "Web servers, browsers, proxies, download tools etc."
+msgstr "网页服务器,浏览器,代理,下载工具等。"
+
+#: lib/Packages/Sections.pm:80
+msgid "X Window System software"
+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 "Debian 安装程序 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 安装程序的变体。请不要在一个普通系统上安"
+"装它们!"
diff --git a/po/templates.zh-cn.po b/po/templates.zh-cn.po
new file mode 100644 (file)
index 0000000..cd01061
--- /dev/null
@@ -0,0 +1,1001 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: pdo\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-10-14 00:02+0200\n"
+"PO-Revision-Date: 2007-10-26 19:43+0800\n"
+"Last-Translator: Vern Sun <s5unty@gmail.com>\n"
+"Language-Team: Chinese\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: templates/config.tmpl:40
+msgid "Debian Web Mailinglist"
+msgstr "Debian 邮件列表"
+
+#: templates/config.tmpl:45
+msgid "%s Webmaster"
+msgstr "%s 网管"
+
+#: templates/config.tmpl:48
+msgid "%s is a <a href=\"%s\">trademark</a> of %s"
+msgstr "%1$s 是 %3$s 的一个<a href=\"%3$s\">注册商标</a>"
+
+#: templates/config.tmpl:53
+msgid ""
+"Please note that this is an experimental version of <a href=\"http://"
+"packages.debian.org/\">packages.debian.org</a>. Errors and obsolete "
+"information should be expected"
+msgstr ""
+"注意: 这是 <a href=\"http://packages.debian.org/\">packages.debian.org</a> 的"
+"一个试制版本。错误的以及过时的信息有时难以避免"
+
+#. @translators: . = decimal_point , = thousands_sep, see Number::Format 
+#: templates/config.tmpl:56
+msgid "."
+msgstr ""
+
+#: templates/config.tmpl:57
+msgid ","
+msgstr ""
+
+#: templates/config/architectures.tmpl:4
+msgid "Intel x86"
+msgstr "Interl x86"
+
+#: templates/config/architectures.tmpl:5
+msgid "Motorola 680x0"
+msgstr "Motorola 680x0"
+
+#: templates/config/architectures.tmpl:6
+msgid "SPARC"
+msgstr "SPARC"
+
+#: templates/config/architectures.tmpl:7
+msgid "Alpha"
+msgstr "Alpha"
+
+#: templates/config/architectures.tmpl:8
+msgid "PowerPC"
+msgstr "PowerPC"
+
+#: templates/config/architectures.tmpl:9
+msgid "ARM"
+msgstr "ARM"
+
+#: templates/config/architectures.tmpl:10
+msgid "HP PA-RISC"
+msgstr "HP PA-RISC"
+
+#: templates/config/architectures.tmpl:11
+msgid "Intel IA-64"
+msgstr "Intel IA-64"
+
+#: templates/config/architectures.tmpl:12
+msgid "MIPS (big-endian)"
+msgstr "MIPS (大端)"
+
+#: templates/config/architectures.tmpl:13
+msgid "MIPS (little-endian)"
+msgstr "MIPS (小端)"
+
+#: templates/config/architectures.tmpl:14
+msgid "IBM S/390"
+msgstr "IBM S/390"
+
+#: templates/config/architectures.tmpl:15
+msgid "Hurd (i386)"
+msgstr "Hurd (i386)"
+
+#: templates/config/architectures.tmpl:16
+msgid "AMD64"
+msgstr "AMD64"
+
+#: templates/config/architectures.tmpl:17
+msgid "EABI ARM"
+msgstr "EABI ARM"
+
+#: templates/config/architectures.tmpl:18
+msgid "GNU/kFreeBSD (i386)"
+msgstr "GNU/kFreeBSD (i386)"
+
+#: templates/config/architectures.tmpl:19
+msgid "GNU/kFreeBSD (amd64)"
+msgstr "GNU/kFreeBSD (amd64)"
+
+#: templates/config/mirrors.tmpl:182
+msgid "North America"
+msgstr "北美洲"
+
+#: templates/config/mirrors.tmpl:183
+msgid "South America"
+msgstr "南美洲"
+
+#: templates/config/mirrors.tmpl:184
+msgid "Asia"
+msgstr "亚洲"
+
+#: templates/config/mirrors.tmpl:185
+msgid "Australia and New Zealand"
+msgstr "澳洲和大洋洲"
+
+#: templates/config/mirrors.tmpl:186
+msgid "Europe"
+msgstr "欧洲"
+
+#: templates/config/mirrors.tmpl:187
+msgid "Africa"
+msgstr "非洲"
+
+#: templates/html/download.tmpl:2
+msgid "Package Download Selection -- %s"
+msgstr "软件包下载地址选集 -- %s"
+
+#: templates/html/download.tmpl:5 templates/html/filelist.tmpl:5
+#: templates/html/index.tmpl:10 templates/html/show.tmpl:14
+msgid "Distribution:"
+msgstr "发行版:"
+
+#: templates/html/download.tmpl:5 templates/html/filelist.tmpl:5
+#: templates/html/index.tmpl:10 templates/html/show.tmpl:14
+msgid "Overview over this suite"
+msgstr "该发行版一览"
+
+#: templates/html/download.tmpl:6 templates/html/filelist.tmpl:6
+#: templates/html/show.tmpl:17
+msgid "Package:"
+msgstr "软件包:"
+
+#: templates/html/download.tmpl:8
+msgid "Download"
+msgstr "下载"
+
+#: templates/html/download.tmpl:17
+msgid "Download Page for <kbd>%s</kbd> on %s machines"
+msgstr "用在 %2$s 上 <kbd>%1$s</kbd> 的下载页面"
+
+#: templates/html/download.tmpl:19
+msgid "Download Page for <kbd>%s</kbd>"
+msgstr "<kbd>%s</kbd> 的下载页面"
+
+#: templates/html/download.tmpl:23
+msgid ""
+"If you are running %s, it is strongly suggested to use a package manager "
+"like <a href=\"%s\">aptitude</a> or <a href=\"%s\">synaptic</a> to download "
+"and install packages, instead of doing so manually via this website."
+msgstr ""
+"如果您正在运行 %s,请尽量使用像 <a href=\"%s\">aptitude</a> 或者 <a href=\"%s"
+"\">synaptic</a> 一样的软件包管理器,代替人工手动操作的方式从这个网页下载并安"
+"装软件包。"
+
+#: templates/html/download.tmpl:25
+msgid ""
+"You should be able to use any of the listed mirrors by adding a line to your "
+"<kbd>/etc/apt/sources.list</kbd> like this:"
+msgstr ""
+"您可以使用以下列表中的任何一个源镜像只要往您的 <kbd>/etc/apt/sources.list</"
+"kbd> 文件中像下面这样添加一行:"
+
+#: templates/html/download.tmpl:30
+msgid "Replacing <em>%s</em> with the mirror in question."
+msgstr "请使用最终确定的源镜像替换 <em>%s</em>。"
+
+#: templates/html/download.tmpl:37 templates/html/show.tmpl:145
+msgid "Experimental package"
+msgstr "试制(Experimental)软件包"
+
+#: templates/html/download.tmpl:38
+msgid ""
+"Warning: This package is from the <strong>experimental</strong> "
+"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 ""
+"警告: 这个软件包来自于 <strong>experimental</strong> 发行版。这表示它很有可能"
+"表现出不稳定或者出现 bug ,甚至是导致资料损失。请务必在使用之前查阅 "
+"changelog 以及其他潜在的文档。"
+
+#: templates/html/download.tmpl:41 templates/html/show.tmpl:150
+msgid "debian-installer udeb package"
+msgstr "Debian 安装程序 udeb 包"
+
+#: templates/html/download.tmpl:42 templates/html/show.tmpl:151
+msgid ""
+"Warning: This package is intended for the use in building <a href=\"http://"
+"www.debian.org/devel/debian-installer\">debian-installer</a> images only. Do "
+"not install it on a normal %s system."
+msgstr ""
+"警告: 这个软件包专门用于构建 <a href=\"http://www.debian.org/devel/debian-"
+"installer\"> Debian 安装程序</a>(debian-installer)镜像。不要在一个普通的 %s "
+"系统上安装它。"
+
+#: templates/html/download.tmpl:49
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at any "
+"of these sites:"
+msgstr "您可以从以下任意站点的 <tt>%s</tt> 子目录中下载所需的文件:"
+
+#: templates/html/download.tmpl:75
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at:"
+msgstr "您可以从 <tt>%s</tt> 子目录中下载所需的文件:"
+
+#: templates/html/download.tmpl:77
+msgid "%s security updates are officially distributed only via <tt>%s</tt>."
+msgstr "官方认可的 %s 安全更新只经由 <tt>%s</tt> 发布。"
+
+#: templates/html/download.tmpl:84
+msgid ""
+"If none of the above sites are fast enough for you, please see our <a href="
+"\"%s\">complete mirror list</a>."
+msgstr ""
+"如果您感觉以上站点的速度都不够理想,请查看我们的<a href=\"%s\">完整源镜像列表"
+"</a>。"
+
+#: 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 <a href=\"%s\">%s ports page</a> for current "
+"information."
+msgstr ""
+"注意: %s 目前还没有被 %s 官方收录,但是有 %s 移植小组负责尽可能的保证它们与官"
+"方收录的档案相一致。请查看 <a href=\"%s\">%s 移植页面</a>了解最新信息。"
+
+#: 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 ""
+"注意: 某些浏览器需要您明确告诉它们,您仅仅是想保存这些文件,并非查看或运行它"
+"们。对于 Firefox 或者 Mozilla ,您可能需要在按住 Shift 键的同时点击上面的 "
+"URL 链接。"
+
+#: templates/html/download.tmpl:100
+msgid "More information on <kbd>%s</kbd>:"
+msgstr "有关 <kbd>%s</kbd> 的更多信息:"
+
+#: templates/html/download.tmpl:102
+msgid "Exact Size"
+msgstr "实际大小"
+
+#: templates/html/download.tmpl:102
+msgid "%s Byte (%s %s)"
+msgstr "%s 字节(%s %s)"
+
+#: templates/html/download.tmpl:103 templates/html/show.tmpl:320
+msgid "MD5 checksum"
+msgstr "MD5 校验码"
+
+#: templates/html/download.tmpl:104
+msgid "SHA1 checksum"
+msgstr "SHA1 校验码"
+
+#: templates/html/download.tmpl:104 templates/html/download.tmpl:105
+msgid "Not Available"
+msgstr "不存在"
+
+#: templates/html/download.tmpl:105
+msgid "SHA256 checksum"
+msgstr "SHA256 校验码"
+
+#: templates/html/filelist.tmpl:2
+msgid "Filelist of package %s/%s/%s"
+msgstr "软件包的文件清单: %s/%s/%s"
+
+#: templates/html/filelist.tmpl:3
+msgid ""
+"Filelist of package <em>%s</em> in <em>%s</em> of architecture <em>%s</em>"
+msgstr ""
+"在 <em>%2$s</em> 发行版中 <em>%3$s</em> 硬件架构下的 <em>%1$s</em> 软件包文件"
+"清单"
+
+#: templates/html/filelist.tmpl:8
+msgid "Filelist"
+msgstr "文件清单"
+
+#: templates/html/foot.tmpl:11
+msgid "This page is also available in the following languages:"
+msgstr "本页面还能应用以下各种语言浏览:"
+
+#: templates/html/foot.tmpl:22
+msgid "How to set <a href=\"%s\">the default document language</a>"
+msgstr "<a href=\"%s\">如何设置缺省语言</a>"
+
+#: templates/html/foot.tmpl:27
+msgid "Back to:"
+msgstr "返回到:"
+
+#: templates/html/foot.tmpl:27 templates/html/head.tmpl:64
+msgid "%s Homepage"
+msgstr "%s 首页"
+
+#: templates/html/foot.tmpl:27
+msgid "Packages search page"
+msgstr "软件包搜索页面"
+
+#: templates/html/foot.tmpl:31
+msgid ""
+"To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. "
+"For other contact information, see the %s <a href=\"%s\">contact page</a>."
+msgstr ""
+"报告本网站的问题,请发送电子邮件至 <a href=\"mailto:%s\">%s</a>。请查阅 %s "
+"<a href=\"%s\">联系方式</a>了解更多信息。"
+
+#: templates/html/foot.tmpl:33 templates/txt/index.tmpl:4
+msgid "Generated:"
+msgstr "最近修订日期:"
+
+#: templates/html/foot.tmpl:35
+msgid ""
+"Content Copyright &copy; %s <a href=\"%s\">%s</a>; See <a href=\"%s"
+"\">license terms</a>."
+msgstr ""
+"版权所有 &copy; %s <a href=\"%s\">%s</a>; 查阅<a href=\"%s\">许可证条款</a>。"
+
+#: templates/html/foot.tmpl:39
+msgid "Learn more about this site"
+msgstr "了解更多有关本站点的内容"
+
+#: templates/html/head.tmpl:46
+msgid "Search"
+msgstr "搜索"
+
+#: templates/html/head.tmpl:49
+msgid "package names"
+msgstr "软件包名"
+
+#: templates/html/head.tmpl:50
+msgid "descriptions"
+msgstr "描述信息"
+
+#: templates/html/head.tmpl:51
+msgid "source package names"
+msgstr "源码包名"
+
+#: templates/html/head.tmpl:52
+msgid "package contents"
+msgstr "软件包内容"
+
+#: templates/html/head.tmpl:55
+msgid "all options"
+msgstr "全部搜索项"
+
+#: templates/html/head.tmpl:62
+msgid "skip the navigation"
+msgstr "略过导航栏"
+
+#: templates/html/head.tmpl:65
+msgid "%s Packages Homepage"
+msgstr "%s 软件包首页"
+
+#: templates/html/head.tmpl:65 templates/html/search_contents.tmpl:100
+#: templates/html/search_contents.tmpl:124
+msgid "Packages"
+msgstr "软件包"
+
+#: templates/html/index.tmpl:3
+msgid "Source Packages in \"%s\", %s %s"
+msgstr "属于 \"%1$s\" 发行版 %3$s %2$s的源码包"
+
+#: templates/html/index.tmpl:4
+msgid "Source Packages in \"%s\""
+msgstr "属于 \"%1$s\" 发行版的源码包"
+
+#: templates/html/index.tmpl:6
+msgid "Software Packages in \"%s\", %s %s"
+msgstr "属于 \"%1$s\" 发行版 %3$s %2$s的软件包"
+
+#: templates/html/index.tmpl:7
+msgid "Software Packages in \"%s\""
+msgstr "属于 \"%1$s\" 发行版的软件包"
+
+#: templates/html/index.tmpl:14
+msgid "All Packages"
+msgstr "所有包"
+
+#: templates/html/index.tmpl:16 templates/html/show.tmpl:15
+#: templates/html/suite_index.tmpl:2
+msgid "Source"
+msgstr "源代码"
+
+#: templates/html/index.tmpl:43 templates/html/show.tmpl:247
+#: templates/txt/index.tmpl:15
+msgid "virtual package provided by"
+msgstr "本虚包由这些包填实:"
+
+#: templates/html/newpkg.tmpl:2 templates/html/newpkg.tmpl:7
+msgid "New Packages in \"%s\""
+msgstr "属于 \"%s\" 发行版的新进软件包"
+
+#: templates/html/newpkg.tmpl:11
+msgid ""
+"The following packages were added to suite <em>%s</em> (section %s) in the %"
+"s archive during the last 7 days."
+msgstr "以下是在最近 7 天内被选进 <em>%s</em> 发行版( %s 版面)之中的软件包。"
+
+#: templates/html/newpkg.tmpl:14
+msgid ""
+"The following packages were added to suite <em>%s</em> in the %s archive "
+"during the last 7 days."
+msgstr "以下是在最近 7 天内被选进 %2$s 的 %1$s 发行版之中的软件包。"
+
+#: templates/html/newpkg.tmpl:18
+msgid " You can also display this list <a href=\"%s\">sorted by name</a>."
+msgstr " 您还可以<a href=\"%s\">按文件名顺序</a>显示这个列表。"
+
+#: templates/html/newpkg.tmpl:20
+msgid " You can also display this list <a href=\"%s\">sorted by age</a>."
+msgstr " 您还可以<a href=\"%s\">按入选时间顺序</a>显示这个列表。"
+
+#: templates/html/newpkg.tmpl:22
+msgid ""
+"This information is also available as an <a href=\"newpkg?format=rss\">RSS "
+"feed</a>"
+msgstr "这些信息还可以被 <a href=\"newpkg?format=rss\">RSS 订阅</a>"
+
+#: templates/html/newpkg.tmpl:23
+msgid "[RSS 1.0 Feed]"
+msgstr "[RSS 1.0 Feed]"
+
+#: templates/html/newpkg.tmpl:28
+msgid " <em>(%u days old)</em>"
+msgstr " <em>(%u 天前)</em>"
+
+#: templates/html/newpkg.tmpl:32 templates/html/suite_index.tmpl:39
+msgid "List of all packages"
+msgstr "所有软件包列表"
+
+#: templates/html/newpkg.tmpl:32 templates/html/suite_index.tmpl:41
+msgid "All packages"
+msgstr "所有软件包"
+
+#: templates/html/newpkg.tmpl:33 templates/html/suite_index.tmpl:45
+msgid "compact compressed textlist"
+msgstr "经过压缩的文本清单"
+
+#: templates/html/newpkg.tmpl:34
+msgid "New packages in "
+msgstr "所属的新进软件包"
+
+#: templates/html/search.tmpl:19
+msgid "Package Search Results -- %s"
+msgstr "软件包搜索结果 -- %s"
+
+#: templates/html/search.tmpl:28
+msgid "Package Search Results"
+msgstr "软件包搜索结果"
+
+#: templates/html/search.tmpl:33
+msgid ""
+"You can try a different search on the <a href=\"%s#search_packages"
+"\">Packages search page</a>."
+msgstr ""
+"您可以在<a href=\"%s#search_packages\">软件包搜索页面</a>重新搜索一次。"
+
+#: templates/html/search.tmpl:37
+msgid ""
+"You have searched only for words exactly matching your keywords. You can try "
+"to search <a href=\"%s\">allowing subword matching</a>."
+msgstr ""
+"您刚才搜索的仅限于完整匹配您指定关键字的内容。您还可以尝试搜索<a href=\"%s\">"
+"部分匹配</a>您指定关键字的内容。"
+
+#: templates/html/search.tmpl:42
+msgid ""
+"<a href=\"%s\">%u</a> results have not been displayed due to the search "
+"parameters."
+msgstr ""
+"由于参数界定了搜索范围,导致 <a href=\"%s\">%u</a> 个相关结果没有列出。"
+
+#: templates/html/search.tmpl:51
+msgid "all suites"
+msgstr "所有发行版"
+
+#: templates/html/search.tmpl:51
+msgid "suite(s) <em>$suite_enc</em>"
+msgstr " <em>$suite_enc</em> 发行版"
+
+#: templates/html/search.tmpl:52 templates/html/search_contents.tmpl:72
+msgid "all sections"
+msgstr "所有版面"
+
+#: templates/html/search.tmpl:52
+msgid "section(s) <em>$section_enc</em>"
+msgstr " <em>$section_enc</em> 版面"
+
+#: templates/html/search.tmpl:53 templates/html/search_contents.tmpl:73
+msgid "all architectures"
+msgstr "所有硬件架构"
+
+#: templates/html/search.tmpl:53
+msgid "architecture(s) <em>$architectures_enc</em>"
+msgstr " <em>$architectures_enc</em> 硬件架构"
+
+#: templates/html/search.tmpl:55
+msgid "source packages"
+msgstr "源码包"
+
+#: templates/html/search.tmpl:55
+msgid "packages"
+msgstr "软件包"
+
+#: templates/html/search.tmpl:56
+msgid ""
+"You have searched for %s that names contain <em>%s</em> in %s, %s, and %s."
+msgstr ""
+"您在%3$s中%5$s下%4$s里,指定关键字 <em>%2$s</em> 在%1$s名称中搜索的结果。"
+
+#: templates/html/search.tmpl:59
+msgid " (including subword matching)"
+msgstr "(包括部分关键字匹配)"
+
+#. @translators: I'm really sorry :/
+#: templates/html/search.tmpl:61
+msgid ""
+"You have searched for <em>%s</em> in packages names and descriptions in %s, %"
+"s, and %s%s."
+msgstr ""
+"您在%2$s中%4$s下%3$s里,指定关键字 <em>%1$s</em> 在软件包名称和描述信息中搜索"
+"的结果%5$s。"
+
+#: templates/html/search.tmpl:67
+msgid "Found <strong>%u</strong> matching packages."
+msgstr "找到 <strong>%u</strong> 个匹配的软件包。"
+
+#: 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:74
+msgid ""
+"Your search was too wide so we will only display exact matches. At least <em>"
+"%u</em> results have been omitted and will not be displayed. Please consider "
+"using a longer keyword or more keywords."
+msgstr ""
+"由于您的搜索范围太大我们只列出了能完整匹配搜索关键字的结果。至少有 <em>%u</"
+"em> 个相关结果没有被列出。请考虑更换一个更准确的关键字或者添加更多的关键字。"
+
+#: templates/html/search.tmpl:79 templates/html/search_contents.tmpl:131
+msgid "Sorry, your search gave no results"
+msgstr "很遗憾,您没能搜索到任何结果"
+
+#: templates/html/search.tmpl:86
+msgid "Package %s"
+msgstr "软件包 %s"
+
+#: templates/html/search.tmpl:96
+msgid "also provided by:"
+msgstr "同时提供该包的还有:"
+
+#: templates/html/search.tmpl:96
+msgid "provided by:"
+msgstr "由这些包填实:"
+
+#: templates/html/search.tmpl:105
+msgid "Source Package %s"
+msgstr "源码包 %s"
+
+#: templates/html/search.tmpl:113
+msgid "Binary packages:"
+msgstr "二进制包:"
+
+#: templates/html/search.tmpl:115
+msgid "%u binary packages"
+msgstr "%u 个二进制包"
+
+#: templates/html/search.tmpl:125
+msgid ""
+"<a href=\"%s\">%u</a> results have not been displayed because you requested "
+"only exact matches."
+msgstr ""
+"<a href=\"%s\">%u</a> 个相关结果没有被列出,原因是您要求搜索能完整匹配您指定"
+"关键字的内容。"
+
+#: templates/html/search_contents.tmpl:14
+msgid "Package Contents Search Results -- %s"
+msgstr "软件包内容搜索结果 -- %s"
+
+#: templates/html/search_contents.tmpl:17
+msgid "Package Contents Search Results"
+msgstr "软件包内容搜索结果"
+
+#: templates/html/search_contents.tmpl:34
+msgid "Search for <em>%s</em> within filenames"
+msgstr "搜索文件名与 <em>%s</em> 相似的内容"
+
+#: templates/html/search_contents.tmpl:39
+msgid "Search exact filename <em>%s</em>"
+msgstr "搜索文件名和 <em>%s</em> 相同的内容"
+
+#: templates/html/search_contents.tmpl:44
+msgid "Search for paths ending with <em>%s</em>"
+msgstr "搜索文件名以 <em>%s</em> 结尾的内容"
+
+#: templates/html/search_contents.tmpl:48
+msgid "Search in other suite:"
+msgstr "在其他的发行版中搜索:"
+
+#: templates/html/search_contents.tmpl:58
+msgid "Limit search to a specific architecture:"
+msgstr "只搜索某一种硬件架构:"
+
+#: templates/html/search_contents.tmpl:63
+msgid "Search in <a href=\"%s\">all architectures</a>"
+msgstr "在<a href=\"%s\">所有硬件架构</a>中搜索"
+
+#: templates/html/search_contents.tmpl:72
+msgid "section(s) <em>%s</em>"
+msgstr " <em>%s</em> 版面"
+
+#: templates/html/search_contents.tmpl:73
+msgid "architecture(s) <em>%s</em>"
+msgstr " <em>%s</em> 硬件架构"
+
+#: templates/html/search_contents.tmpl:74
+msgid "paths that end with"
+msgstr "路径末尾是"
+
+#: templates/html/search_contents.tmpl:76
+msgid "files named"
+msgstr "文件名称为"
+
+#: templates/html/search_contents.tmpl:78
+msgid "filenames that contain"
+msgstr "文件名含有"
+
+#. @translators: I'm really sorry :/ 
+#: templates/html/search_contents.tmpl:81
+msgid "You have searched for %s <em>%s</em> in suite <em>%s</em>, %s, and %s."
+msgstr ""
+"您在 <em>%3$s</em> 发行版中%5$s下%4$s里,搜索了%1$s <em>%2$s</em> 的内容。"
+
+#: templates/html/search_contents.tmpl:85
+msgid "Found <strong>%u results</strong>."
+msgstr "找到了 <strong>%u</strong> 个相关结果。"
+
+#: 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 ""
+"注意: 由于您的搜索范围太大我们只列出了前 100 个结果。请考虑更换一个更准确的关"
+"键字或者添加更多的关键字。"
+
+#: templates/html/search_contents.tmpl:97
+msgid "Sort results by filename"
+msgstr "按文件名排序"
+
+#: 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:99
+msgid "Sort results by package name"
+msgstr "按软件包名排序"
+
+#: templates/html/search_contents.tmpl:114
+msgid "not %s"
+msgstr "除 %s"
+
+#: templates/html/show.tmpl:15
+msgid "Source packages"
+msgstr "源码包"
+
+#: templates/html/show.tmpl:16
+msgid "Section:"
+msgstr "版面:"
+
+#: templates/html/show.tmpl:16
+msgid "All packages in this section"
+msgstr "属于本版面的所有软件包"
+
+#: templates/html/show.tmpl:21
+msgid "Details of source package %s in %s"
+msgstr "在 %2$s 中的 %1$s 源码包详细信息"
+
+#: templates/html/show.tmpl:22
+msgid "Details of package %s in %s"
+msgstr "在 %2$s 中的 %1$s 软件包详细信息"
+
+#: templates/html/show.tmpl:45
+msgid "Source:"
+msgstr "源代码:"
+
+#: templates/html/show.tmpl:45
+msgid "Source package building this package"
+msgstr "构建这个包的源码包"
+
+#: templates/html/show.tmpl:52
+msgid "Virtual Package: %s"
+msgstr "虚包: %s"
+
+#: templates/html/show.tmpl:54
+msgid "Source Package: %s (%s)"
+msgstr "源码包: %s (%s)"
+
+#: templates/html/show.tmpl:56
+msgid "Package: %s (%s)"
+msgstr "软件包: %s (%s)"
+
+#: templates/html/show.tmpl:60
+msgid "essential"
+msgstr "必备"
+
+#: templates/html/show.tmpl:64
+msgid "Links for %s"
+msgstr "%s 的相关链接"
+
+#: templates/html/show.tmpl:65
+msgid "Debian Resources:"
+msgstr "Debian 的资源:"
+
+#: templates/html/show.tmpl:67
+msgid "Bug Reports"
+msgstr "报告问题"
+
+#: templates/html/show.tmpl:70 templates/html/show.tmpl:72
+msgid "Developer Information (PTS)"
+msgstr "开发者信息(PTS)"
+
+#: templates/html/show.tmpl:76
+msgid "%s Changelog"
+msgstr "%s Changelog"
+
+#: templates/html/show.tmpl:77
+msgid "Copyright File"
+msgstr "版权文件"
+
+#: templates/html/show.tmpl:81
+msgid "Debian Source Repository"
+msgstr "Debian 源代码仓库"
+
+#: templates/html/show.tmpl:95
+msgid "Download Source Package <a href=\"%s\">%s</a>:"
+msgstr "下载源码包 <a href=\"%s\">%s</a>:"
+
+#: templates/html/show.tmpl:102
+msgid "Not found"
+msgstr "未找到"
+
+#: templates/html/show.tmpl:107
+msgid "Maintainer:"
+msgstr "维护者:"
+
+#: templates/html/show.tmpl:109
+msgid "Maintainers:"
+msgstr "维护小组:"
+
+#: templates/html/show.tmpl:114
+msgid "An overview over the maintainer's packages and uploads"
+msgstr "该维护者负责的软件包一览"
+
+#: templates/html/show.tmpl:114
+msgid "QA Page"
+msgstr "QA 页面"
+
+#: templates/html/show.tmpl:122
+msgid "External Resources:"
+msgstr "外部的资源:"
+
+#: templates/html/show.tmpl:124
+msgid "Homepage"
+msgstr "主页"
+
+#: templates/html/show.tmpl:130
+msgid "Similar packages:"
+msgstr "相似软件包:"
+
+#: templates/html/show.tmpl:146
+msgid ""
+"Warning: This package is from the <strong>experimental</strong> "
+"distribution. That means it is likely unstable or buggy, and it may even "
+"cause data loss. Please be sure to consult the <a href=\"%s\">changelog</a> "
+"and other possible documentation before using it."
+msgstr ""
+"警告: 这个软件包来自于 <strong>experimental</strong> 发行版。这表示它很有可能"
+"表现出不稳定或者出现 bug ,甚至是导致资料损失。请务必在使用之前查阅 <a href="
+"\"%s\">changelog</a> 以及其他潜在的文档。"
+
+#: templates/html/show.tmpl:169
+msgid ""
+"This is a <em>virtual package</em>. See the <a href=\"%s\">Debian policy</a> "
+"for a <a href=\"%sch-binary.html#s-virtual_pkg\">definition of virtual "
+"packages</a>."
+msgstr ""
+"这是一个<em>虚包</em>。查看<a href=\"%s\">Debian 政策</a>了解<a href=\"%sch-"
+"binary.html#s-virtual_pkg\">虚包的定义</a>。"
+
+#: templates/html/show.tmpl:177
+msgid "Tags"
+msgstr "标签"
+
+#: templates/html/show.tmpl:200
+msgid "Packages providing %s"
+msgstr "负责填实 %s 的软件包"
+
+#: templates/html/show.tmpl:209
+msgid "The following binary packages are built from this source package:"
+msgstr "本源码包构建了以下这些二进制包:"
+
+#: templates/html/show.tmpl:218
+msgid "Other Packages Related to %s"
+msgstr "其它与 %s 有关的软件包"
+
+#: 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:270
+msgid "Download %s"
+msgstr "下载 %s"
+
+#: 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:273
+msgid "Download for all available architectures"
+msgstr "下载可用于所有硬件架构的"
+
+#: templates/html/show.tmpl:274
+msgid "Architecture"
+msgstr "硬件架构"
+
+#: templates/html/show.tmpl:275
+msgid "Version"
+msgstr "版本"
+
+#: templates/html/show.tmpl:276
+msgid "Package Size"
+msgstr "软件包大小"
+
+#: templates/html/show.tmpl:277
+msgid "Installed Size"
+msgstr "安装后大小"
+
+#: templates/html/show.tmpl:278
+msgid "Files"
+msgstr "文件"
+
+#: templates/html/show.tmpl:286
+msgid "(unofficial port)"
+msgstr "(非官方移植版)"
+
+#: templates/html/show.tmpl:297 templates/html/show.tmpl:325
+msgid "%s&nbsp;kB"
+msgstr "%s&nbsp;kB"
+
+#: templates/html/show.tmpl:300
+msgid "list of files"
+msgstr "文件列表"
+
+#: templates/html/show.tmpl:302
+msgid "no current information"
+msgstr "没有当前信息"
+
+#: templates/html/show.tmpl:319
+msgid "Download information for the files of this source package"
+msgstr "源码包文件的下载信息"
+
+#: templates/html/show.tmpl:320
+msgid "Size (in kB)"
+msgstr "大小(单位: kB)"
+
+#: templates/html/show.tmpl:338
+msgid ""
+"Debian Package Source Repository (<acronym title=\"Version Control System"
+"\">VCS</acronym>: <a href=\"%s\">%s</a>)"
+msgstr ""
+"Debian 软件包源码仓库(<acronym title=\"Version Control System\">VCS</"
+"acronym>: <a href=\"%s\">%s</a>)"
+
+#: templates/html/show.tmpl:342
+msgid "Debian Package Source Repository (Browsable)"
+msgstr "Debian 软件包源码仓库(可在线浏览)"
+
+#: templates/html/suite_index.tmpl:3
+msgid "Index"
+msgstr "索引"
+
+#: templates/html/suite_index.tmpl:5 templates/html/suite_index.tmpl:20
+msgid "List of sections in \"%s\""
+msgstr "\"%s\" 版面列表"
+
+#: templates/html/suite_index.tmpl:38
+msgid "List of all source packages"
+msgstr "所有源码包列表"
+
+#: templates/html/suite_index.tmpl:40
+msgid "All source packages"
+msgstr "所有源码包"
+
+#: templates/html/tag_index.tmpl:2 templates/html/tag_index.tmpl:7
+msgid "Overview of available Debian Package Tags"
+msgstr "Debian 软件包合法标签一览"
+
+#: templates/html/tag_index.tmpl:4
+msgid "About"
+msgstr "关于"
+
+#: templates/html/tag_index.tmpl:5
+msgid "Debtags"
+msgstr "Debtags"
+
+#: templates/html/tag_index.tmpl:10
+msgid "Facet: %s"
+msgstr "分类: %s"
+
+#: templates/rss/newpkg.tmpl:16
+msgid "New %s Packages"
+msgstr "新的 %s 软件包"
+
+#: templates/rss/newpkg.tmpl:20
+msgid ""
+"The following packages were added to suite %s (section %s) in the %s archive "
+"during the last 7 days."
+msgstr ""
+"以下是在最近 7 天内被选进 %3$s 的 %1$s 发行版( %2$s 版面)之中的软件包。"
+
+#: templates/rss/newpkg.tmpl:23
+msgid ""
+"The following packages were added to suite %s in the %s archive during the "
+"last 7 days."
+msgstr "以下是在最近 7 天内被选进 %2$s 的 %1$s 发行版之中的软件包。"
+
+#: templates/rss/newpkg.tmpl:28 templates/txt/index.tmpl:5
+msgid "Copyright ©"
+msgstr "Copyright ©"
+
+#: templates/txt/index.tmpl:2
+msgid "All %s Packages in \"%s\""
+msgstr "\"%2$s\" 包含所有的 %1$s 软件包"
+
+#: templates/txt/index.tmpl:6
+msgid "See <URL:%s> for the license terms."
+msgstr "查看 <URL:%s> 以便了解许可证的各项条款。"