Added Microsoft Word and Excel 2000 export (RFE #1155122).

This commit is contained in:
Michal Čihař
2005-03-06 12:52:20 +00:00
parent e430651d24
commit d5f9ad07b7
109 changed files with 827 additions and 2 deletions

View File

@@ -5,6 +5,12 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-03-06 Michal Čihař <michal@cihar.com>
* export.php, libraries/display_export.lib.php, config.inc.php,
libraries/config_import.lib.php, libraries/export/htmlexcel.php,
libraries/export/htmlword.php, lang/*: Added Microsoft Word and Excel
2000 export (RFE #1155122).
2005-03-06 Marc Delisle <lem9@users.sourceforge.net>
* libraries/relation.lib.php, /display_export.lib.php,
/export/sql.php: native comments. For MySQL 4.1.x+ I do not display

View File

@@ -309,7 +309,7 @@ $cfg['DefaultTabTable'] = 'tbl_properties_structure.php';
* Export defaults
*/
$cfg['Export']['format'] = 'sql'; // sql/latex/excel/csv/xml/xls
$cfg['Export']['format'] = 'sql'; // sql/latex/excel/csv/xml/xls/hmtlexcel/htmlword
$cfg['Export']['compression'] = 'none'; // none/zip/gzip/bzip2
$cfg['Export']['asfile'] = FALSE;
@@ -317,6 +317,12 @@ $cfg['Export']['onserver'] = FALSE;
$cfg['Export']['onserver_overwrite'] = FALSE;
$cfg['Export']['remember_file_template'] = TRUE;
$cfg['Export']['htmlexcel_columns'] = FALSE;
$cfg['Export']['htmlexcel_null'] = 'NULL';
$cfg['Export']['htmlword_columns'] = FALSE;
$cfg['Export']['htmlword_null'] = 'NULL';
$cfg['Export']['xls_columns'] = FALSE;
$cfg['Export']['xls_null'] = 'NULL';

View File

@@ -219,6 +219,12 @@ if ($asfile) {
if ($type == 'csv') {
$filename .= '.csv';
$mime_type = 'text/x-comma-separated-values';
} else if ($type == 'htmlexcel') {
$filename .= '.xls';
$mime_type = 'application/vnd.ms-excel';
} else if ($type == 'htmlword') {
$filename .= '.doc';
$mime_type = 'application/vnd.ms-word';
} else if ($type == 'xls') {
$filename .= '.xls';
$mime_type = 'application/vnd.ms-excel';

View File

@@ -803,4 +803,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -804,4 +804,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -793,4 +793,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -794,4 +794,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -797,4 +797,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -796,4 +796,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -792,4 +792,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -793,4 +793,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -795,4 +795,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -796,4 +796,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -802,4 +802,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -801,4 +801,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -817,4 +817,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -818,4 +818,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -802,4 +802,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -803,4 +803,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -802,4 +802,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -788,4 +788,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -789,4 +789,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -794,4 +794,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -795,4 +795,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -794,4 +794,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -795,4 +795,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -816,4 +816,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -817,4 +817,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -816,4 +816,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -794,4 +794,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -795,4 +795,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -794,4 +794,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -790,4 +790,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -791,4 +791,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -792,4 +792,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -793,4 +793,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -788,4 +788,8 @@ $strZip = '"zipped"';
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -789,4 +789,8 @@ $strZip = '"zipped"';
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -793,4 +793,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -794,4 +794,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -813,4 +813,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -814,4 +814,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -790,4 +790,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -791,4 +791,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -804,4 +804,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -805,4 +805,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -817,4 +817,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -796,4 +796,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -797,4 +797,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -797,4 +797,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -798,4 +798,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -813,4 +813,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -814,4 +814,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -821,4 +821,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -795,4 +795,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -796,4 +796,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -788,4 +788,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -789,4 +789,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -796,4 +796,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -797,4 +797,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -813,4 +813,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -813,4 +813,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -814,4 +814,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -811,4 +811,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -812,4 +812,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -799,4 +799,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -798,4 +798,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -789,4 +789,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -788,4 +788,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -812,4 +812,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -813,4 +813,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -797,4 +797,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -798,4 +798,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -818,4 +818,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -817,4 +817,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -788,4 +788,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -789,4 +789,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -808,4 +808,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -809,4 +809,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -793,4 +793,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -794,4 +794,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -796,4 +796,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -796,4 +796,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -797,4 +797,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -796,4 +796,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -804,4 +804,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -803,4 +803,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -804,4 +804,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -803,4 +803,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -790,4 +790,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -791,4 +791,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -790,4 +790,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -790,4 +790,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -791,4 +791,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -790,4 +790,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -788,4 +788,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -789,4 +789,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -792,4 +792,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -793,4 +793,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

View File

@@ -813,4 +813,8 @@ $strBufferReadMisses = 'Read misses'; //to translate
$strBufferReadMissesInPercent = 'Read misses in %'; //to translate
$strBufferWriteWaits = 'Write waits'; //to translate
$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate
$strHTMLExcel = 'Microsoft Excel 2000'; //to translate
$strHTMLExcelOptions = 'Microsoft Excel 2000 export options'; //to translate
$strHTMLWord = 'Microsoft Word 2000'; //to translate
$strHTMLWordOptions = 'Microsoft Word 2000 export options'; //to translate
?>

Some files were not shown because too many files have changed in this diff Show More