Changed some x's into %'s

This commit is contained in:
gugux 2003-04-22 20:30:22 +00:00
parent 1fbdbaa96c
commit 10bb2ab177

View File

@ -789,11 +789,11 @@
{
$to = $start + $maxmatchs;
if ($to > $total) $to = $total;
$total_matchs = lang('showing x - x of x',($start + 1),$to,$total);
$total_matchs = lang('showing %1 - %2 of %3',($start + 1),$to,$total);
}
else
{
$total_matchs = lang('showing x',$total);
$total_matchs = lang('showing %1',$total);
}
$GLOBALS['phpgw']->template->set_var('total_matchs',$total_matchs);