User can select paper size for pdf (RFE #631551).

This commit is contained in:
Michal Čihař
2003-06-06 13:16:42 +00:00
parent 79e30f11d8
commit d6134e0d28
96 changed files with 138 additions and 7 deletions

View File

@@ -14,6 +14,9 @@ $Source$
(RFE #742123). (RFE #742123).
* pdf_pages.php3: Fixed undefined index warnings, don't attemt to * pdf_pages.php3: Fixed undefined index warnings, don't attemt to
edit/display deleted page just after deleting. edit/display deleted page just after deleting.
* libraries/config_import.lib.php3, lang/*, config.inc.php3,
db_details_structure.php3, pdf_pages.php3, pdf_schema.php3: User can
select paper size for pdf (RFE #631551).
2003-06-05 Marc Delisle <lem9@users.sourceforge.net> 2003-06-05 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: new faq 6.20 about CREATE TEMPORARY TABLES * Documentation.html: new faq 6.20 about CREATE TEMPORARY TABLES

View File

@@ -290,6 +290,13 @@ $cfg['MySQLManualBase'] = 'http://www.mysql.com/doc/en';
$cfg['MySQLManualType'] = 'searchable'; $cfg['MySQLManualType'] = 'searchable';
/**
* PDF options
*/
$cfg['PDFPageSizes'] = array('A3', 'A4', 'A5', 'letter', 'legal');
$cfg['PDFDefaultPageSize'] = 'A4';
/** /**
* Language and charset conversion settings * Language and charset conversion settings
*/ */

View File

@@ -620,7 +620,19 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) {
<select name="orientation"> <select name="orientation">
<option value="L"><?php echo $strLandscape;?></option> <option value="L"><?php echo $strLandscape;?></option>
<option value="P"><?php echo $strPortrait;?></option> <option value="P"><?php echo $strPortrait;?></option>
</select> </select><br />
<?php echo $strPaperSize; ?>
<select name="paper">
<?php
while (list($key,$val) = each($cfg['PDFPageSizes'])) {
echo '<option value="' . $val . '"';
if ($val == $cfg['PDFDefaultPageSize']) {
echo ' selected="selected"';
}
echo ' >' . $val . '</option>' . "\n";
}
?>
</select><br />
&nbsp;&nbsp;<input type="submit" value="<?php echo $strGo; ?>" /> &nbsp;&nbsp;<input type="submit" value="<?php echo $strGo; ?>" />
</form> </form>
</li> </li>

View File

@@ -656,4 +656,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -657,4 +657,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -648,4 +648,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -649,4 +649,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -671,4 +671,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -670,4 +670,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -670,4 +670,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -671,4 +671,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -650,4 +650,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -651,4 +651,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -650,4 +650,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -645,4 +645,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -670,4 +670,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -669,4 +669,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -646,4 +646,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -646,4 +646,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -669,4 +669,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -670,4 +670,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -669,4 +669,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -649,4 +649,5 @@ $strZip = '"zazipov
// To translate // To translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -650,4 +650,5 @@ $strZip = '"zazipováno"';
// To translate // To translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -649,4 +649,5 @@ $strZip = '"zazipov
// To translate // To translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -664,4 +664,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -665,4 +665,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -659,4 +659,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -660,4 +660,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -642,4 +642,5 @@ $strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the l
$strZip = '"zipped"'; $strZip = '"zipped"';
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -643,4 +643,5 @@ $strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the l
$strZip = '"zipped"'; $strZip = '"zipped"';
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -643,4 +643,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -666,4 +666,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -667,4 +667,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -645,4 +645,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -650,4 +650,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -651,4 +651,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -669,4 +669,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -650,4 +650,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -651,4 +651,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -668,4 +668,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -669,4 +669,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -666,4 +666,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -680,4 +680,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -654,4 +654,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -655,4 +655,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -643,4 +643,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -648,4 +648,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -649,4 +649,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -654,4 +654,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -654,4 +654,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -655,4 +655,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -664,4 +664,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -648,4 +648,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -647,4 +647,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -645,4 +645,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -665,4 +665,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -666,4 +666,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -647,4 +647,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -648,4 +648,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -643,4 +643,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -665,4 +665,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -666,4 +666,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -645,4 +645,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -652,4 +652,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -650,4 +650,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -651,4 +651,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -650,4 +650,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -672,4 +672,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -671,4 +671,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -645,4 +645,5 @@ $strZip = '"zo zipovan
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -646,4 +646,5 @@ $strZip = '"zo zipované"';
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -645,4 +645,5 @@ $strZip = '"zo zipovan
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -649,4 +649,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -650,4 +650,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -649,4 +649,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -647,4 +647,5 @@ $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate $strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -648,4 +648,5 @@ $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate $strUpdComTab = 'Please see Documentation on how to update your Column_comments Table'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -643,4 +643,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -654,4 +654,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -655,4 +655,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -665,4 +665,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -666,4 +666,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -645,4 +645,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -644,4 +644,5 @@ $strExecuteBookmarked = 'Execute bookmarked query'; //to translate
$strExcelOptions = 'Excel options'; //to translate $strExcelOptions = 'Excel options'; //to translate
$strReplaceNULLBy = 'Replace NULL by'; //to translate $strReplaceNULLBy = 'Replace NULL by'; //to translate
$strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate $strQueryWindowLock = 'Do not overwrite this query from outside the window'; //to translate
$strPaperSize = 'Paper size'; //to translate
?> ?>

View File

@@ -1070,6 +1070,12 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')) {
if (!isset($cfg['GD2Available'])) { if (!isset($cfg['GD2Available'])) {
$cfg['GD2Available'] = 'auto'; $cfg['GD2Available'] = 'auto';
} }
if (!isset($cfg['PDFPageSizes'])) {
$cfg['PDFPageSizes'] = array('A3', 'A4', 'A5', 'letter', 'legal');
}
if (!isset($cfg['PDFDefaultPageSize'])) {
$cfg['PDFDefaultPageSize'] = 'A4';
}
if (!isset($cfg['CtrlArrowsMoving'])) { if (!isset($cfg['CtrlArrowsMoving'])) {
$cfg['CtrlArrowsMoving'] = TRUE; $cfg['CtrlArrowsMoving'] = TRUE;
} }

View File

@@ -429,7 +429,19 @@ if ($cfgRelation['pdfwork']) {
<select name="orientation"> <select name="orientation">
<option value="L"><?php echo $strLandscape;?></option> <option value="L"><?php echo $strLandscape;?></option>
<option value="P"><?php echo $strPortrait;?></option> <option value="P"><?php echo $strPortrait;?></option>
</select> </select><br />
<?php echo $strPaperSize; ?>
<select name="paper">
<?php
while (list($key,$val) = each($cfg['PDFPageSizes'])) {
echo '<option value="' . $val . '"';
if ($val == $cfg['PDFDefaultPageSize']) {
echo ' selected="selected"';
}
echo ' >' . $val . '</option>' . "\n";
}
?>
</select><br />
&nbsp;&nbsp;<input type="submit" value="<?php echo $strGo; ?>" /> &nbsp;&nbsp;<input type="submit" value="<?php echo $strGo; ?>" />
</form> </form>
<?php <?php

View File

@@ -1097,7 +1097,7 @@ class PMA_RT
* *
* @see PMA_PDF * @see PMA_PDF
*/ */
function PMA_RT( $which_rel, $show_info = 0, $change_color = 0 , $show_grid = 0, $all_tab_same_wide = 0, $orientation = 'L') function PMA_RT( $which_rel, $show_info = 0, $change_color = 0 , $show_grid = 0, $all_tab_same_wide = 0, $orientation = 'L', $paper = 'A4')
{ {
global $pdf, $db, $cfgRelation, $with_doc; global $pdf, $db, $cfgRelation, $with_doc;
@@ -1106,7 +1106,7 @@ class PMA_RT
$this->same_wide = $all_tab_same_wide; $this->same_wide = $all_tab_same_wide;
// Initializes a new document // Initializes a new document
$pdf = new PMA_PDF('L'); $pdf = new PMA_PDF('L', 'mm', $paper);
$pdf->title = sprintf($GLOBALS['strPdfDbSchema'], $GLOBALS['db'], $which_rel); $pdf->title = sprintf($GLOBALS['strPdfDbSchema'], $GLOBALS['db'], $which_rel);
$pdf->cMargin = 0; $pdf->cMargin = 0;
$pdf->Open(); $pdf->Open();
@@ -1527,7 +1527,8 @@ $show_table_dimension = (isset($show_table_dimension) && $show_table_dimension =
$all_tab_same_wide = (isset($all_tab_same_wide) && $all_tab_same_wide == 'on') ? 1 : 0; $all_tab_same_wide = (isset($all_tab_same_wide) && $all_tab_same_wide == 'on') ? 1 : 0;
$with_doc = (isset($with_doc) && $with_doc == 'on') ? 1 : 0; $with_doc = (isset($with_doc) && $with_doc == 'on') ? 1 : 0;
$orientation = (isset($orientation) && $orientation == 'P') ? 'P' : 'L'; $orientation = (isset($orientation) && $orientation == 'P') ? 'P' : 'L';
$paper = isset($paper) ? $paper : 'A4';
PMA_mysql_select_db($db); PMA_mysql_select_db($db);
$rt = new PMA_RT($pdf_page_number, $show_table_dimension, $show_color, $show_grid, $all_tab_same_wide, $orientation); $rt = new PMA_RT($pdf_page_number, $show_table_dimension, $show_color, $show_grid, $all_tab_same_wide, $orientation, $paper);
?> ?>