EXPERIMENTAL native MS Excel export support, using PEAR module Spreadsheet_Excel_Writer (RFE #968110).

This commit is contained in:
Michal Čihař
2004-06-07 14:11:54 +00:00
parent 30c6f6f58b
commit 08db25e5a6
108 changed files with 372 additions and 16 deletions

View File

@@ -13,6 +13,10 @@ $Source$
* lang/czech: Updated.
* libraries/charset_conversion.lib.php: Do not convert, if charsets are
same.
* config.inc.php, export.php, lang/*, libraries/config_import.lib.php,
libraries/display_export.lib.php, libraries/export/xls.php,
Documentation.html: EXPERIMENTAL native MS Excel export support, using
PEAR module Spreadsheet_Excel_Writer (RFE #968110).
2004-06-07 Alexander M. Turek <me@derrabus.de>
* css/phpmyadmin.css.php: beautifications.

View File

@@ -1711,6 +1711,15 @@ Defaults to FALSE (drop-down). <br />
<br /><br />
</dd>
<dt><b>$cfg['TempDir'] </b>string</dt>
<dd>
The name of the directory, where temporary files can be stored.
<br /><br />
This is needed for native MS Excel export, see <a href="#faq6_23">FAQ
6.23</a>
<br /><br />
</dd>
<dt><b>$cfg['Export'] </b>array</dt>
<dd>
In this array are defined default parameters for export, names of
@@ -3583,6 +3592,26 @@ To create a new, empty mimetype please see libraries/transformations/template_ge
Yes. If a bookmark has the same label as a table name, it will be
executed.
</p>
<h4>
<a name="faq6_23"></a>
[6.23] Export: I heard phpMyAdmin can export MS Excel files, how can I
enable that?
</h4>
<p>
You can either export as CSV suitable for MS Excel, what works out of the
box or you can try native <b>experimental</b> MS Excel exporter. For
enabling this you need to set $cfg['TempDir'] to place where web server
user can write and install PEAR module Spreadsheet_Excel_Writer into php
include path. The installation can be done by following command:
</p>
<pre>
pear -d preferred_state=beta install -a Spreadsheet_Excel_Writer
</pre>
<p>
First part of switches set we want to install beta version of that module
(no stable version available yet) and then we tell pear we want to satisfy
dependencies.
</p>
<a name="faqproject"></a><br />
<h3>[7. phpMyAdmin project]</h3>

View File

@@ -303,7 +303,7 @@ $cfg['DefaultTabTable'] = 'tbl_properties_structure.php';
* Export defaults
*/
$cfg['Export']['format'] = 'sql'; // sql/latex/excel/csv/xml
$cfg['Export']['format'] = 'sql'; // sql/latex/excel/csv/xml/xls
$cfg['Export']['compression'] = 'none'; // none/zip/gzip/bzip2
$cfg['Export']['asfile'] = FALSE;
@@ -311,6 +311,9 @@ $cfg['Export']['onserver'] = FALSE;
$cfg['Export']['onserver_overwrite'] = FALSE;
$cfg['Export']['remember_file_template'] = TRUE;
$cfg['Export']['xls_columns' = FALSE;
$cfg['Export']['xls_null'] = 'NULL';
$cfg['Export']['csv_columns'] = FALSE;
$cfg['Export']['csv_null'] = 'NULL';
$cfg['Export']['csv_separator'] = ';';
@@ -565,6 +568,9 @@ $cfg['SaveDir'] = ''; // Directory where phpMyAdmin can sa
$cfg['docSQLDir'] = ''; // Directory for docSQL imports, phpMyAdmin can import
// docSQL files from that directory. For example
// './docSQL'. Leave empty for no docSQL import support.
$cfg['TempDir'] = ''; // Directory where phpMyAdmin can save temporary files.
// This is needed for MS Excel export, see documentation
// how to enable that.
/**

View File

@@ -56,7 +56,7 @@ function PMA_exportOutputHandler($line)
global $time_start, $dump_buffer, $dump_buffer_len, $save_filename;
// Kanji encoding convert feature
if (function_exists('PMA_kanji_str_conv')) {
if ($GLOBALS['output_kanji_conversion']) {
$line = PMA_kanji_str_conv($line, $GLOBALS['knjenc'], isset($GLOBALS['xkana']) ? $GLOBALS['xkana'] : '');
}
// If we have to buffer data, we will perform everything at once at the end
@@ -68,10 +68,10 @@ function PMA_exportOutputHandler($line)
$dump_buffer_len += strlen($line);
if ($dump_buffer_len > $GLOBALS['memory_limit']) {
// as bzipped
if ($GLOBALS['output_charset_conversion']) {
$dump_buffer = PMA_convert_string($GLOBALS['charset'], $GLOBALS['charset_of_file'], $dump_buffer);
}
// as bzipped
if ($GLOBALS['compression'] == 'bzip' && @function_exists('bzcompress')) {
$dump_buffer = bzcompress($dump_buffer);
}
@@ -146,10 +146,13 @@ if (empty($asfile)) {
// Defines the default <CR><LF> format
$crlf = PMA_whichCrlf();
$output_kanji_conversion = function_exists('PMA_kanji_str_conv') && $type != 'xls';
// Do we need to convert charset?
$output_charset_conversion = $asfile &&
$cfg['AllowAnywhereRecoding'] && $allow_recoding
&& isset($charset_of_file) && $charset_of_file != $charset;
&& isset($charset_of_file) && $charset_of_file != $charset
&& $type != 'xls';
// Set whether we will need buffering
$buffer_needed = isset($compression) && ($compression == 'zip' | $compression == 'gzip' | $compression == 'bzip');
@@ -212,6 +215,9 @@ if ($asfile) {
if ($type == 'csv') {
$filename .= '.csv';
$mime_type = 'text/x-csv';
} else if ($type == 'xls') {
$filename .= '.xls';
$mime_type = 'application/excel';
} else if ($type == 'xml') {
$filename .= '.xml';
$mime_type = 'text/xml';
@@ -480,15 +486,8 @@ if (!empty($asfile)) {
// 1. as a gzipped file
if (isset($compression) && $compression == 'zip') {
if (@function_exists('gzcompress')) {
if ($type == 'csv' ) {
$extbis = '.csv';
} else if ($type == 'xml') {
$extbis = '.xml';
} else {
$extbis = '.sql';
}
$zipfile = new zipfile();
$zipfile -> addFile($dump_buffer, $filename . $extbis);
$zipfile -> addFile($dump_buffer, substr($filename, 0, -4));
$dump_buffer = $zipfile -> file();
}
}

View File

@@ -755,4 +755,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -756,4 +756,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -744,4 +744,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -754,4 +754,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -769,4 +769,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -768,4 +768,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -769,4 +769,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -768,4 +768,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -630,7 +630,7 @@ $strSize = 'Velikost';
$strSort = '<27>adit';
$strSortByKey = 'Set<65><74>dit podle kl<6B><6C>e';
$strSpaceUsage = 'Vyu<79>it<69> m<>sta';
$strSpanish = '<27>pan<61>lsky;
$strSpanish = '<27>pan<61>lsky';
$strSplitWordsWithSpace = 'Slova jsou odd<64>lena mezerou (" ").';
$strStatCheckTime = 'Posledn<64> kontrola';
$strStatCreateTime = 'Vytvo<76>en<65>';
@@ -641,6 +641,7 @@ $strStrucCSV = 'CSV data';
$strStrucData = 'Strukturu a data';
$strStrucDrop = 'P<>idat \'DROP TABLE\'';
$strStrucExcelCSV = 'CSV data pro MS Excel';
$strStrucNativeExcel = 'Nativn<76> MS Excel';
$strStrucOnly = 'Pouze strukturu';
$strStructPropose = 'Navrhnout strukturu tabulky';
$strStructure = 'Struktura';

View File

@@ -631,7 +631,7 @@ $strSize = 'Velikost';
$strSort = 'Řadit';
$strSortByKey = 'Setřídit podle klíče';
$strSpaceUsage = 'Využití místa';
$strSpanish = 'Španělsky;
$strSpanish = 'Španělsky';
$strSplitWordsWithSpace = 'Slova jsou oddělena mezerou (" ").';
$strStatCheckTime = 'Poslední kontrola';
$strStatCreateTime = 'Vytvoření';
@@ -642,6 +642,7 @@ $strStrucCSV = 'CSV data';
$strStrucData = 'Strukturu a data';
$strStrucDrop = 'Přidat \'DROP TABLE\'';
$strStrucExcelCSV = 'CSV data pro MS Excel';
$strStrucNativeExcel = 'Nativní MS Excel';
$strStrucOnly = 'Pouze strukturu';
$strStructPropose = 'Navrhnout strukturu tabulky';
$strStructure = 'Struktura';

View File

@@ -630,7 +630,7 @@ $strSize = 'Velikost';
$strSort = '<27>adit';
$strSortByKey = 'Set<65><74>dit podle kl<6B><6C>e';
$strSpaceUsage = 'Vyu<79>it<69> m<>sta';
$strSpanish = '<27>pan<61>lsky;
$strSpanish = '<27>pan<61>lsky';
$strSplitWordsWithSpace = 'Slova jsou odd<64>lena mezerou (" ").';
$strStatCheckTime = 'Posledn<64> kontrola';
$strStatCreateTime = 'Vytvo<76>en<65>';
@@ -641,6 +641,7 @@ $strStrucCSV = 'CSV data';
$strStrucData = 'Strukturu a data';
$strStrucDrop = 'P<>idat \'DROP TABLE\'';
$strStrucExcelCSV = 'CSV data pro MS Excel';
$strStrucNativeExcel = 'Nativn<76> MS Excel';
$strStrucOnly = 'Pouze strukturu';
$strStructPropose = 'Navrhnout strukturu tabulky';
$strStructure = 'Struktura';

View File

@@ -742,4 +742,5 @@ $strZeroRemovesTheLimit = 'Bem
$strZip = '"zipped"';
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -743,4 +743,5 @@ $strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fj
$strZip = '"zipped"';
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the l
$strZip = '"zipped"';
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the l
$strZip = '"zipped"';
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strZeroRemovesTheLimit = 'M
$strZip = '"zipitud"';
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strZeroRemovesTheLimit = 'Märkus: Märkides antud seaded 0 (null) , eemaldate
$strZip = '"zipitud"';
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -765,4 +765,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -766,4 +766,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strYes = 'Oui';
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
$strZip = '"zipp<70>"';
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -742,4 +742,5 @@ $strYes = 'Oui';
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
$strZip = '"zippé"';
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -769,4 +769,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr<68>nkung.';
$strZip = 'Zip-komprimiert';
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.';
$strZip = 'Zip-komprimiert';
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -765,4 +765,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -773,4 +773,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -754,4 +754,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) a
$strZip = '"Dikompress dengan Zip"';
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) a
$strZip = '"Dikompress dengan Zip"';
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -754,4 +754,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -763,4 +763,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -764,4 +764,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -764,4 +764,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -765,4 +765,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strZip = 'Komprimert (zip)';
// To translate:
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strZip = 'Komprimert (zip)';
// To translate:
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -771,4 +771,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -760,4 +760,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -761,4 +761,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -742,4 +742,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strRefresh = 'Refresh'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strRefresh = 'Refresh'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strRefresh = 'Refresh'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strRefresh = 'Refresh'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -742,4 +742,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -743,4 +743,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -742,4 +742,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -742,4 +742,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -743,4 +743,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -742,4 +742,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -744,4 +744,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strDefragment = 'Defragment table'; //to translate
$strNoRowsSelected = 'No rows selected'; //to translate
$strSQPBugSyntaxError = 'Syntax error'; //to translate
$strSpanish = 'Spanish'; //to translate
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
?>

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