changing widths of columns in tbl_printview

correcting spellingerror in german translation
using translated string for pagenumber in Table of Contents for Datadict pdf
This commit is contained in:
Mike Beck
2002-12-06 16:09:59 +00:00
parent 4a3043ea5f
commit b6411751a0
5 changed files with 20 additions and 20 deletions

View File

@@ -1201,7 +1201,7 @@ function PMA_RT_DOC($alltables ){
$pdf->PMA_links['doc'][$table]['-'] = $pdf->AddLink();
$pdf->SetX(10);
//$pdf->Ln(1);
$pdf->Cell(0,6,'page {'.sprintf("%02d", $i).'}',0,0,'R',0,$pdf->PMA_links['doc'][$table]['-']);
$pdf->Cell(0,6,$GLOBALS['strPageNumber'] . ' {'.sprintf("%02d", $i).'}',0,0,'R',0,$pdf->PMA_links['doc'][$table]['-']);
$pdf->SetX(10);
$pdf->Cell(0,6,$i.' '. $table,0,1,'L',0,$pdf->PMA_links['doc'][$table]['-']);
@@ -1218,7 +1218,7 @@ function PMA_RT_DOC($alltables ){
}
$pdf->PMA_links['RT']['-'] =$pdf->AddLink();
$pdf->SetX(10);
$pdf->Cell(0,6,'page {00}',0,0,'R',0,$pdf->PMA_links['doc'][$table]['-']);
$pdf->Cell(0,6,$GLOBALS['strPageNumber'] . ' {00}',0,0,'R',0,$pdf->PMA_links['doc'][$table]['-']);
$pdf->SetX(10);
$pdf->Cell(0,6,$i.' '. $GLOBALS['strRelationalSchema'],0,1,'L',0,$pdf->PMA_links['RT']['-']);
$z = 0;
@@ -1455,4 +1455,4 @@ $with_doc = (isset($with_doc) && $with_doc == 'on') ? 1 : 0;
PMA_mysql_select_db($db);
$rt = new PMA_RT('auto', $pdf_page_number, $show_table_dimension, $show_color, $show_grid, $all_tab_same_wide);
?>
?>