- Allow to supress dates in SQL dump separately.

- Fix undefined variable for MySQL < 3.23.20 (bug #828370).
This commit is contained in:
Michal Čihař
2003-10-23 10:33:48 +00:00
parent f9d8c93f86
commit c848070471
106 changed files with 223 additions and 76 deletions

View File

@@ -5,6 +5,15 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-10-20 Michal Cihar <nijel@users.sourceforge.net>
* libraries/export/sql.php3: Fix undefined variable for MySQL < 3.23.20
(bug #828370).
* libraries/export/sql.php3. libraries/export/latex.php3,
libraries/display_export.lib.php3, export.php3, lang/*,
libraries/common.lib.php3, libraries/config_import.lib.php3: Allow to
supress dates in SQL dump separately.
* lang/add_message.sh: Fail if no message specified.
2003-10-21 Marc Delisle <lem9@users.sourceforge.net>
* pdf_pages.php3: Patch 825672: show fields in Edit PDF scratchboard,
thanks to Chris Walsh (chriswalshaz)

View File

@@ -329,6 +329,7 @@ $cfg['Export']['sql_drop_database'] = FALSE;
$cfg['Export']['sql_drop_table'] = FALSE;
$cfg['Export']['sql_auto_increment'] = TRUE;
$cfg['Export']['sql_backquotes'] = TRUE;
$cfg['Export']['sql_dates'] = FALSE;
$cfg['Export']['sql_relation'] = FALSE;
$cfg['Export']['sql_columns'] = FALSE;
$cfg['Export']['sql_extended'] = FALSE;

View File

@@ -344,6 +344,9 @@ if ($do_mime) {
require('./libraries/transformations.lib.php3');
}
// Include dates in export?
$do_dates = isset($GLOBALS[$what . '_dates']);
/**
* Builds the dump
*/
@@ -373,7 +376,7 @@ if ($export_type == 'server') {
while ($i < $num_tables) {
$table = PMA_mysql_tablename($tables, $i);
$local_query = 'SELECT * FROM ' . PMA_backquote($current_db) . '.' . PMA_backquote($table);
if (isset($GLOBALS[$what . '_structure'])) PMA_exportStructure($current_db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime);
if (isset($GLOBALS[$what . '_structure'])) PMA_exportStructure($current_db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates);
if (isset($GLOBALS[$what . '_data'])) PMA_exportData($current_db, $table, $crlf, $err_url, $local_query);
$i++;
}
@@ -393,7 +396,7 @@ if ($export_type == 'server') {
if ((isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $table . '|'))
|| !isset($tmp_select)) {
if (isset($GLOBALS[$what . '_structure'])) PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime);
if (isset($GLOBALS[$what . '_structure'])) PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates);
if (isset($GLOBALS[$what . '_data'])) PMA_exportData($db, $table, $crlf, $err_url, $local_query);
}
$i++;
@@ -418,7 +421,7 @@ if ($export_type == 'server') {
$local_query = 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . $add_query;
}
if (isset($GLOBALS[$what . '_structure'])) PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime);
if (isset($GLOBALS[$what . '_structure'])) PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates);
if (isset($GLOBALS[$what . '_data'])) PMA_exportData($db, $table, $crlf, $err_url, $local_query);
PMA_exportDBFooter($db);
}

View File

@@ -725,4 +725,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -726,4 +726,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strZip = '"kompresuar me zip"';
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strZip = '"kompresuar me zip"';
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -714,4 +714,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -715,4 +715,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -700,4 +700,5 @@ $strYes = 'Da';
$strZeroRemovesTheLimit = 'Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite.';
$strZip = '"zipovano"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -699,4 +699,5 @@ $strYes = 'Da';
$strZeroRemovesTheLimit = 'Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite.';
$strZip = '"zipovano"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -739,4 +739,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -720,4 +720,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -721,4 +721,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -720,4 +720,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el l
$strZip = '"comprimit amb zip"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -713,4 +713,5 @@ $strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el l
$strZip = '"comprimit amb zip"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -723,4 +723,5 @@ $strBookmarkAllUsers = '所有用者可讀取此書籤';
$strConstraintsForDumped = '備份資料表限制';
$strConstraintsForTable = '資料表限制';
$strBookmarkOptions = '書籤選項';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -722,4 +722,5 @@ $strBookmarkAllUsers = '
$strConstraintsForDumped = '<27>ƥ<EFBFBD><C6A5><EFBFBD><EFBFBD>ƪ<EFBFBD><C6AA><EFBFBD><EFBFBD><EFBFBD>';
$strConstraintsForTable = '<27><><EFBFBD>ƪ<EFBFBD><C6AA><EFBFBD><EFBFBD><EFBFBD>';
$strBookmarkOptions = '<27><><EFBFBD>ҿﶵ';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -716,4 +716,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -738,4 +738,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -739,4 +739,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -738,4 +738,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -148,6 +148,7 @@ $strCreateNewDatabase = 'Vytvo
$strCreateNewTable = 'Vytvo<76>it novou tabulku v&nbsp;datab<61>zi %s';
$strCreatePage = 'Vytvo<76>it novou str<74>nku';
$strCreatePdfFeat = 'Vytv<74><76>en<65> PDF';
$strCreationDates = 'Datum vytvo<76>en<65>, posledn<64> zm<7A>ny a kontroly';
$strCriteria = 'Podm<64>nka';
$strCroatian = 'Chorvatsky';
$strCyrillic = 'Cyrilika';

View File

@@ -149,6 +149,7 @@ $strCreateNewDatabase = 'Vytvořit novou databázi';
$strCreateNewTable = 'Vytvořit novou tabulku v&nbsp;databázi %s';
$strCreatePage = 'Vytvořit novou stránku';
$strCreatePdfFeat = 'Vytváření PDF';
$strCreationDates = 'Datum vytvoření, poslední změny a kontroly';
$strCriteria = 'Podmínka';
$strCroatian = 'Chorvatsky';
$strCyrillic = 'Cyrilika';

View File

@@ -148,6 +148,7 @@ $strCreateNewDatabase = 'Vytvo
$strCreateNewTable = 'Vytvo<76>it novou tabulku v&nbsp;datab<61>zi %s';
$strCreatePage = 'Vytvo<76>it novou str<74>nku';
$strCreatePdfFeat = 'Vytv<74><76>en<65> PDF';
$strCreationDates = 'Datum vytvo<76>en<65>, posledn<64> zm<7A>ny a kontroly';
$strCriteria = 'Podm<64>nka';
$strCroatian = 'Chorvatsky';
$strCyrillic = 'Cyrilika';

View File

@@ -733,4 +733,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -734,4 +734,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -718,4 +718,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -719,4 +719,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -142,6 +142,7 @@ $strCreateNewDatabase = 'Create new database';
$strCreateNewTable = 'Create new table on database %s';
$strCreatePage = 'Create a new Page';
$strCreatePdfFeat = 'Creation of PDFs';
$strCreationDates = 'Creation/Update/Check dates';
$strCriteria = 'Criteria';
$strCroatian = 'Croatian';
$strCyrillic = 'Cyrillic';
@@ -709,4 +710,5 @@ $strYes = 'Yes';
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
$strZip = '"zipped"';
?>

View File

@@ -143,6 +143,7 @@ $strCreateNewDatabase = 'Create new database';
$strCreateNewTable = 'Create new table on database %s';
$strCreatePage = 'Create a new Page';
$strCreatePdfFeat = 'Creation of PDFs';
$strCreationDates = 'Creation/Update/Check dates';
$strCriteria = 'Criteria';
$strCroatian = 'Croatian';
$strCyrillic = 'Cyrillic';
@@ -710,4 +711,5 @@ $strYes = 'Yes';
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
$strZip = '"zipped"';
?>

View File

@@ -711,4 +711,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -735,4 +735,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -736,4 +736,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl
$strZip = '"zipp<70>"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -713,4 +713,5 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
$strZip = '"zippé"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -718,4 +718,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -739,4 +739,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -719,4 +719,5 @@ $strBookmarkAllUsers = 'Diese gespeicherte SQL-Abfrage f
$strConstraintsForDumped = 'Constraints der exportierten Tabellen';
$strConstraintsForTable = 'Constraints der Tabelle';
$strBookmarkOptions = 'Optionen zur Speicherung der SQL-Abfrage';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -720,4 +720,5 @@ $strBookmarkAllUsers = 'Diese gespeicherte SQL-Abfrage für jeden Benutzer verf
$strConstraintsForDumped = 'Constraints der exportierten Tabellen';
$strConstraintsForTable = 'Constraints der Tabelle';
$strBookmarkOptions = 'Optionen zur Speicherung der SQL-Abfrage';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -719,4 +719,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -720,4 +720,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -735,4 +735,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -723,4 +723,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -724,4 +724,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -711,4 +711,5 @@ $strZeroRemovesTheLimit = 'Perhatian: Merubah pilihan ini ke posisi 0 (zero) aka
$strZip = '"Dikompress dengan Zip"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strZeroRemovesTheLimit = 'Perhatian: Merubah pilihan ini ke posisi 0 (zero) aka
$strZip = '"Dikompress dengan Zip"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -716,4 +716,5 @@ $strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
$strZip = '"compresso con zip"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
$strZip = '"compresso con zip"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -723,4 +723,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -723,4 +723,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -724,4 +724,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -733,4 +733,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -716,4 +716,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -713,4 +713,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -736,4 +736,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -737,4 +737,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -718,4 +718,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -741,4 +741,5 @@ $strWritingRelationNotPossible = 'Writing of relation not possible'; //to transl
$strXML = 'XML'; //to translate
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -740,4 +740,5 @@ $strWritingRelationNotPossible = 'Writing of relation not possible'; //to transl
$strXML = 'XML'; //to translate
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -711,4 +711,5 @@ $strZeroRemovesTheLimit = 'Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograni
$strZip = '".zip"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strZeroRemovesTheLimit = 'Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograni
$strZip = '".zip"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -734,4 +734,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -735,4 +735,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -713,4 +713,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -714,4 +714,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -718,4 +718,5 @@ $strZeroRemovesTheLimit = '
$strZip = '<27><><EFBFBD><EFBFBD><E0AEA2><EFBFBD> <20> zip';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -718,4 +718,5 @@ $strZeroRemovesTheLimit = '
$strZip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> zip';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -719,4 +719,5 @@ $strZeroRemovesTheLimit = 'Замечание: Установка этих оп
$strZip = 'архивировать в zip';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -718,4 +718,5 @@ $strZeroRemovesTheLimit = '
$strZip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> zip';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -16,4 +16,6 @@ $right_font_family = 'arial, helvetica, geneva, sans-serif';
$number_thousands_separator = ',';
$number_decimal_separator = '.';
// shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa
$byteUnits = array('
$byteUnits = array('
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strYes = '
$strZeroRemovesTheLimit = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> 0 (<28><><EFBFBD><EFBFBD>) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$strZip = '"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -18,4 +18,6 @@ $number_decimal_separator = '.';
// shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa
$byteUnits = array('bajtova', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB');
$day_of_week = array('Ned', 'Pon', 'Uto', 'Sre', '
$day_of_week = array('Ned', 'Pon', 'Uto', 'Sre', '
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -717,4 +717,5 @@ $strYes = 'Da';
$strZeroRemovesTheLimit = 'Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite.';
$strZip = '"zipovano"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strYes = '
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastavenie t<>chto parametrov na 0 (nulu) odstr<74>ni obmedzenia.';
$strZip = '"zo zipovan<61>"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -713,4 +713,5 @@ $strYes = 'Áno';
$strZeroRemovesTheLimit = 'Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia.';
$strZip = '"zo zipované"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strYes = '
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastavenie t<>chto parametrov na 0 (nulu) odstr<74>ni obmedzenia.';
$strZip = '"zo zipovan<61>"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -713,4 +713,5 @@ $strZeroRemovesTheLimit = 'Obvestilo:
$strZip = '"zipano"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -714,4 +714,5 @@ $strZeroRemovesTheLimit = 'Obvestilo: Če postavite vrednost na 0 (nič), boste
$strZip = '"zipano"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -713,4 +713,5 @@ $strZeroRemovesTheLimit = 'Obvestilo:
$strZip = '"zipano"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -711,4 +711,5 @@ $strYes = 'S
$strZeroRemovesTheLimit = 'Nota: si cambia los par<61>metros de estas opciones a 0 (cero), remueve el l<>mite.';
$strZip = '"comprimido con zip"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strYes = 'Sí';
$strZeroRemovesTheLimit = 'Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el límite.';
$strZip = '"comprimido con zip"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -711,4 +711,5 @@ $strZeroRemovesTheLimit = 'Anm: Genom att s
$strZip = '"zippad"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -712,4 +712,5 @@ $strZeroRemovesTheLimit = 'Anm: Genom att sätta dessa alternativ till 0 (noll)
$strZip = '"zippad"';
// To translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -723,4 +723,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -724,4 +724,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -723,4 +723,5 @@ $strYes = 'Evet';
$strZeroRemovesTheLimit = 'Not: Bu se<73>eneklerin 0\'a ayarlanmas<61> s<>n<EFBFBD>r<EFBFBD> kald<6C>r<EFBFBD>r..';
$strZip = '"ziplenmi<6D>"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -724,4 +724,5 @@ $strYes = 'Evet';
$strZeroRemovesTheLimit = 'Not: Bu seçeneklerin 0\'a ayarlanması sınırı kaldırır..';
$strZip = '"ziplenmiş"';
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

View File

@@ -716,4 +716,5 @@ $strBookmarkAllUsers = 'Let every user access this bookmark'; //to translate
$strConstraintsForDumped = 'Constraints for dumped tables'; //to translate
$strConstraintsForTable = 'Constraints for table'; //to translate
$strBookmarkOptions = 'Bookmark options'; //to translate
$strCreationDates = 'Creation/Update/Check dates'; //to translate
?>

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