X-Git-Url: https://git.deb.at/?p=deb%2Fpackages.git;a=blobdiff_plain;f=lib%2FPackages%2FDoFilelist.pm;h=a1dda56b95d01904096438c2b448ed828b39a37c;hp=dba1d4b74eaf47b71b8fcf1cf740c0fe97f4d874;hb=06c6f30bfc4f55cecc7485fef0f0a227e32b44f0;hpb=d9c10aaf0bb03bfb75404f9041967b9f91012bdb diff --git a/lib/Packages/DoFilelist.pm b/lib/Packages/DoFilelist.pm index dba1d4b..a1dda56 100644 --- a/lib/Packages/DoFilelist.pm +++ b/lib/Packages/DoFilelist.pm @@ -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( _g( "package not valid or not specified" ) ); } if ($params->{errors}{suite}) { - fatal_error( "suite not valid or not specified" ); + fatal_error( _g( "suite not valid or not specified" ) ); } if ($params->{errors}{arch}) { - fatal_error( "arch not valid or not specified" ); + fatal_error( _g( "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 $pkg in $suite of arch $arch", - title_tag => "Filelist of of package $pkg/$suite/$arch", - lang => 'en', + %$html_header = ( title => sprintf( _g( "Filelist of package %s in %s of architecture %s" ), $pkg, $suite, $arch ), + title_tag => sprintf( _g( "Filelist of package %s/%s/%s" ), $pkg, $suite, $arch ), + lang => $opts->{lang}, keywords => "debian, $suite, $arch, filelist", print_title => 1, ); @@ -53,19 +54,19 @@ 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( _g( "No such package in this suite on this architecture." ) ); } else { my @files = unpack "L/(CC/a)", $contents{$pkg}; my $file = ""; - $$page_content .= '
';
+		$$page_content .= '
';
 		for (my $i=0; $i