]> git.deb.at Git - deb/packages.git/commitdiff
Add basic l10n support.
authorFrank Lichtenheld <frank@lichtenheld.de>
Wed, 22 Feb 2006 01:20:31 +0000 (01:20 +0000)
committerFrank Lichtenheld <frank@lichtenheld.de>
Wed, 22 Feb 2006 01:20:31 +0000 (01:20 +0000)
Still has some rough edges, especially the fact that MultiViews and my
Rewrite rules don't play together at all.

37 files changed:
bin/create_index_pages
cgi-bin/dispatcher.pl
conf/apache.conf
config.sh
cron.d/500update_mo [new file with mode: 0755]
lib/Packages/Config.pm
lib/Packages/DoDownload.pm
lib/Packages/DoFilelist.pm
lib/Packages/DoSearch.pm
lib/Packages/DoSearchContents.pm
lib/Packages/DoShow.pm
lib/Packages/HTML.pm
lib/Packages/I18N/LanguageNames.pm [new file with mode: 0644]
lib/Packages/I18N/Languages.pm [new file with mode: 0644]
lib/Packages/I18N/Locale.pm [new file with mode: 0644]
lib/Packages/Page.pm
lib/Packages/Search.pm
lib/Packages/Sections.pm
lib/Packages/SrcPage.pm
po/langs.de.po [new file with mode: 0644]
po/langs.fi.po [new file with mode: 0644]
po/langs.fr.po [new file with mode: 0644]
po/langs.nl.po [new file with mode: 0644]
po/langs.pot [new file with mode: 0644]
po/langs.uk.po [new file with mode: 0644]
po/pdo.de.po [new file with mode: 0644]
po/pdo.fi.po [new file with mode: 0644]
po/pdo.fr.po [new file with mode: 0644]
po/pdo.nl.po [new file with mode: 0644]
po/pdo.pot [new file with mode: 0644]
po/pdo.uk.po [new file with mode: 0644]
po/sections.de.po [new file with mode: 0644]
po/sections.fi.po [new file with mode: 0644]
po/sections.fr.po [new file with mode: 0644]
po/sections.nl.po [new file with mode: 0644]
po/sections.pot [new file with mode: 0644]
po/sections.uk.po [new file with mode: 0644]

index ff1084aa4b40ce54de52e3417bf3275fbc1c3a71..d9dc8b43b60bc000a9380631941bffabd23b53a8 100755 (executable)
@@ -8,16 +8,24 @@ use File::Path;
 use DB_File;
 use Storable;
 use HTML::Entities;
+use Locale::gettext;
 
 use lib './lib';
 
-use Packages::Config qw( $TOPDIR $DBDIR @ARCHIVES @SUITES );
+use Packages::Config qw( $TOPDIR $DBDIR @ARCHIVES @SUITES @LANGUAGES $LOCALES);
 use Packages::HTML;
+use Packages::I18N::Locale;
 use Packages::Page;
 use Packages::Sections;
 &Packages::Config::init( './' );
-sub gettext { return $_[0]; }
-sub dgettext { return $_[1]; }
+
+delete $ENV{'LANGUAGE'};
+delete $ENV{'LANG'};
+delete $ENV{'LC_ALL'};
+delete $ENV{'LC_MESSAGES'};
+bindtextdomain ( 'pdo', $LOCALES );
+bindtextdomain ( 'sections', $LOCALES );
+textdomain( 'pdo' );
 
 my $wwwdir = "$TOPDIR/www";
 
@@ -36,6 +44,56 @@ my $priorities = retrieve "$DBDIR/priorities.info";
 
 my (%pages);
 
+print "write suite index files ...\n";
+foreach my $s (@SUITES) {
+    foreach my $a (@ARCHIVES) {
+       next if $a eq 'security';
+       next if $a eq 'non-US';
+       my $key = ($a eq 'us') ? $s : "$s/$a";
+       my $root = ($a eq 'us') ? '' : '../';
+       mkpath ( "$wwwdir/$key" );
+       foreach my $lang (@LANGUAGES) {
+           my $locale = get_locale( $lang );
+           setlocale ( LC_ALL, $locale ) or do {
+               warn "couldn't set locale ($lang/$locale)\n";
+               next;
+           };
+           open $pages{$key}{$lang}{index}{fh}, '>', "$wwwdir/$key/index.$lang.html.new"
+               or die "can't open index file for output: $!";
+           my $index_title = sprintf( _g( "List of sections in \"%s\"" ),
+                                      $s );
+           print {$pages{$key}{$lang}{index}{fh}} header( title => $index_title,
+                                                          title_keywords => "debian, $s",
+                                                          desc => encode_entities( $index_title, '"' ),
+                                                          lang => $lang ),
+           title( $index_title ), '<div id="lefthalfcol"><dl>';
+           my $i = 0; my $num_sections = keys %{$subsections->{$s}{$a}};
+           foreach my $ssec ((keys %{$subsections->{$s}{$a}}, 'virtual')) {
+               next if $ssec eq '-';
+               if ($sections_descs{$ssec}) {
+                   print {$pages{$key}{$lang}{index}{fh}} "<dt><a href=\"$ssec/\">".dgettext( 'sections', $sections_descs{$ssec}[0] )."</a></dt><dd>".dgettext( 'sections', $sections_descs{$ssec}[1] )."</dd>\n";
+                   $i++;
+                   if ($i eq ceil($num_sections/2)) {
+                       print {$pages{$key}{$lang}{index}{fh}} "</dl>\n</div> <!-- end lefthalfcol -->\n<div id=\"righthalfcol\">\n<dl>\n";
+                   }
+               }
+           }
+
+           print {$pages{$key}{$lang}{index}{fh}} '</dl></div>',
+           "<p class=\"psmallcenter\"><a href=\"allpackages\" title=\""._g( "List of all packages" )."\">".
+               _g( "All packages" ) ."</a><br>(<a href=\"allpackages.en.txt.gz\">".
+               _g( "compact compressed textlist" )."</a>)</p>\n";
+           print {$pages{$key}{$lang}{index}{fh}} trailer( "$root../", 'index', $lang, @LANGUAGES );
+           close $pages{$key}{$lang}{index}{fh} or
+               warn "can't close index file $wwwdir/$key/index.$lang.html.new: $!";
+           rename( "$wwwdir/$key/index.$lang.html.new",
+                   "$wwwdir/$key/index.$lang.html" );
+
+       }
+    }
+}
+setlocale( LC_ALL, 'C' ) or die "couldn't reset locale";
+
 print "opening files ...\n";
 foreach my $s (@SUITES) {
     foreach my $a (@ARCHIVES) {
@@ -43,31 +101,22 @@ foreach my $s (@SUITES) {
        next if $a eq 'non-US';
        my $key = ($a eq 'us') ? $s : "$s/$a";
        mkpath ( "$wwwdir/$key" );
-       open $pages{$key}{index}{fh}, '>', "$wwwdir/$key/index.en.html.new"
-           or die "can't open index file for output: $!";
        open $pages{$key}{fh}, '>', "$wwwdir/$key/allpackages.en.html.new"
            or die "can't open index file for output: $!";
 
-       my $title = sprintf( gettext ( "Software Packages in \"%s\"" ),
+       my $title = sprintf( _g( "Software Packages in \"%s\"" ),
                             $s );
-       my $index_title = sprintf( gettext ( "List of sections in \"%s\"" ),
-                                  $s );
        print {$pages{$key}{fh}} header( title => $title,
                                         title_keywords => "debian, $s",
                                         desc => encode_entities( $title, '"' ),
                                         lang => 'en' ),
        title( $title ), '<dl>';
-       print {$pages{$key}{index}{fh}} header( title => $index_title,
-                                               title_keywords => "debian, $s",
-                                               desc => encode_entities( $index_title, '"' ),
-                                               lang => 'en' ),
-       title( $index_title ), '<div id="lefthalfcol"><dl>';
 
        foreach my $sec (keys %{$sections->{$s}{$a}}) {
            mkpath ( "$wwwdir/$key/$sec" );
            open $pages{$key}{$sec}{fh}, '>', "$wwwdir/$key/$sec/index.en.html.new"
                or die "can't open index file for output: $!";
-           $title = sprintf( gettext ( "Software Packages in \"%s\", section %s" ),
+           $title = sprintf( _g( "Software Packages in \"%s\", section %s" ),
                              $s, $sec );
            print {$pages{$key}{$sec}{fh}} header( title => $title,
                                                   title_keywords => "debian, $s, $sec",
@@ -75,34 +124,25 @@ foreach my $s (@SUITES) {
                                                   lang => 'en' ),
            title( $title ), '<dl>';
        }
-       my $i = 0; my $num_sections = keys %{$subsections->{$s}{$a}};
        foreach my $ssec ((keys %{$subsections->{$s}{$a}}, 'virtual')) {
            next if $ssec eq '-';
            mkpath ( "$wwwdir/$key/$ssec" );
            open $pages{$key}{$ssec}{fh}, '>', "$wwwdir/$key/$ssec/index.en.html.new"
                or die "can't open index file for output: $!";
-           $title = sprintf( gettext ( "Software Packages in \"%s\", subsection %s" ),
+           $title = sprintf( _g( "Software Packages in \"%s\", subsection %s" ),
                              $s, $ssec );
            print {$pages{$key}{$ssec}{fh}} header( title => $title,
                                                    title_keywords => "debian, $s, $ssec",
                                                    desc => encode_entities( $title, '"' ),
                                                    lang => 'en' ),
            title( $title ), '<dl>';
-
-           if ($sections_descs{$ssec}) {
-               print {$pages{$key}{index}{fh}} "<dt><a href=\"$ssec/\">".dgettext( 'sections', $sections_descs{$ssec}[0] )."</a></dt><dd>".dgettext( 'sections', $sections_descs{$ssec}[1] )."</dd>\n";
-               $i++;
-               if ($i eq ceil($num_sections/2)) {
-                   print {$pages{$key}{index}{fh}} "</dl>\n</div> <!-- end lefthalfcol -->\n<div id=\"righthalfcol\">\n<dl>\n";
-               }
-           }
        }
        foreach my $prio (keys %{$priorities->{$s}{$a}}) {
            next if $prio eq '-';
            mkpath ( "$wwwdir/$key/$prio" );
            open $pages{$key}{$prio}{fh}, '>', "$wwwdir/$key/$prio/index.en.html.new"
                or die "can't open index file for output: $!";
-           $title = sprintf( gettext ( "Software Packages in \"%s\", priority %s" ),
+           $title = sprintf( _g( "Software Packages in \"%s\", priority %s" ),
                              $s, $prio );
            print {$pages{$key}{$prio}{fh}} header( title => $title,
                                                    title_keywords => "debian, $s, $prio",
@@ -189,15 +229,6 @@ foreach my $s (@SUITES) {
        next if $a eq 'non-US';
        my $key = ($a eq 'us') ? $s : "$s/$a";
        my $root = ($a eq 'us') ? '' : '../';
-       print {$pages{$key}{index}{fh}} '</dl></div>',
-       "<p class=\"psmallcenter\"><a href=\"allpackages\" title=\"".gettext( "List of all packages" )."\">".
-        gettext( "All packages" ) ."</a><br>(<a href=\"allpackages.en.txt.gz\">".
-        gettext( "compact compressed textlist" )."</a>)</p>\n";
-       print {$pages{$key}{index}{fh}} trailer( "$root../" );
-       close $pages{$key}{index}{fh} or
-           warn "can't open index file for output $wwwdir/$key/index.en.html.new: $!";
-       rename( "$wwwdir/$key/index.en.html.new",
-               "$wwwdir/$key/index.en.html" );
        print {$pages{$key}{fh}} '</dl>', trailer( "$root../" );
        close $pages{$key}{fh} or
            warn "can't close index file $wwwdir/$key/allpackages.en.html.new: $!";
index 3dca95cfdbaa5d4843cfd5a6fe2333671594de45..f54cd8740916d562e20923beac34de393e044640 100755 (executable)
@@ -17,14 +17,17 @@ use URI::Escape;
 use HTML::Entities;
 use DB_File;
 use Benchmark ':hireswallclock';
+use I18N::AcceptLanguage;
+use Locale::gettext;
 
 use Deb::Versions;
-use Packages::Config qw( $DBDIR $ROOT @SUITES @SECTIONS @ARCHIVES @ARCHITECTURES );
+use Packages::Config qw( $DBDIR $ROOT @SUITES @SECTIONS @ARCHIVES @ARCHITECTURES @LANGUAGES $LOCALES );
 use Packages::CGI;
 use Packages::DB;
 use Packages::Search qw( :all );
 use Packages::HTML ();
 use Packages::Sections;
+use Packages::I18N::Locale;
 
 use Packages::DoSearch;
 use Packages::DoSearchContents;
@@ -34,7 +37,12 @@ use Packages::DoFilelist;
 
 &Packages::CGI::reset;
 
+# clean up env
 $ENV{PATH} = "/bin:/usr/bin";
+delete $ENV{'LANGUAGE'};
+delete $ENV{'LANG'};
+delete $ENV{'LC_ALL'};
+delete $ENV{'LC_MESSAGES'};
 
 # Read in all the variables set by the form
 my $input;
@@ -55,10 +63,19 @@ $Packages::CGI::debug = $debug;
 &Packages::Config::init( '../' );
 &Packages::DB::init();
 
+my $acc = I18N::AcceptLanguage->new();
+my $http_lang = $acc->accepts( $input->http("Accept-Language"),
+                              \@LANGUAGES );
+debug( "LANGUAGES=@LANGUAGES header=".
+       $input->http("Accept-Language").
+       " http_lang=$http_lang", 2 );
+bindtextdomain ( 'pdo', $LOCALES );
+textdomain( 'pdo' );
+
 my $what_to_do = 'show';
 my $source = 0;
 if (my $path = $input->path_info() || $input->param('PATH_INFO')) {
-    my @components = grep { $_ } map { lc $_ } split /\//, $path;
+    my @components = grep { $_ } map { lc $_ } split /\/+/, $path;
 
     debug( "components[0]=$components[0]", 2 ) if @components>0;
     if (@components > 0 and $components[0] eq 'source') {
@@ -69,11 +86,10 @@ if (my $path = $input->path_info() || $input->param('PATH_INFO')) {
        shift @components;
        $what_to_do = 'search';
        # Done
-       fatal_error( "search doesn't take any more path elements" )
+       fatal_error( _( "search doesn't take any more path elements" ) )
            if @components > 0;
     } elsif (@components == 0) {
-       fatal_error( "We're supposed to display the homepage here, instead of
-           getting dispatch.pl" );
+       fatal_error( _( "We're supposed to display the homepage here, instead of getting dispatch.pl" ) );
     } elsif (@components == 1) {
        $what_to_do = 'search';
     } else {
@@ -98,7 +114,7 @@ if (my $path = $input->path_info() || $input->param('PATH_INFO')) {
        sub set_param_once {
            my ($cgi, $params_set, $key, $val) = @_;
            if ($params_set->{$key}++) {
-               fatal_error( "$key set more than once in path" );
+               fatal_error( sprintf( _( "%s set more than once in path" ), $key ) );
            } else {
                $cgi->param( $key, $val );
            }
@@ -128,7 +144,7 @@ if (my $path = $input->path_info() || $input->param('PATH_INFO')) {
        @components = @tmp;
 
        if (@components > 1) {
-           fatal_error( "two or more packages specified (@components)" );
+           fatal_error( sprintf( _( "two or more packages specified (%s)" ), "@components" ) );
        }
     } # else if (@components == 1)
     
@@ -156,6 +172,7 @@ my %params_def = ( keywords => { default => undef,
                                    replace => { all => \@ARCHIVES,
                                                 default => [qw(us security non-US)]} },
                   exact => { default => 0, match => '^(\w+)$',  },
+                  lang => { default => $http_lang, match => '^(\w+)$',  },
                   source => { default => 0, match => '^(\d+)$',  },
                   searchon => { default => 'names', match => '^(\w+)$', },
                   section => { default => 'all', match => '^([\w-]+)$',
@@ -172,6 +189,19 @@ my %params_def = ( keywords => { default => undef,
 my %opts;
 my %params = Packages::Search::parse_params( $input, \%params_def, \%opts );
 
+my $locale = get_locale($opts{lang});
+my $charset = get_charset($opts{lang});
+setlocale ( LC_ALL, $locale )
+    or do { debug( "couldn't set locale $locale, using default" );
+           setlocale( LC_ALL, get_locale() )
+               or do {
+                   debug( "couldn't set default locale either" );
+                   next if ($opts{lang} ne 'en');
+                   setlocale( LC_ALL, "C" );
+               };
+       };
+debug( "locale=$locale charset=$charset", 2 );
+
 $opts{h_suites} = { map { $_ => 1 } @suites };
 $opts{h_sections} = { map { $_ => 1 } @sections };
 $opts{h_archives} = { map { $_ => 1 } @archives };
@@ -193,7 +223,7 @@ my $pet1 = new Benchmark;
 my $petd = timediff($pet1, $pet0);
 debug( "Parameter evaluation took ".timestr($petd) );
 
-print $input->header( -charset => 'utf-8' );
+print $input->header( -charset => $charset );
 
 my (%html_header, $menu, $page_content);
 unless (@Packages::CGI::fatal_errors) {
@@ -201,12 +231,12 @@ unless (@Packages::CGI::fatal_errors) {
     &{"do_$what_to_do"}( \%params, \%opts, \%html_header,
                         \$menu, \$page_content );
 } else {
-    %html_header = ( title => 'Error',
-                    lang => 'en',
+    %html_header = ( title => _('Error'),
+                    lang => $opts{lang},
                     print_title => 1,
                     print_search_field => 'packages',
                     search_field_values => { 
-                        keywords => 'search for a package',
+                        keywords => _('search for a package'),
                         searchon => 'default',
                         arch => 'any',
                         suite => 'all',
index d4bbb8b2541a7281b5b0597493e6ff95e5cb2e91..5c1248c52eda6bbc54e4152ef48bbc48971143cb 100644 (file)
@@ -70,7 +70,7 @@
   AddLanguage zh-TW .zh-tw
   LanguagePriority en fr de it es ja pl hr da pt pt-pt pt-br fi zh-cn zh-hk zh-tw cs sv sv-se ko no nb ru tr uk eo ar nl hu ro sk el ca en-us en-gb id lt sl bg
 
-  DirectoryIndex index index.html index.shtml index.htm
+  DirectoryIndex index
 
   # RSS stuff
   AddType application/rss+xml .rdf .xml
 
    RewriteEngine on
    RewriteLog /var/log/apache/rewrite.log
-   RewriteLogLevel 0
+   RewriteLogLevel 9
 
    # we never want to rewrite those URLs
    RewriteRule ^/cgi-(bin|old)/ - [L]
index 3e8b2c682c332b387e0e9371b692f722e2e41497..a5aa6db59ba081fc431c0dfe37abc2f03b68cd6f 100644 (file)
--- a/config.sh
+++ b/config.sh
@@ -11,7 +11,7 @@ filesdir=${topdir}/files
 htmldir=${topdir}/www
 archivedir=${topdir}/archive
 podir=${topdir}/po
-localedir=${topdir}/locale
+localedir=/org/packages.debian.org/locale
 staticdir=${topdir}/static
 configdir=${topdir}/conf
 
@@ -41,6 +41,7 @@ bug_url="http://bugs.debian.org/"
 src_bug_url="http://bugs.debian.org/src:"
 qa_url="http://packages.qa.debian.org/"
 ddpo_url="http://qa.debian.org/developer.php?email="
+cn_help_url="http://www.debian.org/intro/cn"
 
 # Architectures
 #
diff --git a/cron.d/500update_mo b/cron.d/500update_mo
new file mode 100755 (executable)
index 0000000..ec37c4f
--- /dev/null
@@ -0,0 +1,63 @@
+#! /bin/bash
+
+. `dirname $0`/../config.sh
+
+gettextfiles=$(find cgi-bin lib -not -name 'LanguageNames.pm' -a -not -name 'Sections.pm' -a \( -name '*.pl' -o -name '*.pm' \));
+gettextfiles="$gettextfiles bin/create_index_pages"
+podomains="pdo sections langs"
+
+# Update pot
+#
+# Common options for all calls
+xgettext_opts="--language=Perl --keyword=_ --keyword=N_ --keyword=_g --foreign-user --add-comments"
+
+echo gettextfiles=$gettextfiles
+xgettext $xgettext_opts -d pdo -o ${podir}/pdo.pot ${gettextfiles}
+xgettext $xgettext_opts -d sections -o ${podir}/sections.pot ${libdir}/Packages/Sections.pm
+xgettext $xgettext_opts -d langs -o ${podir}/langs.pot ${libdir}/Packages/I18N/LanguageNames.pm
+
+cd $podir
+
+# normalize paths in .pot files
+for domain in ${podomains}
+do
+  perl -p -i -e "s,^#:\s*\Q${topdir}\E,#: .,go" ${domain}.pot
+done
+
+# Create missing po files
+#
+for lang in ${polangs}
+do
+  for domain in ${podomains}
+  do
+    test -f ${domain}.${lang}.po || cp ${domain}.pot ${domain}.${lang}.po
+  done
+done
+
+# Update po
+#
+for lang in ${polangs} 
+do
+  for domain in ${podomains}
+  do
+    mv ${domain}.${lang}.po ${domain}.${lang}.po.tmp
+    msgmerge -q -F -o ${domain}.${lang}.po ${domain}.${lang}.po.tmp ${domain}.pot
+    rm ${domain}.${lang}.po.tmp
+    # normalize paths in .po files
+    perl -p -i -e "s,^#:\s*\Q${topdir}\E,#: .,go" ${domain}.${lang}.po
+  done
+done
+
+# Update mo
+#
+test -d ${localedir} || mkdir -p ${localedir}
+for lang in ${polangs}
+do 
+  test -d ${localedir}/${lang}/LC_MESSAGES \
+      || mkdir -p ${localedir}/${lang}/LC_MESSAGES
+  for domain in ${podomains}
+  do
+    echo domain=$domain language=$lang
+    msgfmt --statistics -o ${localedir}/${lang}/LC_MESSAGES/${domain}.mo ${domain}.${lang}.po
+  done
+done
index 73d3542a8cf77c854d3f1b799cd50a143d4e1e7a..0645d5833cdefe4cfbefd6050e55319b88112ad0 100644 (file)
@@ -9,13 +9,13 @@ use Packages::CGI;
 our @ISA = qw( Exporter );
 
 our ( $TOPDIR, $DBDIR, $ROOT, $HOME, $CONTACT_MAIL, $WEBMASTER_MAIL,
-      $SEARCH_PAGE, $SEARCH_URL,
+      $SEARCH_PAGE, $SEARCH_URL, @LANGUAGES, $LOCALES,
       $SRC_SEARCH_URL, $CONTENTS_SEARCH_CGI,
       $CN_HELP_URL, $BUG_URL, $SRC_BUG_URL, $QA_URL, $DDPO_URL,
       @SUITES, @SECTIONS, @ARCHIVES, @ARCHITECTURES,
       %FTP_SITES );
 our @EXPORT_OK = qw( $TOPDIR $DBDIR $ROOT $HOME $CONTACT_MAIL
-                    $WEBMASTER_MAIL
+                    $WEBMASTER_MAIL @LANGUAGES $LOCALES
                     $SEARCH_PAGE $SEARCH_URL
                     $SRC_SEARCH_URL $CONTENTS_SEARCH_CGI
                     $CN_HELP_URL $BUG_URL $SRC_BUG_URL $QA_URL $DDPO_URL
@@ -39,6 +39,7 @@ sub init {
            $TOPDIR = $1 if /^\s*topdir="?([^\"]*)"?\s*$/o;
            $ROOT = $1 if /^\s*root="?([^\"]*)"?\s*$/o;
            $HOME = $1 if /^\s*home="?([^\"]*)"?\s*$/o;
+           $LOCALES = $1 if /^\s*localedir="?([^\"]*)"?\s*$/o;
 #          $SEARCH_CGI = $1 if /^\s*search_cgi="?([^\"]*)"?\s*$/o;
            $SEARCH_PAGE = $1 if /^\s*search_page="?([^\"]*)"?\s*$/o;
            $SEARCH_URL = $1 if /^\s*search_url="?([^\"]*)"?\s*$/o;
@@ -49,8 +50,10 @@ sub init {
            $SRC_BUG_URL = $1 if /^\s*src_bug_url="?([^\"]*)"?\s*$/o;
            $QA_URL = $1 if /^\s*qa_url="?([^\"]*)"?\s*$/o;
            $DDPO_URL = $1 if /^\s*ddpo_url="?([^\"]*)"?\s*$/o;
+           $CN_HELP_URL = $1 if /^\s*cn_help_url="?([^\"]*)"?\s*$/o;
            $FTP_SITES{us} = $1 if /^\s*ftpsite="?([^\"]*)"?\s*$/o;
            $FTP_SITES{$1} = $2 if /^\s*(\w+)_ftpsite="?([^\"]*)"?\s*$/o;
+           @LANGUAGES = split(/\s+/, $1) if /^\s*polangs="?([^\"]*)"?\s*$/o;
            @SUITES = split(/\s+/, $1) if /^\s*suites="?([^\"]*)"?\s*$/o;
            @SECTIONS = split(/\s+/, $1) if /^\s*sections="?([^\"]*)"?\s*$/o;
            @ARCHIVES = split(/\s+/, $1) if /^\s*archives="?([^\"]*)"?\s*$/o;
@@ -61,6 +64,7 @@ sub init {
        $config_read_time = $modtime;
     }
     $DBDIR = "$TOPDIR/files/db";
+    unshift @LANGUAGES, 'en';
 }
 
 1;
index 87bc10ccbfe12fb5520f8a284b273ef104980ce8..8b1d6f61265f15a3507eb26e1bba1905e296a188 100644 (file)
@@ -9,9 +9,10 @@ use Benchmark ':hireswallclock';
 use Exporter;
 
 use Deb::Versions;
+use Packages::I18N::Locale;
 use Packages::HTML ();
 use Packages::Search qw( :all );
-use Packages::Config qw( $HOME $DBDIR @SUITES @ARCHIVES @SECTIONS @ARCHITECTURES );
+use Packages::Config qw( $HOME $DBDIR @SUITES @ARCHIVES @SECTIONS @ARCHITECTURES $SEARCH_URL );
 use Packages::CGI;
 use Packages::DB;
 
@@ -199,19 +200,19 @@ sub do_download {
     my ($params, $opts, $html_header, $menu, $page_content) = @_;
 
     if ($params->{errors}{package}) {
-       fatal_error( "package not valid or not specified" );
+       fatal_error( _( "package not valid or not specified" ) );
     }
     if ($params->{errors}{suite}) {
-       fatal_error( "suite not valid or not specified" );
+       fatal_error( _( "suite not valid or not specified" ) );
     }
     if ($params->{errors}{arch}) {
-       fatal_error( "arch not valid or not specified" );
+       fatal_error( _( "architecture not valid or not specified" ) );
     }
     if (@{$opts->{suite}} > 1) {
-       fatal_error( "more than one suite specified for download (@{$opts->{suite}})" );
+       fatal_error( sprintf( _( "more than one suite specified for download (%s)" ), "@{$opts->{suite}}" ) );
     }
     if (@{$opts->{arch}} > 1) {
-       fatal_error( "more than one architecture specified for download (@{$opts->{arch}})" );
+       fatal_error( sprintf( _( "more than one architecture specified for download (%s)" ), "@{$opts->{arch}}" ) );
     }
 
     $opts->{h_sections} = { map { $_ => 1 } @SECTIONS };
@@ -223,8 +224,6 @@ sub do_download {
     my (@results);
     my ($final_result, $file, $filen, $md5sum, @file_components, $archive) = ("")x5;
 
-    sub gettext { return $_[0]; };
-
     my $st0 = new Benchmark;
     unless (@Packages::CGI::fatal_errors) {
        tie %packages_all, 'DB_File', "$DBDIR/packages_all_$suite.db",
@@ -234,8 +233,8 @@ sub do_download {
        read_entry( \%packages, $pkg, \@results, $opts );
 
        unless (@results) {
-           fatal_error( "No such package".
-                        "{insert link to search page with substring search}" );            
+           fatal_error( _( "No such package." )."<br>".
+                        sprintf( _( '<a href="%s">Search for the package</a>' ), "$SEARCH_URL/$pkg" ) );
        } else {
            my $final_result = shift @results;
            foreach (@results) {
@@ -254,139 +253,100 @@ sub do_download {
        }
     }
 
-    my $arch_string = $arch ne 'all' ? "on $arches{$arch} machines" : "";
-    
-    %$html_header = ( title => "Package Download Selection",
-                     lang => "en",
+    %$html_header = ( title => _( "Package Download Selection" ),
+                     lang => $opts->{lang},
                      print_title => 1 );
 
     if ($file) {
-       $$page_content .= "<h2>Download Page for <kbd>$filen</kbd> $arch_string</h2>\n".
-           "<p>You can download the requested file from the <tt>";
-       $$page_content .= join( '/', @file_components).'/';
-       $$page_content .= "</tt> subdirectory at";
-       $$page_content .= $archive ne 'security' ? " any of these sites:" : ":";
-       $$page_content .= "</p>\n";
+       if ($arch ne 'all') {
+           $$page_content .= '<h2>'.sprintf( _('Download Page for <kbd>%s</kbd> on %s machines'), $filen, $arches{$arch} ).'</h2>';
+       } else {
+           $$page_content .= '<h2>'.sprintf( _('Download Page for <kbd>%s</kbd>'), $filen ).'</h2>';
+       }
+       my $directory = join( '/', @file_components).'/';
+       if ($archive ne 'security' ) {
+           $$page_content .= "<p>".sprintf( _( 'You can download the requested file from the <tt>%s</tt> subdirectory at any of these sites:' ), $directory )."</p>\n";
+       } else {
+           $$page_content .= "<p>".sprintf( _( 'You can download the requested file from the <tt>%s</tt> subdirectory at:' ), $directory )."</p>\n";
+       }
        
        if ($archive eq 'security') {
            
-           $$page_content .= <<END;
-<ul>
-    <li><a href="http://security.debian.org/debian-security/$file">security.debian.org/debian-security</a></li>
-    </ul>
-    
-    <p>Debian security updates are currently officially distributed only via
-    security.debian.org.</p>
-END
-;
+           $$page_content .= "<ul><li><a href=\"http://security.debian.org/debian-security/$file\">security.debian.org/debian-security</a></li></ul>";
+           $$page_content .= '<p>'._( 'Debian security updates are currently officially distributed only via <tt>security.debian.org</tt>.' ).'</p>';
        } elsif ($arch eq 'amd64') {
 
-           $$page_content .= print_links( "North America", $file, @amd64_north_american_sites );
-           $$page_content .= print_links( "Europe", $file, @amd64_european_sites );
+           $$page_content .= print_links( _( "North America" ), $file, @amd64_north_american_sites );
+           $$page_content .= print_links( _( "Europe" ), $file, @amd64_european_sites );
 #    $$page_content .= print_links( "Australia and New Zealand", $file,
 #               @nonus_australian_sites );
-           $$page_content .= print_links( "Asia", $file, @amd64_asian_sites );
+           $$page_content .= print_links( _( "Asia" ), $file, @amd64_asian_sites );
 #    $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
 
-           $$page_content .= <<END;
-<p>Note that AMD64 is not officialy included in the Debian archive
-    yet, but the AMD64 porter group keeps their archive in sync with
-    the official archive as close as possible. See the
-    <a href="http://www.debian.org/ports/amd64/">AMD64 ports page</a> for
-    current information.</p>
-END
-;
+           $$page_content .= '<p>'._( 'Note that AMD64 is not officialy included in the Debian archive yet, but the AMD64 porter group keeps their archive in sync with the official archive as close as possible. See the <a href="http://www.debian.org/ports/amd64/">AMD64 ports page</a> for current information.' ).'</p>';
        } elsif ($arch eq 'kfreebsd-i386') {
 
-           $$page_content .= print_links( "North America", $file, @kfreebsd_north_american_sites );
-           $$page_content .= print_links( "Europe", $file, @kfreebsd_european_sites );
+           $$page_content .= print_links( _( "North America" ), $file, @kfreebsd_north_american_sites );
+           $$page_content .= print_links( _( "Europe" ), $file, @kfreebsd_european_sites );
 #    $$page_content .= print_links( "Australia and New Zealand", $file,
 #               @nonus_australian_sites );
 #    $$page_content .= print_links( "Asia", $file, @amd64_asian_sites );
 #    $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
        
-           $$page_content .= <<END;
-<p>Note that GNU/kFreeBSD is not officialy included in the Debian archive
-    yet, but the GNU/kFreeBSD porter group keeps their archive in sync with
-    the official archive as close as possible. See the
-    <a href="http://www.debian.org/ports/kfreebsd-gnu/">GNU/kFreeBSD ports page</a> for
-    current information.</p>
-END
-;
+           $$page_content .= '<p>'._( 'Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, but the GNU/kFreeBSD porter group keeps their archive in sync with the official archive as close as possible. See the <a href="http://www.debian.org/ports/kfreebsd-gnu/">GNU/kFreeBSD ports page</a> for current information.' ).'</p>';
        } elsif ($archive eq 'non-US') {
 
-           $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
-           $$page_content .= print_links( "Europe", $file, @nonus_european_sites );
-           $$page_content .= print_links( "Australia and New Zealand", $file,
-                        @nonus_australian_sites );
-           $$page_content .= print_links( "Asia", $file, @nonus_asian_sites );
-           $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+           $$page_content .= print_links( _( "North America" ), $file, @nonus_north_american_sites );
+           $$page_content .= print_links( _( "Europe" ), $file, @nonus_european_sites );
+           $$page_content .= print_links( _( "Australia and New Zealand" ), $file,
+                                          @nonus_australian_sites );
+           $$page_content .= print_links( _( "Asia" ), $file, @nonus_asian_sites );
+           $$page_content .= print_links( _( "South America" ), $file, @nonus_south_american_sites );
            
-           $$page_content .= <<END;
-<p>If none of the above sites are fast enough for you, please see our
-    <a href="http://www.debian.org/mirror/list-non-US">complete mirror list</a>.</p>
-END
-;
+           $$page_content .= '<p>'.sprintf( _('If none of the above sites are fast enough for you, please see our <a href="%s">complete mirror list</a>.' ), 'http://www.debian.org/mirror/list-non-US' ).'</p>';
        } elsif ($archive eq 'backports') {
        
 #    $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
            $$page_content .= '<div class="cardleft">';
-           $$page_content .= print_links( "Europe", $file, @backports_european_sites );
+           $$page_content .= print_links( _( "Europe" ), $file, @backports_european_sites );
            $$page_content .= '</div><div class="cardright">';
-           $$page_content .= print_links( "Australia and New Zealand", $file,
-                        @backports_australian_sites );
-           $$page_content .= print_links( "Asia", $file, @backports_asian_sites );
+           $$page_content .= print_links( _( "Australia and New Zealand" ), $file,
+                                          @backports_australian_sites );
+           $$page_content .= print_links( _( "Asia" ), $file, @backports_asian_sites );
 #    $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
            $$page_content .= '</div>';
-       
-           $$page_content .= <<END;
-<p style="clear:both">If none of the above sites are fast enough for you, please see our
-    <a href="http://www.backports.org/debian/README.mirrors.html">complete mirror list</a>.</p>
-END
-;
+           
+           $$page_content .= '<p style="clear:both">'.sprintf( _( 'If none of the above sites are fast enough for you, please see our <a href="%s">complete mirror list</a>.'), 'http://www.backports.org/debian/README.mirrors.html' ).'</p>';
        } elsif ($archive eq 'volatile') {
            
 #    $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
-           $$page_content .=_links( "Europe", $file, @volatile_european_sites );
+           $$page_content .= print_links( _( "Europe" ), $file, @volatile_european_sites );
 #    $$page_content .= print_links( "Australia and New Zealand", $file,
 #               @nonus_australian_sites );
 #    $$page_content .= print_links( "Asia", $file, @nonus_asian_sites );
 #    $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
 
-           $$page_content .= <<END;
-<p>If none of the above sites are fast enough for you, please see our
-    <a href="http://volatile.debian.net/mirrors.html">complete mirror list</a>.</p>
-END
-;
+           $$page_content .= '<p>'.sprintf( _( 'If none of the above sites are fast enough for you, please see our <a href="%s">complete mirror list</a>.' ), 'http://volatile.debian.net/mirrors.html' ).'</p>';
        } elsif ($archive eq 'us') {
            
            $$page_content .= '<div class="cardleft">';
-           $$page_content .= print_links( "North America", $file, @north_american_sites );
+           $$page_content .= print_links( _( "North America" ), $file, @north_american_sites );
            $$page_content .= '</div><div class="cardright">';
-           $$page_content .= print_links( "Europe", $file, @european_sites );
+           $$page_content .= print_links( _( "Europe" ), $file, @european_sites );
            $$page_content .= '</div><div class="cardleft">';
-           $$page_content .= print_links( "Australia and New Zealand", $file, @australian_sites );
+           $$page_content .= print_links( _( "Australia and New Zealand" ), $file, @australian_sites );
            $$page_content .= '</div><div class="cardright">';
-           $$page_content .= print_links( "Asia", $file, @asian_sites );
+           $$page_content .= print_links( _( "Asia" ), $file, @asian_sites );
            $$page_content .= '</div><div class="cardleft">';
-           $$page_content .= print_links( "South America", $file, @south_american_sites );
+           $$page_content .= print_links( _( "South America" ), $file, @south_american_sites );
            $$page_content .= '</div>';
            
-           $$page_content .= <<END;
-<p style="clear:both">If none of the above sites are fast enough for you, please see our
-    <a href="http://www.debian.org/mirror/list">complete mirror list</a>.</p>
-END
-;
+           $$page_content .= '<p style="clear:both">'.sprintf( _( 'If none of the above sites are fast enough for you, please see our <a href="%s">complete mirror list</a>.' ), 'http://www.debian.org/mirror/list' ).'</p>';
        }
     
-       $$page_content .= <<END;
-<p>Note that in some browsers you will need to tell your browser you want
-    the file saved to a file. For example, in Netscape or Mozilla, you should
-    hold the Shift key when you click on the URL.</p>
-END
-;
-       $$page_content .= "<p>The MD5sum for <tt>$filen</tt> is <strong>$md5sum</strong></p>\n"
-           if $md5sum;
+    $$page_content .= '<p>'._( '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.' ).'</p>';
+    $$page_content .= "<p>".sprintf( _( 'The MD5sum for <tt>%s</tt> is <strong>%s</strong>' ), $filen, $md5sum ).'</p>'
+       if $md5sum;
     }
 }
 
index 714171bc9c2213c2faa115ac5adec46be2f8d56d..7fb1a8fd5456f7ca330db521a9a77881846456bc 100644 (file)
@@ -13,6 +13,7 @@ use Exporter;
 use Deb::Versions;
 use Packages::Config qw( $DBDIR $ROOT @SUITES @ARCHIVES @SECTIONS
                         @ARCHITECTURES %FTP_SITES );
+use Packages::I18N::Locale;
 use Packages::CGI;
 use Packages::DB;
 use Packages::Search qw( :all );
@@ -27,13 +28,13 @@ sub do_filelist {
     my ($params, $opts, $html_header, $menu, $page_content) = @_;
 
     if ($params->{errors}{package}) {
-       fatal_error( "package not valid or not specified" );
+       fatal_error( _( "package not valid or not specified" ) );
     }
     if ($params->{errors}{suite}) {
-       fatal_error( "suite not valid or not specified" );
+       fatal_error( _( "suite not valid or not specified" ) );
     }
     if ($params->{errors}{arch}) {
-       fatal_error( "arch not valid or not specified" );
+       fatal_error( _( "architecture not valid or not specified" ) );
     }
 
     $$menu = '';
@@ -41,9 +42,9 @@ sub do_filelist {
     my $suite = $opts->{suite}[0];
     my $arch = $opts->{arch}[0] ||'';
 
-    %$html_header = ( title => "Filelist of package <em>$pkg</em> in <em>$suite</em> of arch <em>$arch</em>",
-                     title_tag => "Filelist of of package $pkg/$suite/$arch",
-                     lang => 'en',
+    %$html_header = ( title => sprintf( _( "Filelist of package <em>%s</em> in <em>%s</em> of architecture <em>%s</em>" ), $pkg, $suite, $arch ),
+                     title_tag => sprintf( _( "Filelist of of package %s/%s/%s" ), $pkg, $suite, $arch ),
+                     lang => $opts->{lang},
                      keywords => "debian, $suite, $arch, filelist",
                      print_title => 1,
                      );
@@ -53,7 +54,7 @@ sub do_filelist {
            O_RDONLY, 0666, $DB_BTREE) {
 
            unless (exists $contents{$pkg}) {
-               fatal_error( "No such package in this suite on this arch" );
+               fatal_error( _( "No such package in this suite on this architecture." ) );
            } else {
                my @files = unpack "L/(CC/a)", $contents{$pkg};
                my $file = "";
@@ -65,7 +66,7 @@ sub do_filelist {
                $$page_content .= '</pre></div>';
            }
        } else {
-           fatal_error( "Invalid suite/arch combination" );
+           fatal_error( _( "Invalid suite/architecture combination" ) );
        }
     }
 }
index bc55b747ec41b5091a12ae7f4712bde83d4fb50a..60052c59bb2b3b2cd03dcca7859e58020c19d1c0 100644 (file)
@@ -12,12 +12,14 @@ our @ISA = qw( Exporter );
 our @EXPORT = qw( do_search );
 
 use Deb::Versions;
+use Packages::I18N::Locale;
 use Packages::Search qw( :all );
 use Packages::CGI;
 use Packages::DB;
 use Packages::HTML qw(marker);
 use Packages::Config qw( $DBDIR $SEARCH_URL $SEARCH_PAGE
                         @SUITES @ARCHIVES $ROOT );
+use Packages::HTML;
 
 sub do_search {
     my ($params, $opts, $html_header, $menu, $page_content) = @_;
@@ -25,9 +27,9 @@ sub do_search {
     $Params::Search::too_many_hits = 0;
 
     if ($params->{errors}{keywords}) {
-       fatal_error( "keyword not valid or missing" );
+       fatal_error( _( "keyword not valid or missing" ) );
     } elsif (length($opts->{keywords}) < 2) {
-       fatal_error( "keyword too short (keywords need to have at least two characters)" );
+       fatal_error( _( "keyword too short (keywords need to have at least two characters)" ) );
     }
 
     $$menu = "";
@@ -100,46 +102,43 @@ sub do_search {
     }
 
     if ($Packages::Search::too_many_hits) {
-       error( "Your search was too wide so we will only display exact matches. At least <em>$Packages::Search::too_many_hits</em> results have been omitted and will not be displayed. Please consider using a longer keyword or more keywords." );
+       error( sprintf( _( "Your search was too wide so we will only display exact matches. At least <em>%s</em> results have been omitted and will not be displayed. Please consider using a longer keyword or more keywords." ), $Packages::Search::too_many_hits ) );
     }
     
     if (!@Packages::CGI::fatal_errors && !@results) {
-       my $printed = 0;
        if ($searchon eq "names") {
            unless (@non_results) {
-               error( "Can't find that package." );
+               error( _( "Can't find that package." ) );
            } else {
-               hint( "Can't find that package. ".
-                     "<a href=\"$SEARCH_URL/$keyword_esc\">".
-                     ($#non_results+1)."</a>".
+               hint( _( "Can't find that package." )." ".
+                     sprintf( _( '<a href="%s">%s</a>'.
                      " results have not been displayed due to the".
-                     " search parameters." );
+                     " search parameters." ), "$SEARCH_URL/$keyword_esc" ,
+                     $#non_results+1 ) );
            }
            
        } else {
            if (($suites_enc eq 'all')
                && ($archs_enc eq 'any')
                && ($sections_enc eq 'all')) {
-               error( "Can't find that string." );
+               error( _( "Can't find that string." ) );
            } else {
-               error( "Can't find that string, at least not in that suite ($suites_enc, section $sections_enc) and on that architecture ($archs_enc)." );
+               error( sprintf( _( "Can't find that string, at least not in that suite (%s, section %s) and on that architecture (%s)." ),
+                               $suites_enc, $sections_enc, $archs_enc ) );
            }
            
            if ($opts->{exact}) {
-               $printed++;
-               hint( "You have searched only for words exactly matching your
-                       keywords. You can try to search <a href=\"".
-                       encode_entities("$SEARCH_URL?exact=0&$opts->{common_params}")."\">allowing
-                       subword matching</a>." );
+               hint( sprintf( _( 'You have searched only for words exactly matching your keywords. You can try to search <a href="%s">allowing subword matching</a>.' ),
+                              encode_entities("$SEARCH_URL?exact=0&$opts->{common_params}") ) );
            }
        }
-       hint( ( $printed ? "Or you" : "You" )." can try a different search on the <a href=\"$SEARCH_PAGE#search_packages\">Packages search page</a>." );
+       hint( sprintf( _( 'You can try a different search on the <a href="%s">Packages search page</a>.' ), "$SEARCH_PAGE#search_packages" ) );
        
     }
 
-    %$html_header = ( title => 'Package Search Results' ,
-                     lang => 'en',
-                     title_tag => 'Debian Package Search Results',
+    %$html_header = ( title => _( 'Package Search Results' ) ,
+                     lang => $opts->{lang},
+                     title_tag => _( 'Debian Package Search Results' ),
                      print_title => 1,
                      print_search_field => 'packages',
                      search_field_values => { 
@@ -227,20 +226,21 @@ sub print_packages {
 
     #my ($start, $end) = multipageheader( $input, scalar @pkgs, \%opts );
     my $str = '<div id="psearchres">';
-    $str .= "<p>Found <em>".(scalar @$pkgs_list)."</em> matching packages.";
+    $str .= "<p>".sprintf( _( "Found <em>%s</em> matching packages." ),
+                          scalar @$pkgs_list )."</p>";
     #my $count = 0;
            
     my $have_exact;
     if (grep { $_ eq $keyword } @$pkgs_list) {
        $have_exact = 1;
-       $str .= '<h2>Exact hits</h2>';
+       $str .= '<h2>'._( "Exact hits" ).'</h2>';
        $str .= &$print_func( $keyword, $pkgs->{$keyword}||{},
                              map { $_->{$keyword}||{} } @func_args );
        @$pkgs_list = grep { $_ ne $keyword } @$pkgs_list;
     }
            
     if (@$pkgs_list && (($opts->{searchon} ne 'names') || !$opts->{exact})) {
-       $str .= '<h2>Other hits</h2>'
+       $str .= '<h2>'._( 'Other hits' ).'</h2>'
            if $have_exact;
        
        foreach my $pkg (@$pkgs_list) {
@@ -250,8 +250,9 @@ sub print_packages {
                                  map { $_->{$pkg}||{} } @func_args );
        }
     } elsif (@$pkgs_list) {
-       $str .= "<p><a href=\"".encode_entities("$SEARCH_URL?exact=0&$opts->{common_params}")."\">".
-           ($#{$pkgs_list}+1)."</a> results have not been displayed because you requested only exact matches.</p>";
+       $str .= "<p>".sprintf( _( '<a href="%s">%s</a> results have not been displayed because you requested only exact matches.' ),
+                              encode_entities("$SEARCH_URL?exact=0&$opts->{common_params}"),
+                              scalar @$pkgs_list )."</p>";
     }
     $str .= '</div>';
 
@@ -261,8 +262,8 @@ sub print_packages {
 sub print_package {
     my ($pkg, $pkgs, $provided_by, $archives, $sect, $subsect, $desc) = @_;
 
-    my $str = sprintf "<h3>Package %s</h3>\n", $pkg;
-    $str .= "<ul>\n";
+    my $str = '<h3>'.sprintf( _( 'Package %s' ), $pkg ).'</h3>';
+    $str .= '<ul>';
     foreach my $suite (@SUITES) {
        foreach my $archive (@ARCHIVES) {
            next if $archive eq 'security';
@@ -292,14 +293,14 @@ sub print_package {
                    $archs_printed{$_}++ foreach @archs_to_print;
                }
                if (my $p =  $provided_by->{$suite}{$archive}) {
-                   $str .= '<br>also provided by: '.
+                   $str .= '<br>'._( 'also provided by: ' ).
                        join( ', ', map { "<a href=\"$ROOT/$path/$_\">$_</a>"  } @$p);
                }
                $str .= "</li>\n";
            } elsif (my $p =  $provided_by->{$suite}{$archive}) {
                $str .= sprintf( "<li><a href=\"$ROOT/%s/%s\">%s</a>: Virtual package<br>",
                                 $path, $pkg, $path );
-               $str .= 'provided by: '.
+               $str .= _( 'provided by: ' ).
                    join( ', ', map { "<a href=\"$ROOT/$path/$_\">$_</a>"  } @$p);
            }
        }
@@ -311,7 +312,7 @@ sub print_package {
 sub print_src_package {
     my ($pkg, $pkgs, $archives, $sect, $subsect, $binaries) = @_;
 
-    my $str = sprintf "<h3>Source package %s</h3>\n", $pkg;
+    my $str = '<h3>'.sprintf( _( 'Source package %s' ), $pkg ).'</h3>';
     $str .= "<ul>\n";
     foreach my $suite (@SUITES) {
        foreach my $archive (@ARCHIVES) {
@@ -327,7 +328,7 @@ sub print_src_package {
                                 $suite.(($archive ne 'us')?"/$archive":''), $pkg, $suite.(($archive ne 'us')?"/$archive":''), $subsect->{$suite}{$archive}{source},
                                 $pkgs->{$suite}{$archive}, $origin_str );
                
-               $str .= "<br>Binary packages: ";
+               $str .= "<br>"._( 'Binary packages: ' );
                my @bp_links;
                foreach my $bp (@{$binaries->{$suite}{$archive}}) {
                    my $bp_link = sprintf( "<a href=\"$ROOT/%s/%s\">%s</a>",
index 67d2028dbd7fce371d67e71b44a67b1ebb9887ba..4588235a559987131147642d3da946e6eed0d3dc 100644 (file)
@@ -12,6 +12,7 @@ our @ISA = qw( Exporter );
 our @EXPORT = qw( do_search_contents );
 
 use Deb::Versions;
+use Packages::I18N::Locale;
 use Packages::Search qw( :all );
 use Packages::CGI;
 use Packages::DB;
@@ -22,15 +23,15 @@ sub do_search_contents {
     my ($params, $opts, $html_header, $menu, $page_content) = @_;
 
     if ($params->{errors}{keywords}) {
-       fatal_error( "keyword not valid or missing" );
+       fatal_error( gettext( "keyword not valid or missing" ) );
     } elsif (length($opts->{keywords}) < 2) {
-       fatal_error( "keyword too short (keywords need to have at least two characters)" );
+       fatal_error( gettext( "keyword too short (keywords need to have at least two characters)" ) );
     }
     if ($params->{errors}{suite}) {
-       fatal_error( "suite not valid or not specified" );
+       fatal_error( gettext( "suite not valid or not specified" ) );
     }
     if (@{$opts->{suite}} > 1) {
-       fatal_error( "more than one suite specified for contents search (@{$opts->{suite}})" );
+       fatal_error( sprintf( gettext( "more than one suite specified for contents search (%s)" ), "@{$opts->{suite}}" ) );
     }
 
     $$menu = "";
@@ -74,7 +75,7 @@ sub do_search_contents {
            open FILENAMES, '-|', 'fgrep', '--', $kw, "$DBDIR/contents/filenames_$suite.txt"
                or die "Failed opening filename table: $!";
 
-           error( "Exact and fullfilenamesearch don't go along" )
+           error( gettext( "Exact and fullfilenamesearch don't go along" ) )
                if $ffn and $exact;
 
            while (<FILENAMES>) {
@@ -112,16 +113,16 @@ sub do_search_contents {
     msg( "You have searched for ${wording} <em>$keyword_enc</em> in $suite_wording, $section_wording, and $arch_wording." );
 
     if ($Packages::Search::too_many_hits) {
-       error( "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." );
+       error( gettext( "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." ) );
     }
     
     if (!@Packages::CGI::fatal_errors && !@results) {
-       error( "Nothing found" );
+       error( gettext( "Nothing found" ) );
     }
 
-    %$html_header = ( title => 'Package Contents Search Results' ,
-                     lang => 'en',
-                     title_tag => 'Debian Package Contents Search Results',
+    %$html_header = ( title => gettext( 'Package Contents Search Results' ),
+                     lang => $opts->{lang},
+                     title_tag => gettext( 'Debian Package Contents Search Results' ),
                      print_title => 1,
                      print_search_field => 'packages',
                      search_field_values => { 
@@ -137,8 +138,10 @@ sub do_search_contents {
 
     $$page_content = '';
     if (@results) {
-       $$page_content .= "<p>Found ".scalar(@results)." results</p>";
-       $$page_content .= "<div  id=\"pcontentsres\"><table><colgroup><col><col></colgroup><tr><th>File</th><th>Packages</th></tr>";
+       $$page_content .= "<p>".sprintf( gettext( 'Found %s results' ),
+                                        scalar @results )."</p>";
+       $$page_content .= '<div id="pcontentsres"><table><colgroup><col><col></colgroup><tr><th>'.gettext('File').'</th><th>'.gettext('Packages')
+           .'</th></tr>';
        foreach my $result (sort { $a->[0] cmp $b->[0] } @results) {
            my $file = shift @$result;
            $$page_content .= "<tr><td class=\"file\">$file</td><td>";
@@ -150,7 +153,7 @@ sub do_search_contents {
            $$page_content .= join( ", ", map { "<a href=\"$ROOT/$suite/$_\">$_</a>" } sort keys %pkgs);
            $$page_content .= '</td>';
        }
-       $$page_content .= '<tr><th>File</th><th>Packages</th></tr>' if @results > 20;
+       $$page_content .= '<tr><th>'.gettext('File').'</th><th>'.gettext('Packages').'</th></tr>' if @results > 20;
        $$page_content .= '</table></div>';
     }
 } # sub do_search_contents
index 1b6979996a639a80477fa069c01c9f9f032e6f67..0f97b83da0840268f02a6395499341171ec3d7c6 100644 (file)
@@ -11,7 +11,8 @@ use Exporter;
 
 use Deb::Versions;
 use Packages::Config qw( $DBDIR $ROOT @SUITES @ARCHIVES @SECTIONS
-                        @ARCHITECTURES %FTP_SITES );
+                        @ARCHITECTURES %FTP_SITES $SEARCH_URL );
+use Packages::I18N::Locale;
 use Packages::CGI;
 use Packages::DB;
 use Packages::Search qw( :all );
@@ -26,13 +27,13 @@ sub do_show {
     my ($params, $opts, $html_header, $menu, $page_content) = @_;
 
     if ($params->{errors}{package}) {
-       fatal_error( "package not valid or not specified" );
+       fatal_error( _( "package not valid or not specified" ) );
     }
     if ($params->{errors}{suite}) {
-       fatal_error( "suite not valid or not specified" );
+       fatal_error( _( "suite not valid or not specified" ) );
     }
     if (@{$opts->{suite}} > 1) {
-       fatal_error( "more than one suite specified for show (@{$opts->{suite}})" );
+       fatal_error( sprintf( _( "more than one suite specified for show (%s)" ), "@{$opts->{suite}}" ) );
     }
 
     my $pkg = $opts->{package};
@@ -51,8 +52,6 @@ sub do_show {
     my $package_page = "";
     my ($short_desc, $version, $section, $subsection) = ("")x5;
     
-    sub gettext { return $_[0]; };
-
     my $st0 = new Benchmark;
     unless (@Packages::CGI::fatal_errors) {
        tie %packages_all, 'DB_File', "$DBDIR/packages_all_$suite.db",
@@ -69,8 +68,8 @@ sub do_show {
        }
 
        unless (@results || @non_results ) {
-           fatal_error( "No such package".
-                        "{insert link to search page with substring search}" );
+           fatal_error( _( "No such package." )."<br>".
+                        sprintf( _( '<a href="%s">Search for the package</a>' ), "$SEARCH_URL/$pkg" ) );
        } else {
            my %all_suites;
            foreach (@results, @non_results) {
@@ -94,7 +93,7 @@ sub do_show {
            $$menu .= '<br>';
            
            unless (@results) {
-               fatal_error( "Package not available in this suite" );
+               fatal_error( _( "Package not available in this suite." ) );
            } else {
                unless ($opts->{source}) {
                    for my $entry (@results) {
@@ -152,38 +151,37 @@ sub do_show {
 #          $long_desc = conv_desc( $lang, $long_desc );
 #          $short_desc = conv_desc( $lang, $short_desc );
 
-                       $$menu .= simple_menu( [ gettext( "Distribution:" ),
-                                                gettext( "Overview over this suite" ),
+                       $$menu .= simple_menu( [ _( "Distribution:" ),
+                                                _( "Overview over this suite" ),
                                                 "$ROOT/$suite/",
                                                 $suite ],
-                                              [ gettext( "Section:" ),
-                                                gettext( "All packages in this section" ),
+                                              [ _( "Section:" ),
+                                                _( "All packages in this section" ),
                                                 "$ROOT/$suite/$subsection/",
                                                 $subsection ],
                                               );
 
-                       my $title .= sprintf( gettext( "Package: %s (%s)" ), $pkg, $v_str );
+                       my $title .= sprintf( _( "Package: %s (%s)" ), $pkg, $v_str );
                        $title .=  " ".marker( $archive ) if $archive ne 'us';
                        $title .=  " ".marker( $subsection ) if $subsection eq 'non-US'
                            and $archive ne 'non-US'; # non-US/security
                        $title .=  " ".marker( $section ) if $section ne 'main';
                        $package_page .= title( $title );
                        
-                       $package_page .= "<h2>".gettext( "Versions:" )." $v_str_arch</h2>\n" 
+                       $package_page .= "<h2>"._( "Versions:" )." $v_str_arch</h2>\n" 
                            unless $version eq $v_str;
                        if (my $provided_by = $page->{provided_by}) {
-                           note( gettext( "This is also a virtual package provided by ").join( ', ', map { "<a href=\"$ROOT/$suite/$_\">$_</a>"  } @$provided_by) );
+                           note( _( "This is also a virtual package provided by ").join( ', ', map { "<a href=\"$ROOT/$suite/$_\">$_</a>"  } @$provided_by) );
                        }
                        
                        if ($suite eq "experimental") {
-                           note( gettext( "Experimental package"),
-                                 gettext( "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. If you ignore this warning and install it nevertheless, you do it on your own risk.")."</p><p>".
-                                 gettext( "Users of experimental packages are encouraged to contact the package maintainers directly in case of problems." )
+                           note( _( "Experimental package"),
+                                 _( "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. If you ignore this warning and install it nevertheless, you do it on your own risk.")."</p>"
                                  );
                        }
                        if ($subsection eq "debian-installer") {
-                           note( gettext( "debian-installer udeb package"),
-                                 gettext( "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 Debian system." )
+                           note( _( "debian-installer udeb package"),
+                                 _( '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 Debian system.' )
                                  );
                        }
                        $package_page .= pdesc( $short_desc, $long_desc );
@@ -204,14 +202,14 @@ sub do_show {
 
                        if ( $dep_list ) {
                            $package_page .= "<div id=\"pdeps\">\n";
-                           $package_page .= sprintf( "<h2>".gettext( "Other Packages Related to %s" )."</h2>\n", $pkg );
+                           $package_page .= sprintf( "<h2>"._( "Other Packages Related to %s" )."</h2>\n", $pkg );
                            if ($suite eq "experimental") {
-                               note( gettext( "Note that the <strong>experimental</strong> distribution is not self-contained; missing dependencies are likely found in the <a href=\"/unstable/\">unstable</a> distribution." ) );
+                               note( sprintf( _( 'Note that the <strong>experimental</strong> distribution is not self-contained; missing dependencies are likely found in the <a href="%s">unstable</a> distribution.' ), "$ROOT/unstable/" ) );
                            }
                            
-                           $package_page .= pdeplegend( [ 'dep',  gettext( 'depends' ) ],
-                                                        [ 'rec',  gettext( 'recommends' ) ],
-                                                        [ 'sug',  gettext( 'suggests' ) ], );
+                           $package_page .= pdeplegend( [ 'dep',  _( 'depends' ) ],
+                                                        [ 'rec',  _( 'recommends' ) ],
+                                                        [ 'sug',  _( 'suggests' ) ], );
                            
                            $package_page .= $dep_list;
                            $package_page .= "</div> <!-- end pdeps -->\n";
@@ -222,22 +220,22 @@ sub do_show {
                        #
                        my $encodedpack = uri_escape( $pkg );
                        $package_page .= "<div id=\"pdownload\">";
-                       $package_page .= sprintf( "<h2>".gettext( "Download %s\n" )."</h2>",
+                       $package_page .= sprintf( "<h2>"._( "Download %s\n" )."</h2>",
                                                  $pkg ) ;
-                       $package_page .= "<table summary=\"".gettext("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.")."\">\n";
-                       $package_page .= "<caption class=\"hidecss\">".gettext("Download for all available architectures")."</caption>\n";
+                       $package_page .= "<table summary=\""._("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.")."\">\n";
+                       $package_page .= "<caption class=\"hidecss\">"._("Download for all available architectures")."</caption>\n";
                        $package_page .= "<tr>\n";
-                       $package_page .= "<th>".gettext("Architecture")."</th><th>".gettext("Files")."</th><th>".gettext( "Package Size")."</th><th>".gettext("Installed Size")."</th></tr>\n";
+                       $package_page .= "<th>"._("Architecture")."</th><th>"._("Files")."</th><th>"._( "Package Size")."</th><th>"._("Installed Size")."</th></tr>\n";
                        foreach my $a ( @archs ) {
                            $package_page .= "<tr>\n";
                            $package_page .=  "<th><a href=\"$ROOT/$suite/$encodedpkg/$a/download";
                            $package_page .=  "\">$a</a></th>\n";
                            $package_page .= "<td>";
                            if ( $suite ne "experimental" ) {
-                               $package_page .= sprintf( "[<a href=\"%s\">".gettext( "list of files" )."</a>]\n",
+                               $package_page .= sprintf( "[<a href=\"%s\">"._( "list of files" )."</a>]\n",
                                                          "$ROOT/$suite/$encodedpkg/$a/filelist", $pkg );
                            } else {
-                               $package_page .= gettext( "no current information" );
+                               $package_page .= _( "no current information" );
                            }
                            $package_page .= '</td><td class="size">';
                            $package_page .=  floor(($sizes_deb->{$a}/102.4)+0.5)/10 . "&nbsp;kB";
@@ -258,26 +256,26 @@ sub do_show {
                                                    changesandcopy => 1, maintainers => 1,
                                                    search => 1 );
                    } else { # unless $page->is_virtual
-                       $short_desc = gettext( "virtual package" );
+                       $short_desc = _( "virtual package" );
 
-                       $$menu .= simple_menu( [ gettext( "Distribution:" ),
-                                                gettext( "Overview over this distribution" ),
+                       $$menu .= simple_menu( [ _( "Distribution:" ),
+                                                _( "Overview over this distribution" ),
                                                 "$ROOT/",
                                                 $suite ],
-                                              [ gettext( "Section:" ),
-                                                gettext( "All packages in this section" ),
+                                              [ _( "Section:" ),
+                                                _( "All packages in this section" ),
                                                 "$ROOT/$suite/virtual/",
                                                 
                                                 'virtual' ], );
 
-                       $package_page .= title( sprintf( gettext( "Virtual Package: %s" ),
+                       $package_page .= title( sprintf( _( "Virtual Package: %s" ),
                                                         $pkg ) );
 
                        my $policy_url = 'http://www.debian.org/doc/debian-policy/';
-                       note( sprintf( gettext( "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>." ),
+                       note( sprintf( _( '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>.' ),
                                       $policy_url, $policy_url ));
 
-                       $package_page .= sprintf( "<h2>".gettext( "Packages providing %s" )."</h2>",                              $pkg );
+                       $package_page .= sprintf( "<h2>"._( "Packages providing %s" )."</h2>",                              $pkg );
                        my $provided_by = $page->{provided_by};
                        $package_page .= pkg_list( \%packages, $opts, $provided_by, 'en');
 
@@ -303,17 +301,17 @@ sub do_show {
                    $section = $page->get_newest( 'section' );
                    $subsection = $page->get_newest( 'subsection' );
 
-                   $$menu .= simple_menu( [ gettext( "Distribution:" ),
-                                            gettext( "Overview over this suite" ),
+                   $$menu .= simple_menu( [ _( "Distribution:" ),
+                                            _( "Overview over this suite" ),
                                             "/$suite/",
                                             $suite ],
-                                          [ gettext( "Section:" ),
-                                            gettext( "All packages in this section" ),
+                                          [ _( "Section:" ),
+                                            _( "All packages in this section" ),
                                             "/$suite/$subsection/",
                                             $subsection ],
                                           );
                    
-                   my $title .= sprintf( gettext( "Source Package: %s (%s)" ),
+                   my $title .= sprintf( _( "Source Package: %s (%s)" ),
                                          $pkg, $v_str );
                    $title .=  " ".marker( $archive ) if $archive ne 'us';
                    $title .=  " ".marker( $subsection ) if $subsection eq 'non-US'
@@ -322,21 +320,20 @@ sub do_show {
                    $package_page .= title( $title );
                    
                    if ($suite eq "experimental") {
-                       note( gettext( "Experimental package"),
-                             gettext( "Warning: This package is from the <span class=\"pred\">experimental</span> distribution. That means it is likely unstable or buggy, and it may even cause data loss. If you ignore this warning and install it nevertheless, you do it on your own risk.")."</p><p>".
-                             gettext( "Users of experimental packages are encouraged to contact the package maintainers directly in case of problems." )
+                       note( _( "Experimental package"),
+                             _( "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. If you ignore this warning and install it nevertheless, you do it on your own risk.")."</p>"
                              );
                    }
                    if ($subsection eq "debian-installer") {
-                       note( gettext( "debian-installer udeb package"),
-                             gettext( "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 Debian system." )
+                       note( _( "debian-installer udeb package"),
+                             _( '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 Debian system.' )
                              );
                    }
 
                    my $binaries = find_binaries( $pkg, $archive, $suite, \%src2bin );
                    if ($binaries && @$binaries) {
                        $package_page .= '<div class="pdesc">';
-                       $package_page .= gettext( "The following binary packages are built from this source package:" );
+                       $package_page .= _( "The following binary packages are built from this source package:" );
                        $package_page .= pkg_list( \%packages, $opts, $binaries, 'en' );
                        $package_page .= '</div> <!-- end pdesc -->';
                    }
@@ -354,13 +351,14 @@ sub do_show {
 
                    if ( $dep_list ) {
                        $package_page .= "<div id=\"pdeps\">\n";
-                       $package_page .= sprintf( "<h2>".gettext( "Other Packages Related to %s" )."</h2>\n", $pkg );
+                       $package_page .= sprintf( "<h2>"._( "Other Packages Related to %s" )."</h2>\n", $pkg );
                        if ($suite eq "experimental") {
-                           note( gettext( "Note that the \"<span class=\"pred\">experimental</span>\" distribution is not self-contained; missing dependencies are likely found in the \"<a href=\"/unstable/\">unstable</a>\" distribution." ) );
+                           note( sprintf( _( 'Note that the <strong>experimental</strong> distribution is not self-contained; missing dependencies are likely found in the <a href="%s">unstable</a> distribution.' ), "$ROOT/unstable/" ) );
+
                        }
                        
-                       $package_page .= pdeplegend( [ 'adep',  gettext( 'build-depends' ) ],
-                                                    [ 'idep',  gettext( 'build-depends-indep' ) ],
+                       $package_page .= pdeplegend( [ 'adep',  _( 'build-depends' ) ],
+                                                    [ 'idep',  _( 'build-depends-indep' ) ],
                                                     );
                        
                        $package_page .= $dep_list;
@@ -371,17 +369,17 @@ sub do_show {
                    # Source package download
                    #
                    $package_page .= "<div id=\"pdownload\">\n";
-                   $package_page .= sprintf( "<h2>".gettext( "Download %s" )."</h2>\n",
+                   $package_page .= sprintf( "<h2>"._( "Download %s" )."</h2>\n",
                                              $pkg ) ;
 
                    my $source_files = $page->get_src( 'files' );
                    my $source_dir = $page->get_src( 'directory' );
                    
-                   $package_page .= sprintf( "<table summary=\"Download information for the files of this source package\">\n"
-                                             ."<tr><th>%s</th><th>%s</th><th>%s</th>",
-                                             gettext("File"),
-                                             gettext("Size (in kB)"),
-                                             gettext("md5sum") );
+                   $package_page .= sprintf( '<table summary="'._('Download information for the files of this source package' ).'">'.
+                                             "<tr><th>%s</th><th>%s</th><th>%s</th>",
+                                             _("File"),
+                                             _("Size (in kB)"),
+                                             _("md5sum") );
                    foreach( @$source_files ) {
                        my ($src_file_md5, $src_file_size, $src_file_name)
                            = split /\s+/, $_;
@@ -392,6 +390,7 @@ sub do_show {
                            /volatile/o &&  do {
                                $src_url = $FTP_SITES{volatile}; last };
                            /backports/o &&  do {
+
                                $src_url = $FTP_SITES{backports}; last };
                            /non-us/io  &&  do {
                                $src_url = $FTP_SITES{'non-US'}; last };
@@ -425,16 +424,16 @@ sub do_show {
 #    debug( "Final page object:\n".Dumper($page), 3 );
 
     my $title = $opts->{source} ?
-       "Details of source package <em>$pkg</em> in $suite"  :
-       "Details of package <em>$pkg</em> in $suite" ;
+       _( "Details of source package <em>%s</em> in %s" ) :
+       _( "Details of package <em>%s</em> in %s" ) ;
     my $title_tag = $opts->{source} ?
-       "Details of source package $pkg in $suite"  :
-       "Details of package $pkg in $suite" ;
-    %$html_header = ( title => $title ,
-                     lang => 'en',
+       _( "Details of source package %s in %s" ) :
+       _( "Details of package %s in %s" ) ;
+    %$html_header = ( title => sprintf( $title, $pkg, $suite ) ,
+                     lang => $opts->{lang},
                      desc => $short_desc,
                      keywords => "$suite, $archive, $section, $subsection, $version",
-                     title_tag => "Details of package $pkg in $suite",
+                     title_tag => sprintf( $title_tag, $pkg, $suite ),
                      print_search_field => 'packages',
                      search_field_values => { 
                          keywords => '',
index 9f019fb79449758b1fc73701ae07a7b9c665b809..859467a9da06daf65cf19497c5fc2d5cb9ab6b00 100644 (file)
@@ -3,27 +3,25 @@ package Packages::HTML;
 use strict;
 use warnings;
 
+use Exporter;
 use URI::Escape;
 use HTML::Entities;
+use Locale::gettext;
 
-use Packages::CGI;
+use Packages::CGI ();
 use Packages::Search qw( read_entry_simple );
 use Packages::Config qw( :all );
 
 #use Packages::Util;
-#use Packages::I18N::Locale;
-#use Packages::I18N::Languages;
-#use Packages::I18N::LanguageNames;
+use Packages::I18N::Locale;
+use Packages::I18N::Languages;
+use Packages::I18N::LanguageNames;
 #use Generated::Strings qw( gettext dgettext );
 
-# dummy routines
-sub get_charset { return "utf-8" };
-sub gettext { return $_[0]; };
-
 our @ISA = qw( Exporter );
 our @EXPORT = qw( header title trailer file_changed time_stamp
                  read_md5_hash write_md5_hash simple_menu
-                 ds_begin ds_item ds_end note title marker pdesc
+                 ds_begin ds_item ds_end title marker pdesc
                  pdeplegend pkg_list pmoreinfo print_deps print_src_deps );
 
 our $CHANGELOG_URL = '/changelogs';
@@ -92,7 +90,7 @@ sub pkg_list {
            $str .= "<dt><a href=\"$ROOT/$suite/$p\">$p</a></dt>\n".
                    "\t<dd>$short_desc</dd>\n";
        } else {
-           $str .= "<dt>$p</dt>\n\t<dd>".gettext("Not available")."</dd>\n";
+           $str .= "<dt>$p</dt>\n\t<dd>"._g("Not available")."</dd>\n";
        }
     }
     if ($str) {
@@ -113,12 +111,12 @@ sub pmoreinfo {
     my $suite = $opts->{suite}[0];
 
     my $str = "<div id=\"pmoreinfo\">";
-    $str .= sprintf( "<h2>".gettext( "More Information on %s" )."</h2>",
+    $str .= sprintf( "<h2>"._g( "More Information on %s" )."</h2>",
                     $name );
     
     if ($info{bugreports}) {
        my $bug_url = $is_source ? $SRC_BUG_URL : $BUG_URL; 
-       $str .= "<p>\n".sprintf( gettext( "Check for <a href=\"%s\">Bug Reports</a> about %s." )."<br>\n",
+       $str .= "<p>\n".sprintf( _g( "Check for <a href=\"%s\">Bug Reports</a> about %s." )."<br>\n",
                         $bug_url.$name, $name );
     }
        
@@ -130,12 +128,12 @@ sub pmoreinfo {
        my $path = (@{$opts->{archive}} >1) ?
            $suite :
            "$suite/$opts->{archive}[0]";
-       $str .= gettext( "Source Package:" );
+       $str .= _g( "Source Package:" );
        $str .= " <a href=\"$ROOT/$path/source/$source\">$source</a>, ".
-           gettext( "Download" ).":\n";
+           _g( "Download" ).":\n";
 
        unless (defined($files) and @$files) {
-           $str .= gettext( "Not found" );
+           $str .= _g( "Not found" );
        } else {
            foreach( @$files ) {
                my ($src_file_md5, $src_file_size, $src_file_name) = split /\s/o, $_;
@@ -158,7 +156,7 @@ sub pmoreinfo {
                $str .= "]</a>\n";
            }
        }
-#          $package_page .= sprintf( gettext( " (These sources are for version %s)\n" ), $src_version )
+#          $package_page .= sprintf( _g( " (These sources are for version %s)\n" ), $src_version )
 #              if ($src_version ne $version) && !$src_version_given_in_control;
     }
 
@@ -168,12 +166,12 @@ sub pmoreinfo {
            $src_basename = "${source}_$src_basename";
            $src_dir =~ s,pool/updates,pool,o;
            $src_dir =~ s,pool/non-US,pool,o;
-           $str .= "<br>".sprintf( gettext( "View the <a href=\"%s\">Debian changelog</a>" ),
+           $str .= "<br>".sprintf( _g( 'View the <a href="%s">Debian changelog</a>' ),
                                    "$CHANGELOG_URL/$src_dir/$src_basename/changelog" )."<br>\n";
            my $copyright_url = "$CHANGELOG_URL/$src_dir/$src_basename/";
            $copyright_url .= ( $is_source ? 'copyright' : "$name.copyright" );
 
-           $str .= sprintf( gettext( "View the <a href=\"%s\">copyright file</a>" ),
+           $str .= sprintf( _g( 'View the <a href="%s">copyright file</a>' ),
                             $copyright_url )."</p>";
        }
    }
@@ -186,7 +184,7 @@ sub pmoreinfo {
            }
            my ($maint_name, $maint_mail) = @{shift @$uploaders}; 
            unless (@$uploaders) {
-               $str .= "<p>\n".sprintf( gettext( "%s is responsible for this Debian package." ).
+               $str .= "<p>\n".sprintf( _g( "%s is responsible for this Debian package." ).
                                         "\n",
                                         "<a href=\"mailto:$maint_mail\">$maint_name</a>" 
                                         );
@@ -198,18 +196,18 @@ sub pmoreinfo {
                }
                my $last_up = pop @uploaders_str;
                $up_str .= ", ".join ", ", @uploaders_str if @uploaders_str;
-               $up_str .= sprintf( gettext( " and %s are responsible for this Debian package." ), $last_up );
+               $up_str .= sprintf( _g( " and %s are responsible for this Debian package." ), $last_up );
                $str .= "<p>\n$up_str ";
            }
        }
 
-       $str .= sprintf( gettext( "See the <a href=\"%s\">developer information for %s</a>." )."</p>", $QA_URL.$source, $name ) if $source;
+       $str .= sprintf( _g( "See the <a href=\"%s\">developer information for %s</a>." )."</p>", $QA_URL.$source, $name ) if $source;
     }
 
     if ($info{search}) {
        my $encodedname = uri_escape( $name );
        my $search_url = $is_source ? "$ROOT/source" : $ROOT;
-       $str .= "<p>".sprintf( gettext( "Search for <a href=\"%s\">other versions of %s</a>" ),
+       $str .= "<p>".sprintf( _g( "Search for <a href=\"%s\">other versions of %s</a>" ),
            "$search_url/$encodedname", $name )."</p>\n";
     }
 
@@ -276,7 +274,7 @@ sub print_deps {
 
            if ($arch_str ||= '') {
                if ($arch_neg) {
-                   $arch_str = " [".gettext("not")." $arch_str]";
+                   $arch_str = " ["._g("not")." $arch_str]";
                } else {
                    $arch_str = " [$arch_str]";
                }
@@ -315,13 +313,13 @@ sub print_deps {
            } elsif ( $is_old_pkgs ) {
                push @res_pkgs, dep_item( undef, $p_name, "$pkg_version$arch_str" );
            } else {
-               my $short_desc = gettext( "Package not available" );
+               my $short_desc = _g( "Package not available" );
                push @res_pkgs, dep_item( undef, $p_name, "$pkg_version$arch_str", $short_desc );
            }
            
        }
        
-       $res .= "\n".join( "<dt>".gettext( "or" )." ", @res_pkgs )."\n";
+       $res .= "\n".join( "<dt>"._g( "or" )." ", @res_pkgs )."\n";
     }
     if (@$relations) {
        $res .= "</dl></li>\n";
@@ -390,57 +388,65 @@ sub header {
 <input type="hidden" name="arch" value="$values{arch}">
 <input type="hidden" name="section" value="$values{section}">
 <input type="text" size="30" name="keywords" value="$values{keywords}" id="kw">
-<input type="submit" value="Search">
-<span style="font-size: 60%"><a href="$SEARCH_PAGE#search_packages">Full options</a></span>
+<input type="submit" value="%s">
+<span style="font-size: 60%%"><a href="$SEARCH_PAGE#search_packages">%s</a></span>
 <br>
-<div style="font-size: 80%">Search on:
+<div style="font-size: 80%%">%s
 <input type="radio" name="searchon" value="names" id="onlynames" $checked_searchon{names}>
-<label for="onlynames">Package names</label>&nbsp;&nbsp;
+<label for="onlynames">%s</label>&nbsp;&nbsp;
 <input type="radio" name="searchon" value="all" id="descs" $checked_searchon{all}>
-<label for="descs">Descriptions</label>
+<label for="descs">%s</label>
 <br>
 <input type="radio" name="searchon" value="sourcenames" id="src" $checked_searchon{sourcenames}>
-<label for="src">Source package names</label>
+<label for="src">%s</label>
 <input type="radio" name="searchon" value="contents" id="conts" $checked_searchon{contents}>
-<label for="conts">Package contents</label>
-</div>
-</div> <!-- end hpacketsearch -->
-</form>
-MENU
-;
-    } elsif ($params{print_search_field} eq 'contents') {
-       my %values = %{$params{search_field_values}};
-       my %checked_searchmode = ( searchfiles => "",
-                                  searchfilesanddirs => "",
-                                  searchword => "",
-                                  filelist => "", );
-       $checked_searchmode{$values{searchmode}} = "checked=\"checked\"";
-       $search_in_header = <<MENU;
-<form method="GET" action="$CONTENTS_SEARCH_CGI">
-<div id="hpacketsearch">
-<input type="hidden" name="debug" value="$values{debug}" />
-<input type="hidden" name="version" value="$values{version}" />
-<input type="hidden" name="arch" value="$values{arch}" />
-<input type="hidden" name="case" value="$values{case}" />
-<input type="text" size="30" name="word" id="keyword" value="$values{keyword}">&nbsp;
-<input type="submit" value="Search">
-<span style="font-size: 60%"><a href="$SEARCH_PAGE#search_contents">Full options</a></span>
-<br>
-<div style="font-size: 80%">Display:
-<input type=radio name="searchmode" value="searchfiles" id="searchfiles" $checked_searchmode{searchfiles}>
-<label for="searchfiles">files</label>
-<input type=radio name="searchmode" value="searchfilesanddirs" id="searchfilesanddirs" $checked_searchmode{searchfilesanddirs}>
-<label for="searchfilesanddirs">files &amp; directories</label>
-<br>
-<input type=radio name="searchmode" value="searchword" id="searchword" $checked_searchmode{searchword}>
-<label for="searchword">subword matching</label>
-<input type=radio name="searchmode" value="filelist" id="filelist" $checked_searchmode{filelist}>
-<label for="filelist">content list</label>
+<label for="conts">%s</label>
 </div>
 </div> <!-- end hpacketsearch -->
 </form>
 MENU
 ;
+       $search_in_header = sprintf( $search_in_header,
+                                    _g( 'Search' ),
+                                    _g( 'Full options' ),
+                                    _g( 'Search on:'),
+                                    _g( 'Package Names' ),
+                                    _g( 'Descriptions' ),
+                                    _g( 'Source package names' ),
+                                    _g( 'Package contents' ));
+#     } elsif ($params{print_search_field} eq 'contents') {
+#      my %values = %{$params{search_field_values}};
+#      my %checked_searchmode = ( searchfiles => "",
+#                                 searchfilesanddirs => "",
+#                                 searchword => "",
+#                                 filelist => "", );
+#      $checked_searchmode{$values{searchmode}} = "checked=\"checked\"";
+#      $search_in_header = <<MENU;
+# <form method="GET" action="$CONTENTS_SEARCH_CGI">
+# <div id="hpacketsearch">
+# <input type="hidden" name="debug" value="$values{debug}" />
+# <input type="hidden" name="version" value="$values{version}" />
+# <input type="hidden" name="arch" value="$values{arch}" />
+# <input type="hidden" name="case" value="$values{case}" />
+# <input type="text" size="30" name="word" id="keyword" value="$values{keyword}">&nbsp;
+# <input type="submit" value="Search">
+# <span style="font-size: 60%"><a href="$SEARCH_PAGE#search_contents">Full options</a></span>
+# <br>
+# <div style="font-size: 80%">Display:
+# <input type=radio name="searchmode" value="searchfiles" id="searchfiles" $checked_searchmode{searchfiles}>
+# <label for="searchfiles">files</label>
+# <input type=radio name="searchmode" value="searchfilesanddirs" id="searchfilesanddirs" $checked_searchmode{searchfilesanddirs}>
+# <label for="searchfilesanddirs">files &amp; directories</label>
+# <br>
+# <input type=radio name="searchmode" value="searchword" id="searchword" $checked_searchmode{searchword}>
+# <label for="searchword">subword matching</label>
+# <input type=radio name="searchmode" value="filelist" id="filelist" $checked_searchmode{filelist}>
+# <label for="filelist">content list</label>
+# </div>
+# </div> <!-- end hpacketsearch -->
+# </form>
+# MENU
+# ;
     }
 
     my $keywords = $params{keywords} || '';
@@ -470,7 +476,7 @@ $meta
 HEAD
 ;
 
-    $txt .= img( "$HOME/", "", "Pics/debian.png", gettext( "Debian Project" ),
+    $txt .= img( "$HOME/", "", "Pics/debian.png", _g( "Debian Project" ),
                 width => 179, height => 61 );
     $txt .= <<HEADEND;
 
@@ -484,15 +490,15 @@ $search_in_header
 
 NAVBEGIN
 ;
-    $txt .= "<p class=\"hidecss\"><a href=\"\#inner\">" . gettext("Skip Site Navigation")."</a></p>\n";
+    $txt .= "<p class=\"hidecss\"><a href=\"\#inner\">" . _g("Skip Site Navigation")."</a></p>\n";
     $txt .= "<div id=\"navbar\">\n<ul>".
-       "<li><a href=\"$HOME/intro/about\">".gettext( "About&nbsp;Debian" )."</a></li>\n".
-       "<li><a href=\"$HOME/News/\">".gettext( "News" )."</a></li>\n".
-       "<li><a href=\"$HOME/distrib/\">".gettext( "Getting&nbsp;Debian" )."</a></li>\n".
-       "<li><a href=\"$HOME/support\">".gettext( "Support" )."</a></li>\n".
-       "<li><a href=\"$HOME/devel/\">".gettext( "Development" )."</a></li>\n".
-       "<li><a href=\"$HOME/sitemap\">".gettext( "Site map" )."</a></li>\n".
-       "<li><a href=\"http://search.debian.org/\">".gettext( "Search" )."</a></li>\n";
+       "<li><a href=\"$HOME/intro/about\">"._g( "About&nbsp;Debian" )."</a></li>\n".
+       "<li><a href=\"$HOME/News/\">"._g( "News" )."</a></li>\n".
+       "<li><a href=\"$HOME/distrib/\">"._g( "Getting&nbsp;Debian" )."</a></li>\n".
+       "<li><a href=\"$HOME/support\">"._g( "Support" )."</a></li>\n".
+       "<li><a href=\"$HOME/devel/\">"._g( "Development" )."</a></li>\n".
+       "<li><a href=\"$HOME/sitemap\">"._g( "Site map" )."</a></li>\n".
+       "<li><a href=\"http://search.debian.org/\">"._g( "Search" )."</a></li>\n";
     $txt .= "</ul>\n";
     $txt .= <<ENDNAV;
 </div> <!-- end navbar -->
@@ -521,15 +527,15 @@ sub trailer {
        $langs.
        "\n<hr class=\"hidecss\">\n" .
        "<p$bl_class>".
-       sprintf( gettext( "Back to: <a href=\"%s/\">Debian Project homepage</a> || <a href=\"%s/\">Packages search page</a>" ), $HOME, $ROOT ).
+       sprintf( _g( "Back to: <a href=\"%s/\">Debian Project homepage</a> || <a href=\"%s/\">Packages search page</a>" ), $HOME, $ROOT ).
        "</p>\n<hr class=\"hidecss\">\n".
        "<div id=\"fineprint\" class=\"bordertop\"><p>".
-       sprintf( gettext( "To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. For other contact information, see the Debian <a href=\"%s/contact\">contact page</a>." ), $CONTACT_MAIL, $CONTACT_MAIL, $HOME).
+       sprintf( _g( "To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. For other contact information, see the Debian <a href=\"%s/contact\">contact page</a>." ), $CONTACT_MAIL, $CONTACT_MAIL, $HOME).
        "</p>\n".
-       "<p>". gettext( "Last Modified: " ). "LAST_MODIFIED_DATE".
+       "<p>". _g( "Last Modified: " ). "LAST_MODIFIED_DATE".
        "<br>\n".
-       sprintf( gettext( "Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; See <a href=\"%s/license\">license terms</a>." ), "$HOME/" )."<br>\n".
-       gettext( "Debian is a registered trademark of Software in the Public Interest, Inc." ).
+       sprintf( _g( "Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; See <a href=\"%s/license\">license terms</a>." ), "$HOME/" )."<br>\n".
+       _g( "Debian is a registered trademark of Software in the Public Interest, Inc." ).
        "</div> <!-- end fineprint -->\n".
        "</div> <!-- end footer -->\n".
        "</div> <!-- end outer -->\n".
@@ -546,7 +552,7 @@ sub languages {
     if (@used_langs) {
        $str .= "<hr class=\"hidecss\">\n";
        $str .= "<!--UdmComment-->\n<p>\n";
-       $str .= gettext( "This page is also available in the following languages:\n" );
+       $str .= _g( "This page is also available in the following languages:\n" );
        $str .= "</p><p class=\"navpara\">\n";
        
        my @printed_langs = ();
@@ -565,7 +571,7 @@ sub languages {
            $str .= "</a>\n";
        }
        $str .= "\n</p><p>\n";
-       $str .= sprintf( gettext( "How to set <a href=\"%s\">the default document language</a></p>" ), $CN_HELP_URL );
+       $str .= sprintf( _g( "How to set <a href=\"%s\">the default document language</a>" ), $CN_HELP_URL )."</p>";
        $str .= "\n<!--/UdmComment-->\n";
     }
     
diff --git a/lib/Packages/I18N/LanguageNames.pm b/lib/Packages/I18N/LanguageNames.pm
new file mode 100644 (file)
index 0000000..d414e47
--- /dev/null
@@ -0,0 +1,58 @@
+# $Id$
+#
+# Taken from the webwml CVS tree (english/templates/language_names.wml)
+
+package Packages::I18N::LanguageNames;
+
+use strict;
+use warnings;
+
+use Exporter;
+use Packages::I18N::Locale;
+
+our @ISA = qw( Exporter );
+our @EXPORT = qw( get_language_name get_all_languages );
+
+my %ctrans = (
+       ar    => N_("Arabic"),
+       fi    => N_("Finnish"),
+       hr    => N_("Croatian"),
+       da    => N_("Danish"),
+       nl    => N_("Dutch"),
+       en    => N_("English"),
+       fr    => N_("French"),
+       de    => N_("German"),
+       it    => N_("Italian"),
+       ja    => N_("Japanese"),
+       ko    => N_("Korean"),
+       es    => N_("Spanish"),
+       pt_BR => N_("Portuguese (Brasilia)"),
+       pt_PT => N_("Portuguese (Portugal)"),
+       zh    => N_("Chinese"),
+       sv_SE => N_("Swedish"),
+       pl    => N_("Polish"),
+       'no'  => N_("Norwegian"),
+       tr    => N_("Turkish"),
+       ru    => N_("Russian"),
+       cs    => N_("Czech"),
+       eo    => N_("Esperanto"),
+       hu    => N_("Hungarian"),
+       ro    => N_("Romanian"),
+       sk    => N_("Slovak"),
+       el    => N_("Greek"),
+       ca    => N_("Catalan"),
+       lt    => N_("Lithuanian"),
+       sl    => N_("Slovene"),
+       bg    => N_("Bulgarian"),
+       uk    => N_("Ukrainian"),
+);
+
+sub get_language_name {
+    return $ctrans{$_[0]};
+}
+
+sub get_all_languages {
+    return %ctrans;
+}
+
+1;
diff --git a/lib/Packages/I18N/Languages.pm b/lib/Packages/I18N/Languages.pm
new file mode 100644 (file)
index 0000000..9f30453
--- /dev/null
@@ -0,0 +1,143 @@
+# $Id$
+#
+# Taken from the webwml CVS tree (english/templates/languages.wml)
+
+package Packages::I18N::Languages;
+
+use strict;
+use warnings;
+
+use Exporter;
+
+our @ISA = qw( Exporter );
+our @EXPORT = qw( langcmp get_transliteration get_selfname );
+
+# language directory name => ISO 639 two-letter code for the language name
+my %langs = (
+            english    => "en",
+            arabic     => "ar",
+            bulgarian  => "bg",
+            catalan    => "ca",
+            czech      => "cs",
+            danish     => "da",
+            german     => "de",
+            greek      => "el",
+            esperanto  => "eo",
+            spanish    => "es",
+            finnish    => "fi",
+            french     => "fr",
+            croatian   => "hr",
+            hungarian  => "hu",
+            indonesian => "id",
+            italian    => "it",
+            japanese   => "ja",
+            korean     => "ko",
+            lithuanian => "lt",
+            dutch      => "nl",
+            norwegian  => "no",
+            polish     => "pl",
+            portuguese => "pt",
+            romanian   => "ro",
+            russian    => "ru",
+            swedish    => "sv",
+            slovene    => "sl",
+            slovak     => "sk",
+            turkish    => "tr",
+            chinese    => "zh",
+            );
+
+# language directory name => native name of the language
+# non-ASCII letters must be escaped (using entities)!
+my %selflang = (
+               ar     => '&#1593;&#1585;&#1576;&#1610;&#1577;',
+               bg     => '&#1041;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080;',
+               ca     => 'catal&agrave;',
+               zh     => '&#20013;&#25991;',
+               hr     => 'hrvatski',
+               cs     => '&#269;esky',
+               da     => 'dansk',
+               nl     => 'Nederlands',
+               en     => 'English',
+               eo     => 'Esperanto',
+               fi     => 'suomi',
+               fr     => 'fran&ccedil;ais',
+               de     => 'Deutsch',
+               el     => '&#917;&#955;&#955;&#951;&#957;&#953;&#954;&#940;',
+               hu     => 'magyar',
+               id     => 'Indonesia',
+               it     => 'Italiano',
+               ja     => '&#26085;&#26412;&#35486;',
+               ko     => '&#54620;&#44397;&#50612;',
+               lt     => 'Lietuvi&#371;',
+               "no"   => 'norsk&nbsp;(bokm&aring;l)',
+               pl     => 'polski',
+               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;',
+               es     => 'espa&ntilde;ol',
+               sk     => 'slovak', #FIXME
+               sv_SE  => 'svenska',
+               sl     => 'sloven&#353;&#269;ina',
+               tr     => 'T&uuml;rk&ccedil;e',
+               uk     => 'ukrainian', #FIXME
+               );
+
+# language directory name => Latin transliteration of the language name
+# This is used for language names which consist entirely of non-Latin
+# characters, to aid those that have browsers which cannot show different
+# character sets at once.
+my %translit = (
+               ar => "Arabiya",
+               bg => "B&#601;lgarski",
+               zh => "Zhongzu", # Not printed due to Chinese-specific code; kept for sort order
+               el => "Ellinika",
+               ja => "Nihongo",
+               ko => "Hangul", # Not sure. "Hanguk-Mal" (=Spoken Korean)?
+               ru => "Russkij",
+               );
+
+# second transliteration table, used for languages starting with a latin
+# diacritic letter
+my %translit2 = (
+                cs    => "cesky",
+);
+
+sub langcmp ($$) {
+  my ($first, $second) = @_;
+
+  # Handle sorting of non-latin characters
+  # If there is a transliteration for this language available, use it
+  $first = $translit{$first} if defined $translit{$first};
+  $second = $translit{$second} if defined $translit{$second};
+
+  # Then handle special cases (initial latin letters with diacritics)
+  $first = $translit2{$first} if defined $translit2{$first};
+  $second = $translit2{$second} if defined $translit2{$second};
+
+  # Put remaining entity-only names last in the list
+  if (substr($first,0,1) eq '&')
+  {
+    $first =~ s/^&/ZZZ&/;
+  }
+  if (substr($second,0,1) eq '&')
+  {
+    $second =~ s/^&/ZZZ&/;
+  }
+  #    There seems to be a bug with localization in
+  #    Perl 5.005 so we need those extra variables.
+  my ($ufirst, $usecond) = (uc($first), uc($second));
+  return $ufirst cmp $usecond;
+}
+
+sub get_selfname {
+    return $selflang{$_[0]} if exists $selflang{$_[0]};
+    return undef;
+}
+
+sub get_transliteration {
+    return $translit{$_[0]} if exists $translit{$_[0]};
+    return undef;
+}
+
+1;
diff --git a/lib/Packages/I18N/Locale.pm b/lib/Packages/I18N/Locale.pm
new file mode 100644 (file)
index 0000000..10fc3cc
--- /dev/null
@@ -0,0 +1,57 @@
+package Packages::I18N::Locale;
+
+use strict;
+use warnings;
+
+use Exporter;
+use Locale::gettext;
+
+our @ISA = qw( Exporter );
+our @EXPORT = qw( get_locale get_charset _g _ N_ );
+
+
+my %lang2loc = ( en => "en_US",
+                cs => "cs_CZ",
+                da => "da_DK",
+                ja => "ja_JP",
+                sv => "sv_SE",
+                uk => "uk_UA",
+                default => "en_US",
+                );
+
+# most of them can probably changed to UTF-8 in Sarge
+# as there are more available UTF-8 locales then
+my %lang2charset = (
+                   default => 'UTF-8',
+                   ja => 'EUC-JP',
+                   uk => 'KOI8-U',
+                   );
+
+sub get_locale {
+    my $lang = shift;
+    my $locale = $lang;
+
+    return "$lang2loc{default}.".get_charset() unless $lang;
+
+    if ( length($lang) == 2 ) {
+       $locale = $lang2loc{$lang} || ( "${lang}_" . uc $lang );
+    } elsif ( $lang !~ /^[a-z][a-z]_[A-Z][A-Z]$/ ) {
+       warn "get_locale: couldn't determine locale\n";
+       return;
+    }
+    $locale .= ".".get_charset($lang);
+    return $locale;
+}
+
+sub get_charset {
+    my $lang = shift;
+
+    return $lang2charset{default} unless $lang;
+    return $lang2charset{$lang} || $lang2charset{default};
+}
+
+sub _ { return gettext( $_[0] ) }
+sub _g { return gettext( $_[0] ) }
+sub N_ { return $_[0] }
+
+1;
index c77d8facee9f2c358517a179507dbcbe4b2e1227..201408fb5c9484fdfd77e6c299aff48c16f1d4b2 100644 (file)
@@ -5,6 +5,7 @@ use warnings;
 
 use Data::Dumper;
 use Exporter;
+use Locale::gettext;
 use Deb::Versions;
 use Packages::CGI;
 
@@ -33,7 +34,6 @@ sub new {
     return $self;
 }
 
-sub gettext { return $_[0]; }
 sub split_name_mail {
     my $string = shift;
     my ( $name, $email );
index 54998a361ac48e08fd70b32c6088c76e2bf217ed..931747c618ed84b4863f9d3a183fbff349983835 100644 (file)
@@ -43,7 +43,7 @@ package Packages::Search;
 use strict;
 use warnings;
 
-use CGI;
+#use CGI ();
 use POSIX;
 use HTML::Entities;
 use DB_File;
index 1311bc12b30ab8016b1116b5445cdab6ed15c039..32eb2b050eb29ec6410a151d50af8c2be4441b39 100644 (file)
@@ -3,83 +3,84 @@ package Packages::Sections;
 use strict;
 use warnings;
 
+use Packages::I18N::Locale;
 use Exporter;
 our @ISA = qw( Exporter );
 our @EXPORT = qw( %sections_descs );
 
 our %sections_descs = (
-                     'admin'           => [ "Administration Utilities",
-                                            "Utilities to administer system resources, manage user accounts, etc." ],
-                     'base'            => [ "Base Utilities",
-                                            "Basic needed utilities of every Debian system." ],
-                     'comm'            => [ "Communication Programs",
-                                            "Software to use your modem in the old fashioned style." ],
-                     'devel'           => [ "Development",
-                                            "Development utilities, compilers, development environments, libraries, etc." ],
-                     'doc'             => [ "Documentation",
-                                            "FAQs, HOWTOs and other documents trying to explain everything related to Debian, and software needed to browse documentation (man, info, etc)." ],
-                     'editors' => [ "Editors",
-                                    "Software to edit files. Programming environments." ],
-                     'electronics'     => [ "Electronics",
-                                            "Electronics utilities." ],
-                     'embedded'        => [ "Embedded software",
-                                            "Software suitable for use in embedded applications." ],
-                     'games'           => [ "Games",
-                                            "Programs to spend a nice time with after all this setting up." ],
-                     'gnome'           => [ "GNOME",
-                                            "The GNOME desktop environment, a powerful, easy to use set of integrated applications." ],
-                     'graphics'        => [ "Graphics",
-                                            "Editors, viewers, converters... Everything to become an artist." ],
-                     'hamradio'        => [ "Ham Radio",
-                                            "Software for ham radio." ],
-                     'interpreters'    => [ "Interpreters",
-                                            "All kind of interpreters for interpreted languages. Macro processors." ],
-                     'kde'             => [ "KDE",
-                                            "The K Desktop Environment, a powerful, easy to use set of integrated applications." ],
-                     'libs'            => [ "Libraries",
-                                            "Libraries to make other programs work. They provide special features to developers." ],
-                     'libdevel'        => [ "Library development",
-                                            "Libraries necessary for developers to write programs that use them." ],
-                     'mail'            => [ "Mail",
-                                            "Programs to route, read, and compose E-mail messages." ],
-                     'math'            => [ "Mathematics",
-                                            "Math software." ],
-                     'misc'            => [ "Miscellaneous",
-                                            "Miscellaneous utilities that didn\'t fit well anywhere else." ],
-                     'net'             => [ "Network",
-                                            "Daemons and clients to connect your Debian GNU/Linux system to the world." ],
-                     'news'            => [ "Newsgroups",
-                                            "Software to access Usenet, to set up news servers, etc." ],
-                     'non-US'  => [ "Software restricted in the U.S.",
-                                    "These packages probably may not be used in or distributed from the U.S. due to software patents. You should check the regulations in your country before using this software." ],
-                     'oldlibs' => [ "Old Libraries",
-                                    "Old versions of libraries, kept for backward compatibility with old applications." ],
-                     'otherosfs'       => [ "Other OS\'s and file systems",
-                                            "Software to run programs compiled for other operating system, and to use their filesystems." ],
-                     'perl'            => [ "Perl",
-                                            "Everything about Perl, an interpreted scripting language." ],
-                     'python'  => [ "Python",
-                                    "Everything about Python, an interpreted, interactive object oriented language." ],
-                     'science' => [ "Science",
-                                    "Basic tools for scientific work" ],
-                     'shells'  => [ "Shells",
-                                    "Command shells. Friendly user interfaces for beginners." ],
-                     'sound'           => [ "Sound",
-                                            "Utilities to deal with sound: mixers, players, recorders, CD players, etc." ],
-                     'tex'             => [ "TeX",
-                                            "The famous typesetting software and related programs." ],
-                     'text'            => [ "Text Processing",
-                                            "Utilities to format and print text documents." ],
-                     'utils'           => [ "Utilities",
-                                            "Utilities for file/disk manipulation, backup and archive tools, system monitoring, input systems, etc." ],
-                     'virtual' => [ "Virtual packages",
-                                    "Virtual packages." ],
-                     'web'             => [ "Web Software",
-                                            "Web servers, browsers, proxies, download tools etc." ],
-                     'x11'             => [ "X Window System software",
-                                            "X servers, libraries, fonts, window managers, terminal emulators and many related applications." ],
-                     'debian-installer' => [ "debian-installer udeb packages",
-                                             "Special packages for building customized debian-installer variants. Do not install them on a normal system!" ],
+                     admin             => [ N_("Administration Utilities"),
+                                            N_("Utilities to administer system resources, manage user accounts, etc.") ],
+                     base              => [ N_("Base Utilities"),
+                                            N_("Basic needed utilities of every Debian system.") ],
+                     comm              => [ N_("Communication Programs"),
+                                            N_("Software to use your modem in the old fashioned style.") ],
+                     devel             => [ N_("Development"),
+                                            N_("Development utilities, compilers, development environments, libraries, etc.") ],
+                     doc               => [ N_("Documentation"),
+                                            N_("FAQs, HOWTOs and other documents trying to explain everything related to Debian, and software needed to browse documentation (man, info, etc).") ],
+                     editors   => [ N_("Editors"),
+                                    N_("Software to edit files. Programming environments.") ],
+                     electronics       => [ N_("Electronics"),
+                                            N_("Electronics utilities.") ],
+                     embedded  => [ N_("Embedded software"),
+                                            N_("Software suitable for use in embedded applications.") ],
+                     games             => [ N_("Games"),
+                                            N_("Programs to spend a nice time with after all this setting up.") ],
+                     gnome             => [ N_("GNOME"),
+                                            N_("The GNOME desktop environment, a powerful, easy to use set of integrated applications.") ],
+                     graphics  => [ N_("Graphics"),
+                                            N_("Editors, viewers, converters... Everything to become an artist.") ],
+                     hamradio  => [ N_("Ham Radio"),
+                                            N_("Software for ham radio.") ],
+                     interpreters      => [ N_("Interpreters"),
+                                            N_("All kind of interpreters for interpreted languages. Macro processors.") ],
+                     kde               => [ N_("KDE"),
+                                            N_("The K Desktop Environment, a powerful, easy to use set of integrated applications.") ],
+                     libs              => [ N_("Libraries"),
+                                            N_("Libraries to make other programs work. They provide special features to developers.") ],
+                     libdevel  => [ N_("Library development"),
+                                            N_("Libraries necessary for developers to write programs that use them.") ],
+                     mail              => [ N_("Mail"),
+                                            N_("Programs to route, read, and compose E-mail messages.") ],
+                     math              => [ N_("Mathematics"),
+                                            N_("Math software.") ],
+                     misc              => [ N_("Miscellaneous"),
+                                            N_("Miscellaneous utilities that didn\'t fit well anywhere else.") ],
+                     net               => [ N_("Network"),
+                                            N_("Daemons and clients to connect your Debian GNU/Linux system to the world.") ],
+                     news              => [ N_("Newsgroups"),
+                                            N_("Software to access Usenet, to set up news servers, etc.") ],
+                     'non-US'  => [ N_("Software restricted in the U.S."),
+                                    N_("These packages probably may not be used in or distributed from the U.S. due to software patents. You should check the regulations in your country before using this software.") ],
+                     oldlibs   => [ N_("Old Libraries"),
+                                    N_("Old versions of libraries, kept for backward compatibility with old applications.") ],
+                     otherosfs => [ N_("Other OS\'s and file systems"),
+                                            N_("Software to run programs compiled for other operating system, and to use their filesystems.") ],
+                     perl              => [ N_("Perl"),
+                                            N_("Everything about Perl, an interpreted scripting language.") ],
+                     python    => [ N_("Python"),
+                                    N_("Everything about Python, an interpreted, interactive object oriented language.") ],
+                     science   => [ N_("Science"),
+                                    N_("Basic tools for scientific work") ],
+                     shells    => [ N_("Shells"),
+                                    N_("Command shells. Friendly user interfaces for beginners.") ],
+                     sound             => [ N_("Sound"),
+                                            N_("Utilities to deal with sound: mixers, players, recorders, CD players, etc.") ],
+                     tex               => [ N_("TeX"),
+                                            N_("The famous typesetting software and related programs.") ],
+                     text              => [ N_("Text Processing"),
+                                            N_("Utilities to format and print text documents.") ],
+                     utils             => [ N_("Utilities"),
+                                            N_("Utilities for file/disk manipulation, backup and archive tools, system monitoring, input systems, etc.") ],
+                     virtual   => [ N_("Virtual packages"),
+                                    N_("Virtual packages.") ],
+                     web               => [ N_("Web Software"),
+                                            N_("Web servers, browsers, proxies, download tools etc.") ],
+                     x11               => [ N_("X Window System software"),
+                                            N_("X servers, libraries, fonts, window managers, terminal emulators and many related applications.") ],
+                     'debian-installer' => [ N_("debian-installer udeb packages"),
+                                             N_("Special packages for building customized debian-installer variants. Do not install them on a normal system!") ],
                      );
 
 
index b1d83d4cc761dec729765348adebec41c6371ae5..6d03ff20ca7731de0da7123341b327679626dbe5 100644 (file)
@@ -4,6 +4,7 @@ use strict;
 use warnings;
 
 use Data::Dumper;
+use Locale::gettext;
 use Deb::Versions;
 use Packages::CGI;
 use Packages::Page qw( :all );
@@ -22,8 +23,6 @@ sub merge_data {
     return $self->merge_package( \%data );
 }
 
-sub gettext { return $_[0]; }
-
 our @DEP_FIELDS = qw( build-depends build-depends-indep
                      build-conflicts build-conflicts-indep);
 sub merge_package {
diff --git a/po/langs.de.po b/po/langs.de.po
new file mode 100644 (file)
index 0000000..addeb55
--- /dev/null
@@ -0,0 +1,128 @@
+msgid ""
+msgstr ""
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: lib/Packages/I18N/LanguageNames.pm:17
+msgid "Arabic"
+msgstr "Arabisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:18
+msgid "Finnish"
+msgstr "Finnisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:19
+msgid "Croatian"
+msgstr "Kroatisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:20
+msgid "Danish"
+msgstr "Dänisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:21
+msgid "Dutch"
+msgstr "Holländisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:22
+msgid "English"
+msgstr "Englisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:23
+msgid "French"
+msgstr "Französisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:24
+msgid "German"
+msgstr "Deutsch"
+
+#: lib/Packages/I18N/LanguageNames.pm:25
+msgid "Italian"
+msgstr "Italienisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:26
+msgid "Japanese"
+msgstr "Japanisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:27
+msgid "Korean"
+msgstr "Koreanisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:28
+msgid "Spanish"
+msgstr "Spanisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:29
+msgid "Portuguese (Brasilia)"
+msgstr "Portugiesisch (Brasilien)"
+
+#: lib/Packages/I18N/LanguageNames.pm:30
+msgid "Portuguese (Portugal)"
+msgstr "Portugiesisch (Portugal)"
+
+#: lib/Packages/I18N/LanguageNames.pm:31
+msgid "Chinese"
+msgstr "Chinesisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:32
+msgid "Swedish"
+msgstr "Schwedisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:33
+msgid "Polish"
+msgstr "Polnisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:34
+msgid "Norwegian"
+msgstr "Norwegisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:37
+msgid "Czech"
+msgstr "Tschechisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:38
+msgid "Esperanto"
+msgstr "Esperanto"
+
+#: lib/Packages/I18N/LanguageNames.pm:39
+msgid "Hungarian"
+msgstr "Ungarisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:40
+msgid "Romanian"
+msgstr "Rumänisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:41
+msgid "Slovak"
+msgstr "Slowakisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:42
+msgid "Greek"
+msgstr "Griechisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:43
+msgid "Catalan"
+msgstr "Katalanisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:44
+msgid "Lithuanian"
+msgstr "Litauisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:45
+msgid "Slovene"
+msgstr "Slowenisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:46
+msgid "Bulgarian"
+msgstr "Bulgarisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:47
+msgid "Ukrainian"
+msgstr "Ukrainisch"
+
+#~ msgid "Turkish"
+#~ msgstr "Türkisch"
+
+#~ msgid "Russian"
+#~ msgstr "Russisch"
diff --git a/po/langs.fi.po b/po/langs.fi.po
new file mode 100644 (file)
index 0000000..d93bcff
--- /dev/null
@@ -0,0 +1,138 @@
+# Finnish translations for packages.debian.org.
+# This file is put in the public domain.
+# Tommi Vainikainen <thv+debian@iki.fi>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: langs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-10-16 14:26+0300\n"
+"Last-Translator: Tommi Vainikainen <thv+debian@iki.fi>\n"
+"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: lib/Packages/I18N/LanguageNames.pm:17
+msgid "Arabic"
+msgstr "arabia"
+
+#: lib/Packages/I18N/LanguageNames.pm:18
+msgid "Finnish"
+msgstr "suomi"
+
+#: lib/Packages/I18N/LanguageNames.pm:19
+msgid "Croatian"
+msgstr "kroatia"
+
+#: lib/Packages/I18N/LanguageNames.pm:20
+msgid "Danish"
+msgstr "tanska"
+
+#: lib/Packages/I18N/LanguageNames.pm:21
+msgid "Dutch"
+msgstr "hollanti"
+
+#: lib/Packages/I18N/LanguageNames.pm:22
+msgid "English"
+msgstr "englanti"
+
+#: lib/Packages/I18N/LanguageNames.pm:23
+msgid "French"
+msgstr "ranska"
+
+#: lib/Packages/I18N/LanguageNames.pm:24
+msgid "German"
+msgstr "saksa"
+
+#: lib/Packages/I18N/LanguageNames.pm:25
+msgid "Italian"
+msgstr "italia"
+
+#: lib/Packages/I18N/LanguageNames.pm:26
+msgid "Japanese"
+msgstr "japani"
+
+#: lib/Packages/I18N/LanguageNames.pm:27
+msgid "Korean"
+msgstr "korea"
+
+#: lib/Packages/I18N/LanguageNames.pm:28
+msgid "Spanish"
+msgstr "espanja"
+
+#: lib/Packages/I18N/LanguageNames.pm:29
+msgid "Portuguese (Brasilia)"
+msgstr "portugali (Brasilian)"
+
+#: lib/Packages/I18N/LanguageNames.pm:30
+msgid "Portuguese (Portugal)"
+msgstr "portugali (Portugalin)"
+
+#: lib/Packages/I18N/LanguageNames.pm:31
+msgid "Chinese"
+msgstr "kiina"
+
+#: lib/Packages/I18N/LanguageNames.pm:32
+msgid "Swedish"
+msgstr "ruotsi"
+
+#: lib/Packages/I18N/LanguageNames.pm:33
+msgid "Polish"
+msgstr "puola"
+
+#: lib/Packages/I18N/LanguageNames.pm:34
+msgid "Norwegian"
+msgstr "norja"
+
+#: lib/Packages/I18N/LanguageNames.pm:37
+msgid "Czech"
+msgstr "tšekki"
+
+#: lib/Packages/I18N/LanguageNames.pm:38
+msgid "Esperanto"
+msgstr "esperanto"
+
+#: lib/Packages/I18N/LanguageNames.pm:39
+msgid "Hungarian"
+msgstr "unkari"
+
+#: lib/Packages/I18N/LanguageNames.pm:40
+msgid "Romanian"
+msgstr "romania"
+
+#: lib/Packages/I18N/LanguageNames.pm:41
+msgid "Slovak"
+msgstr "slovakki"
+
+#: lib/Packages/I18N/LanguageNames.pm:42
+msgid "Greek"
+msgstr "kreikka"
+
+#: lib/Packages/I18N/LanguageNames.pm:43
+msgid "Catalan"
+msgstr "katalaani"
+
+#: lib/Packages/I18N/LanguageNames.pm:44
+msgid "Lithuanian"
+msgstr "liettua"
+
+#: lib/Packages/I18N/LanguageNames.pm:45
+msgid "Slovene"
+msgstr "sloveeni"
+
+#: lib/Packages/I18N/LanguageNames.pm:46
+msgid "Bulgarian"
+msgstr "bulgaria"
+
+#: lib/Packages/I18N/LanguageNames.pm:47
+msgid "Ukrainian"
+msgstr "ukraina"
+
+#~ msgid "Turkish"
+#~ msgstr "turkki"
+
+#~ msgid "Russian"
+#~ msgstr "venäjä"
diff --git a/po/langs.fr.po b/po/langs.fr.po
new file mode 100644 (file)
index 0000000..3050f91
--- /dev/null
@@ -0,0 +1,140 @@
+# Translations of language names for the Debian web site.
+# Copyright (C) 2002 SPI, Inc.
+# Martin Quinson <Martin.Quinson@tuxfamily.org>, 2002.
+#
+# Check http://www.ethnologue.com/iso639/codes.asp for translations
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: debian/webwml/langs.po\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-06-13 14:08+0200\n"
+"Last-Translator: Denis Barbier <barbier@linuxfr.org>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: lib/Packages/I18N/LanguageNames.pm:17
+msgid "Arabic"
+msgstr "arabe"
+
+#: lib/Packages/I18N/LanguageNames.pm:18
+msgid "Finnish"
+msgstr "finnois"
+
+#: lib/Packages/I18N/LanguageNames.pm:19
+msgid "Croatian"
+msgstr "croate"
+
+#: lib/Packages/I18N/LanguageNames.pm:20
+msgid "Danish"
+msgstr "danois"
+
+#: lib/Packages/I18N/LanguageNames.pm:21
+msgid "Dutch"
+msgstr "néerlandais"
+
+#: lib/Packages/I18N/LanguageNames.pm:22
+msgid "English"
+msgstr "anglais"
+
+#: lib/Packages/I18N/LanguageNames.pm:23
+msgid "French"
+msgstr "fran&ccedil;ais"
+
+#: lib/Packages/I18N/LanguageNames.pm:24
+msgid "German"
+msgstr "allemand"
+
+#: lib/Packages/I18N/LanguageNames.pm:25
+msgid "Italian"
+msgstr "italien"
+
+#: lib/Packages/I18N/LanguageNames.pm:26
+msgid "Japanese"
+msgstr "japonais"
+
+#: lib/Packages/I18N/LanguageNames.pm:27
+msgid "Korean"
+msgstr "coréen"
+
+#: lib/Packages/I18N/LanguageNames.pm:28
+msgid "Spanish"
+msgstr "espagnol"
+
+#: lib/Packages/I18N/LanguageNames.pm:29
+msgid "Portuguese (Brasilia)"
+msgstr "portugais (du Brésil)"
+
+#: lib/Packages/I18N/LanguageNames.pm:30
+#, fuzzy
+msgid "Portuguese (Portugal)"
+msgstr "portugais (du Brésil)"
+
+#: lib/Packages/I18N/LanguageNames.pm:31
+msgid "Chinese"
+msgstr "chinois"
+
+#: lib/Packages/I18N/LanguageNames.pm:32
+msgid "Swedish"
+msgstr "suédois"
+
+#: lib/Packages/I18N/LanguageNames.pm:33
+msgid "Polish"
+msgstr "polonais"
+
+#: lib/Packages/I18N/LanguageNames.pm:34
+msgid "Norwegian"
+msgstr "norvégien"
+
+#: lib/Packages/I18N/LanguageNames.pm:37
+msgid "Czech"
+msgstr "tchèque"
+
+#: lib/Packages/I18N/LanguageNames.pm:38
+msgid "Esperanto"
+msgstr "esperanto"
+
+#: lib/Packages/I18N/LanguageNames.pm:39
+msgid "Hungarian"
+msgstr "hongrois"
+
+#: lib/Packages/I18N/LanguageNames.pm:40
+msgid "Romanian"
+msgstr "roumain"
+
+#: lib/Packages/I18N/LanguageNames.pm:41
+msgid "Slovak"
+msgstr "slovaque"
+
+#: lib/Packages/I18N/LanguageNames.pm:42
+msgid "Greek"
+msgstr "grec"
+
+#: lib/Packages/I18N/LanguageNames.pm:43
+msgid "Catalan"
+msgstr "catalan"
+
+#: lib/Packages/I18N/LanguageNames.pm:44
+msgid "Lithuanian"
+msgstr "lituanien"
+
+#: lib/Packages/I18N/LanguageNames.pm:45
+msgid "Slovene"
+msgstr "slovène"
+
+#: lib/Packages/I18N/LanguageNames.pm:46
+msgid "Bulgarian"
+msgstr "bulgare"
+
+#: lib/Packages/I18N/LanguageNames.pm:47
+msgid "Ukrainian"
+msgstr "ukrainien"
+
+#~ msgid "Turkish"
+#~ msgstr "turc"
+
+#~ msgid "Russian"
+#~ msgstr "russe"
diff --git a/po/langs.nl.po b/po/langs.nl.po
new file mode 100644 (file)
index 0000000..7a0dbd9
--- /dev/null
@@ -0,0 +1,138 @@
+#
+# Dutch translation of packages.debian.org
+# This file is put in the public domain.
+# Bas Zoetekouw <bas@debian.org>, 2005.
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-01-02 23:39+0100\n"
+"Last-Translator: Bas Zoetekouw <bas@debian.org>\n"
+"Language-Team: Dutch\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: lib/Packages/I18N/LanguageNames.pm:17
+msgid "Arabic"
+msgstr "Arabisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:18
+msgid "Finnish"
+msgstr "Fins"
+
+#: lib/Packages/I18N/LanguageNames.pm:19
+msgid "Croatian"
+msgstr "Kroatisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:20
+msgid "Danish"
+msgstr "Deens"
+
+#: lib/Packages/I18N/LanguageNames.pm:21
+msgid "Dutch"
+msgstr "Nederlands"
+
+#: lib/Packages/I18N/LanguageNames.pm:22
+msgid "English"
+msgstr "Engels"
+
+#: lib/Packages/I18N/LanguageNames.pm:23
+msgid "French"
+msgstr "Frans"
+
+#: lib/Packages/I18N/LanguageNames.pm:24
+msgid "German"
+msgstr "Duits"
+
+#: lib/Packages/I18N/LanguageNames.pm:25
+msgid "Italian"
+msgstr "Italiaans"
+
+#: lib/Packages/I18N/LanguageNames.pm:26
+msgid "Japanese"
+msgstr "Japans"
+
+#: lib/Packages/I18N/LanguageNames.pm:27
+msgid "Korean"
+msgstr "Koreaans"
+
+#: lib/Packages/I18N/LanguageNames.pm:28
+msgid "Spanish"
+msgstr "Spaans"
+
+#: lib/Packages/I18N/LanguageNames.pm:29
+msgid "Portuguese (Brasilia)"
+msgstr "Portugees (Brazilië)"
+
+#: lib/Packages/I18N/LanguageNames.pm:30
+msgid "Portuguese (Portugal)"
+msgstr "Portugees (Portugal)"
+
+#: lib/Packages/I18N/LanguageNames.pm:31
+msgid "Chinese"
+msgstr "Chinees"
+
+#: lib/Packages/I18N/LanguageNames.pm:32
+msgid "Swedish"
+msgstr "Zweeds"
+
+#: lib/Packages/I18N/LanguageNames.pm:33
+msgid "Polish"
+msgstr "Pools"
+
+#: lib/Packages/I18N/LanguageNames.pm:34
+msgid "Norwegian"
+msgstr "Noors"
+
+#: lib/Packages/I18N/LanguageNames.pm:37
+msgid "Czech"
+msgstr "Tsjechisch"
+
+#: lib/Packages/I18N/LanguageNames.pm:38
+msgid "Esperanto"
+msgstr "Esperanto"
+
+#: lib/Packages/I18N/LanguageNames.pm:39
+msgid "Hungarian"
+msgstr "Hongaars"
+
+#: lib/Packages/I18N/LanguageNames.pm:40
+msgid "Romanian"
+msgstr "Roemeens"
+
+#: lib/Packages/I18N/LanguageNames.pm:41
+msgid "Slovak"
+msgstr "Slowaaks"
+
+#: lib/Packages/I18N/LanguageNames.pm:42
+msgid "Greek"
+msgstr "Grieks"
+
+#: lib/Packages/I18N/LanguageNames.pm:43
+msgid "Catalan"
+msgstr "Catalaans"
+
+#: lib/Packages/I18N/LanguageNames.pm:44
+msgid "Lithuanian"
+msgstr "Litouws"
+
+#: lib/Packages/I18N/LanguageNames.pm:45
+msgid "Slovene"
+msgstr "Sloveens"
+
+#: lib/Packages/I18N/LanguageNames.pm:46
+msgid "Bulgarian"
+msgstr "Bulgaars"
+
+#: lib/Packages/I18N/LanguageNames.pm:47
+msgid "Ukrainian"
+msgstr "Oekraïens"
+
+#~ msgid "Turkish"
+#~ msgstr "Turks"
+
+#~ msgid "Russian"
+#~ msgstr "Russisch"
diff --git a/po/langs.pot b/po/langs.pot
new file mode 100644 (file)
index 0000000..80d6562
--- /dev/null
@@ -0,0 +1,132 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ./lib/Packages/I18N/LanguageNames.pm:17
+msgid "Arabic"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:18
+msgid "Finnish"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:19
+msgid "Croatian"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:20
+msgid "Danish"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:21
+msgid "Dutch"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:22
+msgid "English"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:23
+msgid "French"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:24
+msgid "German"
+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 (Brasilia)"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:30
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:31
+msgid "Chinese"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:32
+msgid "Swedish"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:33
+msgid "Polish"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:34
+msgid "Norwegian"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:37
+msgid "Czech"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:38
+msgid "Esperanto"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:39
+msgid "Hungarian"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:40
+msgid "Romanian"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:41
+msgid "Slovak"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:42
+msgid "Greek"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:43
+msgid "Catalan"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:44
+msgid "Lithuanian"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:45
+msgid "Slovene"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:46
+msgid "Bulgarian"
+msgstr ""
+
+#: ./lib/Packages/I18N/LanguageNames.pm:47
+msgid "Ukrainian"
+msgstr ""
diff --git a/po/langs.uk.po b/po/langs.uk.po
new file mode 100644 (file)
index 0000000..805a197
--- /dev/null
@@ -0,0 +1,140 @@
+# translation of langs.po to Ukrainian
+# This file is put in the public domain.
+# Eugeniy Meshcheryakov <eugen@univ.kiev.ua>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: langs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-11-01 16:48+0200\n"
+"Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n"
+"Language-Team: Ukrainian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: lib/Packages/I18N/LanguageNames.pm:17
+msgid "Arabic"
+msgstr "Арабська"
+
+#: lib/Packages/I18N/LanguageNames.pm:18
+msgid "Finnish"
+msgstr "Фінська"
+
+#: lib/Packages/I18N/LanguageNames.pm:19
+msgid "Croatian"
+msgstr "Хорватська"
+
+#: lib/Packages/I18N/LanguageNames.pm:20
+msgid "Danish"
+msgstr "Датська"
+
+#: lib/Packages/I18N/LanguageNames.pm:21
+msgid "Dutch"
+msgstr "Голландська"
+
+#: lib/Packages/I18N/LanguageNames.pm:22
+msgid "English"
+msgstr "Англійська"
+
+#: lib/Packages/I18N/LanguageNames.pm:23
+msgid "French"
+msgstr "Французька"
+
+#: lib/Packages/I18N/LanguageNames.pm:24
+msgid "German"
+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 (Brasilia)"
+msgstr "Португальська (Бразилія)"
+
+#: lib/Packages/I18N/LanguageNames.pm:30
+msgid "Portuguese (Portugal)"
+msgstr "Португальська (Португалія)"
+
+#: lib/Packages/I18N/LanguageNames.pm:31
+msgid "Chinese"
+msgstr "Китайська"
+
+#: lib/Packages/I18N/LanguageNames.pm:32
+msgid "Swedish"
+msgstr "Шведська"
+
+#: lib/Packages/I18N/LanguageNames.pm:33
+msgid "Polish"
+msgstr "Польська"
+
+#: lib/Packages/I18N/LanguageNames.pm:34
+msgid "Norwegian"
+msgstr "Норвезька"
+
+#: lib/Packages/I18N/LanguageNames.pm:37
+msgid "Czech"
+msgstr "Чеська"
+
+#: lib/Packages/I18N/LanguageNames.pm:38
+msgid "Esperanto"
+msgstr "Есперанто"
+
+#: lib/Packages/I18N/LanguageNames.pm:39
+msgid "Hungarian"
+msgstr "Угорська"
+
+#: lib/Packages/I18N/LanguageNames.pm:40
+msgid "Romanian"
+msgstr "Румунська"
+
+#: lib/Packages/I18N/LanguageNames.pm:41
+msgid "Slovak"
+msgstr "Словацька"
+
+#: lib/Packages/I18N/LanguageNames.pm:42
+msgid "Greek"
+msgstr "Грецька"
+
+#: lib/Packages/I18N/LanguageNames.pm:43
+msgid "Catalan"
+msgstr "Каталонська"
+
+#: lib/Packages/I18N/LanguageNames.pm:44
+msgid "Lithuanian"
+msgstr "Литовська"
+
+#: lib/Packages/I18N/LanguageNames.pm:45
+msgid "Slovene"
+msgstr "Словенська"
+
+#: lib/Packages/I18N/LanguageNames.pm:46
+msgid "Bulgarian"
+msgstr "Болгарська"
+
+#: lib/Packages/I18N/LanguageNames.pm:47
+msgid "Ukrainian"
+msgstr "Українська"
+
+#~ msgid "Turkish"
+#~ msgstr "Турецька"
+
+#~ msgid "Russian"
+#~ msgstr "Російська"
diff --git a/po/pdo.de.po b/po/pdo.de.po
new file mode 100644 (file)
index 0000000..acb9221
--- /dev/null
@@ -0,0 +1,935 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+# Remarks:
+# *Sektion ==> Abschnitt
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-10-18 21:39+0200\n"
+"Last-Translator: Frank Lichtenheld <djpig@debian.org>\n"
+"Language-Team: debian-l10n-german <debian-l10n-german@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: bin/create_index_pages:63
+#, fuzzy, perl-format
+msgid "List of sections in \"%s\""
+msgstr "Liste der Sektionen in %s"
+
+#: bin/create_index_pages:83
+#, fuzzy
+msgid "List of all packages"
+msgstr "Alle Pakete"
+
+#: bin/create_index_pages:84
+msgid "All packages"
+msgstr "Alle Pakete"
+
+#: bin/create_index_pages:85
+msgid "compact compressed textlist"
+msgstr "kompakte, gepackte Liste im Textformat"
+
+#: bin/create_index_pages:107
+#, perl-format
+msgid "Software Packages in \"%s\""
+msgstr "Software-Pakete in »%s«"
+
+#: bin/create_index_pages:119
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", section %s"
+msgstr "Software-Pakete in »%s«, Sektion %s"
+
+#: bin/create_index_pages:132
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", subsection %s"
+msgstr "Software-Pakete in »%s«, Sektion %s"
+
+#: bin/create_index_pages:145
+#, perl-format
+msgid "Software Packages in \"%s\", priority %s"
+msgstr "Software-Pakete in »%s«, Priorität »%s«"
+
+#. Done
+#: cgi-bin/dispatcher.pl:89
+msgid "search doesn't take any more path elements"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:92
+msgid ""
+"We're supposed to display the homepage here, instead of getting dispatch.pl"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:117
+#, perl-format
+msgid "%s set more than once in path"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:147
+#, perl-format
+msgid "two or more packages specified (%s)"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:234
+msgid "Error"
+msgstr "Fehler"
+
+#: cgi-bin/dispatcher.pl:239
+msgid "search for a package"
+msgstr "ein Paket suchen"
+
+#: lib/Packages/DoDownload.pm:203 lib/Packages/DoFilelist.pm:31
+#: lib/Packages/DoShow.pm:30
+msgid "package not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:206 lib/Packages/DoFilelist.pm:34
+#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+msgid "suite not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:209 lib/Packages/DoFilelist.pm:37
+msgid "architecture not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:212
+#, perl-format
+msgid "more than one suite specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:215
+#, perl-format
+msgid "more than one architecture specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:236 lib/Packages/DoShow.pm:71
+msgid "No such package."
+msgstr "Kein passendes Paket gefunden."
+
+#: lib/Packages/DoDownload.pm:237 lib/Packages/DoShow.pm:72
+#, perl-format
+msgid "<a href=\"%s\">Search for the package</a>"
+msgstr "<a href=\"%s\">Suchen Sie nach dem Paket</a>"
+
+#: lib/Packages/DoDownload.pm:256
+msgid "Package Download Selection"
+msgstr "Paket-Download-Auswahl"
+
+#: lib/Packages/DoDownload.pm:262
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd> on %s machines"
+msgstr "Download-Seite für <kbd>%s</kbd> für %s Rechner"
+
+#: lib/Packages/DoDownload.pm:264
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd>"
+msgstr "Download-Seite für <kbd>%s</kbd>"
+
+#: lib/Packages/DoDownload.pm:268
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at any "
+"of these sites:"
+msgstr ""
+"Sie können die angeforderte Datei aus dem <tt>%s</tt>-Unterverzeichnis auf "
+"jeder dieser Seiten herunterladen:"
+
+#: lib/Packages/DoDownload.pm:270
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at:"
+msgstr ""
+"Sie können die angeforderte Datei aus dem <tt>%s</tt>-Unterverzeichnis "
+"herunterladen:"
+
+#: lib/Packages/DoDownload.pm:276
+msgid ""
+"Debian security updates are currently officially distributed only via "
+"<tt>security.debian.org</tt>."
+msgstr ""
+"Debian-Sicherheitsaktualisierungen werden derzeit offiziell nur über "
+"<tt>security.debian.org</tt> verbreitet."
+
+#: lib/Packages/DoDownload.pm:279 lib/Packages/DoDownload.pm:289
+#: lib/Packages/DoDownload.pm:299 lib/Packages/DoDownload.pm:333
+msgid "North America"
+msgstr "Nordamerika"
+
+#. $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
+#: lib/Packages/DoDownload.pm:280 lib/Packages/DoDownload.pm:290
+#: lib/Packages/DoDownload.pm:300 lib/Packages/DoDownload.pm:311
+#: lib/Packages/DoDownload.pm:323 lib/Packages/DoDownload.pm:335
+msgid "Europe"
+msgstr "Europa"
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#: lib/Packages/DoDownload.pm:283 lib/Packages/DoDownload.pm:303
+#: lib/Packages/DoDownload.pm:315 lib/Packages/DoDownload.pm:339
+msgid "Asia"
+msgstr "Asien"
+
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:286
+msgid ""
+"Note that AMD64 is not officialy included in the Debian archive yet, but the "
+"AMD64 porter group keeps their archive in sync with the official archive as "
+"close as possible. See the <a href=\"http://www.debian.org/ports/amd64/"
+"\">AMD64 ports page</a> for current information."
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @amd64_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:296
+msgid ""
+"Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, "
+"but the GNU/kFreeBSD porter group keeps their archive in sync with the "
+"official archive as close as possible. See the <a href=\"http://www.debian."
+"org/ports/kfreebsd-gnu/\">GNU/kFreeBSD ports page</a> for current "
+"information."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:301 lib/Packages/DoDownload.pm:313
+#: lib/Packages/DoDownload.pm:337
+msgid "Australia and New Zealand"
+msgstr "Australien und Neuseeland"
+
+#: lib/Packages/DoDownload.pm:304 lib/Packages/DoDownload.pm:341
+msgid "South America"
+msgstr "Südamerika"
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @nonus_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:306 lib/Packages/DoDownload.pm:319
+#: lib/Packages/DoDownload.pm:329 lib/Packages/DoDownload.pm:344
+#, perl-format
+msgid ""
+"If none of the above sites are fast enough for you, please see our <a href="
+"\"%s\">complete mirror list</a>."
+msgstr ""
+"Wenn keine der genannten Seiten schnell genug für Sie ist, beachten Sie "
+"bitte ach unsere <a href=\"%s\">komplette Mirrorliste</a>."
+
+#: lib/Packages/DoDownload.pm:347
+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 ""
+
+#: lib/Packages/DoDownload.pm:348
+#, perl-format
+msgid "The MD5sum for <tt>%s</tt> is <strong>%s</strong>"
+msgstr "Die MD5-Summe für <tt>%s</tt> ist <strong>%s</strong>"
+
+#: lib/Packages/DoFilelist.pm:45
+#, perl-format
+msgid ""
+"Filelist of package <em>%s</em> in <em>%s</em> of architecture <em>%s</em>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:46
+#, fuzzy, perl-format
+msgid "Filelist of of package %s/%s/%s"
+msgstr "Neue Pakete in %s"
+
+#: lib/Packages/DoFilelist.pm:57
+#, fuzzy
+msgid "No such package in this suite on this architecture."
+msgstr "Keine Pakete in dieser Sektion in dieser Suite"
+
+#: lib/Packages/DoFilelist.pm:69
+msgid "Invalid suite/architecture combination"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:26
+msgid "keyword not valid or missing"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:32 lib/Packages/DoSearchContents.pm:28
+msgid "keyword too short (keywords need to have at least two characters)"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:105
+#, perl-format
+msgid ""
+"Your search was too wide so we will only display exact matches. At least <em>"
+"%s</em> results have been omitted and will not be displayed. Please consider "
+"using a longer keyword or more keywords."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:111 lib/Packages/DoSearch.pm:113
+msgid "Can't find that package."
+msgstr "Kann das Paket nicht finden."
+
+#: lib/Packages/DoSearch.pm:114
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed due to the search "
+"parameters."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:124
+msgid "Can't find that string."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:126
+#, perl-format
+msgid ""
+"Can't find that string, at least not in that suite (%s, section %s) and on "
+"that architecture (%s)."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:131
+#, perl-format
+msgid ""
+"You have searched only for words exactly matching your keywords. You can try "
+"to search <a href=\"%s\">allowing subword matching</a>."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:135
+#, fuzzy, perl-format
+msgid ""
+"You can try a different search on the <a href=\"%s\">Packages search page</"
+"a>."
+msgstr ""
+"Zurück zur: <a href=\"%s/\">Debian-Projekt-Homepage</a> || <a href=\"%s/"
+"\">Paketsuche</a>"
+
+#: lib/Packages/DoSearch.pm:139
+msgid "Package Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:141
+msgid "Debian Package Search Results"
+msgstr "Debian-Paketsuche: Ergebnisse"
+
+#: lib/Packages/DoSearch.pm:229
+#, perl-format
+msgid "Found <em>%s</em> matching packages."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:236
+msgid "Exact hits"
+msgstr "Genaue Treffer"
+
+#: lib/Packages/DoSearch.pm:243
+msgid "Other hits"
+msgstr "Andere Treffer"
+
+#: lib/Packages/DoSearch.pm:253
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed because you requested "
+"only exact matches."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:265
+#, perl-format
+msgid "Package %s"
+msgstr "Paket: %s"
+
+#: lib/Packages/DoSearch.pm:296
+msgid "also provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:303
+msgid "provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:315
+#, perl-format
+msgid "Source package %s"
+msgstr "Quellcode-Paket %s"
+
+#: lib/Packages/DoSearch.pm:331
+msgid "Binary packages: "
+msgstr "Binäre Pakete: "
+
+#: lib/Packages/DoSearchContents.pm:34
+#, perl-format
+msgid "more than one suite specified for contents search (%s)"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:78
+msgid "Exact and fullfilenamesearch don't go along"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:116
+msgid ""
+"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 ""
+
+#: lib/Packages/DoSearchContents.pm:120
+#, fuzzy
+msgid "Nothing found"
+msgstr "Nicht gefunden"
+
+#: lib/Packages/DoSearchContents.pm:123
+#, fuzzy
+msgid "Package Contents Search Results"
+msgstr "Debian-Paketsuche: Ergebnisse"
+
+#: lib/Packages/DoSearchContents.pm:125
+#, fuzzy
+msgid "Debian Package Contents Search Results"
+msgstr "Debian-Paketsuche: Ergebnisse"
+
+#: lib/Packages/DoSearchContents.pm:141
+#, perl-format
+msgid "Found %s results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#: lib/Packages/DoShow.pm:380
+msgid "File"
+msgstr "Datei"
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#, fuzzy
+msgid "Packages"
+msgstr "Paket: %s"
+
+#: lib/Packages/DoShow.pm:36
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:96
+msgid "Package not available in this suite."
+msgstr "Paket in dieser Suite nicht verfügbar"
+
+#. $long_desc = conv_desc( $lang, $long_desc );
+#. $short_desc = conv_desc( $lang, $short_desc );
+#: lib/Packages/DoShow.pm:154 lib/Packages/DoShow.pm:261
+#: lib/Packages/DoShow.pm:304
+msgid "Distribution:"
+msgstr "Distribution:"
+
+#: lib/Packages/DoShow.pm:155 lib/Packages/DoShow.pm:305
+msgid "Overview over this suite"
+msgstr "Übersicht über diese Suite"
+
+#: lib/Packages/DoShow.pm:158 lib/Packages/DoShow.pm:265
+#: lib/Packages/DoShow.pm:308
+msgid "Section:"
+msgstr "Sektion:"
+
+#: lib/Packages/DoShow.pm:159 lib/Packages/DoShow.pm:266
+#: lib/Packages/DoShow.pm:309
+msgid "All packages in this section"
+msgstr "Alle Pakete in dieser Sektion"
+
+#: lib/Packages/DoShow.pm:164
+#, perl-format
+msgid "Package: %s (%s)"
+msgstr "Paket: %s (%s)"
+
+#: lib/Packages/DoShow.pm:171
+msgid "Versions:"
+msgstr "Versionen:"
+
+#: lib/Packages/DoShow.pm:174
+msgid "This is also a virtual package provided by "
+msgstr ""
+
+#: lib/Packages/DoShow.pm:178 lib/Packages/DoShow.pm:323
+msgid "Experimental package"
+msgstr "Experimentelles Paket"
+
+#: lib/Packages/DoShow.pm:179 lib/Packages/DoShow.pm:324
+#, fuzzy
+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. If you ignore this warning and install it nevertheless, you "
+"do it on your own risk."
+msgstr ""
+"Warnung: Dieses Paket ist aus der <span class=\"pred\">experimental</span>-"
+"Distribution. Dies bedeutet, dass es höchstwahrscheinlich instabil oder "
+"fehlerhaft ist und sogar Datenverlust verursachen kann. Wenn Sie diese "
+"Warnung ignorieren und es dennoch installieren, so tun Sie dies auf eigenes "
+"Risiko."
+
+#: lib/Packages/DoShow.pm:183 lib/Packages/DoShow.pm:328
+msgid "debian-installer udeb package"
+msgstr "debian-installer udeb-Paket"
+
+#: lib/Packages/DoShow.pm:184 lib/Packages/DoShow.pm:329
+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 Debian system."
+msgstr ""
+"Warnung: Dieses Paket ist nur dazu gedacht, um <a href=\"http://www.debian."
+"org/devel/debian-installer\">debian-installer</a>-Images zu erzeugen. "
+"Installieren Sie es nicht auf einem normalen Debian-System."
+
+#: lib/Packages/DoShow.pm:205 lib/Packages/DoShow.pm:354
+#, perl-format
+msgid "Other Packages Related to %s"
+msgstr "Andere Pakete in Beziehung zu %s"
+
+#: lib/Packages/DoShow.pm:207 lib/Packages/DoShow.pm:356
+#, fuzzy, perl-format
+msgid ""
+"Note that the <strong>experimental</strong> distribution is not self-"
+"contained; missing dependencies are likely found in the <a href=\"%s"
+"\">unstable</a> distribution."
+msgstr ""
+"Beachten Sie, dass die »<span class=\"pred\">experimental</span>«-"
+"Distribution nicht abgeschlossen ist; fehlende Abhängigkeiten werden mit "
+"großer Wahrscheinlichkeit in der »<a href=\"../../unstable/\">unstable</a>«-"
+"Distribution gefunden."
+
+#: lib/Packages/DoShow.pm:210
+msgid "depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:211
+msgid "recommends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:212
+msgid "suggests"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:223
+#, perl-format
+msgid "Download %s\n"
+msgstr "%s herunterladen\n"
+
+#: lib/Packages/DoShow.pm:225
+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 ""
+"Die Download-Tabelle verlinkt zum Download des Pakets und zu einer "
+"Dateiliste. Zusätzlich enthält sie Informationen zur Größe der Paketdatei "
+"und der Größe im installierten Zustand."
+
+#: lib/Packages/DoShow.pm:226
+msgid "Download for all available architectures"
+msgstr "Download für alle verfügbaren Architekturen"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Architecture"
+msgstr "Architektur"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Files"
+msgstr "Dateien"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Installed Size"
+msgstr "Größe (installiert)"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Package Size"
+msgstr "Paketgröße"
+
+#: lib/Packages/DoShow.pm:235
+msgid "list of files"
+msgstr "Liste der Dateien"
+
+#: lib/Packages/DoShow.pm:238
+#, fuzzy
+msgid "no current information"
+msgstr "Weitere Informationen über %s"
+
+#. unless $page->is_virtual
+#: lib/Packages/DoShow.pm:259
+msgid "virtual package"
+msgstr "Virtuelles Paket"
+
+#: lib/Packages/DoShow.pm:262
+msgid "Overview over this distribution"
+msgstr "Übersicht über diese Distribution"
+
+#: lib/Packages/DoShow.pm:271
+#, perl-format
+msgid "Virtual Package: %s"
+msgstr "Virtuelles Paket: %s"
+
+#: lib/Packages/DoShow.pm:275
+#, perl-format
+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 ""
+"Dies ist ein <em>virtuelles Paket</em>. Sehen Sie in die <a href=\"%s"
+"\">Debian-Policy</a> für eine <a href=\"%sch-binary.html#s-virtual_pkg"
+"\">Definition von virtuellen Paketen</a>."
+
+#: lib/Packages/DoShow.pm:278
+#, perl-format
+msgid "Packages providing %s"
+msgstr "Pakete, die %s bereitstellen"
+
+#: lib/Packages/DoShow.pm:314
+#, fuzzy, perl-format
+msgid "Source Package: %s (%s)"
+msgstr "Quellcode-Paket: %s (%s)"
+
+#: lib/Packages/DoShow.pm:336
+msgid "The following binary packages are built from this source package:"
+msgstr "Die folgenden Binärpakete werden aus diesem Quellcode-Paket gebaut:"
+
+#: lib/Packages/DoShow.pm:360
+msgid "build-depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:361
+msgid "build-depends-indep"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:372
+#, perl-format
+msgid "Download %s"
+msgstr "%s herunterladen"
+
+#: lib/Packages/DoShow.pm:378
+msgid "Download information for the files of this source package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:381
+msgid "Size (in kB)"
+msgstr "Größe (in kB)"
+
+#: lib/Packages/DoShow.pm:382
+msgid "md5sum"
+msgstr "md5sum"
+
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "Details of source package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:428
+#, perl-format
+msgid "Details of package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:430
+#, fuzzy, perl-format
+msgid "Details of source package %s in %s"
+msgstr "Quellcode-Pakete in »%s«"
+
+#: lib/Packages/DoShow.pm:431
+#, fuzzy, perl-format
+msgid "Details of package %s in %s"
+msgstr "Neue Pakete in %s"
+
+#: lib/Packages/HTML.pm:93
+msgid "Not available"
+msgstr "Paket nicht verfügbar"
+
+#: lib/Packages/HTML.pm:114
+#, perl-format
+msgid "More Information on %s"
+msgstr "Weitere Informationen über %s"
+
+#: lib/Packages/HTML.pm:119
+#, perl-format
+msgid "Check for <a href=\"%s\">Bug Reports</a> about %s."
+msgstr "Suchen Sie <a href=\"%s\">Fehlerberichte</a> zu %s."
+
+#: lib/Packages/HTML.pm:131
+msgid "Source Package:"
+msgstr "Quellcode-Paket:"
+
+#: lib/Packages/HTML.pm:133
+msgid "Download"
+msgstr "Download"
+
+#: lib/Packages/HTML.pm:136
+msgid "Not found"
+msgstr "Nicht gefunden"
+
+#: lib/Packages/HTML.pm:169
+#, perl-format
+msgid "View the <a href=\"%s\">Debian changelog</a>"
+msgstr "Das <a href=\"%s\">Debian-Changelog</a>"
+
+#: lib/Packages/HTML.pm:174
+#, perl-format
+msgid "View the <a href=\"%s\">copyright file</a>"
+msgstr "Die <a href=\"%s\">Copyright-Datei</a>"
+
+#: lib/Packages/HTML.pm:187
+#, perl-format
+msgid "%s is responsible for this Debian package."
+msgstr "%s betreut dieses Debian-Paket."
+
+#: lib/Packages/HTML.pm:199
+#, perl-format
+msgid " and %s are responsible for this Debian package."
+msgstr " und %s betreuen dieses Debian-Paket."
+
+#: lib/Packages/HTML.pm:204
+#, perl-format
+msgid "See the <a href=\"%s\">developer information for %s</a>."
+msgstr "<a href=\"%s\">Entwicklerinformationen für %s</a>."
+
+#: lib/Packages/HTML.pm:210
+#, perl-format
+msgid "Search for <a href=\"%s\">other versions of %s</a>"
+msgstr "Suchen Sie <a href=\"%s\">andere Versionen von %s</a>"
+
+#: lib/Packages/HTML.pm:277
+msgid "not"
+msgstr "nicht"
+
+#: lib/Packages/HTML.pm:316
+msgid "Package not available"
+msgstr "Paket nicht verfügbar"
+
+#: lib/Packages/HTML.pm:322
+msgid "or"
+msgstr "oder"
+
+#: lib/Packages/HTML.pm:410 lib/Packages/HTML.pm:501
+msgid "Search"
+msgstr "Suche"
+
+#: lib/Packages/HTML.pm:411
+msgid "Full options"
+msgstr "Alle Optionen"
+
+#: lib/Packages/HTML.pm:412
+msgid "Search on:"
+msgstr "Suche in:"
+
+#: lib/Packages/HTML.pm:413
+msgid "Package Names"
+msgstr "Paketnamen"
+
+#: lib/Packages/HTML.pm:414
+msgid "Descriptions"
+msgstr "Beschreibungen"
+
+#: lib/Packages/HTML.pm:415
+msgid "Source package names"
+msgstr "Quellcodepaketnamen"
+
+#: lib/Packages/HTML.pm:416
+msgid "Package contents"
+msgstr "Paket-Inhalt"
+
+#: lib/Packages/HTML.pm:479
+msgid "Debian Project"
+msgstr "Debian-Projekt"
+
+#: lib/Packages/HTML.pm:493
+msgid "Skip Site Navigation"
+msgstr "Überspringen der Navigation"
+
+#: lib/Packages/HTML.pm:495
+msgid "About&nbsp;Debian"
+msgstr "Über&nbsp;Debian"
+
+#: lib/Packages/HTML.pm:496
+msgid "News"
+msgstr "Neues"
+
+#: lib/Packages/HTML.pm:497
+msgid "Getting&nbsp;Debian"
+msgstr "Debian&nbsp;besorgen"
+
+#: lib/Packages/HTML.pm:498
+msgid "Support"
+msgstr "Unterstützung"
+
+#: lib/Packages/HTML.pm:499
+msgid "Development"
+msgstr "Entwicklung"
+
+#: lib/Packages/HTML.pm:500
+msgid "Site map"
+msgstr "Sitemap"
+
+#: lib/Packages/HTML.pm:530
+#, perl-format
+msgid ""
+"Back to: <a href=\"%s/\">Debian Project homepage</a> || <a href=\"%s/"
+"\">Packages search page</a>"
+msgstr ""
+"Zurück zur: <a href=\"%s/\">Debian-Projekt-Homepage</a> || <a href=\"%s/"
+"\">Paketsuche</a>"
+
+#: lib/Packages/HTML.pm:533
+#, perl-format
+msgid ""
+"To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. "
+"For other contact information, see the Debian <a href=\"%s/contact\">contact "
+"page</a>."
+msgstr ""
+"Um ein Problem mit der Web-Site zu berichten, schreiben Sie eine E-Mail an "
+"<a href=\"mailto:%s\">%s</a> (auf Englisch). Für weitere "
+"Kontaktinformationen sollten Sie auf die Debian-<a href=\"%s/contact"
+"\">Kontakt-Seite</a> schauen."
+
+#: lib/Packages/HTML.pm:535
+msgid "Last Modified: "
+msgstr "Zuletzt geändert: "
+
+#: lib/Packages/HTML.pm:537
+#, perl-format
+msgid ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; See "
+"<a href=\"%s/license\">license terms</a>."
+msgstr ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; <a "
+"href=\"%s/license\">Lizenzbestimmungen</a>."
+
+#: lib/Packages/HTML.pm:538
+msgid ""
+"Debian is a registered trademark of Software in the Public Interest, Inc."
+msgstr ""
+"Debian ist ein eingetragenes Warenzeichen von Software in the Public "
+"Interest, Inc."
+
+#: lib/Packages/HTML.pm:555
+msgid "This page is also available in the following languages:\n"
+msgstr "Diese Seite gibt es auch in den folgenden Sprachen:\n"
+
+#: lib/Packages/HTML.pm:574
+#, perl-format
+msgid "How to set <a href=\"%s\">the default document language</a>"
+msgstr "Wie stellt man <a href=\"%s\">die Standardsprache</a> ein"
+
+#: lib/Packages/Page.pm:47
+msgid "package has bad maintainer field"
+msgstr ""
+
+#~ msgid "Virtual package"
+#~ msgstr "Virtuelles Paket"
+
+#~ msgid ""
+#~ "Copyright (C) 1997-2005 SPI;\n"
+#~ "See <URL:http://www.debian.org/license> for the license terms.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Copyright (c) 1997-2005 SPI;\n"
+#~ "Unter <URL:http://www.debian.org/license> finden Sie die "
+#~ "Lizenzbedingungen.\n"
+#~ "\n"
+
+#~ msgid "No essential packages in this suite"
+#~ msgstr "Keine essentiellen Pakete in dieser Suite"
+
+#~ msgid "Software Packages in \"%s\", essential packages"
+#~ msgstr "Software-Pakete in »%s«, essentielle Pakete"
+
+#~ msgid "No packages with this priority in this suite"
+#~ msgstr "Keine Pakete mit dieser Priorität in dieser Suite"
+
+#~ msgid ""
+#~ "Warning: These packages are intended for the use in building <a href="
+#~ "\"http://www.debian.org/devel/debian-installer/\">debian-installer</a> "
+#~ "images only. Do not install them on a normal Debian system."
+#~ msgstr ""
+#~ "Warnung: Diese Pakete sind nur dazu gedacht, um <a href=\"http://www."
+#~ "debian.org/devel/debian-installer\">debian-installer</a>-Images zu "
+#~ "erzeugen. Installieren Sie sie nicht auf einem normalen Debian-System."
+
+#~ msgid "yes"
+#~ msgstr "ja"
+
+#~ msgid "Essential"
+#~ msgstr "Essentiell"
+
+#~ msgid "Priority"
+#~ msgstr "Priorität"
+
+#~ msgid "Section"
+#~ msgstr "Sektion"
+
+#~ msgid "Maintainer"
+#~ msgstr "Betreuer"
+
+#~ msgid "Version"
+#~ msgstr "Version"
+
+#~ msgid "Size is measured in kBytes."
+#~ msgstr "Die Größe wird in kBytes angegeben."
+
+#~ msgid ""
+#~ "Packages that were added to the unstable Debian archive during the last 7 "
+#~ "days."
+#~ msgstr ""
+#~ "Pakete, die dem unstable Debian-Archiv während der letzten 7 Tage "
+#~ "hinzugefügt wurden."
+
+#~ msgid ""
+#~ "This information is also available as an <a href=\"newpkg_%s.%s.rdf\">RSS "
+#~ "feed</a>."
+#~ msgstr ""
+#~ "Diese Informationen sind auch als <a href=\"newpkg_%s.%s.rdf\">RSS-Feed</"
+#~ "a> verfügbar."
+
+#~ msgid ""
+#~ "The following packages were added to the unstable Debian archive during "
+#~ "the last 7 days."
+#~ msgstr ""
+#~ "Die folgenden Pakete wurden dem unstable Debian-Archiv während der "
+#~ "letzten 7 Tage hinzugefügt."
+
+#~ msgid "New Packages in \"%s\""
+#~ msgstr "Neue Pakete in »%s«"
+
+#~ msgid ""
+#~ "Warning: The <span class=\"pred\">experimental</span> distribution "
+#~ "contains software that is likely unstable or buggy and may even cause "
+#~ "data loss. If you ignore this warning and install it nevertheless, you do "
+#~ "it on your own risk."
+#~ msgstr ""
+#~ "Warnung: Die <span class=\"pred\">experimental</span>-Distribution "
+#~ "enthält Software die höchstwahrscheinlich instabil oder fehlerhaft ist "
+#~ "und sogar Datenverlust verursachen kann. Wenn Sie diese Warnung "
+#~ "ignorieren und es dennoch installieren, so tun Sie dies auf eigenes "
+#~ "Risiko."
+
+#~ msgid "Size:"
+#~ msgstr "Größe:"
+
+#~ msgid ""
+#~ "Users of experimental packages are encouraged to contact the package "
+#~ "maintainers directly in case of problems."
+#~ msgstr ""
+#~ "Benutzer von experimentellen Paketen sollten direkt den Paketbetreuer im "
+#~ "Falle von Problemen kontaktieren."
+
+#~ msgid ""
+#~ "Warning: This package is from the <span class=\"pred\">experimental</"
+#~ "span> distribution. That means it is likely unstable or buggy, and it may "
+#~ "even cause data loss. If you ignore this warning and install it "
+#~ "nevertheless, you do it on your own risk."
+#~ msgstr ""
+#~ "Warnung: Dieses Paket ist aus der <span class=\"pred\">experimental</"
+#~ "span>-Distribution. Dies bedeutet, dass es höchstwahrscheinlich instabil "
+#~ "oder fehlerhaft ist und sogar Datenverlust verursachen kann. Wenn Sie "
+#~ "diese Warnung ignorieren und es dennoch installieren, so tun Sie dies auf "
+#~ "eigenes Risiko."
+
+#, fuzzy
+#~ msgid ""
+#~ "Note that the \"<span class=\"pred\">experimental</span>\" distribution "
+#~ "is not self-contained; missing dependencies are likely found in the \"<a "
+#~ "href=\"/unstable/\">unstable</a>\" distribution."
+#~ msgstr ""
+#~ "Beachten Sie, dass die »<span class=\"pred\">experimental</span>«-"
+#~ "Distribution nicht abgeschlossen ist; fehlende Abhängigkeiten werden mit "
+#~ "großer Wahrscheinlichkeit in der »<a href=\"../../unstable/\">unstable</"
+#~ "a>«-Distribution gefunden."
diff --git a/po/pdo.fi.po b/po/pdo.fi.po
new file mode 100644 (file)
index 0000000..fe63bf7
--- /dev/null
@@ -0,0 +1,919 @@
+# Finnish translations for packages.debian.org
+# This file is put in the public domain.
+# Tommi Vainikainen <thv+debian@iki.fi>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pdo\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-10-17 22:05+0300\n"
+"Last-Translator: Tommi Vainikainen <thv+debian@iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: bin/create_index_pages:63
+#, fuzzy, perl-format
+msgid "List of sections in \"%s\""
+msgstr "Osastoluettelo jakelussa %s"
+
+#: bin/create_index_pages:83
+msgid "List of all packages"
+msgstr "Luettelo kaikista paketeista"
+
+#: bin/create_index_pages:84
+msgid "All packages"
+msgstr "Kaikki paketit"
+
+#: bin/create_index_pages:85
+msgid "compact compressed textlist"
+msgstr "pieni tiivistetty tekstiluettelo"
+
+#: bin/create_index_pages:107
+#, perl-format
+msgid "Software Packages in \"%s\""
+msgstr "Ohjelmistopaketit jakelussa \"%s\""
+
+#: bin/create_index_pages:119
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", section %s"
+msgstr "Ohjelmistopaketit jakelun \"%s\" osastossa %s"
+
+#: bin/create_index_pages:132
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", subsection %s"
+msgstr "Ohjelmistopaketit jakelun \"%s\" osastossa %s"
+
+#: bin/create_index_pages:145
+#, perl-format
+msgid "Software Packages in \"%s\", priority %s"
+msgstr "Ohjelmistopaketit jakelussa \"%s\" tärkeysasteella %s"
+
+#. Done
+#: cgi-bin/dispatcher.pl:89
+msgid "search doesn't take any more path elements"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:92
+msgid ""
+"We're supposed to display the homepage here, instead of getting dispatch.pl"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:117
+#, perl-format
+msgid "%s set more than once in path"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:147
+#, fuzzy, perl-format
+msgid "two or more packages specified (%s)"
+msgstr "Lähdepaketti: %s (%s)"
+
+#: cgi-bin/dispatcher.pl:234
+msgid "Error"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:239
+#, fuzzy
+msgid "search for a package"
+msgstr "Luettelo kaikista paketeista"
+
+#: lib/Packages/DoDownload.pm:203 lib/Packages/DoFilelist.pm:31
+#: lib/Packages/DoShow.pm:30
+msgid "package not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:206 lib/Packages/DoFilelist.pm:34
+#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+msgid "suite not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:209 lib/Packages/DoFilelist.pm:37
+msgid "architecture not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:212
+#, perl-format
+msgid "more than one suite specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:215
+#, perl-format
+msgid "more than one architecture specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:236 lib/Packages/DoShow.pm:71
+#, fuzzy
+msgid "No such package."
+msgstr "Lähdepaketti"
+
+#: lib/Packages/DoDownload.pm:237 lib/Packages/DoShow.pm:72
+#, perl-format
+msgid "<a href=\"%s\">Search for the package</a>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:256
+msgid "Package Download Selection"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:262
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd> on %s machines"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:264
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:268
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at any "
+"of these sites:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:270
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:276
+msgid ""
+"Debian security updates are currently officially distributed only via "
+"<tt>security.debian.org</tt>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:279 lib/Packages/DoDownload.pm:289
+#: lib/Packages/DoDownload.pm:299 lib/Packages/DoDownload.pm:333
+msgid "North America"
+msgstr ""
+
+#. $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
+#: lib/Packages/DoDownload.pm:280 lib/Packages/DoDownload.pm:290
+#: lib/Packages/DoDownload.pm:300 lib/Packages/DoDownload.pm:311
+#: lib/Packages/DoDownload.pm:323 lib/Packages/DoDownload.pm:335
+msgid "Europe"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#: lib/Packages/DoDownload.pm:283 lib/Packages/DoDownload.pm:303
+#: lib/Packages/DoDownload.pm:315 lib/Packages/DoDownload.pm:339
+msgid "Asia"
+msgstr ""
+
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:286
+msgid ""
+"Note that AMD64 is not officialy included in the Debian archive yet, but the "
+"AMD64 porter group keeps their archive in sync with the official archive as "
+"close as possible. See the <a href=\"http://www.debian.org/ports/amd64/"
+"\">AMD64 ports page</a> for current information."
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @amd64_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:296
+msgid ""
+"Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, "
+"but the GNU/kFreeBSD porter group keeps their archive in sync with the "
+"official archive as close as possible. See the <a href=\"http://www.debian."
+"org/ports/kfreebsd-gnu/\">GNU/kFreeBSD ports page</a> for current "
+"information."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:301 lib/Packages/DoDownload.pm:313
+#: lib/Packages/DoDownload.pm:337
+msgid "Australia and New Zealand"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:304 lib/Packages/DoDownload.pm:341
+msgid "South America"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @nonus_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:306 lib/Packages/DoDownload.pm:319
+#: lib/Packages/DoDownload.pm:329 lib/Packages/DoDownload.pm:344
+#, perl-format
+msgid ""
+"If none of the above sites are fast enough for you, please see our <a href="
+"\"%s\">complete mirror list</a>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:347
+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 ""
+
+#: lib/Packages/DoDownload.pm:348
+#, perl-format
+msgid "The MD5sum for <tt>%s</tt> is <strong>%s</strong>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:45
+#, perl-format
+msgid ""
+"Filelist of package <em>%s</em> in <em>%s</em> of architecture <em>%s</em>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:46
+#, fuzzy, perl-format
+msgid "Filelist of of package %s/%s/%s"
+msgstr "Luettelo kaikista paketeista"
+
+#: lib/Packages/DoFilelist.pm:57
+#, fuzzy
+msgid "No such package in this suite on this architecture."
+msgstr "Kokoelman tässä osastossa ei ole paketteja"
+
+#: lib/Packages/DoFilelist.pm:69
+msgid "Invalid suite/architecture combination"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:26
+msgid "keyword not valid or missing"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:32 lib/Packages/DoSearchContents.pm:28
+msgid "keyword too short (keywords need to have at least two characters)"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:105
+#, perl-format
+msgid ""
+"Your search was too wide so we will only display exact matches. At least <em>"
+"%s</em> results have been omitted and will not be displayed. Please consider "
+"using a longer keyword or more keywords."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:111 lib/Packages/DoSearch.pm:113
+msgid "Can't find that package."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:114
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed due to the search "
+"parameters."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:124
+msgid "Can't find that string."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:126
+#, perl-format
+msgid ""
+"Can't find that string, at least not in that suite (%s, section %s) and on "
+"that architecture (%s)."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:131
+#, perl-format
+msgid ""
+"You have searched only for words exactly matching your keywords. You can try "
+"to search <a href=\"%s\">allowing subword matching</a>."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:135
+#, fuzzy, perl-format
+msgid ""
+"You can try a different search on the <a href=\"%s\">Packages search page</"
+"a>."
+msgstr ""
+"Takaisin: <a href=\"%s/\">Debian-projektin kotisivulle</a> || <a href=\"%s/"
+"\">Pakettien hakusivulle</a>"
+
+#: lib/Packages/DoSearch.pm:139
+msgid "Package Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:141
+#, fuzzy
+msgid "Debian Package Search Results"
+msgstr "Kaikki jakelun \"%s\" Debian-paketit"
+
+#: lib/Packages/DoSearch.pm:229
+#, perl-format
+msgid "Found <em>%s</em> matching packages."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:236
+msgid "Exact hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:243
+msgid "Other hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:253
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed because you requested "
+"only exact matches."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:265
+#, fuzzy, perl-format
+msgid "Package %s"
+msgstr "Paketti: %s (%s)"
+
+#: lib/Packages/DoSearch.pm:296
+msgid "also provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:303
+msgid "provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:315
+#, fuzzy, perl-format
+msgid "Source package %s"
+msgstr "Lähdepaketti"
+
+#: lib/Packages/DoSearch.pm:331
+#, fuzzy
+msgid "Binary packages: "
+msgstr "näennäispaketti"
+
+#: lib/Packages/DoSearchContents.pm:34
+#, perl-format
+msgid "more than one suite specified for contents search (%s)"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:78
+msgid "Exact and fullfilenamesearch don't go along"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:116
+msgid ""
+"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 ""
+
+#: lib/Packages/DoSearchContents.pm:120
+#, fuzzy
+msgid "Nothing found"
+msgstr "Ei löytynyt"
+
+#: lib/Packages/DoSearchContents.pm:123
+msgid "Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:125
+msgid "Debian Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:141
+#, perl-format
+msgid "Found %s results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#: lib/Packages/DoShow.pm:380
+msgid "File"
+msgstr "Tiedosto"
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#, fuzzy
+msgid "Packages"
+msgstr "Paketin koko"
+
+#: lib/Packages/DoShow.pm:36
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:96
+#, fuzzy
+msgid "Package not available in this suite."
+msgstr "Paketti ei saatavilla"
+
+#. $long_desc = conv_desc( $lang, $long_desc );
+#. $short_desc = conv_desc( $lang, $short_desc );
+#: lib/Packages/DoShow.pm:154 lib/Packages/DoShow.pm:261
+#: lib/Packages/DoShow.pm:304
+msgid "Distribution:"
+msgstr "Jakelu:"
+
+#: lib/Packages/DoShow.pm:155 lib/Packages/DoShow.pm:305
+#, fuzzy
+msgid "Overview over this suite"
+msgstr "Tämän jakelun yleiskuva"
+
+#: lib/Packages/DoShow.pm:158 lib/Packages/DoShow.pm:265
+#: lib/Packages/DoShow.pm:308
+msgid "Section:"
+msgstr "Osasto:"
+
+#: lib/Packages/DoShow.pm:159 lib/Packages/DoShow.pm:266
+#: lib/Packages/DoShow.pm:309
+msgid "All packages in this section"
+msgstr "Kaikki tämän osaston paketit"
+
+#: lib/Packages/DoShow.pm:164
+#, perl-format
+msgid "Package: %s (%s)"
+msgstr "Paketti: %s (%s)"
+
+#: lib/Packages/DoShow.pm:171
+msgid "Versions:"
+msgstr "Versiot:"
+
+#: lib/Packages/DoShow.pm:174
+msgid "This is also a virtual package provided by "
+msgstr ""
+
+#: lib/Packages/DoShow.pm:178 lib/Packages/DoShow.pm:323
+msgid "Experimental package"
+msgstr "Kokeellinen paketti"
+
+#: lib/Packages/DoShow.pm:179 lib/Packages/DoShow.pm:324
+#, fuzzy
+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. If you ignore this warning and install it nevertheless, you "
+"do it on your own risk."
+msgstr ""
+"Varoitus: Tämä paketti on <span class=\"pred\">kokeellisesta</span> "
+"jakelusta. Tämä tarkoittaa, että se on luultavasti epävakaa tai buginen, ja "
+"voi aiheuttaa jopa tiedonhäviötä. Mikäli ohitat tämän varoituksen ja asennat "
+"paketin kaikesta huolimatta, otat vastuun itsellesi."
+
+#: lib/Packages/DoShow.pm:183 lib/Packages/DoShow.pm:328
+msgid "debian-installer udeb package"
+msgstr "debian-asentimen udeb-paketti"
+
+#: lib/Packages/DoShow.pm:184 lib/Packages/DoShow.pm:329
+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 Debian system."
+msgstr ""
+"Varoitus: Tämä paketti on tarkoitettu käytettäväksi vain rakennettaessa <a "
+"href=\"http://www.debian.org/devel/debian-installer\">debian-asentimen</a> "
+"vedoksia. Älä asenna normaaliin Debian-järjestelmään."
+
+#: lib/Packages/DoShow.pm:205 lib/Packages/DoShow.pm:354
+#, perl-format
+msgid "Other Packages Related to %s"
+msgstr "Muut pakettiin %s liittyvät paketit"
+
+#: lib/Packages/DoShow.pm:207 lib/Packages/DoShow.pm:356
+#, fuzzy, perl-format
+msgid ""
+"Note that the <strong>experimental</strong> distribution is not self-"
+"contained; missing dependencies are likely found in the <a href=\"%s"
+"\">unstable</a> distribution."
+msgstr ""
+"Huomaa, että \"<span class=\"pred\">kokeellinen</span>\" jakelu ei ole "
+"itsenäinen kokonaisuus. Puuttuvat riippuvuudet löytyvät luultavasti \"<a "
+"href=\"../../unstable/\">epävakaasta</a>\" jakelusta."
+
+#: lib/Packages/DoShow.pm:210
+msgid "depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:211
+msgid "recommends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:212
+msgid "suggests"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:223
+#, perl-format
+msgid "Download %s\n"
+msgstr "Imuroi %s\n"
+
+#: lib/Packages/DoShow.pm:225
+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 ""
+"Imurointitaulukko linkittää paketin imurointiin ja tiedostokatsaukseen. "
+"Lisäksi se antaa tietoa paketin koosta sekä asennukseen tarvittavasta "
+"levytilasta."
+
+#: lib/Packages/DoShow.pm:226
+msgid "Download for all available architectures"
+msgstr "Imurointi kaikille saataville arkkitehtuureille"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Architecture"
+msgstr "Arkkitehtuuri"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Files"
+msgstr "Tiedostot"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Installed Size"
+msgstr "Koko asennettuna"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Package Size"
+msgstr "Paketin koko"
+
+#: lib/Packages/DoShow.pm:235
+msgid "list of files"
+msgstr "tiedostoluettelo"
+
+#: lib/Packages/DoShow.pm:238
+#, fuzzy
+msgid "no current information"
+msgstr "Lisätietoa paketista %s"
+
+#. unless $page->is_virtual
+#: lib/Packages/DoShow.pm:259
+msgid "virtual package"
+msgstr "näennäispaketti"
+
+#: lib/Packages/DoShow.pm:262
+msgid "Overview over this distribution"
+msgstr "Tämän jakelun yleiskuva"
+
+#: lib/Packages/DoShow.pm:271
+#, perl-format
+msgid "Virtual Package: %s"
+msgstr "Näennäispaketti: %s"
+
+#: lib/Packages/DoShow.pm:275
+#, perl-format
+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 ""
+"Tämä on <em>näennäispaketti</em>. Katso <a href=\"%s\">Debianin linjan "
+"kuvaksesta</a> <a href=\"%sch-binary.html#s-virtual_pkg\">näennäispaketin "
+"määritelmä</a>."
+
+#: lib/Packages/DoShow.pm:278
+#, perl-format
+msgid "Packages providing %s"
+msgstr "Paketit, jotka tarjoavat paketin %s"
+
+#: lib/Packages/DoShow.pm:314
+#, fuzzy, perl-format
+msgid "Source Package: %s (%s)"
+msgstr "Lähdepaketti: %s (%s)"
+
+#: lib/Packages/DoShow.pm:336
+msgid "The following binary packages are built from this source package:"
+msgstr "Seuraavat binääripaketit on käännetty tästä lähdepaketista:"
+
+#: lib/Packages/DoShow.pm:360
+msgid "build-depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:361
+msgid "build-depends-indep"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:372
+#, perl-format
+msgid "Download %s"
+msgstr "Imuroi %s"
+
+#: lib/Packages/DoShow.pm:378
+msgid "Download information for the files of this source package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:381
+msgid "Size (in kB)"
+msgstr "Koko (kt)"
+
+#: lib/Packages/DoShow.pm:382
+msgid "md5sum"
+msgstr "MD5-summa"
+
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "Details of source package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:428
+#, perl-format
+msgid "Details of package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:430
+#, fuzzy, perl-format
+msgid "Details of source package %s in %s"
+msgstr "Lähdepaketit jakelussa \"%s\""
+
+#: lib/Packages/DoShow.pm:431
+#, fuzzy, perl-format
+msgid "Details of package %s in %s"
+msgstr "Uudet paketit komponentissa %s"
+
+#: lib/Packages/HTML.pm:93
+msgid "Not available"
+msgstr "Ei saatavilla"
+
+#: lib/Packages/HTML.pm:114
+#, perl-format
+msgid "More Information on %s"
+msgstr "Lisätietoa paketista %s"
+
+#: lib/Packages/HTML.pm:119
+#, perl-format
+msgid "Check for <a href=\"%s\">Bug Reports</a> about %s."
+msgstr "Tarkista paketin %s <a href=\"%s\">vikailmoitukset</a>."
+
+#: lib/Packages/HTML.pm:131
+msgid "Source Package:"
+msgstr "Lähdepaketti:"
+
+#: lib/Packages/HTML.pm:133
+msgid "Download"
+msgstr "Imuroi"
+
+#: lib/Packages/HTML.pm:136
+msgid "Not found"
+msgstr "Ei löytynyt"
+
+#: lib/Packages/HTML.pm:169
+#, perl-format
+msgid "View the <a href=\"%s\">Debian changelog</a>"
+msgstr "Katso <a href=\"%s\">Debian-muutoslokia</a>"
+
+#: lib/Packages/HTML.pm:174
+#, perl-format
+msgid "View the <a href=\"%s\">copyright file</a>"
+msgstr "Katso <a href=\"%s\">copyright-tiedostoa</a>"
+
+#: lib/Packages/HTML.pm:187
+#, perl-format
+msgid "%s is responsible for this Debian package."
+msgstr "%s on vastuussa tästä Debian-paketista."
+
+#: lib/Packages/HTML.pm:199
+#, perl-format
+msgid " and %s are responsible for this Debian package."
+msgstr " ja %s ovat vastuussa tästä Debian-paketista."
+
+#: lib/Packages/HTML.pm:204
+#, perl-format
+msgid "See the <a href=\"%s\">developer information for %s</a>."
+msgstr "Katso <a href=\"%s\">paketin %s kehittäjätietoja</a>."
+
+#: lib/Packages/HTML.pm:210
+#, perl-format
+msgid "Search for <a href=\"%s\">other versions of %s</a>"
+msgstr "Hae <a href=\"%s\">paketin %s muita versioita</a>"
+
+#: lib/Packages/HTML.pm:277
+msgid "not"
+msgstr "ei"
+
+#: lib/Packages/HTML.pm:316
+msgid "Package not available"
+msgstr "Paketti ei saatavilla"
+
+#: lib/Packages/HTML.pm:322
+msgid "or"
+msgstr "tai"
+
+#: lib/Packages/HTML.pm:410 lib/Packages/HTML.pm:501
+msgid "Search"
+msgstr "Hae"
+
+#: lib/Packages/HTML.pm:411
+msgid "Full options"
+msgstr ""
+
+#: lib/Packages/HTML.pm:412
+#, fuzzy
+msgid "Search on:"
+msgstr "Hae"
+
+#: lib/Packages/HTML.pm:413
+#, fuzzy
+msgid "Package Names"
+msgstr "Paketin koko"
+
+#: lib/Packages/HTML.pm:414
+#, fuzzy
+msgid "Descriptions"
+msgstr "Jakelu:"
+
+#: lib/Packages/HTML.pm:415
+#, fuzzy
+msgid "Source package names"
+msgstr "Lähdepaketti"
+
+#: lib/Packages/HTML.pm:416
+#, fuzzy
+msgid "Package contents"
+msgstr "Paketin koko"
+
+#: lib/Packages/HTML.pm:479
+msgid "Debian Project"
+msgstr "Debian-projekti"
+
+#: lib/Packages/HTML.pm:493
+msgid "Skip Site Navigation"
+msgstr "Ohita sivustonavigointi"
+
+#: lib/Packages/HTML.pm:495
+msgid "About&nbsp;Debian"
+msgstr "Tietoja&nbsp;Debianista"
+
+#: lib/Packages/HTML.pm:496
+msgid "News"
+msgstr "Uutiset"
+
+#: lib/Packages/HTML.pm:497
+msgid "Getting&nbsp;Debian"
+msgstr "Debianin&nbsp;hankkiminen"
+
+#: lib/Packages/HTML.pm:498
+msgid "Support"
+msgstr "Tuki"
+
+#: lib/Packages/HTML.pm:499
+msgid "Development"
+msgstr "Kehitys"
+
+#: lib/Packages/HTML.pm:500
+msgid "Site map"
+msgstr "Sivustokartta"
+
+#: lib/Packages/HTML.pm:530
+#, perl-format
+msgid ""
+"Back to: <a href=\"%s/\">Debian Project homepage</a> || <a href=\"%s/"
+"\">Packages search page</a>"
+msgstr ""
+"Takaisin: <a href=\"%s/\">Debian-projektin kotisivulle</a> || <a href=\"%s/"
+"\">Pakettien hakusivulle</a>"
+
+#: lib/Packages/HTML.pm:533
+#, perl-format
+msgid ""
+"To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. "
+"For other contact information, see the Debian <a href=\"%s/contact\">contact "
+"page</a>."
+msgstr ""
+"Tällä www-sivulla olevista ongelmista voi ilmoittaa lähettämällä sähköpostia "
+"englanniksi osoitteeseen <a href=\"mailto:%s\">%s</a>. Muut yhteystiedot "
+"löytyvät Debianin <a href=\"%s/contact\">yhteystietosivulta</a>."
+
+#: lib/Packages/HTML.pm:535
+msgid "Last Modified: "
+msgstr "Viimeksi muutettu: "
+
+#: lib/Packages/HTML.pm:537
+#, perl-format
+msgid ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; See "
+"<a href=\"%s/license\">license terms</a>."
+msgstr ""
+"Copyright © 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>. Lue <a "
+"href=\"%s/license\">lisenssiehdot</a>."
+
+#: lib/Packages/HTML.pm:538
+msgid ""
+"Debian is a registered trademark of Software in the Public Interest, Inc."
+msgstr ""
+"Debian on Software in the Public Interest, Inc.'in rekisteröimä tavaramerkki."
+
+#: lib/Packages/HTML.pm:555
+msgid "This page is also available in the following languages:\n"
+msgstr "Tämä sivu on saatavilla myös seuraavilla kielillä:\n"
+
+#: lib/Packages/HTML.pm:574
+#, fuzzy, perl-format
+msgid "How to set <a href=\"%s\">the default document language</a>"
+msgstr "Oletuskielen <a href=\"%s\">asettamisohjeet</a></p>"
+
+#: lib/Packages/Page.pm:47
+msgid "package has bad maintainer field"
+msgstr ""
+
+#~ msgid ""
+#~ "Warning: The <span class=\"pred\">experimental</span> distribution "
+#~ "contains software that is likely unstable or buggy and may even cause "
+#~ "data loss. If you ignore this warning and install it nevertheless, you do "
+#~ "it on your own risk."
+#~ msgstr ""
+#~ "Varoitus: <span clas=\"pred\">kokeellinen</span> jakelu sisältää "
+#~ "ohjelmistoja, jotka ovat luultavasti epävakaita sekä bugisia, ja voi "
+#~ "aiheuttaa jopa tiedonhäviötä. Mikäli ohitat tämän varoituksen ja asennat "
+#~ "paketin kaikesta huolimatta, otat vastuun itsellesi."
+
+#~ msgid "New Packages in \"%s\""
+#~ msgstr "Uudet paketit komponentissa \"%s\""
+
+#~ msgid ""
+#~ "The following packages were added to the unstable Debian archive during "
+#~ "the last 7 days."
+#~ msgstr ""
+#~ "Seuraavat paketit on lisätty epävakaaseen Debian-arkistoon viimeisen "
+#~ "seitsemän (7) päivän aikana."
+
+#~ msgid ""
+#~ "This information is also available as an <a href=\"newpkg_%s.%s.rdf\">RSS "
+#~ "feed</a>."
+#~ msgstr ""
+#~ "Tämä tieto on saatavilla myös <a href=\"newpkg_%s.%s.rdf\">RSS-syötteenä</"
+#~ "a>."
+
+#~ msgid ""
+#~ "Packages that were added to the unstable Debian archive during the last 7 "
+#~ "days."
+#~ msgstr ""
+#~ "Paketit, jotka on lisätty epävakaaseen Debian-arkistoon viimeisen "
+#~ "seitsemän (7) päivän aikana."
+
+#~ msgid ""
+#~ "The following packages were added to the \"%s\" component next to the "
+#~ "Debian archive during the last 7 days."
+#~ msgstr ""
+#~ "Seuraavat paketit on lisätty komponenttiin \"%s\" Debian-arkistoon "
+#~ "viimeisen seitsemän (7) päivän aikana."
+
+#~ msgid ""
+#~ "Packages that were added to the \"%s\" component next to the unstable "
+#~ "Debian archive during the last 7 days."
+#~ msgstr ""
+#~ "Paketit, jotka on lisätty komponenttiin \"%s\" epävakaaseen Debian-"
+#~ "arkistoon viimeisen seitsemän (7) päivän aikana."
+
+#~ msgid ""
+#~ "Users of experimental packages are encouraged to contact the package "
+#~ "maintainers directly in case of problems."
+#~ msgstr ""
+#~ "Kokeellisten pakettien käyttäjiä kehotetaan ottamaan ongelmatapauksissa "
+#~ "yhteyttä suoraan paketin ylläpitäjiin."
+
+#~ msgid "Size is measured in kBytes."
+#~ msgstr "Koko mitataan kilotavuissa."
+
+#~ msgid "Version"
+#~ msgstr "Versio"
+
+#~ msgid "Maintainer"
+#~ msgstr "Ylläpitäjä"
+
+#~ msgid "Uploaders"
+#~ msgstr "Uploadaajat"
+
+#~ msgid "Section"
+#~ msgstr "Osasto"
+
+#~ msgid "Priority"
+#~ msgstr "Tärkeys"
+
+#~ msgid "Essential"
+#~ msgstr "Välttämätön"
+
+#~ msgid "yes"
+#~ msgstr "kyllä"
+
+#~ msgid ""
+#~ "Warning: These packages are intended for the use in building <a href="
+#~ "\"http://www.debian.org/devel/debian-installer/\">debian-installer</a> "
+#~ "images only. Do not install them on a normal Debian system."
+#~ msgstr ""
+#~ "Varoitus: Nämä paketit on tarkoitettu käytettäväksi vain rakennettaessa "
+#~ "<a href=\"http://www.debian.org/devel/debian-installer\">debian-"
+#~ "asentimen</a> vedoksia. Älä asenna normaaliin Debian-järjestelmään."
+
+#~ msgid "No packages with this priority in this suite"
+#~ msgstr "Kokoelmassa ei ole paketteja tällä tärkeysasteella"
+
+#~ msgid "Software Packages in \"%s\", essential packages"
+#~ msgstr "Ohjelmistopaketit jakelussa \"%s\", välttämättömät paketit"
+
+#~ msgid "No essential packages in this suite"
+#~ msgstr "Kokoelmassa ei ole välttämättömiä paketteja"
+
+#~ msgid ""
+#~ "Copyright (C) 1997-2005 SPI;\n"
+#~ "See <URL:http://www.debian.org/license> for the license terms.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Copyright © 1997-2005 SPI;\n"
+#~ "Katso lisenssiehdot sivulta <URL:http://www.debian.org/license>.\n"
+#~ "\n"
+
+#~ msgid "Virtual package"
+#~ msgstr "Näennäispaketti"
diff --git a/po/pdo.fr.po b/po/pdo.fr.po
new file mode 100644 (file)
index 0000000..1568fa1
--- /dev/null
@@ -0,0 +1,924 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-10-25 17:52+0200\n"
+"Last-Translator: Guilhelm Panaget <guilhelm.panaget@free.fr>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: bin/create_index_pages:63
+#, fuzzy, perl-format
+msgid "List of sections in \"%s\""
+msgstr "Liste des sections de %s"
+
+#: bin/create_index_pages:83
+msgid "List of all packages"
+msgstr "Liste de tous les paquets"
+
+#: bin/create_index_pages:84
+msgid "All packages"
+msgstr "Tous les paquets"
+
+#: bin/create_index_pages:85
+msgid "compact compressed textlist"
+msgstr "liste au format texte compressée"
+
+#: bin/create_index_pages:107
+#, perl-format
+msgid "Software Packages in \"%s\""
+msgstr "Paquets inclus dans «&nbsp;%s&nbsp;»"
+
+#: bin/create_index_pages:119
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", section %s"
+msgstr "Paquets de «&nbsp;%s&nbsp;», section %s"
+
+#: bin/create_index_pages:132
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", subsection %s"
+msgstr "Paquets de «&nbsp;%s&nbsp;», section %s"
+
+#: bin/create_index_pages:145
+#, perl-format
+msgid "Software Packages in \"%s\", priority %s"
+msgstr "Paquets de «&nbsp;%s&nbsp;», priorité %s"
+
+#. Done
+#: cgi-bin/dispatcher.pl:89
+msgid "search doesn't take any more path elements"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:92
+msgid ""
+"We're supposed to display the homepage here, instead of getting dispatch.pl"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:117
+#, perl-format
+msgid "%s set more than once in path"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:147
+#, fuzzy, perl-format
+msgid "two or more packages specified (%s)"
+msgstr "Paquet source&nbsp;: %s (%s)"
+
+#: cgi-bin/dispatcher.pl:234
+msgid "Error"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:239
+#, fuzzy
+msgid "search for a package"
+msgstr "Liste de tous les paquets"
+
+#: lib/Packages/DoDownload.pm:203 lib/Packages/DoFilelist.pm:31
+#: lib/Packages/DoShow.pm:30
+msgid "package not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:206 lib/Packages/DoFilelist.pm:34
+#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+msgid "suite not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:209 lib/Packages/DoFilelist.pm:37
+msgid "architecture not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:212
+#, perl-format
+msgid "more than one suite specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:215
+#, perl-format
+msgid "more than one architecture specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:236 lib/Packages/DoShow.pm:71
+#, fuzzy
+msgid "No such package."
+msgstr "Paquet source"
+
+#: lib/Packages/DoDownload.pm:237 lib/Packages/DoShow.pm:72
+#, perl-format
+msgid "<a href=\"%s\">Search for the package</a>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:256
+msgid "Package Download Selection"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:262
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd> on %s machines"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:264
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:268
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at any "
+"of these sites:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:270
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:276
+msgid ""
+"Debian security updates are currently officially distributed only via "
+"<tt>security.debian.org</tt>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:279 lib/Packages/DoDownload.pm:289
+#: lib/Packages/DoDownload.pm:299 lib/Packages/DoDownload.pm:333
+msgid "North America"
+msgstr ""
+
+#. $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
+#: lib/Packages/DoDownload.pm:280 lib/Packages/DoDownload.pm:290
+#: lib/Packages/DoDownload.pm:300 lib/Packages/DoDownload.pm:311
+#: lib/Packages/DoDownload.pm:323 lib/Packages/DoDownload.pm:335
+msgid "Europe"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#: lib/Packages/DoDownload.pm:283 lib/Packages/DoDownload.pm:303
+#: lib/Packages/DoDownload.pm:315 lib/Packages/DoDownload.pm:339
+msgid "Asia"
+msgstr ""
+
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:286
+msgid ""
+"Note that AMD64 is not officialy included in the Debian archive yet, but the "
+"AMD64 porter group keeps their archive in sync with the official archive as "
+"close as possible. See the <a href=\"http://www.debian.org/ports/amd64/"
+"\">AMD64 ports page</a> for current information."
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @amd64_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:296
+msgid ""
+"Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, "
+"but the GNU/kFreeBSD porter group keeps their archive in sync with the "
+"official archive as close as possible. See the <a href=\"http://www.debian."
+"org/ports/kfreebsd-gnu/\">GNU/kFreeBSD ports page</a> for current "
+"information."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:301 lib/Packages/DoDownload.pm:313
+#: lib/Packages/DoDownload.pm:337
+msgid "Australia and New Zealand"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:304 lib/Packages/DoDownload.pm:341
+msgid "South America"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @nonus_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:306 lib/Packages/DoDownload.pm:319
+#: lib/Packages/DoDownload.pm:329 lib/Packages/DoDownload.pm:344
+#, perl-format
+msgid ""
+"If none of the above sites are fast enough for you, please see our <a href="
+"\"%s\">complete mirror list</a>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:347
+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 ""
+
+#: lib/Packages/DoDownload.pm:348
+#, perl-format
+msgid "The MD5sum for <tt>%s</tt> is <strong>%s</strong>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:45
+#, perl-format
+msgid ""
+"Filelist of package <em>%s</em> in <em>%s</em> of architecture <em>%s</em>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:46
+#, fuzzy, perl-format
+msgid "Filelist of of package %s/%s/%s"
+msgstr "Liste de tous les paquets"
+
+#: lib/Packages/DoFilelist.pm:57
+#, fuzzy
+msgid "No such package in this suite on this architecture."
+msgstr "Aucun paquet dans cette section et cette distribution"
+
+#: lib/Packages/DoFilelist.pm:69
+msgid "Invalid suite/architecture combination"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:26
+msgid "keyword not valid or missing"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:32 lib/Packages/DoSearchContents.pm:28
+msgid "keyword too short (keywords need to have at least two characters)"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:105
+#, perl-format
+msgid ""
+"Your search was too wide so we will only display exact matches. At least <em>"
+"%s</em> results have been omitted and will not be displayed. Please consider "
+"using a longer keyword or more keywords."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:111 lib/Packages/DoSearch.pm:113
+msgid "Can't find that package."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:114
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed due to the search "
+"parameters."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:124
+msgid "Can't find that string."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:126
+#, perl-format
+msgid ""
+"Can't find that string, at least not in that suite (%s, section %s) and on "
+"that architecture (%s)."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:131
+#, perl-format
+msgid ""
+"You have searched only for words exactly matching your keywords. You can try "
+"to search <a href=\"%s\">allowing subword matching</a>."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:135
+#, fuzzy, perl-format
+msgid ""
+"You can try a different search on the <a href=\"%s\">Packages search page</"
+"a>."
+msgstr ""
+"Retour à la&nbsp;: <a href=\"%s/\">Page d'accueil du Projet Debian</a> || <a "
+"href=\"%s/\">Page de recherche de paquets</a>"
+
+#: lib/Packages/DoSearch.pm:139
+msgid "Package Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:141
+#, fuzzy
+msgid "Debian Package Search Results"
+msgstr "Tous les paquets Debian dans «&nbsp;%s&nbsp;»"
+
+#: lib/Packages/DoSearch.pm:229
+#, perl-format
+msgid "Found <em>%s</em> matching packages."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:236
+msgid "Exact hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:243
+msgid "Other hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:253
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed because you requested "
+"only exact matches."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:265
+#, fuzzy, perl-format
+msgid "Package %s"
+msgstr "Paquet&nbsp;: %s (%s)"
+
+#: lib/Packages/DoSearch.pm:296
+msgid "also provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:303
+msgid "provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:315
+#, fuzzy, perl-format
+msgid "Source package %s"
+msgstr "Paquet source"
+
+#: lib/Packages/DoSearch.pm:331
+#, fuzzy
+msgid "Binary packages: "
+msgstr "paquet virtuel"
+
+#: lib/Packages/DoSearchContents.pm:34
+#, perl-format
+msgid "more than one suite specified for contents search (%s)"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:78
+msgid "Exact and fullfilenamesearch don't go along"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:116
+msgid ""
+"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 ""
+
+#: lib/Packages/DoSearchContents.pm:120
+#, fuzzy
+msgid "Nothing found"
+msgstr "Introuvable"
+
+#: lib/Packages/DoSearchContents.pm:123
+msgid "Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:125
+msgid "Debian Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:141
+#, perl-format
+msgid "Found %s results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#: lib/Packages/DoShow.pm:380
+msgid "File"
+msgstr "Fichier"
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#, fuzzy
+msgid "Packages"
+msgstr "Taille du paquet"
+
+#: lib/Packages/DoShow.pm:36
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:96
+#, fuzzy
+msgid "Package not available in this suite."
+msgstr "Paquet indisponible"
+
+#. $long_desc = conv_desc( $lang, $long_desc );
+#. $short_desc = conv_desc( $lang, $short_desc );
+#: lib/Packages/DoShow.pm:154 lib/Packages/DoShow.pm:261
+#: lib/Packages/DoShow.pm:304
+msgid "Distribution:"
+msgstr "Distribution&nbsp;:"
+
+#: lib/Packages/DoShow.pm:155 lib/Packages/DoShow.pm:305
+#, fuzzy
+msgid "Overview over this suite"
+msgstr "Vue d'ensemble de cette distribution"
+
+#: lib/Packages/DoShow.pm:158 lib/Packages/DoShow.pm:265
+#: lib/Packages/DoShow.pm:308
+msgid "Section:"
+msgstr "Section&nbsp;:"
+
+#: lib/Packages/DoShow.pm:159 lib/Packages/DoShow.pm:266
+#: lib/Packages/DoShow.pm:309
+msgid "All packages in this section"
+msgstr "Tous les paquets de cette section"
+
+#: lib/Packages/DoShow.pm:164
+#, perl-format
+msgid "Package: %s (%s)"
+msgstr "Paquet&nbsp;: %s (%s)"
+
+#: lib/Packages/DoShow.pm:171
+msgid "Versions:"
+msgstr "Versions&nbsp;:"
+
+#: lib/Packages/DoShow.pm:174
+msgid "This is also a virtual package provided by "
+msgstr ""
+
+#: lib/Packages/DoShow.pm:178 lib/Packages/DoShow.pm:323
+msgid "Experimental package"
+msgstr "Paquet «&nbsp;experimental&nbsp;»"
+
+#: lib/Packages/DoShow.pm:179 lib/Packages/DoShow.pm:324
+#, fuzzy
+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. If you ignore this warning and install it nevertheless, you "
+"do it on your own risk."
+msgstr ""
+"Avertissement&nbsp;: ce paquet appartient à la distribution «&nbsp;<span "
+"class=\"pred\">experimental</span>&nbsp;». Cela signifie qu'il peut être "
+"instable ou bogué et peut éventuellement corrompre vos données. Son "
+"installation s'effectue donc à vos risques et périls."
+
+#: lib/Packages/DoShow.pm:183 lib/Packages/DoShow.pm:328
+msgid "debian-installer udeb package"
+msgstr "paquet de l'installateur Debian udeb"
+
+#: lib/Packages/DoShow.pm:184 lib/Packages/DoShow.pm:329
+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 Debian system."
+msgstr ""
+"Avertissement&nbsp;: ce paquet est réservé à la construction des images de "
+"l'<a href=\"http://www.debian.org/devel/debian-installer\">installateur "
+"Debian</a>. Il ne doit pas être installé sur un système Debian classique."
+
+#: lib/Packages/DoShow.pm:205 lib/Packages/DoShow.pm:354
+#, perl-format
+msgid "Other Packages Related to %s"
+msgstr "Autres paquets associés à %s"
+
+#: lib/Packages/DoShow.pm:207 lib/Packages/DoShow.pm:356
+#, fuzzy, perl-format
+msgid ""
+"Note that the <strong>experimental</strong> distribution is not self-"
+"contained; missing dependencies are likely found in the <a href=\"%s"
+"\">unstable</a> distribution."
+msgstr ""
+"Veuillez noter que la distribution «&nbsp;\"<span class=\"pred"
+"\">experimental</span>\"&nbsp;» n'est pas autosuffisante&nbsp;; certaines "
+"dépendances peuvent se trouver dans la distribution «&nbsp;\"<a href=\"../../"
+"unstable/\">unstable</a>\"&nbsp;»."
+
+#: lib/Packages/DoShow.pm:210
+msgid "depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:211
+msgid "recommends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:212
+msgid "suggests"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:223
+#, perl-format
+msgid "Download %s\n"
+msgstr "Télécharger %s\n"
+
+#: lib/Packages/DoShow.pm:225
+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 ""
+"Le tableau de téléchargement pointe sur le téléchargement du paquet et sur "
+"un aperçu du fichier. Il indique par ailleurs la taille du paquet et "
+"l'espace occupé une fois installé."
+
+#: lib/Packages/DoShow.pm:226
+msgid "Download for all available architectures"
+msgstr "Télécharger pour toutes les architectures proposées"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Architecture"
+msgstr "Architecture"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Files"
+msgstr "Fichiers"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Installed Size"
+msgstr "Espace occupé"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Package Size"
+msgstr "Taille du paquet"
+
+#: lib/Packages/DoShow.pm:235
+msgid "list of files"
+msgstr "liste des fichiers"
+
+#: lib/Packages/DoShow.pm:238
+#, fuzzy
+msgid "no current information"
+msgstr "Plus d'informations sur %s"
+
+#. unless $page->is_virtual
+#: lib/Packages/DoShow.pm:259
+msgid "virtual package"
+msgstr "paquet virtuel"
+
+#: lib/Packages/DoShow.pm:262
+msgid "Overview over this distribution"
+msgstr "Vue d'ensemble de cette distribution"
+
+#: lib/Packages/DoShow.pm:271
+#, perl-format
+msgid "Virtual Package: %s"
+msgstr "Paquet virtuel&nbsp;: %s"
+
+#: lib/Packages/DoShow.pm:275
+#, perl-format
+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 ""
+"Ceci est un <em>paquet virtuel</em>. Consultez la <a href=\"%s\">Charte "
+"Debian</a> pour une <a href=\"%sch-binary.html#s-virtual_pkg\">définition "
+"des paquets virtuels</a>."
+
+#: lib/Packages/DoShow.pm:278
+#, perl-format
+msgid "Packages providing %s"
+msgstr "Paquets fournissant %s"
+
+#: lib/Packages/DoShow.pm:314
+#, fuzzy, perl-format
+msgid "Source Package: %s (%s)"
+msgstr "Paquet source&nbsp;: %s (%s)"
+
+#: lib/Packages/DoShow.pm:336
+msgid "The following binary packages are built from this source package:"
+msgstr ""
+"Les paquets binaires suivants sont compilés à partir de ce paquet "
+"source&nbsp;:"
+
+#: lib/Packages/DoShow.pm:360
+msgid "build-depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:361
+msgid "build-depends-indep"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:372
+#, perl-format
+msgid "Download %s"
+msgstr "Télécharger %s"
+
+#: lib/Packages/DoShow.pm:378
+msgid "Download information for the files of this source package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:381
+msgid "Size (in kB)"
+msgstr "Taille (en kOctets)"
+
+#: lib/Packages/DoShow.pm:382
+msgid "md5sum"
+msgstr "code de contrôle MD5"
+
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "Details of source package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:428
+#, perl-format
+msgid "Details of package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:430
+#, fuzzy, perl-format
+msgid "Details of source package %s in %s"
+msgstr "Paquets source dans «&nbsp;%s&nbsp;»"
+
+#: lib/Packages/DoShow.pm:431
+#, fuzzy, perl-format
+msgid "Details of package %s in %s"
+msgstr "Nouveaux paquets dans «&nbsp;%s&nbsp;»"
+
+#: lib/Packages/HTML.pm:93
+msgid "Not available"
+msgstr "Indisponible"
+
+#: lib/Packages/HTML.pm:114
+#, perl-format
+msgid "More Information on %s"
+msgstr "Plus d'informations sur %s"
+
+#: lib/Packages/HTML.pm:119
+#, perl-format
+msgid "Check for <a href=\"%s\">Bug Reports</a> about %s."
+msgstr "Consulter les <a href=\"%s\">rapports de bogues</a> de %s."
+
+#: lib/Packages/HTML.pm:131
+msgid "Source Package:"
+msgstr "Paquet source&nbsp;:"
+
+#: lib/Packages/HTML.pm:133
+msgid "Download"
+msgstr "Télécharger"
+
+#: lib/Packages/HTML.pm:136
+msgid "Not found"
+msgstr "Introuvable"
+
+#: lib/Packages/HTML.pm:169
+#, perl-format
+msgid "View the <a href=\"%s\">Debian changelog</a>"
+msgstr "Consulter le <a href=\"%s\">journal des modifications Debian</a>"
+
+#: lib/Packages/HTML.pm:174
+#, perl-format
+msgid "View the <a href=\"%s\">copyright file</a>"
+msgstr "Consulter le <a href=\"%s\">fichier de licence</a>"
+
+#: lib/Packages/HTML.pm:187
+#, perl-format
+msgid "%s is responsible for this Debian package."
+msgstr "%s est responsable de ce paquet Debian."
+
+#: lib/Packages/HTML.pm:199
+#, perl-format
+msgid " and %s are responsible for this Debian package."
+msgstr " et %s sont responsables de ce paquet Debian."
+
+#: lib/Packages/HTML.pm:204
+#, perl-format
+msgid "See the <a href=\"%s\">developer information for %s</a>."
+msgstr "Consulter les <a href=\"%s\">informations de développement de %s</a>."
+
+#: lib/Packages/HTML.pm:210
+#, perl-format
+msgid "Search for <a href=\"%s\">other versions of %s</a>"
+msgstr "Chercher d'<a href=\"%s\">autres versions de %s</a>"
+
+#: lib/Packages/HTML.pm:277
+msgid "not"
+msgstr "non"
+
+#: lib/Packages/HTML.pm:316
+msgid "Package not available"
+msgstr "Paquet indisponible"
+
+#: lib/Packages/HTML.pm:322
+msgid "or"
+msgstr "ou"
+
+#: lib/Packages/HTML.pm:410 lib/Packages/HTML.pm:501
+msgid "Search"
+msgstr "Recherche"
+
+#: lib/Packages/HTML.pm:411
+msgid "Full options"
+msgstr ""
+
+#: lib/Packages/HTML.pm:412
+#, fuzzy
+msgid "Search on:"
+msgstr "Recherche"
+
+#: lib/Packages/HTML.pm:413
+#, fuzzy
+msgid "Package Names"
+msgstr "Taille du paquet"
+
+#: lib/Packages/HTML.pm:414
+#, fuzzy
+msgid "Descriptions"
+msgstr "Distribution&nbsp;:"
+
+#: lib/Packages/HTML.pm:415
+#, fuzzy
+msgid "Source package names"
+msgstr "Paquet source"
+
+#: lib/Packages/HTML.pm:416
+#, fuzzy
+msgid "Package contents"
+msgstr "Taille du paquet"
+
+#: lib/Packages/HTML.pm:479
+msgid "Debian Project"
+msgstr "Projet Debian"
+
+#: lib/Packages/HTML.pm:493
+msgid "Skip Site Navigation"
+msgstr "Sauter la navigation du site"
+
+#: lib/Packages/HTML.pm:495
+msgid "About&nbsp;Debian"
+msgstr "À&nbsp;propos&nbsp;de&nbsp;Debian"
+
+#: lib/Packages/HTML.pm:496
+msgid "News"
+msgstr "Actualités"
+
+#: lib/Packages/HTML.pm:497
+msgid "Getting&nbsp;Debian"
+msgstr "Obtenir&nbsp;Debian"
+
+#: lib/Packages/HTML.pm:498
+msgid "Support"
+msgstr "Assistance"
+
+#: lib/Packages/HTML.pm:499
+msgid "Development"
+msgstr "Le&nbsp;coin&nbsp;du&nbsp;développeur"
+
+#: lib/Packages/HTML.pm:500
+msgid "Site map"
+msgstr "Plan&nbsp;du&nbsp;site"
+
+#: lib/Packages/HTML.pm:530
+#, perl-format
+msgid ""
+"Back to: <a href=\"%s/\">Debian Project homepage</a> || <a href=\"%s/"
+"\">Packages search page</a>"
+msgstr ""
+"Retour à la&nbsp;: <a href=\"%s/\">Page d'accueil du Projet Debian</a> || <a "
+"href=\"%s/\">Page de recherche de paquets</a>"
+
+#: lib/Packages/HTML.pm:533
+#, perl-format
+msgid ""
+"To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. "
+"For other contact information, see the Debian <a href=\"%s/contact\">contact "
+"page</a>."
+msgstr ""
+"Pour signaler un problème sur le site web, envoyez un courriel en anglais à "
+"<a href=\"mailto:%s\">%s</a> ou en français à <a href=\"mailto:debian-l10n-"
+"french@lists.debian.org\">debian-l10n-french@lists.debian.org</a>. Pour "
+"obtenir d'autres informations, référez-vous à la <a href=\"%s/contact\">page "
+"contact</a> de Debian."
+
+#: lib/Packages/HTML.pm:535
+msgid "Last Modified: "
+msgstr "Dernière modification&nbsp;: "
+
+#: lib/Packages/HTML.pm:537
+#, perl-format
+msgid ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; See "
+"<a href=\"%s/license\">license terms</a>."
+msgstr ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>&nbsp;; "
+"voir <a href=\"%s/license\">les termes de la licence</a>."
+
+#: lib/Packages/HTML.pm:538
+msgid ""
+"Debian is a registered trademark of Software in the Public Interest, Inc."
+msgstr "Debian est une marque déposée de Software in the Public Interest, Inc."
+
+#: lib/Packages/HTML.pm:555
+msgid "This page is also available in the following languages:\n"
+msgstr "Cette page est aussi disponible dans les langues suivantes&nbsp;:\n"
+
+#: lib/Packages/HTML.pm:574
+#, fuzzy, perl-format
+msgid "How to set <a href=\"%s\">the default document language</a>"
+msgstr ""
+"Comment configurer la <a href=\"%s\">langue par défaut du document</a></p>"
+
+#: lib/Packages/Page.pm:47
+msgid "package has bad maintainer field"
+msgstr ""
+
+#~ msgid ""
+#~ "Warning: The <span class=\"pred\">experimental</span> distribution "
+#~ "contains software that is likely unstable or buggy and may even cause "
+#~ "data loss. If you ignore this warning and install it nevertheless, you do "
+#~ "it on your own risk."
+#~ msgstr ""
+#~ "Avertissement&nbsp;: la distribution «&nbsp;<span class=\"pred"
+#~ "\">experimental</span>&nbsp;» contient des logiciels qui peuvent être "
+#~ "instables ou bogués et peuvent éventuellement corrompre vos données. Leur "
+#~ "installation s'effectue donc à vos risques et périls."
+
+#~ msgid "New Packages in \"%s\""
+#~ msgstr "Nouveaux Paquets dans «&nbsp;%s&nbsp;»"
+
+#~ msgid ""
+#~ "The following packages were added to the unstable Debian archive during "
+#~ "the last 7 days."
+#~ msgstr ""
+#~ "Les paquets suivants ont été ajoutés à l'archive Debian «&nbsp;"
+#~ "unstable&nbsp;» au cours des 7&nbsp;derniers jours."
+
+#~ msgid ""
+#~ "This information is also available as an <a href=\"newpkg_%s.%s.rdf\">RSS "
+#~ "feed</a>."
+#~ msgstr ""
+#~ "Cette information est aussi disponible via le <a href=\"newpkg_%s.%s.rdf"
+#~ "\">fil RSS</a>."
+
+#~ msgid ""
+#~ "Packages that were added to the unstable Debian archive during the last 7 "
+#~ "days."
+#~ msgstr ""
+#~ "Paquets ayant été ajoutés à l'archive Debian «&nbsp;unstable&nbsp;» au "
+#~ "cours des 7&nbsp;derniers jours."
+
+#~ msgid ""
+#~ "The following packages were added to the \"%s\" component next to the "
+#~ "Debian archive during the last 7 days."
+#~ msgstr ""
+#~ "Les paquets suivants ont été ajoutés à la section «&nbsp;%s&nbsp;» de "
+#~ "l'archive Debian au cours des 7&nbsp;derniers jours."
+
+#~ msgid ""
+#~ "Packages that were added to the \"%s\" component next to the unstable "
+#~ "Debian archive during the last 7 days."
+#~ msgstr ""
+#~ "Paquets ayant été ajoutés à la section «&nbsp;%s&nbsp;» de l'archive "
+#~ "Debian «&nbsp;unstable&nbsp;» au cours des 7&nbsp;derniers jours."
+
+#~ msgid ""
+#~ "Users of experimental packages are encouraged to contact the package "
+#~ "maintainers directly in case of problems."
+#~ msgstr ""
+#~ "Nous encourageons les utilisateurs de paquets d'«&nbsp;"
+#~ "experimental&nbsp;» rencontrant des problèmes à contacter directement le "
+#~ "responsable du paquet."
+
+#~ msgid "Size is measured in kBytes."
+#~ msgstr "La taille est indiquée en kOctets"
+
+#~ msgid "Version"
+#~ msgstr "Version"
+
+#~ msgid "Maintainer"
+#~ msgstr "Responsable"
+
+#~ msgid "Uploaders"
+#~ msgstr "Expéditeurs"
+
+#~ msgid "Section"
+#~ msgstr "Section"
+
+#~ msgid "Priority"
+#~ msgstr "Priorité"
+
+#~ msgid "Essential"
+#~ msgstr "Essentiel"
+
+#~ msgid "yes"
+#~ msgstr "oui"
+
+#~ msgid ""
+#~ "Warning: These packages are intended for the use in building <a href="
+#~ "\"http://www.debian.org/devel/debian-installer/\">debian-installer</a> "
+#~ "images only. Do not install them on a normal Debian system."
+#~ msgstr ""
+#~ "Avertissement&nbsp;: ces paquets sont réservés à la construction des "
+#~ "images de l'<a href=\"http://www.debian.org/devel/debian-installer"
+#~ "\">installateur Debian</a>. Ils ne doivent pas être installés sur un "
+#~ "système Debian classique."
+
+#~ msgid "No packages with this priority in this suite"
+#~ msgstr "Aucun paquet de cette priorité et cette distribution"
+
+#~ msgid "Software Packages in \"%s\", essential packages"
+#~ msgstr "Paquets de «&nbsp;%s&nbsp;», paquets essentiels"
+
+#~ msgid "No essential packages in this suite"
+#~ msgstr "Aucun paquet essentiel dans cette distribution"
+
+#~ msgid ""
+#~ "Copyright (C) 1997-2005 SPI;\n"
+#~ "See <URL:http://www.debian.org/license> for the license terms.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Copyright © 1997-2005 SPI&nbsp;;voir <URL:http://www.debian.org/license> "
+#~ "les termes de la licence.\n"
+
+#~ msgid "Virtual package"
+#~ msgstr "Paquet virtuel"
diff --git a/po/pdo.nl.po b/po/pdo.nl.po
new file mode 100644 (file)
index 0000000..3b1983b
--- /dev/null
@@ -0,0 +1,911 @@
+# Dutch translation of packages.debian.org.
+# This file is put in the public domain.
+# Bas Zoetekouw <bas@debian.org>, 2005.
+# , fuzzy
+# 
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: packages.debian.org\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-01-03 00:19+0100\n"
+"Last-Translator: Bas Zoetekouw <bas@debian.org>\n"
+"Language-Team: Dutch <debian-l10n-dutch@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: bin/create_index_pages:63
+#, fuzzy, perl-format
+msgid "List of sections in \"%s\""
+msgstr "Lijst van secties in %s"
+
+#: bin/create_index_pages:83
+msgid "List of all packages"
+msgstr "Lijst van alle pakketten"
+
+#: bin/create_index_pages:84
+msgid "All packages"
+msgstr "Alle pakketten"
+
+#: bin/create_index_pages:85
+msgid "compact compressed textlist"
+msgstr "compacte gecomprimeerde tekst-lijst"
+
+#: bin/create_index_pages:107
+#, perl-format
+msgid "Software Packages in \"%s\""
+msgstr "Softwarepakketten in \"%s\""
+
+#: bin/create_index_pages:119
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", section %s"
+msgstr "Softwarepakketten in \"%s\", %s sectie"
+
+#: bin/create_index_pages:132
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", subsection %s"
+msgstr "Softwarepakketten in \"%s\", %s sectie"
+
+#: bin/create_index_pages:145
+#, perl-format
+msgid "Software Packages in \"%s\", priority %s"
+msgstr "Softwarepakketten in \"%s\", prioriteit %s"
+
+#. Done
+#: cgi-bin/dispatcher.pl:89
+msgid "search doesn't take any more path elements"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:92
+msgid ""
+"We're supposed to display the homepage here, instead of getting dispatch.pl"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:117
+#, perl-format
+msgid "%s set more than once in path"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:147
+#, fuzzy, perl-format
+msgid "two or more packages specified (%s)"
+msgstr "Bronpakket: %s (%s)"
+
+#: cgi-bin/dispatcher.pl:234
+msgid "Error"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:239
+#, fuzzy
+msgid "search for a package"
+msgstr "Lijst van alle pakketten"
+
+#: lib/Packages/DoDownload.pm:203 lib/Packages/DoFilelist.pm:31
+#: lib/Packages/DoShow.pm:30
+msgid "package not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:206 lib/Packages/DoFilelist.pm:34
+#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+msgid "suite not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:209 lib/Packages/DoFilelist.pm:37
+msgid "architecture not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:212
+#, perl-format
+msgid "more than one suite specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:215
+#, perl-format
+msgid "more than one architecture specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:236 lib/Packages/DoShow.pm:71
+#, fuzzy
+msgid "No such package."
+msgstr "Bronpakket"
+
+#: lib/Packages/DoDownload.pm:237 lib/Packages/DoShow.pm:72
+#, perl-format
+msgid "<a href=\"%s\">Search for the package</a>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:256
+msgid "Package Download Selection"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:262
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd> on %s machines"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:264
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:268
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at any "
+"of these sites:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:270
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:276
+msgid ""
+"Debian security updates are currently officially distributed only via "
+"<tt>security.debian.org</tt>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:279 lib/Packages/DoDownload.pm:289
+#: lib/Packages/DoDownload.pm:299 lib/Packages/DoDownload.pm:333
+msgid "North America"
+msgstr ""
+
+#. $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
+#: lib/Packages/DoDownload.pm:280 lib/Packages/DoDownload.pm:290
+#: lib/Packages/DoDownload.pm:300 lib/Packages/DoDownload.pm:311
+#: lib/Packages/DoDownload.pm:323 lib/Packages/DoDownload.pm:335
+msgid "Europe"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#: lib/Packages/DoDownload.pm:283 lib/Packages/DoDownload.pm:303
+#: lib/Packages/DoDownload.pm:315 lib/Packages/DoDownload.pm:339
+msgid "Asia"
+msgstr ""
+
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:286
+msgid ""
+"Note that AMD64 is not officialy included in the Debian archive yet, but the "
+"AMD64 porter group keeps their archive in sync with the official archive as "
+"close as possible. See the <a href=\"http://www.debian.org/ports/amd64/"
+"\">AMD64 ports page</a> for current information."
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @amd64_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:296
+msgid ""
+"Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, "
+"but the GNU/kFreeBSD porter group keeps their archive in sync with the "
+"official archive as close as possible. See the <a href=\"http://www.debian."
+"org/ports/kfreebsd-gnu/\">GNU/kFreeBSD ports page</a> for current "
+"information."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:301 lib/Packages/DoDownload.pm:313
+#: lib/Packages/DoDownload.pm:337
+msgid "Australia and New Zealand"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:304 lib/Packages/DoDownload.pm:341
+msgid "South America"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @nonus_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:306 lib/Packages/DoDownload.pm:319
+#: lib/Packages/DoDownload.pm:329 lib/Packages/DoDownload.pm:344
+#, perl-format
+msgid ""
+"If none of the above sites are fast enough for you, please see our <a href="
+"\"%s\">complete mirror list</a>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:347
+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 ""
+
+#: lib/Packages/DoDownload.pm:348
+#, perl-format
+msgid "The MD5sum for <tt>%s</tt> is <strong>%s</strong>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:45
+#, perl-format
+msgid ""
+"Filelist of package <em>%s</em> in <em>%s</em> of architecture <em>%s</em>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:46
+#, fuzzy, perl-format
+msgid "Filelist of of package %s/%s/%s"
+msgstr "Lijst van alle pakketten"
+
+#: lib/Packages/DoFilelist.pm:57
+#, fuzzy
+msgid "No such package in this suite on this architecture."
+msgstr "Geen pakketten in deze sectie en deze suite"
+
+#: lib/Packages/DoFilelist.pm:69
+msgid "Invalid suite/architecture combination"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:26
+msgid "keyword not valid or missing"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:32 lib/Packages/DoSearchContents.pm:28
+msgid "keyword too short (keywords need to have at least two characters)"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:105
+#, perl-format
+msgid ""
+"Your search was too wide so we will only display exact matches. At least <em>"
+"%s</em> results have been omitted and will not be displayed. Please consider "
+"using a longer keyword or more keywords."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:111 lib/Packages/DoSearch.pm:113
+msgid "Can't find that package."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:114
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed due to the search "
+"parameters."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:124
+msgid "Can't find that string."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:126
+#, perl-format
+msgid ""
+"Can't find that string, at least not in that suite (%s, section %s) and on "
+"that architecture (%s)."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:131
+#, perl-format
+msgid ""
+"You have searched only for words exactly matching your keywords. You can try "
+"to search <a href=\"%s\">allowing subword matching</a>."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:135
+#, fuzzy, perl-format
+msgid ""
+"You can try a different search on the <a href=\"%s\">Packages search page</"
+"a>."
+msgstr ""
+"Terug naar: <a href=\"%s/\">Debian Project hoofdpagina</a> || <a href=\"%s/"
+"\">Pakketten zoekpagina</a>"
+
+#: lib/Packages/DoSearch.pm:139
+msgid "Package Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:141
+#, fuzzy
+msgid "Debian Package Search Results"
+msgstr "Alle Debianpakketten in \"%s\""
+
+#: lib/Packages/DoSearch.pm:229
+#, perl-format
+msgid "Found <em>%s</em> matching packages."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:236
+msgid "Exact hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:243
+msgid "Other hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:253
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed because you requested "
+"only exact matches."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:265
+#, fuzzy, perl-format
+msgid "Package %s"
+msgstr "Pakket: %s (%s)"
+
+#: lib/Packages/DoSearch.pm:296
+msgid "also provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:303
+msgid "provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:315
+#, fuzzy, perl-format
+msgid "Source package %s"
+msgstr "Bronpakket"
+
+#: lib/Packages/DoSearch.pm:331
+#, fuzzy
+msgid "Binary packages: "
+msgstr "virtueel pakket"
+
+#: lib/Packages/DoSearchContents.pm:34
+#, perl-format
+msgid "more than one suite specified for contents search (%s)"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:78
+msgid "Exact and fullfilenamesearch don't go along"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:116
+msgid ""
+"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 ""
+
+#: lib/Packages/DoSearchContents.pm:120
+#, fuzzy
+msgid "Nothing found"
+msgstr "Niet gevonden"
+
+#: lib/Packages/DoSearchContents.pm:123
+msgid "Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:125
+msgid "Debian Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:141
+#, perl-format
+msgid "Found %s results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#: lib/Packages/DoShow.pm:380
+msgid "File"
+msgstr "Bestand"
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#, fuzzy
+msgid "Packages"
+msgstr "Pakket niet beschikbaar"
+
+#: lib/Packages/DoShow.pm:36
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:96
+#, fuzzy
+msgid "Package not available in this suite."
+msgstr "Pakket niet beschikbaar"
+
+#. $long_desc = conv_desc( $lang, $long_desc );
+#. $short_desc = conv_desc( $lang, $short_desc );
+#: lib/Packages/DoShow.pm:154 lib/Packages/DoShow.pm:261
+#: lib/Packages/DoShow.pm:304
+msgid "Distribution:"
+msgstr "Distributie:"
+
+#: lib/Packages/DoShow.pm:155 lib/Packages/DoShow.pm:305
+#, fuzzy
+msgid "Overview over this suite"
+msgstr "Overzicht van deze distributie"
+
+#: lib/Packages/DoShow.pm:158 lib/Packages/DoShow.pm:265
+#: lib/Packages/DoShow.pm:308
+msgid "Section:"
+msgstr "Sectie:"
+
+#: lib/Packages/DoShow.pm:159 lib/Packages/DoShow.pm:266
+#: lib/Packages/DoShow.pm:309
+msgid "All packages in this section"
+msgstr "Alle pakketten in deze sectie"
+
+#: lib/Packages/DoShow.pm:164
+#, perl-format
+msgid "Package: %s (%s)"
+msgstr "Pakket: %s (%s)"
+
+#: lib/Packages/DoShow.pm:171
+msgid "Versions:"
+msgstr "Versies:"
+
+#: lib/Packages/DoShow.pm:174
+msgid "This is also a virtual package provided by "
+msgstr ""
+
+#: lib/Packages/DoShow.pm:178 lib/Packages/DoShow.pm:323
+msgid "Experimental package"
+msgstr "Experimenteel pakket"
+
+#: lib/Packages/DoShow.pm:179 lib/Packages/DoShow.pm:324
+#, fuzzy
+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. If you ignore this warning and install it nevertheless, you "
+"do it on your own risk."
+msgstr ""
+"Waarschuwing: Dit pakket komt uit de &lquot;<span class=\"pred"
+"\">experimental</span>&rquot; distributie. Dit houdt in dat het "
+"hoogstwaarschijnlijk een experimenteel pakket is, of nog veel fouten bevat. "
+"Als u deze waarschuwing negeert en het pakket toch installeert, dan is dat "
+"op uw eigen risico."
+
+#: lib/Packages/DoShow.pm:183 lib/Packages/DoShow.pm:328
+msgid "debian-installer udeb package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:184 lib/Packages/DoShow.pm:329
+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 Debian system."
+msgstr ""
+"Waarschuwing: Dit pakket is alleen bedoeld voor gebruik tijden het bouwen "
+"van het <a href=\"http://www.debian.org/devel/debian-installer\">Debian "
+"installatie programma</a>. Installeer het niet op een normaal Debian systeem."
+
+#: lib/Packages/DoShow.pm:205 lib/Packages/DoShow.pm:354
+#, perl-format
+msgid "Other Packages Related to %s"
+msgstr "Andere pakketten die aan %s zijn gerelateerd"
+
+#: lib/Packages/DoShow.pm:207 lib/Packages/DoShow.pm:356
+#, fuzzy, perl-format
+msgid ""
+"Note that the <strong>experimental</strong> distribution is not self-"
+"contained; missing dependencies are likely found in the <a href=\"%s"
+"\">unstable</a> distribution."
+msgstr ""
+"Merk op dat de «<span class=\"pred\">experimental</span>» distributie niet "
+"op zichzelf staat; ontbrekende afhankelijkheden kunnen waarschijnlijk worden "
+"gevonden in de «a href=\"../../unstable/\">unstable</a>» distributie."
+
+#: lib/Packages/DoShow.pm:210
+msgid "depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:211
+msgid "recommends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:212
+msgid "suggests"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:223
+#, perl-format
+msgid "Download %s\n"
+msgstr "Download %s\n"
+
+#: lib/Packages/DoShow.pm:225
+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 ""
+
+#: lib/Packages/DoShow.pm:226
+msgid "Download for all available architectures"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:228
+msgid "Architecture"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:228
+#, fuzzy
+msgid "Files"
+msgstr "Bestand"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Installed Size"
+msgstr "Geïnstalleerde grootte"
+
+#: lib/Packages/DoShow.pm:228
+#, fuzzy
+msgid "Package Size"
+msgstr "Pakket niet beschikbaar"
+
+#: lib/Packages/DoShow.pm:235
+msgid "list of files"
+msgstr "lijst van bestanden"
+
+#: lib/Packages/DoShow.pm:238
+#, fuzzy
+msgid "no current information"
+msgstr "Meer informatie over %s"
+
+#. unless $page->is_virtual
+#: lib/Packages/DoShow.pm:259
+msgid "virtual package"
+msgstr "virtueel pakket"
+
+#: lib/Packages/DoShow.pm:262
+msgid "Overview over this distribution"
+msgstr "Overzicht van deze distributie"
+
+#: lib/Packages/DoShow.pm:271
+#, perl-format
+msgid "Virtual Package: %s"
+msgstr "Virtueel Pakket: %s"
+
+#: lib/Packages/DoShow.pm:275
+#, perl-format
+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 ""
+"Dit is een <em>virtueel pakket</em>.  Zie het <a href=\"%s\">Debian "
+"beleidshandboek</a> voor de <a href=\"%sch-binary.html#s-virtual_pkg"
+"\">definitie van een virtueel pakket</a>."
+
+#: lib/Packages/DoShow.pm:278
+#, perl-format
+msgid "Packages providing %s"
+msgstr "Pakketten die %s leveren:"
+
+#: lib/Packages/DoShow.pm:314
+#, fuzzy, perl-format
+msgid "Source Package: %s (%s)"
+msgstr "Bronpakket: %s (%s)"
+
+#: lib/Packages/DoShow.pm:336
+msgid "The following binary packages are built from this source package:"
+msgstr "De volgende binaire pakketten worden van dit bronpakket gebouwd:"
+
+#: lib/Packages/DoShow.pm:360
+msgid "build-depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:361
+msgid "build-depends-indep"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:372
+#, perl-format
+msgid "Download %s"
+msgstr "Download %s"
+
+#: lib/Packages/DoShow.pm:378
+msgid "Download information for the files of this source package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:381
+msgid "Size (in kB)"
+msgstr "Grootte (in kB)"
+
+#: lib/Packages/DoShow.pm:382
+msgid "md5sum"
+msgstr "md5sum"
+
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "Details of source package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:428
+#, perl-format
+msgid "Details of package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:430
+#, fuzzy, perl-format
+msgid "Details of source package %s in %s"
+msgstr "Bronpakketten in \"%s\""
+
+#: lib/Packages/DoShow.pm:431
+#, fuzzy, perl-format
+msgid "Details of package %s in %s"
+msgstr "Nieuwe pakketten in %s"
+
+#: lib/Packages/HTML.pm:93
+msgid "Not available"
+msgstr "Niet beschikbaar"
+
+#: lib/Packages/HTML.pm:114
+#, perl-format
+msgid "More Information on %s"
+msgstr "Meer informatie over %s"
+
+#: lib/Packages/HTML.pm:119
+#, perl-format
+msgid "Check for <a href=\"%s\">Bug Reports</a> about %s."
+msgstr "Zoek naar <a href=\"%s\">bug-rapporten</a> over %s."
+
+#: lib/Packages/HTML.pm:131
+msgid "Source Package:"
+msgstr "Bronpakket:"
+
+#: lib/Packages/HTML.pm:133
+msgid "Download"
+msgstr "Download"
+
+#: lib/Packages/HTML.pm:136
+msgid "Not found"
+msgstr "Niet gevonden"
+
+#: lib/Packages/HTML.pm:169
+#, perl-format
+msgid "View the <a href=\"%s\">Debian changelog</a>"
+msgstr "Bekijk de <a href=\"%s\">Debian changelog</a>"
+
+#: lib/Packages/HTML.pm:174
+#, perl-format
+msgid "View the <a href=\"%s\">copyright file</a>"
+msgstr "Bekijk het <a href=\"%s\">bestand met auteursrecht-informatie</a>"
+
+#: lib/Packages/HTML.pm:187
+#, perl-format
+msgid "%s is responsible for this Debian package."
+msgstr "%s is verantwoordelijk voor die Debian pakket."
+
+#: lib/Packages/HTML.pm:199
+#, perl-format
+msgid " and %s are responsible for this Debian package."
+msgstr " en %s zijn verantwoordelijk voor dit Debian pakket."
+
+#: lib/Packages/HTML.pm:204
+#, perl-format
+msgid "See the <a href=\"%s\">developer information for %s</a>."
+msgstr "Zie de <a href=\"%s\">informatie voor ontwikkelaars voor %s</a>."
+
+#: lib/Packages/HTML.pm:210
+#, perl-format
+msgid "Search for <a href=\"%s\">other versions of %s</a>"
+msgstr "Zoek naar <a href=\"%s\">andere versies van %s</a>"
+
+#: lib/Packages/HTML.pm:277
+msgid "not"
+msgstr "niet"
+
+#: lib/Packages/HTML.pm:316
+msgid "Package not available"
+msgstr "Pakket niet beschikbaar"
+
+#: lib/Packages/HTML.pm:322
+msgid "or"
+msgstr "of"
+
+#: lib/Packages/HTML.pm:410 lib/Packages/HTML.pm:501
+msgid "Search"
+msgstr "Zoeken"
+
+#: lib/Packages/HTML.pm:411
+msgid "Full options"
+msgstr ""
+
+#: lib/Packages/HTML.pm:412
+#, fuzzy
+msgid "Search on:"
+msgstr "Zoeken"
+
+#: lib/Packages/HTML.pm:413
+#, fuzzy
+msgid "Package Names"
+msgstr "Pakket niet beschikbaar"
+
+#: lib/Packages/HTML.pm:414
+#, fuzzy
+msgid "Descriptions"
+msgstr "Distributie:"
+
+#: lib/Packages/HTML.pm:415
+#, fuzzy
+msgid "Source package names"
+msgstr "Bronpakket"
+
+#: lib/Packages/HTML.pm:416
+#, fuzzy
+msgid "Package contents"
+msgstr "Pakket niet beschikbaar"
+
+#: lib/Packages/HTML.pm:479
+msgid "Debian Project"
+msgstr "Debian Project"
+
+#: lib/Packages/HTML.pm:493
+msgid "Skip Site Navigation"
+msgstr ""
+
+#: lib/Packages/HTML.pm:495
+msgid "About&nbsp;Debian"
+msgstr "Over&nbsp;Debian"
+
+#: lib/Packages/HTML.pm:496
+msgid "News"
+msgstr "Nieuws"
+
+#: lib/Packages/HTML.pm:497
+msgid "Getting&nbsp;Debian"
+msgstr "Verkrijgen"
+
+#: lib/Packages/HTML.pm:498
+msgid "Support"
+msgstr "Ondersteuning"
+
+#: lib/Packages/HTML.pm:499
+msgid "Development"
+msgstr "Ontwikkeling"
+
+#: lib/Packages/HTML.pm:500
+msgid "Site map"
+msgstr "Index"
+
+#: lib/Packages/HTML.pm:530
+#, perl-format
+msgid ""
+"Back to: <a href=\"%s/\">Debian Project homepage</a> || <a href=\"%s/"
+"\">Packages search page</a>"
+msgstr ""
+"Terug naar: <a href=\"%s/\">Debian Project hoofdpagina</a> || <a href=\"%s/"
+"\">Pakketten zoekpagina</a>"
+
+#: lib/Packages/HTML.pm:533
+#, perl-format
+msgid ""
+"To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. "
+"For other contact information, see the Debian <a href=\"%s/contact\">contact "
+"page</a>."
+msgstr ""
+"Om een probleem met de website te melden, kunt u een e-mail sturen naar <a "
+"href=\"mailto:%s\">%s</a>. Voor meer informatie om met ons in contact te "
+"komen, zie de <a href=\"%s/contact\">contact pagina</a>."
+
+#: lib/Packages/HTML.pm:535
+msgid "Last Modified: "
+msgstr "Laatst gewijzigd:"
+
+#: lib/Packages/HTML.pm:537
+#, perl-format
+msgid ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; See "
+"<a href=\"%s/license\">license terms</a>."
+msgstr ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; Ziede "
+"<a href=\"%s/license\">licentievoorwaarden</a>."
+
+#: lib/Packages/HTML.pm:538
+msgid ""
+"Debian is a registered trademark of Software in the Public Interest, Inc."
+msgstr ""
+"Debian is een geregistreerd handelsmerk van Software in the Public Interest, "
+"Inc."
+
+#: lib/Packages/HTML.pm:555
+msgid "This page is also available in the following languages:\n"
+msgstr "Deze pagina is ook beschikbaar in de volgende talen:\n"
+
+#: lib/Packages/HTML.pm:574
+#, fuzzy, perl-format
+msgid "How to set <a href=\"%s\">the default document language</a>"
+msgstr "Hoe u de <a href=\"%s\">standaard taal kunt instellen</a></p>"
+
+#: lib/Packages/Page.pm:47
+msgid "package has bad maintainer field"
+msgstr ""
+
+#~ msgid "Size:"
+#~ msgstr "Grootte:"
+
+#~ msgid ""
+#~ "Warning: The <span class=\"pred\">experimental</span> distribution "
+#~ "contains software that is likely unstable or buggy and may even cause "
+#~ "data loss. If you ignore this warning and install it nevertheless, you do "
+#~ "it on your own risk."
+#~ msgstr ""
+#~ "Waarschuwing: De «<span class=\"pred\">experimental</span>» distributie "
+#~ "bevat programmatuur die hoogstwaarschijnlijk onstabiel is, veel fouten "
+#~ "bevat of zelfs dataverlies kan veroorzaken. Als u deze waarschuwing "
+#~ "negeert en het toch installeert, dan is dat op uw eigen risico."
+
+#~ msgid "New Packages in \"%s\""
+#~ msgstr "Nieuwe pakketten in \"%s\""
+
+#~ msgid ""
+#~ "The following packages were added to the unstable Debian archive during "
+#~ "the last 7 days."
+#~ msgstr ""
+#~ "De volgende pakketten zijn in de afgelopen 7 dagen aan de «unstable» "
+#~ "distributie toegevoegd."
+
+#~ msgid ""
+#~ "This information is also available as an <a href=\"newpkg_%s.%s.rdf\">RSS "
+#~ "feed</a>."
+#~ msgstr ""
+#~ "Deze informatie is ook beschikbaar als een <a href=\"newpkg_%s.%s.rdf"
+#~ "\">RSS feed</a>."
+
+#~ msgid ""
+#~ "Packages that were added to the unstable Debian archive during the last 7 "
+#~ "days."
+#~ msgstr ""
+#~ "Pakketten die in de afgelopen 7 dagen aan de «unstable» distributie zijn "
+#~ "toegevoegd."
+
+#~ msgid ""
+#~ "Users of experimental packages are encouraged to contact the package "
+#~ "maintainers directly in case of problems."
+#~ msgstr ""
+#~ "Gebruikers van pakketten uit «experimental» kunnen, in het geval van "
+#~ "problemen, het beste direct de beheerder van het pakket contacteren."
+
+#~ msgid "Size is measured in kBytes."
+#~ msgstr "De grootte is aangegeven in kBytes."
+
+#~ msgid "Version"
+#~ msgstr "Versie"
+
+#~ msgid "Maintainer"
+#~ msgstr "Beheerder"
+
+#~ msgid "Uploaders"
+#~ msgstr "Uploaders"
+
+#~ msgid "Section"
+#~ msgstr "Sectie"
+
+#~ msgid "Priority"
+#~ msgstr "Prioriteit"
+
+#~ msgid "Essential"
+#~ msgstr "Essentieel"
+
+#~ msgid "yes"
+#~ msgstr "ja"
+
+#~ msgid ""
+#~ "Warning: These packages are intended for the use in building <a href="
+#~ "\"http://www.debian.org/devel/debian-installer/\">debian-installer</a> "
+#~ "images only. Do not install them on a normal Debian system."
+#~ msgstr ""
+#~ "Waarschuwing: Deze pakketten zijn alleen bedoeld voor gebruik tijden het "
+#~ "bouwen van het <a href=\"http://www.debian.org/devel/debian-installer"
+#~ "\">Debian installatie programma</a>. Installeer het niet op een normaal "
+#~ "Debian systeem."
+
+#~ msgid "No packages with this priority in this suite"
+#~ msgstr "Geen pakketten met deze prioriteit in deze suite"
+
+#~ msgid "Software Packages in \"%s\", essential packages"
+#~ msgstr "Softwarepakketten in \"%s\", essentiële pakketten"
+
+#~ msgid "No essential packages in this suite"
+#~ msgstr "Geen essentiële pakketten in deze suite"
+
+#~ msgid ""
+#~ "Copyright (C) 1997-2005 SPI;\n"
+#~ "See <URL:http://www.debian.org/license> for the license terms.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Copyright (C) 1997-2005 SPI;\n"
+#~ "Zie <URL:http://www.debian.org/license>voor de licentievoorwaarden.\n"
+#~ "\n"
+
+#~ msgid "Virtual package"
+#~ msgstr "Virtueel pakket"
diff --git a/po/pdo.pot b/po/pdo.pot
new file mode 100644 (file)
index 0000000..a2e0b57
--- /dev/null
@@ -0,0 +1,767 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Done
+#: cgi-bin/dispatcher.pl:89
+msgid "search doesn't take any more path elements"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:92
+msgid ""
+"We're supposed to display the homepage here, instead of getting dispatch.pl"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:117
+#, perl-format
+msgid "%s set more than once in path"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:147
+#, perl-format
+msgid "two or more packages specified (%s)"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:234
+msgid "Error"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:239
+msgid "search for a package"
+msgstr ""
+
+#: lib/Packages/HTML.pm:93
+msgid "Not available"
+msgstr ""
+
+#: lib/Packages/HTML.pm:114
+#, perl-format
+msgid "More Information on %s"
+msgstr ""
+
+#: lib/Packages/HTML.pm:119
+#, perl-format
+msgid "Check for <a href=\"%s\">Bug Reports</a> about %s."
+msgstr ""
+
+#: lib/Packages/HTML.pm:131
+msgid "Source Package:"
+msgstr ""
+
+#: lib/Packages/HTML.pm:133
+msgid "Download"
+msgstr ""
+
+#: lib/Packages/HTML.pm:136
+msgid "Not found"
+msgstr ""
+
+#: lib/Packages/HTML.pm:169
+#, perl-format
+msgid "View the <a href=\"%s\">Debian changelog</a>"
+msgstr ""
+
+#: lib/Packages/HTML.pm:174
+#, perl-format
+msgid "View the <a href=\"%s\">copyright file</a>"
+msgstr ""
+
+#: lib/Packages/HTML.pm:187
+#, perl-format
+msgid "%s is responsible for this Debian package."
+msgstr ""
+
+#: lib/Packages/HTML.pm:199
+#, perl-format
+msgid " and %s are responsible for this Debian package."
+msgstr ""
+
+#: lib/Packages/HTML.pm:204
+#, perl-format
+msgid "See the <a href=\"%s\">developer information for %s</a>."
+msgstr ""
+
+#: lib/Packages/HTML.pm:210
+#, perl-format
+msgid "Search for <a href=\"%s\">other versions of %s</a>"
+msgstr ""
+
+#: lib/Packages/HTML.pm:277
+msgid "not"
+msgstr ""
+
+#: lib/Packages/HTML.pm:316
+msgid "Package not available"
+msgstr ""
+
+#: lib/Packages/HTML.pm:322
+msgid "or"
+msgstr ""
+
+#: lib/Packages/HTML.pm:410 lib/Packages/HTML.pm:501
+msgid "Search"
+msgstr ""
+
+#: lib/Packages/HTML.pm:411
+msgid "Full options"
+msgstr ""
+
+#: lib/Packages/HTML.pm:412
+msgid "Search on:"
+msgstr ""
+
+#: lib/Packages/HTML.pm:413
+msgid "Package Names"
+msgstr ""
+
+#: lib/Packages/HTML.pm:414
+msgid "Descriptions"
+msgstr ""
+
+#: lib/Packages/HTML.pm:415
+msgid "Source package names"
+msgstr ""
+
+#: lib/Packages/HTML.pm:416
+msgid "Package contents"
+msgstr ""
+
+#: lib/Packages/HTML.pm:479
+msgid "Debian Project"
+msgstr ""
+
+#: lib/Packages/HTML.pm:493
+msgid "Skip Site Navigation"
+msgstr ""
+
+#: lib/Packages/HTML.pm:495
+msgid "About&nbsp;Debian"
+msgstr ""
+
+#: lib/Packages/HTML.pm:496
+msgid "News"
+msgstr ""
+
+#: lib/Packages/HTML.pm:497
+msgid "Getting&nbsp;Debian"
+msgstr ""
+
+#: lib/Packages/HTML.pm:498
+msgid "Support"
+msgstr ""
+
+#: lib/Packages/HTML.pm:499
+msgid "Development"
+msgstr ""
+
+#: lib/Packages/HTML.pm:500
+msgid "Site map"
+msgstr ""
+
+#: lib/Packages/HTML.pm:530
+#, perl-format
+msgid ""
+"Back to: <a href=\"%s/\">Debian Project homepage</a> || <a href=\"%s/"
+"\">Packages search page</a>"
+msgstr ""
+
+#: lib/Packages/HTML.pm:533
+#, perl-format
+msgid ""
+"To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. "
+"For other contact information, see the Debian <a href=\"%s/contact\">contact "
+"page</a>."
+msgstr ""
+
+#: lib/Packages/HTML.pm:535
+msgid "Last Modified: "
+msgstr ""
+
+#: lib/Packages/HTML.pm:537
+#, perl-format
+msgid ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; See "
+"<a href=\"%s/license\">license terms</a>."
+msgstr ""
+
+#: lib/Packages/HTML.pm:538
+msgid ""
+"Debian is a registered trademark of Software in the Public Interest, Inc."
+msgstr ""
+
+#: lib/Packages/HTML.pm:555
+msgid "This page is also available in the following languages:\n"
+msgstr ""
+
+#: lib/Packages/HTML.pm:574
+#, perl-format
+msgid "How to set <a href=\"%s\">the default document language</a>"
+msgstr ""
+
+#: lib/Packages/Page.pm:47
+msgid "package has bad maintainer field"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:26
+msgid "keyword not valid or missing"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:32 lib/Packages/DoSearchContents.pm:28
+msgid "keyword too short (keywords need to have at least two characters)"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:105
+#, perl-format
+msgid ""
+"Your search was too wide so we will only display exact matches. At least <em>"
+"%s</em> results have been omitted and will not be displayed. Please consider "
+"using a longer keyword or more keywords."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:111 lib/Packages/DoSearch.pm:113
+msgid "Can't find that package."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:114
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed due to the search "
+"parameters."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:124
+msgid "Can't find that string."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:126
+#, perl-format
+msgid ""
+"Can't find that string, at least not in that suite (%s, section %s) and on "
+"that architecture (%s)."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:131
+#, perl-format
+msgid ""
+"You have searched only for words exactly matching your keywords. You can try "
+"to search <a href=\"%s\">allowing subword matching</a>."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:135
+#, perl-format
+msgid ""
+"You can try a different search on the <a href=\"%s\">Packages search page</"
+"a>."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:139
+msgid "Package Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:141
+msgid "Debian Package Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:229
+#, perl-format
+msgid "Found <em>%s</em> matching packages."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:236
+msgid "Exact hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:243
+msgid "Other hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:253
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed because you requested "
+"only exact matches."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:265
+#, perl-format
+msgid "Package %s"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:296
+msgid "also provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:303
+msgid "provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:315
+#, perl-format
+msgid "Source package %s"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:331
+msgid "Binary packages: "
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+#: lib/Packages/DoFilelist.pm:34 lib/Packages/DoDownload.pm:206
+msgid "suite not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:34
+#, perl-format
+msgid "more than one suite specified for contents search (%s)"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:78
+msgid "Exact and fullfilenamesearch don't go along"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:116
+msgid ""
+"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 ""
+
+#: lib/Packages/DoSearchContents.pm:120
+msgid "Nothing found"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:123
+msgid "Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:125
+msgid "Debian Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:141
+#, perl-format
+msgid "Found %s results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#: lib/Packages/DoShow.pm:380
+msgid "File"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+msgid "Packages"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:30 lib/Packages/DoFilelist.pm:31
+#: lib/Packages/DoDownload.pm:203
+msgid "package not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:36
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:71 lib/Packages/DoDownload.pm:236
+msgid "No such package."
+msgstr ""
+
+#: lib/Packages/DoShow.pm:72 lib/Packages/DoDownload.pm:237
+#, perl-format
+msgid "<a href=\"%s\">Search for the package</a>"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:96
+msgid "Package not available in this suite."
+msgstr ""
+
+#. $long_desc = conv_desc( $lang, $long_desc );
+#. $short_desc = conv_desc( $lang, $short_desc );
+#: lib/Packages/DoShow.pm:154 lib/Packages/DoShow.pm:261
+#: lib/Packages/DoShow.pm:304
+msgid "Distribution:"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:155 lib/Packages/DoShow.pm:305
+msgid "Overview over this suite"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:158 lib/Packages/DoShow.pm:265
+#: lib/Packages/DoShow.pm:308
+msgid "Section:"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:159 lib/Packages/DoShow.pm:266
+#: lib/Packages/DoShow.pm:309
+msgid "All packages in this section"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:164
+#, perl-format
+msgid "Package: %s (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:171
+msgid "Versions:"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:174
+msgid "This is also a virtual package provided by "
+msgstr ""
+
+#: lib/Packages/DoShow.pm:178 lib/Packages/DoShow.pm:323
+msgid "Experimental package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:179 lib/Packages/DoShow.pm:324
+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. If you ignore this warning and install it nevertheless, you "
+"do it on your own risk."
+msgstr ""
+
+#: lib/Packages/DoShow.pm:183 lib/Packages/DoShow.pm:328
+msgid "debian-installer udeb package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:184 lib/Packages/DoShow.pm:329
+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 Debian system."
+msgstr ""
+
+#: lib/Packages/DoShow.pm:205 lib/Packages/DoShow.pm:354
+#, perl-format
+msgid "Other Packages Related to %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:207 lib/Packages/DoShow.pm:356
+#, perl-format
+msgid ""
+"Note that the <strong>experimental</strong> distribution is not self-"
+"contained; missing dependencies are likely found in the <a href=\"%s"
+"\">unstable</a> distribution."
+msgstr ""
+
+#: lib/Packages/DoShow.pm:210
+msgid "depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:211
+msgid "recommends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:212
+msgid "suggests"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:223
+#, perl-format
+msgid "Download %s\n"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:225
+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 ""
+
+#: lib/Packages/DoShow.pm:226
+msgid "Download for all available architectures"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:228
+msgid "Architecture"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:228
+msgid "Files"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:228
+msgid "Package Size"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:228
+msgid "Installed Size"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:235
+msgid "list of files"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:238
+msgid "no current information"
+msgstr ""
+
+#. unless $page->is_virtual
+#: lib/Packages/DoShow.pm:259
+msgid "virtual package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:262
+msgid "Overview over this distribution"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:271
+#, perl-format
+msgid "Virtual Package: %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:275
+#, perl-format
+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 ""
+
+#: lib/Packages/DoShow.pm:278
+#, perl-format
+msgid "Packages providing %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:314
+#, perl-format
+msgid "Source Package: %s (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:336
+msgid "The following binary packages are built from this source package:"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:360
+msgid "build-depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:361
+msgid "build-depends-indep"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:372
+#, perl-format
+msgid "Download %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:378
+msgid "Download information for the files of this source package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:381
+msgid "Size (in kB)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:382
+msgid "md5sum"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "Details of source package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:428
+#, perl-format
+msgid "Details of package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:430
+#, perl-format
+msgid "Details of source package %s in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:431
+#, perl-format
+msgid "Details of package %s in %s"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:37 lib/Packages/DoDownload.pm:209
+msgid "architecture not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:45
+#, perl-format
+msgid ""
+"Filelist of package <em>%s</em> in <em>%s</em> of architecture <em>%s</em>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:46
+#, perl-format
+msgid "Filelist of of package %s/%s/%s"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:57
+msgid "No such package in this suite on this architecture."
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:69
+msgid "Invalid suite/architecture combination"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:212
+#, perl-format
+msgid "more than one suite specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:215
+#, perl-format
+msgid "more than one architecture specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:256
+msgid "Package Download Selection"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:262
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd> on %s machines"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:264
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:268
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at any "
+"of these sites:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:270
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:276
+msgid ""
+"Debian security updates are currently officially distributed only via "
+"<tt>security.debian.org</tt>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:279 lib/Packages/DoDownload.pm:289
+#: lib/Packages/DoDownload.pm:299 lib/Packages/DoDownload.pm:333
+msgid "North America"
+msgstr ""
+
+#. $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
+#: lib/Packages/DoDownload.pm:280 lib/Packages/DoDownload.pm:290
+#: lib/Packages/DoDownload.pm:300 lib/Packages/DoDownload.pm:311
+#: lib/Packages/DoDownload.pm:323 lib/Packages/DoDownload.pm:335
+msgid "Europe"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#: lib/Packages/DoDownload.pm:283 lib/Packages/DoDownload.pm:303
+#: lib/Packages/DoDownload.pm:315 lib/Packages/DoDownload.pm:339
+msgid "Asia"
+msgstr ""
+
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:286
+msgid ""
+"Note that AMD64 is not officialy included in the Debian archive yet, but the "
+"AMD64 porter group keeps their archive in sync with the official archive as "
+"close as possible. See the <a href=\"http://www.debian.org/ports/amd64/"
+"\">AMD64 ports page</a> for current information."
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @amd64_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:296
+msgid ""
+"Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, "
+"but the GNU/kFreeBSD porter group keeps their archive in sync with the "
+"official archive as close as possible. See the <a href=\"http://www.debian."
+"org/ports/kfreebsd-gnu/\">GNU/kFreeBSD ports page</a> for current "
+"information."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:301 lib/Packages/DoDownload.pm:313
+#: lib/Packages/DoDownload.pm:337
+msgid "Australia and New Zealand"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:304 lib/Packages/DoDownload.pm:341
+msgid "South America"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @nonus_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:306 lib/Packages/DoDownload.pm:319
+#: lib/Packages/DoDownload.pm:329 lib/Packages/DoDownload.pm:344
+#, perl-format
+msgid ""
+"If none of the above sites are fast enough for you, please see our <a href="
+"\"%s\">complete mirror list</a>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:347
+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 ""
+
+#: lib/Packages/DoDownload.pm:348
+#, perl-format
+msgid "The MD5sum for <tt>%s</tt> is <strong>%s</strong>"
+msgstr ""
+
+#: bin/create_index_pages:63
+#, perl-format
+msgid "List of sections in \"%s\""
+msgstr ""
+
+#: bin/create_index_pages:83
+msgid "List of all packages"
+msgstr ""
+
+#: bin/create_index_pages:84
+msgid "All packages"
+msgstr ""
+
+#: bin/create_index_pages:85
+msgid "compact compressed textlist"
+msgstr ""
+
+#: bin/create_index_pages:107
+#, perl-format
+msgid "Software Packages in \"%s\""
+msgstr ""
+
+#: bin/create_index_pages:119
+#, perl-format
+msgid "Software Packages in \"%s\", section %s"
+msgstr ""
+
+#: bin/create_index_pages:132
+#, perl-format
+msgid "Software Packages in \"%s\", subsection %s"
+msgstr ""
+
+#: bin/create_index_pages:145
+#, perl-format
+msgid "Software Packages in \"%s\", priority %s"
+msgstr ""
diff --git a/po/pdo.uk.po b/po/pdo.uk.po
new file mode 100644 (file)
index 0000000..30cda1c
--- /dev/null
@@ -0,0 +1,919 @@
+# translation of pdo.po to Ukrainian
+# This file is put in the public domain.
+# Eugeniy Meshcheryakov <eugen@univ.kiev.ua>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pdo\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-11-02 14:08+0200\n"
+"Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n"
+"Language-Team: Ukrainian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: bin/create_index_pages:63
+#, fuzzy, perl-format
+msgid "List of sections in \"%s\""
+msgstr "Список розділів в дистрибутиві %s"
+
+#: bin/create_index_pages:83
+msgid "List of all packages"
+msgstr "Список всіх пакунків"
+
+#: bin/create_index_pages:84
+msgid "All packages"
+msgstr "Всі пакунки"
+
+#: bin/create_index_pages:85
+msgid "compact compressed textlist"
+msgstr "компактний стислий список"
+
+#: bin/create_index_pages:107
+#, perl-format
+msgid "Software Packages in \"%s\""
+msgstr "Пакунки в дистрибутиві „%s“"
+
+#: bin/create_index_pages:119
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", section %s"
+msgstr "Пакунки в дистрибутиві „%s“, розділі %s"
+
+#: bin/create_index_pages:132
+#, fuzzy, perl-format
+msgid "Software Packages in \"%s\", subsection %s"
+msgstr "Пакунки в дистрибутиві „%s“, розділі %s"
+
+#: bin/create_index_pages:145
+#, perl-format
+msgid "Software Packages in \"%s\", priority %s"
+msgstr "Пакунки в дистрибутиві „%s“, пріоритет %s"
+
+#. Done
+#: cgi-bin/dispatcher.pl:89
+msgid "search doesn't take any more path elements"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:92
+msgid ""
+"We're supposed to display the homepage here, instead of getting dispatch.pl"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:117
+#, perl-format
+msgid "%s set more than once in path"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:147
+#, fuzzy, perl-format
+msgid "two or more packages specified (%s)"
+msgstr "Джерельний пакунок: %s (%s)"
+
+#: cgi-bin/dispatcher.pl:234
+msgid "Error"
+msgstr ""
+
+#: cgi-bin/dispatcher.pl:239
+#, fuzzy
+msgid "search for a package"
+msgstr "Список всіх пакунків"
+
+#: lib/Packages/DoDownload.pm:203 lib/Packages/DoFilelist.pm:31
+#: lib/Packages/DoShow.pm:30
+msgid "package not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:206 lib/Packages/DoFilelist.pm:34
+#: lib/Packages/DoSearchContents.pm:31 lib/Packages/DoShow.pm:33
+msgid "suite not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:209 lib/Packages/DoFilelist.pm:37
+msgid "architecture not valid or not specified"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:212
+#, perl-format
+msgid "more than one suite specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:215
+#, perl-format
+msgid "more than one architecture specified for download (%s)"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:236 lib/Packages/DoShow.pm:71
+#, fuzzy
+msgid "No such package."
+msgstr "Джерельний пакунок"
+
+#: lib/Packages/DoDownload.pm:237 lib/Packages/DoShow.pm:72
+#, perl-format
+msgid "<a href=\"%s\">Search for the package</a>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:256
+msgid "Package Download Selection"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:262
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd> on %s machines"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:264
+#, perl-format
+msgid "Download Page for <kbd>%s</kbd>"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:268
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at any "
+"of these sites:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:270
+#, perl-format
+msgid ""
+"You can download the requested file from the <tt>%s</tt> subdirectory at:"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:276
+msgid ""
+"Debian security updates are currently officially distributed only via "
+"<tt>security.debian.org</tt>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:279 lib/Packages/DoDownload.pm:289
+#: lib/Packages/DoDownload.pm:299 lib/Packages/DoDownload.pm:333
+msgid "North America"
+msgstr ""
+
+#. $$page_content .= print_links( "North America", $file, @nonus_north_american_sites );
+#: lib/Packages/DoDownload.pm:280 lib/Packages/DoDownload.pm:290
+#: lib/Packages/DoDownload.pm:300 lib/Packages/DoDownload.pm:311
+#: lib/Packages/DoDownload.pm:323 lib/Packages/DoDownload.pm:335
+msgid "Europe"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#: lib/Packages/DoDownload.pm:283 lib/Packages/DoDownload.pm:303
+#: lib/Packages/DoDownload.pm:315 lib/Packages/DoDownload.pm:339
+msgid "Asia"
+msgstr ""
+
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:286
+msgid ""
+"Note that AMD64 is not officialy included in the Debian archive yet, but the "
+"AMD64 porter group keeps their archive in sync with the official archive as "
+"close as possible. See the <a href=\"http://www.debian.org/ports/amd64/"
+"\">AMD64 ports page</a> for current information."
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @amd64_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:296
+msgid ""
+"Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, "
+"but the GNU/kFreeBSD porter group keeps their archive in sync with the "
+"official archive as close as possible. See the <a href=\"http://www.debian."
+"org/ports/kfreebsd-gnu/\">GNU/kFreeBSD ports page</a> for current "
+"information."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:301 lib/Packages/DoDownload.pm:313
+#: lib/Packages/DoDownload.pm:337
+msgid "Australia and New Zealand"
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:304 lib/Packages/DoDownload.pm:341
+msgid "South America"
+msgstr ""
+
+#. $$page_content .= print_links( "Australia and New Zealand", $file,
+#. @nonus_australian_sites );
+#. $$page_content .= print_links( "Asia", $file, @nonus_asian_sites );
+#. $$page_content .= print_links( "South America", $file, @nonus_south_american_sites );
+#: lib/Packages/DoDownload.pm:306 lib/Packages/DoDownload.pm:319
+#: lib/Packages/DoDownload.pm:329 lib/Packages/DoDownload.pm:344
+#, perl-format
+msgid ""
+"If none of the above sites are fast enough for you, please see our <a href="
+"\"%s\">complete mirror list</a>."
+msgstr ""
+
+#: lib/Packages/DoDownload.pm:347
+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 ""
+
+#: lib/Packages/DoDownload.pm:348
+#, perl-format
+msgid "The MD5sum for <tt>%s</tt> is <strong>%s</strong>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:45
+#, perl-format
+msgid ""
+"Filelist of package <em>%s</em> in <em>%s</em> of architecture <em>%s</em>"
+msgstr ""
+
+#: lib/Packages/DoFilelist.pm:46
+#, fuzzy, perl-format
+msgid "Filelist of of package %s/%s/%s"
+msgstr "Список всіх пакунків"
+
+#: lib/Packages/DoFilelist.pm:57
+#, fuzzy
+msgid "No such package in this suite on this architecture."
+msgstr "Немає пакунків в цій секції цього дистрибутиву"
+
+#: lib/Packages/DoFilelist.pm:69
+msgid "Invalid suite/architecture combination"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:30 lib/Packages/DoSearchContents.pm:26
+msgid "keyword not valid or missing"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:32 lib/Packages/DoSearchContents.pm:28
+msgid "keyword too short (keywords need to have at least two characters)"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:105
+#, perl-format
+msgid ""
+"Your search was too wide so we will only display exact matches. At least <em>"
+"%s</em> results have been omitted and will not be displayed. Please consider "
+"using a longer keyword or more keywords."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:111 lib/Packages/DoSearch.pm:113
+msgid "Can't find that package."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:114
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed due to the search "
+"parameters."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:124
+msgid "Can't find that string."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:126
+#, perl-format
+msgid ""
+"Can't find that string, at least not in that suite (%s, section %s) and on "
+"that architecture (%s)."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:131
+#, perl-format
+msgid ""
+"You have searched only for words exactly matching your keywords. You can try "
+"to search <a href=\"%s\">allowing subword matching</a>."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:135
+#, fuzzy, perl-format
+msgid ""
+"You can try a different search on the <a href=\"%s\">Packages search page</"
+"a>."
+msgstr ""
+"Повернутися до: <a href=\"%s/\">головної сторінки проекту Debian</a> || <a "
+"href=\"%s/\">сторінки пошуку пакунків</a>"
+
+#: lib/Packages/DoSearch.pm:139
+msgid "Package Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:141
+#, fuzzy
+msgid "Debian Package Search Results"
+msgstr "Всі пакунки Debian в дистрибутиві „%s“"
+
+#: lib/Packages/DoSearch.pm:229
+#, perl-format
+msgid "Found <em>%s</em> matching packages."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:236
+msgid "Exact hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:243
+msgid "Other hits"
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:253
+#, perl-format
+msgid ""
+"<a href=\"%s\">%s</a> results have not been displayed because you requested "
+"only exact matches."
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:265
+#, fuzzy, perl-format
+msgid "Package %s"
+msgstr "Пакунок: %s (%s)"
+
+#: lib/Packages/DoSearch.pm:296
+msgid "also provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:303
+msgid "provided by: "
+msgstr ""
+
+#: lib/Packages/DoSearch.pm:315
+#, fuzzy, perl-format
+msgid "Source package %s"
+msgstr "Джерельний пакунок"
+
+#: lib/Packages/DoSearch.pm:331
+#, fuzzy
+msgid "Binary packages: "
+msgstr "віртуальний пакунок"
+
+#: lib/Packages/DoSearchContents.pm:34
+#, perl-format
+msgid "more than one suite specified for contents search (%s)"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:78
+msgid "Exact and fullfilenamesearch don't go along"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:116
+msgid ""
+"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 ""
+
+#: lib/Packages/DoSearchContents.pm:120
+#, fuzzy
+msgid "Nothing found"
+msgstr "Не знайдено"
+
+#: lib/Packages/DoSearchContents.pm:123
+msgid "Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:125
+msgid "Debian Package Contents Search Results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:141
+#, perl-format
+msgid "Found %s results"
+msgstr ""
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#: lib/Packages/DoShow.pm:380
+msgid "File"
+msgstr "Файл"
+
+#: lib/Packages/DoSearchContents.pm:143 lib/Packages/DoSearchContents.pm:156
+#, fuzzy
+msgid "Packages"
+msgstr "Розмір пакунка"
+
+#: lib/Packages/DoShow.pm:36
+#, perl-format
+msgid "more than one suite specified for show (%s)"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:96
+#, fuzzy
+msgid "Package not available in this suite."
+msgstr "Пакунок недоступний"
+
+#. $long_desc = conv_desc( $lang, $long_desc );
+#. $short_desc = conv_desc( $lang, $short_desc );
+#: lib/Packages/DoShow.pm:154 lib/Packages/DoShow.pm:261
+#: lib/Packages/DoShow.pm:304
+msgid "Distribution:"
+msgstr "Дистрибутив"
+
+#: lib/Packages/DoShow.pm:155 lib/Packages/DoShow.pm:305
+#, fuzzy
+msgid "Overview over this suite"
+msgstr "Огляд цього дистрибутива"
+
+#: lib/Packages/DoShow.pm:158 lib/Packages/DoShow.pm:265
+#: lib/Packages/DoShow.pm:308
+msgid "Section:"
+msgstr "Розділ:"
+
+#: lib/Packages/DoShow.pm:159 lib/Packages/DoShow.pm:266
+#: lib/Packages/DoShow.pm:309
+msgid "All packages in this section"
+msgstr "Всі пакунки в цьому розділі"
+
+#: lib/Packages/DoShow.pm:164
+#, perl-format
+msgid "Package: %s (%s)"
+msgstr "Пакунок: %s (%s)"
+
+#: lib/Packages/DoShow.pm:171
+msgid "Versions:"
+msgstr "Версії:"
+
+#: lib/Packages/DoShow.pm:174
+msgid "This is also a virtual package provided by "
+msgstr ""
+
+#: lib/Packages/DoShow.pm:178 lib/Packages/DoShow.pm:323
+msgid "Experimental package"
+msgstr "Експериментальний пакунок"
+
+#: lib/Packages/DoShow.pm:179 lib/Packages/DoShow.pm:324
+#, fuzzy
+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. If you ignore this warning and install it nevertheless, you "
+"do it on your own risk."
+msgstr ""
+"Увага: Це пакунок <span class=\"pred\">експериментального</span> "
+"дистрибутиву. Це означає, що він напевне нестабільний або в ньому є помилки, "
+"і він навіть може призвести до втрати даних. Якщо ви проігноруєте це "
+"попередження і встановите його, то робіть це на ваш ризик."
+
+#: lib/Packages/DoShow.pm:183 lib/Packages/DoShow.pm:328
+msgid "debian-installer udeb package"
+msgstr "udeb-пакунок встановлювача"
+
+#: lib/Packages/DoShow.pm:184 lib/Packages/DoShow.pm:329
+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 Debian system."
+msgstr ""
+"Увага: цей пакунок призначений для використання тільки при створенні образів "
+"<a href=\"http://www.debian.org/devel/debian-installer\">встановлювача "
+"Debian</a>. Не встановлюйте його на звичайній системі Debian."
+
+#: lib/Packages/DoShow.pm:205 lib/Packages/DoShow.pm:354
+#, perl-format
+msgid "Other Packages Related to %s"
+msgstr "Інші пакунки пов'язані з %s"
+
+#: lib/Packages/DoShow.pm:207 lib/Packages/DoShow.pm:356
+#, fuzzy, perl-format
+msgid ""
+"Note that the <strong>experimental</strong> distribution is not self-"
+"contained; missing dependencies are likely found in the <a href=\"%s"
+"\">unstable</a> distribution."
+msgstr ""
+"Майте на увазі, що „<span class=\"pred\">експериментальний</span>“ "
+"дистрибутив не є самодостатнім; відсутні залежності скоріше за все є „<a "
+"href=\"../../unstable/\">нестабільному</a>“ дистрибутиві."
+
+#: lib/Packages/DoShow.pm:210
+msgid "depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:211
+msgid "recommends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:212
+msgid "suggests"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:223
+#, perl-format
+msgid "Download %s\n"
+msgstr "Завантажити %s\n"
+
+#: lib/Packages/DoShow.pm:225
+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 ""
+"Таблиця завантаження містить посилання для завантаження пакунків та огляд "
+"файлів. Додатково, вона містить інформацію про розмір пакунка та розмір "
+"після встановлення."
+
+#: lib/Packages/DoShow.pm:226
+msgid "Download for all available architectures"
+msgstr "Завантаження для всіх доступних архітектур"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Architecture"
+msgstr "Архітектура"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Files"
+msgstr "Файли"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Installed Size"
+msgstr "Розмір після встановлення"
+
+#: lib/Packages/DoShow.pm:228
+msgid "Package Size"
+msgstr "Розмір пакунка"
+
+#: lib/Packages/DoShow.pm:235
+msgid "list of files"
+msgstr "список файлів"
+
+#: lib/Packages/DoShow.pm:238
+#, fuzzy
+msgid "no current information"
+msgstr "Додаткова інформація про %s"
+
+#. unless $page->is_virtual
+#: lib/Packages/DoShow.pm:259
+msgid "virtual package"
+msgstr "віртуальний пакунок"
+
+#: lib/Packages/DoShow.pm:262
+msgid "Overview over this distribution"
+msgstr "Огляд цього дистрибутива"
+
+#: lib/Packages/DoShow.pm:271
+#, perl-format
+msgid "Virtual Package: %s"
+msgstr "Віртуальний пакунок: %s"
+
+#: lib/Packages/DoShow.pm:275
+#, perl-format
+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 ""
+"Це&nbsp;&mdash; <em>віртуальний пакунок</em>. Перегляньте <a href=\"%s"
+"\">Політику Debian</a> щоб дізнатись про <a href=\"%sch-binary.html#s-"
+"virtual_pkg\">визначення віртуальних пакунків</a>."
+
+#: lib/Packages/DoShow.pm:278
+#, perl-format
+msgid "Packages providing %s"
+msgstr "Пакунки що надають %s"
+
+#: lib/Packages/DoShow.pm:314
+#, fuzzy, perl-format
+msgid "Source Package: %s (%s)"
+msgstr "Джерельний пакунок: %s (%s)"
+
+#: lib/Packages/DoShow.pm:336
+msgid "The following binary packages are built from this source package:"
+msgstr "Наступні двійкові пакунки побудовано з цього джерельного пакунка:"
+
+#: lib/Packages/DoShow.pm:360
+msgid "build-depends"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:361
+msgid "build-depends-indep"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:372
+#, perl-format
+msgid "Download %s"
+msgstr "Завантажити %s"
+
+#: lib/Packages/DoShow.pm:378
+msgid "Download information for the files of this source package"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:381
+msgid "Size (in kB)"
+msgstr "Розмір (в кБ)"
+
+#: lib/Packages/DoShow.pm:382
+msgid "md5sum"
+msgstr "сума MD5"
+
+#: lib/Packages/DoShow.pm:427
+#, perl-format
+msgid "Details of source package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:428
+#, perl-format
+msgid "Details of package <em>%s</em> in %s"
+msgstr ""
+
+#: lib/Packages/DoShow.pm:430
+#, fuzzy, perl-format
+msgid "Details of source package %s in %s"
+msgstr "Джерельні пакунки в дистрибутиві „%s“"
+
+#: lib/Packages/DoShow.pm:431
+#, fuzzy, perl-format
+msgid "Details of package %s in %s"
+msgstr "Нові пакунки в дистрибутиві %s"
+
+#: lib/Packages/HTML.pm:93
+msgid "Not available"
+msgstr "Не доступний"
+
+#: lib/Packages/HTML.pm:114
+#, perl-format
+msgid "More Information on %s"
+msgstr "Додаткова інформація про %s"
+
+#: lib/Packages/HTML.pm:119
+#, perl-format
+msgid "Check for <a href=\"%s\">Bug Reports</a> about %s."
+msgstr "Перегляньте <a href=\"%s\">повідомлення про помилки</a> про %s."
+
+#: lib/Packages/HTML.pm:131
+msgid "Source Package:"
+msgstr "Джерельний пакунок:"
+
+#: lib/Packages/HTML.pm:133
+msgid "Download"
+msgstr "Завантажити"
+
+#: lib/Packages/HTML.pm:136
+msgid "Not found"
+msgstr "Не знайдено"
+
+#: lib/Packages/HTML.pm:169
+#, perl-format
+msgid "View the <a href=\"%s\">Debian changelog</a>"
+msgstr "Переглянути <a href=\"%s\">журнал змін Debian</a>"
+
+#: lib/Packages/HTML.pm:174
+#, perl-format
+msgid "View the <a href=\"%s\">copyright file</a>"
+msgstr "Переглянути <a href=\"%s\">файл з авторськими правами</a>"
+
+#: lib/Packages/HTML.pm:187
+#, perl-format
+msgid "%s is responsible for this Debian package."
+msgstr "%s відповідає за цей пакунок Debian"
+
+#: lib/Packages/HTML.pm:199
+#, perl-format
+msgid " and %s are responsible for this Debian package."
+msgstr " і %s відповідають з цей пакунок Debian."
+
+#: lib/Packages/HTML.pm:204
+#, perl-format
+msgid "See the <a href=\"%s\">developer information for %s</a>."
+msgstr "Перегляньте <a href=\"%s\">інформацію для розробників про %s</a>."
+
+#: lib/Packages/HTML.pm:210
+#, perl-format
+msgid "Search for <a href=\"%s\">other versions of %s</a>"
+msgstr "Шукати на <a href=\"%s\">інші версії %s</a>"
+
+#: lib/Packages/HTML.pm:277
+msgid "not"
+msgstr "не"
+
+#: lib/Packages/HTML.pm:316
+msgid "Package not available"
+msgstr "Пакунок недоступний"
+
+#: lib/Packages/HTML.pm:322
+msgid "or"
+msgstr "або"
+
+#: lib/Packages/HTML.pm:410 lib/Packages/HTML.pm:501
+msgid "Search"
+msgstr "Пошук"
+
+#: lib/Packages/HTML.pm:411
+msgid "Full options"
+msgstr ""
+
+#: lib/Packages/HTML.pm:412
+#, fuzzy
+msgid "Search on:"
+msgstr "Пошук"
+
+#: lib/Packages/HTML.pm:413
+#, fuzzy
+msgid "Package Names"
+msgstr "Розмір пакунка"
+
+#: lib/Packages/HTML.pm:414
+#, fuzzy
+msgid "Descriptions"
+msgstr "Дистрибутив"
+
+#: lib/Packages/HTML.pm:415
+#, fuzzy
+msgid "Source package names"
+msgstr "Джерельний пакунок"
+
+#: lib/Packages/HTML.pm:416
+#, fuzzy
+msgid "Package contents"
+msgstr "Розмір пакунка"
+
+#: lib/Packages/HTML.pm:479
+msgid "Debian Project"
+msgstr "Проект Debian"
+
+#: lib/Packages/HTML.pm:493
+msgid "Skip Site Navigation"
+msgstr "Пропустити меню"
+
+#: lib/Packages/HTML.pm:495
+msgid "About&nbsp;Debian"
+msgstr "Про&nbsp;Debian"
+
+#: lib/Packages/HTML.pm:496
+msgid "News"
+msgstr "Новини"
+
+#: lib/Packages/HTML.pm:497
+msgid "Getting&nbsp;Debian"
+msgstr "Отримання&nbsp;Debian"
+
+#: lib/Packages/HTML.pm:498
+msgid "Support"
+msgstr "Підтримка"
+
+#: lib/Packages/HTML.pm:499
+msgid "Development"
+msgstr "Розробка"
+
+#: lib/Packages/HTML.pm:500
+msgid "Site map"
+msgstr "Карта сайту"
+
+#: lib/Packages/HTML.pm:530
+#, perl-format
+msgid ""
+"Back to: <a href=\"%s/\">Debian Project homepage</a> || <a href=\"%s/"
+"\">Packages search page</a>"
+msgstr ""
+"Повернутися до: <a href=\"%s/\">головної сторінки проекту Debian</a> || <a "
+"href=\"%s/\">сторінки пошуку пакунків</a>"
+
+#: lib/Packages/HTML.pm:533
+#, perl-format
+msgid ""
+"To report a problem with the web site, e-mail <a href=\"mailto:%s\">%s</a>. "
+"For other contact information, see the Debian <a href=\"%s/contact\">contact "
+"page</a>."
+msgstr ""
+"Щоб повідомити про проблему із web-сайтом, надішліть лист на адресу <a href="
+"\"mailto:%s\">%s</a>. Додаткову інформацію дивиться на <a href=\"%s/contact"
+"\">сторінці з контактною інформацією</a>."
+
+#: lib/Packages/HTML.pm:535
+msgid "Last Modified: "
+msgstr "Остання зміна:"
+
+#: lib/Packages/HTML.pm:537
+#, perl-format
+msgid ""
+"Copyright &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; See "
+"<a href=\"%s/license\">license terms</a>."
+msgstr ""
+"Авторські права &copy; 1997-2005 <a href=\"http://www.spi-inc.org\">SPI</a>; "
+"Дивіться <a href=\"%s/license\">умови ліцензії</a>."
+
+#: lib/Packages/HTML.pm:538
+msgid ""
+"Debian is a registered trademark of Software in the Public Interest, Inc."
+msgstr ""
+"Debian є зареєстрованою торговою маркою Software in the Public Interest, Inc."
+
+#: lib/Packages/HTML.pm:555
+msgid "This page is also available in the following languages:\n"
+msgstr "Ця сторінка також доступна наступними мовами:\n"
+
+#: lib/Packages/HTML.pm:574
+#, fuzzy, perl-format
+msgid "How to set <a href=\"%s\">the default document language</a>"
+msgstr "Як встановити <a href=\"%s\">мову документа за замовчанням</a></p>"
+
+#: lib/Packages/Page.pm:47
+msgid "package has bad maintainer field"
+msgstr ""
+
+#~ msgid ""
+#~ "Warning: The <span class=\"pred\">experimental</span> distribution "
+#~ "contains software that is likely unstable or buggy and may even cause "
+#~ "data loss. If you ignore this warning and install it nevertheless, you do "
+#~ "it on your own risk."
+#~ msgstr ""
+#~ "Увага: „<span class=\"pred\">Експериментальний</span>“ містить програмне "
+#~ "забезпечення, яке напевне є нестабільним або містить помилки і навіть "
+#~ "може спричинити втрату даних. Якщо ви проігноруєте це попередження і "
+#~ "встановите його, то робіть це на ваш ризик."
+
+#~ msgid "New Packages in \"%s\""
+#~ msgstr "Нові пакунки в дистрибутиві „%s“"
+
+#~ msgid ""
+#~ "The following packages were added to the unstable Debian archive during "
+#~ "the last 7 days."
+#~ msgstr ""
+#~ "Наступні пакунки було додано до нестабільного архіву Debian протягом "
+#~ "останніх семи днів."
+
+#~ msgid ""
+#~ "This information is also available as an <a href=\"newpkg_%s.%s.rdf\">RSS "
+#~ "feed</a>."
+#~ msgstr ""
+#~ "Ця інформація також доступна як <a href=\"newpkg_%s.%s.rdf\">лента RSS</"
+#~ "a>."
+
+#~ msgid ""
+#~ "Packages that were added to the unstable Debian archive during the last 7 "
+#~ "days."
+#~ msgstr ""
+#~ "Пакунки які біли додані до нестабільного архіву Debian впродовж останніх "
+#~ "7 днів."
+
+#~ msgid ""
+#~ "The following packages were added to the \"%s\" component next to the "
+#~ "Debian archive during the last 7 days."
+#~ msgstr ""
+#~ "Наступні пакунки було додано до компоненту „%s“ впродовж останніх 7 днів."
+
+#~ msgid ""
+#~ "Packages that were added to the \"%s\" component next to the unstable "
+#~ "Debian archive during the last 7 days."
+#~ msgstr ""
+#~ "Пакунки які було додано до компоненту „%s“ впродовж останніх 7 днів."
+
+#~ msgid ""
+#~ "Users of experimental packages are encouraged to contact the package "
+#~ "maintainers directly in case of problems."
+#~ msgstr ""
+#~ "Користувачам експериментальних пакунків у випадку виникнення проблем "
+#~ "рекомендується зв'язуватись зі супроводжуючими пакунків напряму."
+
+#~ msgid "Size is measured in kBytes."
+#~ msgstr "Розмір даний в кілобайтах."
+
+#~ msgid "Version"
+#~ msgstr "Версія"
+
+#~ msgid "Maintainer"
+#~ msgstr "Супроводжуючий"
+
+#~ msgid "Uploaders"
+#~ msgstr "Завантажувачі"
+
+#~ msgid "Section"
+#~ msgstr "Розділ"
+
+#~ msgid "Priority"
+#~ msgstr "Приоритет"
+
+#~ msgid "Essential"
+#~ msgstr "Необхідний"
+
+#~ msgid "yes"
+#~ msgstr "так"
+
+#~ msgid ""
+#~ "Warning: These packages are intended for the use in building <a href="
+#~ "\"http://www.debian.org/devel/debian-installer/\">debian-installer</a> "
+#~ "images only. Do not install them on a normal Debian system."
+#~ msgstr ""
+#~ "Увага: Ці пакунки призначені для використання тільки при побудові образів "
+#~ "<a href=\"http://www.debian.org/devel/debian-installer/\">встановлювача "
+#~ "Debian</a>. Не встановлюйте їх на нормальній системі Debian."
+
+#~ msgid "No packages with this priority in this suite"
+#~ msgstr "Немає пакунків з цим пріоритетом в цьому розділі"
+
+#~ msgid "Software Packages in \"%s\", essential packages"
+#~ msgstr "Пакунки в дистрибутиві „%s“, необхідні пакунки"
+
+#~ msgid "No essential packages in this suite"
+#~ msgstr "Немає необхідних пакунків в цьому дистрибутиві"
+
+#~ msgid ""
+#~ "Copyright (C) 1997-2005 SPI;\n"
+#~ "See <URL:http://www.debian.org/license> for the license terms.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Copyright (C) 1997-2005 SPI;\n"
+#~ "Перегляньте <URL:http://www.debian.org/license> щодо умов ліцензії.\n"
+#~ "\n"
+
+#~ msgid "Virtual package"
+#~ msgstr "Віртуальний пакунок"
diff --git a/po/sections.de.po b/po/sections.de.po
new file mode 100644 (file)
index 0000000..d7edeb4
--- /dev/null
@@ -0,0 +1,365 @@
+msgid ""
+msgstr ""
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"Last-Translator: Frank Lichtenheld <frank@lichtenheld.de>\n"
+"Language-Team: debian-l10n-german <debian-l10n-german@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: lib/Packages/Sections.pm:12
+msgid "Administration Utilities"
+msgstr "Administrierungswerkzeuge"
+
+#: lib/Packages/Sections.pm:13
+msgid "Utilities to administer system resources, manage user accounts, etc."
+msgstr ""
+"Hilfsprogramme um Systemressourcen zu verwalten, Benutzeraccounts zu "
+"verwalten, usw."
+
+#: lib/Packages/Sections.pm:14
+msgid "Base Utilities"
+msgstr "Basisprogramme"
+
+#: lib/Packages/Sections.pm:15
+msgid "Basic needed utilities of every Debian system."
+msgstr ""
+
+#: lib/Packages/Sections.pm:16
+msgid "Communication Programs"
+msgstr "Kommunikationsprogramme"
+
+#: lib/Packages/Sections.pm:17
+msgid "Software to use your modem in the old fashioned style."
+msgstr "Software, um Ihr Modem auf altmodische Art zu verwenden."
+
+#: lib/Packages/Sections.pm:18
+msgid "Development"
+msgstr "Entwicklung"
+
+#: lib/Packages/Sections.pm:19
+msgid ""
+"Development utilities, compilers, development environments, libraries, etc."
+msgstr ""
+"Entwicklungswerkzeuge, Compiler, Entwicklungsumgebungen, Bibliotheken, usw."
+
+#: lib/Packages/Sections.pm:20
+msgid "Documentation"
+msgstr "Dokumentation"
+
+#: 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 und andere Dokumente, die versuchen, alles in Bezug auf Debian "
+"zu erklären, sowie Software, die nötig ist, um die Dokumentation zu nutzen "
+"(man, info, usw.)"
+
+#: lib/Packages/Sections.pm:22
+msgid "Editors"
+msgstr "Editoren"
+
+#: lib/Packages/Sections.pm:23
+msgid "Software to edit files. Programming environments."
+msgstr "Software um Dateien zu editieren. Programmierumgebungen."
+
+#: lib/Packages/Sections.pm:24
+msgid "Electronics"
+msgstr "Elektronik"
+
+#: lib/Packages/Sections.pm:25
+msgid "Electronics utilities."
+msgstr "Elektronikprogramme."
+
+#: lib/Packages/Sections.pm:26
+msgid "Embedded software"
+msgstr "Embedded Software"
+
+#: lib/Packages/Sections.pm:27
+msgid "Software suitable for use in embedded applications."
+msgstr "Software, die für die Benutzung in Embedded-Systemen geeignet ist."
+
+#: lib/Packages/Sections.pm:28
+msgid "Games"
+msgstr "Spiele"
+
+#: lib/Packages/Sections.pm:29
+msgid "Programs to spend a nice time with after all this setting up."
+msgstr ""
+"Programme, mit denen man eine schöne Zeit verbringen kann nach dem ganzen "
+"Einrichten."
+
+#: 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 ""
+"Die GNOME-Desktop-Umgebung, eine mächtige, leicht zu benutzende Sammlung von "
+"integrierten Anwendungen."
+
+#: lib/Packages/Sections.pm:32
+msgid "Graphics"
+msgstr "Grafik"
+
+#: lib/Packages/Sections.pm:33
+msgid "Editors, viewers, converters... Everything to become an artist."
+msgstr "Editoren, Viewer, Konverter... Alles um ein Künstler zu werden."
+
+#: lib/Packages/Sections.pm:34
+msgid "Ham Radio"
+msgstr "Amateurfunk"
+
+#: lib/Packages/Sections.pm:35
+msgid "Software for ham radio."
+msgstr "Software für Amateurfunker."
+
+#: lib/Packages/Sections.pm:36
+msgid "Interpreters"
+msgstr "Interpreter"
+
+#: lib/Packages/Sections.pm:37
+msgid "All kind of interpreters for interpreted languages. Macro processors."
+msgstr ""
+"Alle Sorten von Interpretern für interpretierte Programmiersprachen. "
+"Makroprozessoren."
+
+#: 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 ""
+"Die K-Desktop-Umgebung, eine mächtige, leicht zu benutzende Sammlung von "
+"integrierten Anwendungen."
+
+#: lib/Packages/Sections.pm:40
+msgid "Libraries"
+msgstr "Bibliotheken"
+
+#: lib/Packages/Sections.pm:41
+msgid ""
+"Libraries to make other programs work. They provide special features to "
+"developers."
+msgstr "Bibliotheken, die von anderen Programmen benutzt werden."
+
+#: lib/Packages/Sections.pm:42
+msgid "Library development"
+msgstr "Bibliotheksentwicklung"
+
+#: lib/Packages/Sections.pm:43
+msgid "Libraries necessary for developers to write programs that use them."
+msgstr ""
+"Bibliotheken, die von Entwicklern benötigt werden, um Programme zu "
+"entwicklen, die sie benutzen."
+
+#: lib/Packages/Sections.pm:44
+msgid "Mail"
+msgstr "E-Mail"
+
+#: lib/Packages/Sections.pm:45
+msgid "Programs to route, read, and compose E-mail messages."
+msgstr "Programme um E-Mails weiterzuleiten, zu lesen und zu schreiben."
+
+#: lib/Packages/Sections.pm:46
+msgid "Mathematics"
+msgstr "Mathematik"
+
+#: lib/Packages/Sections.pm:47
+msgid "Math software."
+msgstr "Mathematische Software."
+
+#: lib/Packages/Sections.pm:48
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
+
+#: lib/Packages/Sections.pm:49
+msgid "Miscellaneous utilities that didn't fit well anywhere else."
+msgstr "Verschiedene Programme, die nirgendwo sonst hineingepasst haben."
+
+#: lib/Packages/Sections.pm:50
+msgid "Network"
+msgstr "Netzwerk"
+
+#: lib/Packages/Sections.pm:51
+msgid ""
+"Daemons and clients to connect your Debian GNU/Linux system to the world."
+msgstr ""
+"Daemons und Clients um Ihr Debian GNU/Linux-System mit der Welt zu verbinden."
+
+#: lib/Packages/Sections.pm:52
+msgid "Newsgroups"
+msgstr "Newsgroups"
+
+#: lib/Packages/Sections.pm:53
+msgid "Software to access Usenet, to set up news servers, etc."
+msgstr "Software, um auf das Usenet zuzugreifen, News-Server aufzusetzen, usw."
+
+#: lib/Packages/Sections.pm:54
+msgid "Software restricted in the U.S."
+msgstr "Software, die Beschränkungen in den USA unterliegt"
+
+#: lib/Packages/Sections.pm:55
+msgid ""
+"These packages probably may not be used in or distributed from the U.S. due "
+"to software patents. You should check the regulations in your country before "
+"using this software."
+msgstr ""
+"Diese Pakete dürfen wahrscheinlich nicht in den USA verwendet werden oder "
+"nicht ausgeführt werden aufgrund von Software-Patenten. Sie sollten die "
+"Vorschriften in Ihrem Land überprüfen bevor Sie diese Software verwenden."
+
+#: lib/Packages/Sections.pm:56
+msgid "Old Libraries"
+msgstr "Alte Bibliotheken"
+
+#: lib/Packages/Sections.pm:57
+msgid ""
+"Old versions of libraries, kept for backward compatibility with old "
+"applications."
+msgstr ""
+"Alte Versionen von Bibliotheken, die zur Erhaltung der Abwärtskompatibilität "
+"mit alten Anwendungen bereitgestellt werden."
+
+#: lib/Packages/Sections.pm:58
+msgid "Other OS's and file systems"
+msgstr "Andere Betriebs- und Dateisysteme"
+
+#: lib/Packages/Sections.pm:59
+msgid ""
+"Software to run programs compiled for other operating system, and to use "
+"their filesystems."
+msgstr ""
+"Software, um Programme zu benutzen, die für andere Betriebssysteme "
+"kompiliert wurden und um die Dateisysteme anderer Betriebssysteme zu "
+"benutzen."
+
+#: lib/Packages/Sections.pm:60
+msgid "Perl"
+msgstr "Perl"
+
+#: lib/Packages/Sections.pm:61
+msgid "Everything about Perl, an interpreted scripting language."
+msgstr "Alles zu Perl, einer interpretierten Skriptsprache."
+
+#: lib/Packages/Sections.pm:62
+msgid "Python"
+msgstr "Python"
+
+#: lib/Packages/Sections.pm:63
+msgid ""
+"Everything about Python, an interpreted, interactive object oriented "
+"language."
+msgstr ""
+"Alles zu Python, einer interpretierten, interaktiven, objekt-orientierten "
+"Programmiersprache."
+
+#: lib/Packages/Sections.pm:64
+msgid "Science"
+msgstr "Wissenschaft"
+
+#: lib/Packages/Sections.pm:65
+msgid "Basic tools for scientific work"
+msgstr "Programme zum wissenschaftlichen Arbeiten"
+
+#: lib/Packages/Sections.pm:66
+msgid "Shells"
+msgstr "Shells"
+
+#: lib/Packages/Sections.pm:67
+msgid "Command shells. Friendly user interfaces for beginners."
+msgstr "Kommandoshells. Benutzerfreundliche Schnittstellen für Anfänger."
+
+#: lib/Packages/Sections.pm:68
+msgid "Sound"
+msgstr "Sound"
+
+#: lib/Packages/Sections.pm:69
+msgid ""
+"Utilities to deal with sound: mixers, players, recorders, CD players, etc."
+msgstr ""
+"Programme um mit Sound zu arbeiten: Mixer, Player, Recorder, CD-Player, usw."
+
+#: lib/Packages/Sections.pm:70
+msgid "TeX"
+msgstr "TeX"
+
+#: lib/Packages/Sections.pm:71
+msgid "The famous typesetting software and related programs."
+msgstr "Die berühmte Schriftsatz-Software und verwandte Programme."
+
+#: lib/Packages/Sections.pm:72
+msgid "Text Processing"
+msgstr "Textverarbeitung"
+
+#: lib/Packages/Sections.pm:73
+msgid "Utilities to format and print text documents."
+msgstr "Programme, um Textdokumente zu formatieren und zu drucken."
+
+#: lib/Packages/Sections.pm:74
+msgid "Utilities"
+msgstr "Hilfsprogramme"
+
+#: lib/Packages/Sections.pm:75
+msgid ""
+"Utilities for file/disk manipulation, backup and archive tools, system "
+"monitoring, input systems, etc."
+msgstr ""
+"Hilfsprogramme zur Datei/Platten-Manipulation, Backup- und "
+"Archivierungswerkzeuge, System-Beobachtung, Eingabesysteme, usw."
+
+#: lib/Packages/Sections.pm:76
+msgid "Virtual packages"
+msgstr "Virtuelle Pakete"
+
+#: lib/Packages/Sections.pm:77
+msgid "Virtual packages."
+msgstr "Virtuelle Pakete."
+
+#: lib/Packages/Sections.pm:78
+msgid "Web Software"
+msgstr "Web-Software"
+
+#: lib/Packages/Sections.pm:79
+msgid "Web servers, browsers, proxies, download tools etc."
+msgstr "Web-Server, Browser, Proxies, Download-Tools, usw."
+
+#: lib/Packages/Sections.pm:80
+msgid "X Window System software"
+msgstr "»X Window System«-Software"
+
+#: lib/Packages/Sections.pm:81
+msgid ""
+"X servers, libraries, fonts, window managers, terminal emulators and many "
+"related applications."
+msgstr ""
+"X-Server, Bibliotheken, Zeichensätze, Windowmanager, Terminal-Emulatoren und "
+"viele verwandte Anwendungen."
+
+#: lib/Packages/Sections.pm:82
+msgid "debian-installer udeb packages"
+msgstr "debian-installer udeb-Pakete"
+
+#: lib/Packages/Sections.pm:83
+msgid ""
+"Special packages for building customized debian-installer variants. Do not "
+"install them on a normal system!"
+msgstr ""
+"Spezielle Pakete zum Erzeugen von angepassten Debian-Installer-Varianten. "
+"Installieren Sie sie nicht in einem normalen System!"
+
+#~ msgid ""
+#~ "Basic needed utilities of every Debian system (you needn't install this, "
+#~ "they're provided only for upgrading purposes)."
+#~ msgstr ""
+#~ "Allgemeine, von jedem Debian-System benötigte Programme (Sie brauchen "
+#~ "diese im Allgemeinen nicht selbst installieren, sie werden vor allem zu "
+#~ "Aktualisierungszwecken bereitgestellt)."
diff --git a/po/sections.fi.po b/po/sections.fi.po
new file mode 100644 (file)
index 0000000..170a609
--- /dev/null
@@ -0,0 +1,370 @@
+# Finnish translations for packages.debian.org.
+# This file is put in the public domain.
+# Tommi Vainikainen <thv+debian@iki.fi>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: sections\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-10-17 21:52+0300\n"
+"Last-Translator: Tommi Vainikainen <thv+debian@iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: lib/Packages/Sections.pm:12
+msgid "Administration Utilities"
+msgstr "Ylläpitotyökalut"
+
+#: lib/Packages/Sections.pm:13
+msgid "Utilities to administer system resources, manage user accounts, etc."
+msgstr "Työkalut järjestelmän resurssien, käyttäjätilien jne. hallintaan"
+
+#: lib/Packages/Sections.pm:14
+msgid "Base Utilities"
+msgstr "Perusohjelmat"
+
+#: lib/Packages/Sections.pm:15
+msgid "Basic needed utilities of every Debian system."
+msgstr ""
+
+#: lib/Packages/Sections.pm:16
+msgid "Communication Programs"
+msgstr "Tietoliikenneohjelmia"
+
+#: lib/Packages/Sections.pm:17
+msgid "Software to use your modem in the old fashioned style."
+msgstr "Ohjelmistot modeemin käyttöön vanhanaikaiseen tapaan"
+
+#: lib/Packages/Sections.pm:18
+msgid "Development"
+msgstr "Kehitys"
+
+#: lib/Packages/Sections.pm:19
+msgid ""
+"Development utilities, compilers, development environments, libraries, etc."
+msgstr "Kehitystyökalut, kääntäjät, kehitysympäristöt, kirjastot jne."
+
+#: lib/Packages/Sections.pm:20
+msgid "Documentation"
+msgstr "Käyttöohjeet"
+
+#: 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 ""
+"VUKK:t, HOWTOt ja muut käyttöohjeet, jotka selittävät kaikkea Debianiin "
+"liittyvää, sekä ohjelmistot dokumentaation lukemiseksi (man, info jne.)"
+
+#: lib/Packages/Sections.pm:22
+msgid "Editors"
+msgstr "Editorit"
+
+#: lib/Packages/Sections.pm:23
+msgid "Software to edit files. Programming environments."
+msgstr "Ohjelmistot tiedostojen muokkaamiseen, ohjelmointiympäristöt"
+
+#: lib/Packages/Sections.pm:24
+msgid "Electronics"
+msgstr "Elektroniikka"
+
+#: lib/Packages/Sections.pm:25
+msgid "Electronics utilities."
+msgstr "Elektroniikkatyökalut"
+
+#: lib/Packages/Sections.pm:26
+msgid "Embedded software"
+msgstr "Sulautetut ohjelmistot"
+
+#: lib/Packages/Sections.pm:27
+msgid "Software suitable for use in embedded applications."
+msgstr "Sulautetuissa sovelluksissa käytettäväksi sopivat ohjelmistot"
+
+#: lib/Packages/Sections.pm:28
+msgid "Games"
+msgstr "Pelit"
+
+#: lib/Packages/Sections.pm:29
+msgid "Programs to spend a nice time with after all this setting up."
+msgstr "Ohjelmat joiden parissa voi rentoutua asennuksen jälkeen"
+
+#: 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-työpöytäympäristö, tehokas ja helppokäyttöinen integroitujen "
+"sovellusten kokoelma"
+
+#: lib/Packages/Sections.pm:32
+msgid "Graphics"
+msgstr "Grafiikka"
+
+#: lib/Packages/Sections.pm:33
+msgid "Editors, viewers, converters... Everything to become an artist."
+msgstr ""
+"Kuvankäsittely-, katselu- ja muunto-ohjelmat... kaikki mitä taiteilija "
+"tarvitsee"
+
+#: lib/Packages/Sections.pm:34
+msgid "Ham Radio"
+msgstr "Radioamatöörit"
+
+#: lib/Packages/Sections.pm:35
+msgid "Software for ham radio."
+msgstr "Ohjelmistot radioamatööreille"
+
+#: lib/Packages/Sections.pm:36
+msgid "Interpreters"
+msgstr "Tulkit"
+
+#: lib/Packages/Sections.pm:37
+msgid "All kind of interpreters for interpreted languages. Macro processors."
+msgstr "Tulkkeja monillle erilaisille tulkattaville kielille, makroprosessorit"
+
+#: 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 ""
+"K-työpöytäympäristö, tehokas ja helppokäyttöinen integroitujen sovellusten "
+"kokoelma"
+
+#: lib/Packages/Sections.pm:40
+msgid "Libraries"
+msgstr "Kirjastot"
+
+#: lib/Packages/Sections.pm:41
+msgid ""
+"Libraries to make other programs work. They provide special features to "
+"developers."
+msgstr ""
+"Kirjastot saavat muut ohjelmat toimimaan. Ne tarjoavat ominaisuuksia "
+"kehittäjille."
+
+#: lib/Packages/Sections.pm:42
+msgid "Library development"
+msgstr "Kehityskirjastot"
+
+#: lib/Packages/Sections.pm:43
+msgid "Libraries necessary for developers to write programs that use them."
+msgstr "Kehittäjien kirjastot niitä käyttävien ohjelmien kirjoittamiseen"
+
+#: lib/Packages/Sections.pm:44
+msgid "Mail"
+msgstr "Sähköposti"
+
+#: lib/Packages/Sections.pm:45
+msgid "Programs to route, read, and compose E-mail messages."
+msgstr ""
+"Sovellukset sähköpostiviestien välittämiseen, lukemiseen ja kirjoittamiseen"
+
+#: lib/Packages/Sections.pm:46
+msgid "Mathematics"
+msgstr "Matematiikka"
+
+#: lib/Packages/Sections.pm:47
+msgid "Math software."
+msgstr "Matemaattiset ohjelmistot"
+
+#: lib/Packages/Sections.pm:48
+msgid "Miscellaneous"
+msgstr "Sekalaista"
+
+#: lib/Packages/Sections.pm:49
+msgid "Miscellaneous utilities that didn't fit well anywhere else."
+msgstr "Sekalaiset työkalut, jotka eivät sovi mihinkään muualle"
+
+#: lib/Packages/Sections.pm:50
+msgid "Network"
+msgstr "Verkko"
+
+#: lib/Packages/Sections.pm:51
+msgid ""
+"Daemons and clients to connect your Debian GNU/Linux system to the world."
+msgstr ""
+"Palvelin- ja asiakasohjelmat, joilla Debian GNU/Linux-järjestelmän voi "
+"yhdistää muuhun maailmaan"
+
+#: lib/Packages/Sections.pm:52
+msgid "Newsgroups"
+msgstr "Nyyssiryhmät"
+
+#: lib/Packages/Sections.pm:53
+msgid "Software to access Usenet, to set up news servers, etc."
+msgstr ""
+"Usenetin käyttöön, nyyssipalvelimen perustemiseen tarvittavat ja vastaavat "
+"ohjelmistot"
+
+#: lib/Packages/Sections.pm:54
+msgid "Software restricted in the U.S."
+msgstr "Yhdysvalloissa rajoitetut ohjelmistot"
+
+#: lib/Packages/Sections.pm:55
+msgid ""
+"These packages probably may not be used in or distributed from the U.S. due "
+"to software patents. You should check the regulations in your country before "
+"using this software."
+msgstr ""
+"Näitä paketteja ei todennäköisesti saa käyttää tai levittää Yhdysvalloissa "
+"ohjelmistopatenttien vuoksi. Kannattaa tarkistaa oman maasi säännökset ennen "
+"näiden ohjelmistojen käyttämistä."
+
+#: lib/Packages/Sections.pm:56
+msgid "Old Libraries"
+msgstr "Vanhat kirjastot"
+
+#: lib/Packages/Sections.pm:57
+msgid ""
+"Old versions of libraries, kept for backward compatibility with old "
+"applications."
+msgstr ""
+"Vanhat versiot kirjastoista, joita pidetään vanhojen sovellusten takautuvan "
+"yhteensopivuuden vuoksi"
+
+#: lib/Packages/Sections.pm:58
+msgid "Other OS's and file systems"
+msgstr "Muut käyttö- ja tiedostojärjestelmät"
+
+#: lib/Packages/Sections.pm:59
+msgid ""
+"Software to run programs compiled for other operating system, and to use "
+"their filesystems."
+msgstr ""
+"Ohjelmistot, joilla voidaan ajaa muille käyttöjärjestelmille käännettyjä "
+"ohjelmia ja käyttää niiden tiedostojärjestelmiä"
+
+#: lib/Packages/Sections.pm:60
+msgid "Perl"
+msgstr "Perl"
+
+#: lib/Packages/Sections.pm:61
+msgid "Everything about Perl, an interpreted scripting language."
+msgstr "Kaikki Perlistä, tulkattavasta skriptikielestä"
+
+#: lib/Packages/Sections.pm:62
+msgid "Python"
+msgstr "Python"
+
+#: lib/Packages/Sections.pm:63
+msgid ""
+"Everything about Python, an interpreted, interactive object oriented "
+"language."
+msgstr ""
+"Kaikki Pythonista, tulkattavasta interaktiivisesta olio-ohjelmointikielestä"
+
+#: lib/Packages/Sections.pm:64
+msgid "Science"
+msgstr "Tiede"
+
+#: lib/Packages/Sections.pm:65
+msgid "Basic tools for scientific work"
+msgstr "Perustyökalut tieteelliseen työhön"
+
+#: lib/Packages/Sections.pm:66
+msgid "Shells"
+msgstr "Kuoret"
+
+#: lib/Packages/Sections.pm:67
+msgid "Command shells. Friendly user interfaces for beginners."
+msgstr "Komentokuoret, ystävällisiä käyttöliittymiä aloittelijoille"
+
+#: lib/Packages/Sections.pm:68
+msgid "Sound"
+msgstr "Ääni"
+
+#: lib/Packages/Sections.pm:69
+msgid ""
+"Utilities to deal with sound: mixers, players, recorders, CD players, etc."
+msgstr ""
+"Ohjelmat äänen käyttöön: mikserit, soittimet, nauhoittimet, CD-soittimet jne."
+
+#: lib/Packages/Sections.pm:70
+msgid "TeX"
+msgstr "TeX"
+
+#: lib/Packages/Sections.pm:71
+msgid "The famous typesetting software and related programs."
+msgstr "Kuuluisa ladontaohjelmisto ja siihen liittyvät ohjelmat"
+
+#: lib/Packages/Sections.pm:72
+msgid "Text Processing"
+msgstr "Tekstinkäsittely"
+
+#: lib/Packages/Sections.pm:73
+msgid "Utilities to format and print text documents."
+msgstr "Työkaluja tekstiasiakirjojen muotoiluun ja tulostamiseen"
+
+#: lib/Packages/Sections.pm:74
+msgid "Utilities"
+msgstr "Työkaluohjelmat"
+
+#: lib/Packages/Sections.pm:75
+msgid ""
+"Utilities for file/disk manipulation, backup and archive tools, system "
+"monitoring, input systems, etc."
+msgstr ""
+"Hyötyohjelmia tiedostojen ja levyjen muokkaukseen, työkaluja "
+"varmuuskopiontiin ja arkistointiin, järjestelmän seuranta, "
+"syöttöjärjestelmät jne."
+
+#: lib/Packages/Sections.pm:76
+msgid "Virtual packages"
+msgstr "Näennäispaketit"
+
+#: lib/Packages/Sections.pm:77
+msgid "Virtual packages."
+msgstr ""
+"Kaikki tietyn toiminnallisuuden toteuttavat ohjelmistot tarjoavat saman "
+"näennäispaketin"
+
+#: lib/Packages/Sections.pm:78
+msgid "Web Software"
+msgstr "WWW-ohjelmistot"
+
+#: lib/Packages/Sections.pm:79
+msgid "Web servers, browsers, proxies, download tools etc."
+msgstr "WWW-palvelimet ja -selaimet, välimuistit, imurointityökalut jne."
+
+#: lib/Packages/Sections.pm:80
+msgid "X Window System software"
+msgstr "X-ikkunointijärjestelmän ohjelmistot"
+
+#: lib/Packages/Sections.pm:81
+msgid ""
+"X servers, libraries, fonts, window managers, terminal emulators and many "
+"related applications."
+msgstr ""
+"X-palvelimet, -kirjastot, kirjasimet, ikkunointiohjelmat, pääte-emulaattorit "
+"sekä monia asiaan kuuluvia sovelluksia"
+
+#: lib/Packages/Sections.pm:82
+msgid "debian-installer udeb packages"
+msgstr "Debian-asentimen udeb-paketit"
+
+#: lib/Packages/Sections.pm:83
+msgid ""
+"Special packages for building customized debian-installer variants. Do not "
+"install them on a normal system!"
+msgstr ""
+"Erityispaketit räätälöityjen debian-asentimen muunnelmien rakentamiseksi, "
+"älä asenna normaaliin järjestelmään!"
+
+#~ msgid ""
+#~ "Basic needed utilities of every Debian system (you needn't install this, "
+#~ "they're provided only for upgrading purposes)."
+#~ msgstr ""
+#~ "Jokaisen Debian-järjestelmän runkoon tarvittavat ohjelmat (Näitä ei "
+#~ "tarvitse asentaa, ne tarjotaan vain päivitystä varten.)"
diff --git a/po/sections.fr.po b/po/sections.fr.po
new file mode 100644 (file)
index 0000000..f99a748
--- /dev/null
@@ -0,0 +1,374 @@
+# This file is put in the public domain.
+# Guilhelm Panaget <guilhelm.panaget@free.fr>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: 1.8\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-04-11 20:32+0200\n"
+"Last-Translator: Guilhelm Panaget <guilhelm.panaget@free.fr>\n"
+"Language-Team:  French <debian-l10n-french@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+
+#: lib/Packages/Sections.pm:12
+msgid "Administration Utilities"
+msgstr "Outils d'administration"
+
+#: lib/Packages/Sections.pm:13
+msgid "Utilities to administer system resources, manage user accounts, etc."
+msgstr ""
+"Outils pour administrer les ressources du système, gérer les comptes "
+"utilisateur, etc."
+
+#: lib/Packages/Sections.pm:14
+msgid "Base Utilities"
+msgstr "Outils de base"
+
+#: lib/Packages/Sections.pm:15
+msgid "Basic needed utilities of every Debian system."
+msgstr ""
+
+#: lib/Packages/Sections.pm:16
+msgid "Communication Programs"
+msgstr "Programmes pour outils de communication"
+
+#: lib/Packages/Sections.pm:17
+msgid "Software to use your modem in the old fashioned style."
+msgstr "Programmes pour utiliser votre modem à l'ancienne."
+
+#: lib/Packages/Sections.pm:18
+msgid "Development"
+msgstr "Développement"
+
+#: lib/Packages/Sections.pm:19
+msgid ""
+"Development utilities, compilers, development environments, libraries, etc."
+msgstr ""
+"Outils de développement, compilateurs, environnements de développement, "
+"bibliothèques, etc."
+
+#: lib/Packages/Sections.pm:20
+msgid "Documentation"
+msgstr "Documentation"
+
+#: 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 ""
+"FAQ, HOWTO et autres documents permettant d'expliquer tout ce qui concerne "
+"Debian ainsi que les programmes pour naviguer dans la documentation (man, "
+"info, etc)."
+
+#: lib/Packages/Sections.pm:22
+msgid "Editors"
+msgstr "Éditeurs"
+
+#: lib/Packages/Sections.pm:23
+msgid "Software to edit files. Programming environments."
+msgstr "Programme pour éditer des fichiers. Environnements de développement."
+
+#: lib/Packages/Sections.pm:24
+msgid "Electronics"
+msgstr "Électronique"
+
+#: lib/Packages/Sections.pm:25
+msgid "Electronics utilities."
+msgstr "Outils pour l'électronique."
+
+#: lib/Packages/Sections.pm:26
+msgid "Embedded software"
+msgstr "Logiciel embarqué"
+
+#: lib/Packages/Sections.pm:27
+msgid "Software suitable for use in embedded applications."
+msgstr "Logiciels utilisables dans des applications embarquées."
+
+#: lib/Packages/Sections.pm:28
+msgid "Games"
+msgstr "Jeux"
+
+#: lib/Packages/Sections.pm:29
+msgid "Programs to spend a nice time with after all this setting up."
+msgstr "Programmes pour se détendre un peu après toute cette configuration."
+
+#: 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 ""
+"L'environnement de bureau GNOME, un ensemble puissant d'applications "
+"intégrées facile à utiliser."
+
+#: lib/Packages/Sections.pm:32
+msgid "Graphics"
+msgstr "Graphisme"
+
+#: lib/Packages/Sections.pm:33
+msgid "Editors, viewers, converters... Everything to become an artist."
+msgstr ""
+"Éditeurs, visionneuses, convertisseurs... Tout pour faire de vous un artiste."
+
+#: lib/Packages/Sections.pm:34
+msgid "Ham Radio"
+msgstr "Radioamateur"
+
+#: lib/Packages/Sections.pm:35
+msgid "Software for ham radio."
+msgstr "Logiciels pour radioamateurs."
+
+#: lib/Packages/Sections.pm:36
+msgid "Interpreters"
+msgstr "Interpréteurs"
+
+#: lib/Packages/Sections.pm:37
+msgid "All kind of interpreters for interpreted languages. Macro processors."
+msgstr ""
+"Toute sorte d'interpréteurs pour langages interprétés et langages de macros."
+
+#: 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 ""
+"L'environnement de bureau KDE, un ensemble puissant d'applications intégrées "
+"facile à utiliser."
+
+#: lib/Packages/Sections.pm:40
+msgid "Libraries"
+msgstr "Bibliothèques"
+
+#: lib/Packages/Sections.pm:41
+msgid ""
+"Libraries to make other programs work. They provide special features to "
+"developers."
+msgstr ""
+"Bibliothèques utilisées par d'autres programmes et fournissant des "
+"fonctionnalités aux programmeurs."
+
+#: lib/Packages/Sections.pm:42
+msgid "Library development"
+msgstr "Fichiers de développement pour les bibliothèques."
+
+#: lib/Packages/Sections.pm:43
+msgid "Libraries necessary for developers to write programs that use them."
+msgstr "Fichiers nécessaires aux développeurs pour utiliser les bibliothèques."
+
+#: lib/Packages/Sections.pm:44
+msgid "Mail"
+msgstr "Courrier électronique"
+
+#: lib/Packages/Sections.pm:45
+msgid "Programs to route, read, and compose E-mail messages."
+msgstr "Logiciels pour envoyer, lire et rédiger des courriers électroniques."
+
+#: lib/Packages/Sections.pm:46
+msgid "Mathematics"
+msgstr "Mathématiques"
+
+#: lib/Packages/Sections.pm:47
+msgid "Math software."
+msgstr "Logiciels de mathématiques."
+
+#: lib/Packages/Sections.pm:48
+msgid "Miscellaneous"
+msgstr "Divers"
+
+#: lib/Packages/Sections.pm:49
+msgid "Miscellaneous utilities that didn't fit well anywhere else."
+msgstr "Outils en tout genre impossible à caser ailleurs."
+
+#: lib/Packages/Sections.pm:50
+msgid "Network"
+msgstr "Réseaux"
+
+#: lib/Packages/Sections.pm:51
+msgid ""
+"Daemons and clients to connect your Debian GNU/Linux system to the world."
+msgstr ""
+"Démons et clients pour connecter votre système Debian GNU/Linux à "
+"l'extérieur."
+
+#: lib/Packages/Sections.pm:52
+msgid "Newsgroups"
+msgstr "Forums de discussion"
+
+#: lib/Packages/Sections.pm:53
+msgid "Software to access Usenet, to set up news servers, etc."
+msgstr ""
+"Logiciels permettant d'accéder à Usenet, de mettre en place un serveur de "
+"nouvelles, etc."
+
+#: lib/Packages/Sections.pm:54
+msgid "Software restricted in the U.S."
+msgstr "Logiciels soumis à restriction aux États-Unis"
+
+#: lib/Packages/Sections.pm:55
+msgid ""
+"These packages probably may not be used in or distributed from the U.S. due "
+"to software patents. You should check the regulations in your country before "
+"using this software."
+msgstr ""
+"Ces paquets ne peuvent vraisemblablement pas être utilisés ou distribués aux "
+"États-Unis du fait de brevets logiciels. Vous devriez vérifier la "
+"règlementation de votre pays avant d'utiliser ces logiciels."
+
+#: lib/Packages/Sections.pm:56
+msgid "Old Libraries"
+msgstr "Bibliothèques obsolètes"
+
+#: lib/Packages/Sections.pm:57
+msgid ""
+"Old versions of libraries, kept for backward compatibility with old "
+"applications."
+msgstr ""
+"Versions obsolètes de bibliothèques, conservées à des fins de compatibilité "
+"avec d'anciennes applications."
+
+#: lib/Packages/Sections.pm:58
+msgid "Other OS's and file systems"
+msgstr "Autres OS et systèmes de fichiers"
+
+#: lib/Packages/Sections.pm:59
+msgid ""
+"Software to run programs compiled for other operating system, and to use "
+"their filesystems."
+msgstr ""
+"Logiciels permettant d'exécuter des programmes compilés pour d'autres "
+"systèmes d'exploitation et d'utiliser leur système de fichiers."
+
+#: lib/Packages/Sections.pm:60
+msgid "Perl"
+msgstr "Perl"
+
+#: lib/Packages/Sections.pm:61
+msgid "Everything about Perl, an interpreted scripting language."
+msgstr "Tout à propos de Perl, langage interprété pour scripts."
+
+#: lib/Packages/Sections.pm:62
+msgid "Python"
+msgstr "Python"
+
+#: lib/Packages/Sections.pm:63
+msgid ""
+"Everything about Python, an interpreted, interactive object oriented "
+"language."
+msgstr ""
+"Tout à propos de Python, langage interprété, interactif et orienté objet."
+
+#: lib/Packages/Sections.pm:64
+msgid "Science"
+msgstr "Science"
+
+#: lib/Packages/Sections.pm:65
+msgid "Basic tools for scientific work"
+msgstr "Outils de base pour les travaux scientifiques."
+
+#: lib/Packages/Sections.pm:66
+msgid "Shells"
+msgstr "Shells"
+
+#: lib/Packages/Sections.pm:67
+msgid "Command shells. Friendly user interfaces for beginners."
+msgstr "Shells de commandes. Interfaces abordables par le débutant."
+
+#: lib/Packages/Sections.pm:68
+msgid "Sound"
+msgstr "Son"
+
+#: lib/Packages/Sections.pm:69
+msgid ""
+"Utilities to deal with sound: mixers, players, recorders, CD players, etc."
+msgstr ""
+"Outils pour travailler avec le son : tables de mixage, lecteurs, "
+"enregistreurs, lecteurs de CD, etc."
+
+#: lib/Packages/Sections.pm:70
+msgid "TeX"
+msgstr "TeX"
+
+#: lib/Packages/Sections.pm:71
+msgid "The famous typesetting software and related programs."
+msgstr "Le célèbre logiciel de composition et les programmes associés."
+
+#: lib/Packages/Sections.pm:72
+msgid "Text Processing"
+msgstr "Traitement de texte"
+
+#: lib/Packages/Sections.pm:73
+msgid "Utilities to format and print text documents."
+msgstr "Outils pour la mise en forme et l'impression de documents texte."
+
+#: lib/Packages/Sections.pm:74
+msgid "Utilities"
+msgstr "Outils système"
+
+#: lib/Packages/Sections.pm:75
+msgid ""
+"Utilities for file/disk manipulation, backup and archive tools, system "
+"monitoring, input systems, etc."
+msgstr ""
+"Outils de manipulation de fichiers ou de disques, de sauvegarde et "
+"d'archivage, de surveillance du système, systèmes d'entrée, etc."
+
+#: lib/Packages/Sections.pm:76
+msgid "Virtual packages"
+msgstr "Paquets virtuels"
+
+#: lib/Packages/Sections.pm:77
+msgid "Virtual packages."
+msgstr "Paquets virtuels"
+
+#: lib/Packages/Sections.pm:78
+msgid "Web Software"
+msgstr "Logiciels pour le Web"
+
+#: lib/Packages/Sections.pm:79
+msgid "Web servers, browsers, proxies, download tools etc."
+msgstr ""
+"Serveurs Web, navigateurs, serveurs mandataires, outils de téléchargement, "
+"etc."
+
+#: lib/Packages/Sections.pm:80
+msgid "X Window System software"
+msgstr "Logiciels pour le système X Window"
+
+#: lib/Packages/Sections.pm:81
+msgid ""
+"X servers, libraries, fonts, window managers, terminal emulators and many "
+"related applications."
+msgstr ""
+"Serveurs X, bibliothèques, gestionnaires de fenêtres, émulateurs de terminal "
+"et autres applications associées."
+
+#: lib/Packages/Sections.pm:82
+msgid "debian-installer udeb packages"
+msgstr "Paquets udeb de l'installateur Debian"
+
+#: lib/Packages/Sections.pm:83
+msgid ""
+"Special packages for building customized debian-installer variants. Do not "
+"install them on a normal system!"
+msgstr ""
+"Paquets spécifiques pour la création de variantes personnalisées de "
+"l'installateur Debian. Ne pas installer sur un système normal !"
+
+#~ msgid ""
+#~ "Basic needed utilities of every Debian system (you needn't install this, "
+#~ "they're provided only for upgrading purposes)."
+#~ msgstr ""
+#~ "Outils de base utilisés par tout système Debian (vous ne devriez pas "
+#~ "avoir besoin de les installer, ils sont fournis ici pour les mises à "
+#~ "niveaux)."
diff --git a/po/sections.nl.po b/po/sections.nl.po
new file mode 100644 (file)
index 0000000..4164cf7
--- /dev/null
@@ -0,0 +1,380 @@
+# Dutch translation of packages.debian.org.
+# This file is put in the public domain.
+# Bas Zoetekouw <bas@debian.org>, 2005.
+# , fuzzy
+# 
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: packages.debian.org\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-01-03 00:59+0100\n"
+"Last-Translator: Bas Zoetekouw <bas@debian.org>\n"
+"Language-Team: Dutch <debian-l10n-dutch@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: lib/Packages/Sections.pm:12
+msgid "Administration Utilities"
+msgstr "Onderhoudsgereedschappen"
+
+#: lib/Packages/Sections.pm:13
+msgid "Utilities to administer system resources, manage user accounts, etc."
+msgstr ""
+"Gereedschappen om de systeembronnen te administreren, gebruikersaccounts bij "
+"te houden, etc."
+
+#: lib/Packages/Sections.pm:14
+msgid "Base Utilities"
+msgstr "Basisgereedschappen"
+
+#: lib/Packages/Sections.pm:15
+msgid "Basic needed utilities of every Debian system."
+msgstr ""
+
+#: lib/Packages/Sections.pm:16
+msgid "Communication Programs"
+msgstr "Communicatieprogramma's"
+
+#: lib/Packages/Sections.pm:17
+msgid "Software to use your modem in the old fashioned style."
+msgstr "Software om uw modem op de ouderwetse manier te gebruiken."
+
+#: lib/Packages/Sections.pm:18
+msgid "Development"
+msgstr "Ontwikkeling"
+
+#: lib/Packages/Sections.pm:19
+msgid ""
+"Development utilities, compilers, development environments, libraries, etc."
+msgstr ""
+"Gereedschappen, compilers, omgevingen, bibliotheken, etc. voor ontwikkeling "
+"van software"
+
+#: lib/Packages/Sections.pm:20
+msgid "Documentation"
+msgstr "Documentatie"
+
+#: 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 ""
+"FAQ's, HOWTO's en andere documentatie waarin van alles wat met Debian heeft "
+"te maken, wordt uitgelegd, en programmatuur die nodig is om de documentatie "
+"te bekijken (man, info, etc)."
+
+#: lib/Packages/Sections.pm:22
+msgid "Editors"
+msgstr "Editors"
+
+#: lib/Packages/Sections.pm:23
+msgid "Software to edit files. Programming environments."
+msgstr "Programma's om bestanden te bewerken, programmeer-omgevingen"
+
+#: lib/Packages/Sections.pm:24
+msgid "Electronics"
+msgstr "Elektronica"
+
+#: lib/Packages/Sections.pm:25
+msgid "Electronics utilities."
+msgstr "Gereedschappen voor elektronica"
+
+#: lib/Packages/Sections.pm:26
+msgid "Embedded software"
+msgstr ""
+
+#: lib/Packages/Sections.pm:27
+msgid "Software suitable for use in embedded applications."
+msgstr "Programma's die geschikt zijn voor gebruik in embedded applicaties."
+
+#: lib/Packages/Sections.pm:28
+msgid "Games"
+msgstr "Spellen"
+
+#: lib/Packages/Sections.pm:29
+msgid "Programs to spend a nice time with after all this setting up."
+msgstr "Programma's om op een leuke manier uw tijd door te brengen."
+
+#: 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 ""
+"De GNOME desktopomgeving, een krachtige, makkelijk te gebruiken verzameling "
+"van geïntegreerde programma's."
+
+#: lib/Packages/Sections.pm:32
+msgid "Graphics"
+msgstr "Grafisch"
+
+#: lib/Packages/Sections.pm:33
+msgid "Editors, viewers, converters... Everything to become an artist."
+msgstr ""
+"Programma's om grafische bestanden te wijzigen, te bekijken en te "
+"converteren... Alles om een artiest te worden."
+
+#: lib/Packages/Sections.pm:34
+msgid "Ham Radio"
+msgstr "Ham Radio"
+
+#: lib/Packages/Sections.pm:35
+msgid "Software for ham radio."
+msgstr "Programma's voor ham radio"
+
+#: lib/Packages/Sections.pm:36
+msgid "Interpreters"
+msgstr "Interpretators"
+
+#: lib/Packages/Sections.pm:37
+msgid "All kind of interpreters for interpreted languages. Macro processors."
+msgstr ""
+"Allerlei verschillende interpretators voor geïnterpreteerde talen. Macro-"
+"uitvoerders."
+
+#: 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 ""
+"De K Desktopomgeving, een krachtige, makkelijk te gebruiken verzameling van "
+"geïntegreerde programma's."
+
+#: lib/Packages/Sections.pm:40
+msgid "Libraries"
+msgstr "Bibliotheken"
+
+#: lib/Packages/Sections.pm:41
+msgid ""
+"Libraries to make other programs work. They provide special features to "
+"developers."
+msgstr ""
+"Bibliotheken die nodig zijn voor andere programma's. Ze leveren speciale "
+"mogelijkheden voor ontwikkelaars."
+
+#: lib/Packages/Sections.pm:42
+msgid "Library development"
+msgstr "Bibliotheek-ontwikkeling"
+
+#: lib/Packages/Sections.pm:43
+msgid "Libraries necessary for developers to write programs that use them."
+msgstr ""
+"Bibliotheken die nodig zijn voor ontwikkelaars om programma's te schrijven "
+"die die bibliotheken gebruiken."
+
+#: lib/Packages/Sections.pm:44
+msgid "Mail"
+msgstr "E-mail"
+
+#: lib/Packages/Sections.pm:45
+msgid "Programs to route, read, and compose E-mail messages."
+msgstr "Programma's om e-mailberichten te routeren, te lezen en te schrijven."
+
+#: lib/Packages/Sections.pm:46
+msgid "Mathematics"
+msgstr "Wiskunde"
+
+#: lib/Packages/Sections.pm:47
+msgid "Math software."
+msgstr "Wiskundige programma's."
+
+#: lib/Packages/Sections.pm:48
+msgid "Miscellaneous"
+msgstr "Diversen"
+
+#: lib/Packages/Sections.pm:49
+msgid "Miscellaneous utilities that didn't fit well anywhere else."
+msgstr "Diverse gereedschappen die nergens anders passen."
+
+#: lib/Packages/Sections.pm:50
+msgid "Network"
+msgstr "Netwerk"
+
+#: lib/Packages/Sections.pm:51
+msgid ""
+"Daemons and clients to connect your Debian GNU/Linux system to the world."
+msgstr ""
+"Daemon en clients om uw Debian GNU/Linux systeem met de wereld te verbinden."
+
+#: lib/Packages/Sections.pm:52
+msgid "Newsgroups"
+msgstr "Nieuwsgroepen"
+
+#: lib/Packages/Sections.pm:53
+msgid "Software to access Usenet, to set up news servers, etc."
+msgstr ""
+"Programmatuur om toegang te krijgen tot Usenet, om eigen news-servers op te "
+"zetten, etc."
+
+#: lib/Packages/Sections.pm:54
+msgid "Software restricted in the U.S."
+msgstr "Software waar in de Verenigde Staten beperkingen op van kracht zijn."
+
+#: lib/Packages/Sections.pm:55
+msgid ""
+"These packages probably may not be used in or distributed from the U.S. due "
+"to software patents. You should check the regulations in your country before "
+"using this software."
+msgstr ""
+"Deze pakketten mogen waarschijnlijk niet worden gebruikt in of "
+"gedistribueerd vanuit de Verenigde Staten vanwege softwarepatenten. U kunt "
+"het beste de regels in uw eigen land checken alvorens deze software te "
+"gebruiken."
+
+#: lib/Packages/Sections.pm:56
+msgid "Old Libraries"
+msgstr "Oude bibliotheken"
+
+#: lib/Packages/Sections.pm:57
+msgid ""
+"Old versions of libraries, kept for backward compatibility with old "
+"applications."
+msgstr ""
+"Oude versies van bibliotheken, die worden bewaard omdat oudere programmatuur "
+"hen nog nodig kan hebben."
+
+#: lib/Packages/Sections.pm:58
+msgid "Other OS's and file systems"
+msgstr "Andere besturings- en bestandssystemen"
+
+#: lib/Packages/Sections.pm:59
+msgid ""
+"Software to run programs compiled for other operating system, and to use "
+"their filesystems."
+msgstr ""
+"Programmatuur om programma's te kunnen draaien die voor andere "
+"besturingssystemen zijn gebouwd, en om hun bestandssystemen te gebruiken."
+
+#: lib/Packages/Sections.pm:60
+msgid "Perl"
+msgstr "Perl"
+
+#: lib/Packages/Sections.pm:61
+msgid "Everything about Perl, an interpreted scripting language."
+msgstr "Alles wat te maken heeft met Perl, een geïnterpreteerde script taal."
+
+#: lib/Packages/Sections.pm:62
+msgid "Python"
+msgstr "Python"
+
+#: lib/Packages/Sections.pm:63
+msgid ""
+"Everything about Python, an interpreted, interactive object oriented "
+"language."
+msgstr ""
+"Alles wat te maken heeft met Python, een geïnterpreteerde, interactieve, "
+"object-georiënteerde taal."
+
+#: lib/Packages/Sections.pm:64
+msgid "Science"
+msgstr "Wetenschap"
+
+#: lib/Packages/Sections.pm:65
+msgid "Basic tools for scientific work"
+msgstr "Basisgereedschappen voor wetenschappelijk werk."
+
+#: lib/Packages/Sections.pm:66
+msgid "Shells"
+msgstr "Shells"
+
+#: lib/Packages/Sections.pm:67
+msgid "Command shells. Friendly user interfaces for beginners."
+msgstr "Commando shells. Vriendelijke gebruikersinterfaces voor beginners."
+
+#: lib/Packages/Sections.pm:68
+msgid "Sound"
+msgstr "Geluid"
+
+#: lib/Packages/Sections.pm:69
+msgid ""
+"Utilities to deal with sound: mixers, players, recorders, CD players, etc."
+msgstr ""
+"Gereedschappen om om te gaan met geluid: mixers, afspeel- en "
+"opnameprogramma's, CD-spelers, etc."
+
+#: lib/Packages/Sections.pm:70
+msgid "TeX"
+msgstr "TeX"
+
+#: lib/Packages/Sections.pm:71
+msgid "The famous typesetting software and related programs."
+msgstr "De beroemde tekst-zet programmatuur en gerelateerde programma's."
+
+#: lib/Packages/Sections.pm:72
+msgid "Text Processing"
+msgstr "Tekstverwerking"
+
+#: lib/Packages/Sections.pm:73
+msgid "Utilities to format and print text documents."
+msgstr "Gereedschappen om tekstdocumenten op te maken en te printen."
+
+#: lib/Packages/Sections.pm:74
+msgid "Utilities"
+msgstr "Gereedschappen"
+
+#: lib/Packages/Sections.pm:75
+msgid ""
+"Utilities for file/disk manipulation, backup and archive tools, system "
+"monitoring, input systems, etc."
+msgstr ""
+"Gereedschappen voor bestands- en diskmanipulatie, voor backup en "
+"archivering, voor het in de gaten houden van uw systeem, voor "
+"invoersystemen, etc."
+
+#: lib/Packages/Sections.pm:76
+msgid "Virtual packages"
+msgstr "Virtuele pakketten"
+
+#: lib/Packages/Sections.pm:77
+msgid "Virtual packages."
+msgstr "Virtuele pakketten."
+
+#: lib/Packages/Sections.pm:78
+msgid "Web Software"
+msgstr "Webprogrammatuur"
+
+#: lib/Packages/Sections.pm:79
+msgid "Web servers, browsers, proxies, download tools etc."
+msgstr "Webservers, -browsers, -proxies, download-gereedschappen, etc."
+
+#: lib/Packages/Sections.pm:80
+msgid "X Window System software"
+msgstr "X Window System programma's"
+
+#: lib/Packages/Sections.pm:81
+msgid ""
+"X servers, libraries, fonts, window managers, terminal emulators and many "
+"related applications."
+msgstr ""
+"X-servers en  -bibliotheken, lettertypen, windowmanagers, terminal "
+"emulatoren en veel gerelateerde programma's."
+
+#: lib/Packages/Sections.pm:82
+msgid "debian-installer udeb packages"
+msgstr "udeb-pakketten voor de debian-installer"
+
+#: lib/Packages/Sections.pm:83
+msgid ""
+"Special packages for building customized debian-installer variants. Do not "
+"install them on a normal system!"
+msgstr ""
+"Speciale pakketten om uw eigen varianten van de debian-installer te bouwen. "
+"Installeer deze niet op een normaal systeem!"
+
+#~ msgid ""
+#~ "Basic needed utilities of every Debian system (you needn't install this, "
+#~ "they're provided only for upgrading purposes)."
+#~ msgstr ""
+#~ "Basisgereedschappen die elk Debian systeem nodig heeft (u hoeft dit niet "
+#~ "te installeren; ze zijn alleen beschikbaar om het upgraden makkelijker te "
+#~ "maken)"
diff --git a/po/sections.pot b/po/sections.pot
new file mode 100644 (file)
index 0000000..72fc167
--- /dev/null
@@ -0,0 +1,330 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\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 ""
+
+#: ./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 ""
+
+#: ./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 ""
+
+#: ./lib/Packages/Sections.pm:31
+msgid ""
+"The GNOME desktop environment, a powerful, easy to use set of integrated "
+"applications."
+msgstr ""
+
+#: ./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 ""
+
+#: ./lib/Packages/Sections.pm:39
+msgid ""
+"The K Desktop Environment, a powerful, easy to use set of integrated "
+"applications."
+msgstr ""
+
+#: ./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 ""
+
+#: ./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 "Software restricted in the U.S."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:55
+msgid ""
+"These packages probably may not be used in or distributed from the U.S. due "
+"to software patents. You should check the regulations in your country before "
+"using this software."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:56
+msgid "Old Libraries"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:57
+msgid ""
+"Old versions of libraries, kept for backward compatibility with old "
+"applications."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:58
+msgid "Other OS's and file systems"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:59
+msgid ""
+"Software to run programs compiled for other operating system, and to use "
+"their filesystems."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:60
+msgid "Perl"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:61
+msgid "Everything about Perl, an interpreted scripting language."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:62
+msgid "Python"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:63
+msgid ""
+"Everything about Python, an interpreted, interactive object oriented "
+"language."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:64
+msgid "Science"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:65
+msgid "Basic tools for scientific work"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:66
+msgid "Shells"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:67
+msgid "Command shells. Friendly user interfaces for beginners."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:68
+msgid "Sound"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:69
+msgid ""
+"Utilities to deal with sound: mixers, players, recorders, CD players, etc."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:70
+msgid "TeX"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:71
+msgid "The famous typesetting software and related programs."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:72
+msgid "Text Processing"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:73
+msgid "Utilities to format and print text documents."
+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 ""
+
+#: ./lib/Packages/Sections.pm:81
+msgid ""
+"X servers, libraries, fonts, window managers, terminal emulators and many "
+"related applications."
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:82
+msgid "debian-installer udeb packages"
+msgstr ""
+
+#: ./lib/Packages/Sections.pm:83
+msgid ""
+"Special packages for building customized debian-installer variants. Do not "
+"install them on a normal system!"
+msgstr ""
diff --git a/po/sections.uk.po b/po/sections.uk.po
new file mode 100644 (file)
index 0000000..7577757
--- /dev/null
@@ -0,0 +1,371 @@
+# translation of sections.po to Ukrainian
+# This file is put in the public domain.
+# Eugeniy Meshcheryakov <eugen@univ.kiev.ua>, 2005.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: sections\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-22 02:10+0100\n"
+"PO-Revision-Date: 2005-11-28 15:41+0200\n"
+"Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n"
+"Language-Team: Ukrainian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 ""
+
+#: 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 ""
+"FAQ, HOWTO та інші документи що намагаються пояснити все що пов'язано з "
+"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 ""
+"K Desktop Environment, потужний, легкий у використанні набір інтегрованих "
+"програм."
+
+#: 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 "Програми для доступу до Usenet, встановлення серверів новин і т.ін."
+
+#: lib/Packages/Sections.pm:54
+msgid "Software restricted in the U.S."
+msgstr "Програми з обмеженнями в США"
+
+#: lib/Packages/Sections.pm:55
+msgid ""
+"These packages probably may not be used in or distributed from the U.S. due "
+"to software patents. You should check the regulations in your country before "
+"using this software."
+msgstr ""
+"Ці пакунки, мабуть, не можна використовувати в або експортувати зі США через "
+"патенти на програмне забезпечення. Вам потрібно перевірити законодавство "
+"вашої країни перед використанням цих програм."
+
+#: lib/Packages/Sections.pm:56
+msgid "Old Libraries"
+msgstr "Старі бібліотеки"
+
+#: lib/Packages/Sections.pm:57
+msgid ""
+"Old versions of libraries, kept for backward compatibility with old "
+"applications."
+msgstr ""
+"Старі версії бібліотек, що зберігаються для зворотної сумісності зі старими "
+"програмами."
+
+#: lib/Packages/Sections.pm:58
+msgid "Other OS's and file systems"
+msgstr "Інші ОС та файлові системи"
+
+#: lib/Packages/Sections.pm:59
+msgid ""
+"Software to run programs compiled for other operating system, and to use "
+"their filesystems."
+msgstr ""
+"Програмне забезпечення для запуску програм скомпільованих для інших "
+"операційних систем та для використання їхніх файлових систем."
+
+#: lib/Packages/Sections.pm:60
+msgid "Perl"
+msgstr "Perl"
+
+#: lib/Packages/Sections.pm:61
+msgid "Everything about Perl, an interpreted scripting language."
+msgstr "Все, що стосується Perl, скриптової мови."
+
+#: lib/Packages/Sections.pm:62
+msgid "Python"
+msgstr "Python"
+
+#: lib/Packages/Sections.pm:63
+msgid ""
+"Everything about Python, an interpreted, interactive object oriented "
+"language."
+msgstr "Все, що стосується Python, інтерактивної об'єктно-орієнтованої мови."
+
+#: lib/Packages/Sections.pm:64
+msgid "Science"
+msgstr "Наука"
+
+#: lib/Packages/Sections.pm:65
+msgid "Basic tools for scientific work"
+msgstr "Основні інструменти для наукової роботи."
+
+#: lib/Packages/Sections.pm:66
+msgid "Shells"
+msgstr "Оболонки"
+
+#: lib/Packages/Sections.pm:67
+msgid "Command shells. Friendly user interfaces for beginners."
+msgstr "Командні оболонки. Дружні інтерфейси користувача для початківців."
+
+#: lib/Packages/Sections.pm:68
+msgid "Sound"
+msgstr "Звук"
+
+#: lib/Packages/Sections.pm:69
+msgid ""
+"Utilities to deal with sound: mixers, players, recorders, CD players, etc."
+msgstr ""
+"Програми для роботи зі звуком: мікшери, програвачі, записувачі, програвачі "
+"компакт-дисків та ін."
+
+#: lib/Packages/Sections.pm:70
+msgid "TeX"
+msgstr "TeX"
+
+#: lib/Packages/Sections.pm:71
+msgid "The famous typesetting software and related programs."
+msgstr "Знамените програмне забезпечення для набору та пов'язані програми."
+
+#: lib/Packages/Sections.pm:72
+msgid "Text Processing"
+msgstr "Обробка текстів"
+
+#: lib/Packages/Sections.pm:73
+msgid "Utilities to format and print text documents."
+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 Window System"
+
+#: 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 "udeb-пакунки встановлювача"
+
+#: lib/Packages/Sections.pm:83
+msgid ""
+"Special packages for building customized debian-installer variants. Do not "
+"install them on a normal system!"
+msgstr ""
+"Спеціальні пакунки для побудови пристосованих варіантів встановлювача. Не "
+"встановлюйте їх на нормальній системі!"
+
+#~ msgid ""
+#~ "Basic needed utilities of every Debian system (you needn't install this, "
+#~ "they're provided only for upgrading purposes)."
+#~ msgstr ""
+#~ "Основні програми кожної системи Debian (вам не потрібно їх встановлювати, "
+#~ "вони тут тільки для потреб оновлення)."