X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=cgi-bin%2Fdispatcher.pl;h=3873c4996efbb442b519a3a6caaf04a93a6572c6;hb=0490df1e4f11514d016bdbc418321e8d800682e5;hp=f54cd8740916d562e20923beac34de393e044640;hpb=56d4b3ed57e20359e5ea46feabb850cf4a94caf2;p=deb%2Fpackages.git diff --git a/cgi-bin/dispatcher.pl b/cgi-bin/dispatcher.pl index f54cd87..3873c49 100755 --- a/cgi-bin/dispatcher.pl +++ b/cgi-bin/dispatcher.pl @@ -86,10 +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( _g( "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( _g( "We're supposed to display the homepage here, instead of getting dispatch.pl" ) ); } elsif (@components == 1) { $what_to_do = 'search'; } else { @@ -114,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( sprintf( _( "%s set more than once in path" ), $key ) ); + fatal_error( sprintf( _g( "%s set more than once in path" ), $key ) ); } else { $cgi->param( $key, $val ); } @@ -144,7 +144,7 @@ if (my $path = $input->path_info() || $input->param('PATH_INFO')) { @components = @tmp; if (@components > 1) { - fatal_error( sprintf( _( "two or more packages specified (%s)" ), "@components" ) ); + fatal_error( sprintf( _g( "two or more packages specified (%s)" ), "@components" ) ); } } # else if (@components == 1) @@ -196,7 +196,6 @@ setlocale ( LC_ALL, $locale ) setlocale( LC_ALL, get_locale() ) or do { debug( "couldn't set default locale either" ); - next if ($opts{lang} ne 'en'); setlocale( LC_ALL, "C" ); }; }; @@ -231,12 +230,12 @@ unless (@Packages::CGI::fatal_errors) { &{"do_$what_to_do"}( \%params, \%opts, \%html_header, \$menu, \$page_content ); } else { - %html_header = ( title => _('Error'), + %html_header = ( title => _g('Error'), lang => $opts{lang}, print_title => 1, print_search_field => 'packages', search_field_values => { - keywords => _('search for a package'), + keywords => _g('search for a package'), searchon => 'default', arch => 'any', suite => 'all',