Pop-up calendar for date fields (RFE #880647).
This commit is contained in:
@@ -13,6 +13,9 @@ $Source$
|
|||||||
exports (RFE #859815).
|
exports (RFE #859815).
|
||||||
* images/button_export.png: At least some export icon.
|
* images/button_export.png: At least some export icon.
|
||||||
* libraries/display_tbl.lib.php: Fix image sizes.
|
* libraries/display_tbl.lib.php: Fix image sizes.
|
||||||
|
* calendar.php, tbl_change.php, css/phpmyadmin.css.php,
|
||||||
|
images/button_calendar.png, libraries/tbl_change.js, lang/*: Pop-up
|
||||||
|
calendar for date fields (RFE #880647).
|
||||||
|
|
||||||
2004-04-15 Marc Delisle <lem9@users.sourceforge.net>
|
2004-04-15 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* ldi_table.php: allow longer field terminator (was 2 now 4);
|
* ldi_table.php: allow longer field terminator (was 2 now 4);
|
||||||
|
26
calendar.php
Normal file
26
calendar.php
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
include('./libraries/grab_globals.lib.php');
|
||||||
|
$is_minimum_common = TRUE;
|
||||||
|
include('./libraries/common.lib.php');
|
||||||
|
include('./libraries/header_http.inc.php');
|
||||||
|
?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title><?php echo $strCalendar;?></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
|
||||||
|
<link rel="stylesheet" href="./css/phpmyadmin.css.php" type="text/css">
|
||||||
|
<script type="text/javascript" src="./libraries/tbl_change.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
var month_names = new Array("<?php echo implode('","', $month); ?>");
|
||||||
|
var day_names = new Array("<?php echo implode('","', $day_of_week); ?>");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body onload="initCalendar();">
|
||||||
|
<div id="calendar_data"></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@@ -242,5 +242,34 @@ button.mult_submit {
|
|||||||
<?php
|
<?php
|
||||||
echo PMA_SQP_buildCssData();
|
echo PMA_SQP_buildCssData();
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
/* Calendar */
|
||||||
|
table.calendar {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.calendar td {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.calendar td a {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.calendar td a:hover {
|
||||||
|
background-color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.calendar th {
|
||||||
|
background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.calendar td.selected {
|
||||||
|
background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.calendar {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
BIN
images/button_calendar.png
Normal file
BIN
images/button_calendar.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 184 B |
@@ -749,4 +749,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -750,4 +750,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -744,4 +744,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -748,4 +748,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -763,4 +763,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -764,4 +764,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -746,4 +746,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -746,4 +746,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -744,4 +744,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -740,4 +740,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -740,4 +740,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -762,4 +762,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -763,4 +763,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -762,4 +762,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -95,6 +95,7 @@ $strBzError = 'phpMyAdminovi se nepoda
|
|||||||
$strBzip = '"zabzipov<6F>no"';
|
$strBzip = '"zabzipov<6F>no"';
|
||||||
|
|
||||||
$strCSVOptions = 'Nastaven<65> CSV exportu';
|
$strCSVOptions = 'Nastaven<65> CSV exportu';
|
||||||
|
$strCalendar = 'Kalend<6E><64>';
|
||||||
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
|
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
|
||||||
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />zkontrolujte pros<6F>m nastaven<65> PHP';
|
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />zkontrolujte pros<6F>m nastaven<65> PHP';
|
||||||
$strCantLoadRecodeIconv = 'Nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> iconv ani recode pot<6F>ebn<62> pro p<>evod znakov<6F>ch sad. Upravte nastaven<65> php tak aby umo<6D><6F>ovalo pou<6F><75>t tyto roz<6F><7A><EFBFBD>en<65> nebo vypn<70>te p<>evod znakov<6F>ch sad v phpMyAdminu.';
|
$strCantLoadRecodeIconv = 'Nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> iconv ani recode pot<6F>ebn<62> pro p<>evod znakov<6F>ch sad. Upravte nastaven<65> php tak aby umo<6D><6F>ovalo pou<6F><75>t tyto roz<6F><7A><EFBFBD>en<65> nebo vypn<70>te p<>evod znakov<6F>ch sad v phpMyAdminu.';
|
||||||
|
@@ -96,6 +96,7 @@ $strBzError = 'phpMyAdminovi se nepodařilo zkomprimovat výpis, protože rozš
|
|||||||
$strBzip = '"zabzipováno"';
|
$strBzip = '"zabzipováno"';
|
||||||
|
|
||||||
$strCSVOptions = 'Nastavení CSV exportu';
|
$strCSVOptions = 'Nastavení CSV exportu';
|
||||||
|
$strCalendar = 'Kalendář';
|
||||||
$strCannotLogin = 'Nepodařilo se přihlášení k MySQL serveru';
|
$strCannotLogin = 'Nepodařilo se přihlášení k MySQL serveru';
|
||||||
$strCantLoad = 'nelze nahrát rozšíření %s,<br />zkontrolujte prosím nastavení PHP';
|
$strCantLoad = 'nelze nahrát rozšíření %s,<br />zkontrolujte prosím nastavení PHP';
|
||||||
$strCantLoadRecodeIconv = 'Nelze nahrát rozšíření iconv ani recode potřebná pro převod znakových sad. Upravte nastavení php tak aby umožňovalo použít tyto rozšíření nebo vypněte převod znakových sad v phpMyAdminu.';
|
$strCantLoadRecodeIconv = 'Nelze nahrát rozšíření iconv ani recode potřebná pro převod znakových sad. Upravte nastavení php tak aby umožňovalo použít tyto rozšíření nebo vypněte převod znakových sad v phpMyAdminu.';
|
||||||
|
@@ -95,6 +95,7 @@ $strBzError = 'phpMyAdminovi se nepoda
|
|||||||
$strBzip = '"zabzipov<6F>no"';
|
$strBzip = '"zabzipov<6F>no"';
|
||||||
|
|
||||||
$strCSVOptions = 'Nastaven<65> CSV exportu';
|
$strCSVOptions = 'Nastaven<65> CSV exportu';
|
||||||
|
$strCalendar = 'Kalend<6E><64>';
|
||||||
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
|
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
|
||||||
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />zkontrolujte pros<6F>m nastaven<65> PHP';
|
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />zkontrolujte pros<6F>m nastaven<65> PHP';
|
||||||
$strCantLoadRecodeIconv = 'Nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> iconv ani recode pot<6F>ebn<62> pro p<>evod znakov<6F>ch sad. Upravte nastaven<65> php tak aby umo<6D><6F>ovalo pou<6F><75>t tyto roz<6F><7A><EFBFBD>en<65> nebo vypn<70>te p<>evod znakov<6F>ch sad v phpMyAdminu.';
|
$strCantLoadRecodeIconv = 'Nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> iconv ani recode pot<6F>ebn<62> pro p<>evod znakov<6F>ch sad. Upravte nastaven<65> php tak aby umo<6D><6F>ovalo pou<6F><75>t tyto roz<6F><7A><EFBFBD>en<65> nebo vypn<70>te p<>evod znakov<6F>ch sad v phpMyAdminu.';
|
||||||
|
@@ -738,4 +738,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -89,6 +89,7 @@ $strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz
|
|||||||
$strBzip = '"bzipped"';
|
$strBzip = '"bzipped"';
|
||||||
|
|
||||||
$strCSVOptions = 'CSV options';
|
$strCSVOptions = 'CSV options';
|
||||||
|
$strCalendar = 'Calendar';
|
||||||
$strCannotLogin = 'Cannot login to MySQL server';
|
$strCannotLogin = 'Cannot login to MySQL server';
|
||||||
$strCantLoad = 'cannot load %s extension,<br />please check PHP Configuration';
|
$strCantLoad = 'cannot load %s extension,<br />please check PHP Configuration';
|
||||||
$strCantLoadRecodeIconv = 'Can not load iconv or recode extension needed for charset conversion, configure php to allow using these extensions or disable charset conversion in phpMyAdmin.';
|
$strCantLoadRecodeIconv = 'Can not load iconv or recode extension needed for charset conversion, configure php to allow using these extensions or disable charset conversion in phpMyAdmin.';
|
||||||
@@ -226,6 +227,7 @@ $strEffective = 'Effective';
|
|||||||
$strEmpty = 'Empty';
|
$strEmpty = 'Empty';
|
||||||
$strEmptyResultSet = 'MySQL returned an empty result set (i.e. zero rows).';
|
$strEmptyResultSet = 'MySQL returned an empty result set (i.e. zero rows).';
|
||||||
$strEnabled = 'Enabled';
|
$strEnabled = 'Enabled';
|
||||||
|
$strEncloseInTransaction = 'Enclose export in a transaction';
|
||||||
$strEnd = 'End';
|
$strEnd = 'End';
|
||||||
$strEndCut = 'END CUT';
|
$strEndCut = 'END CUT';
|
||||||
$strEndRaw = 'END RAW';
|
$strEndRaw = 'END RAW';
|
||||||
@@ -733,5 +735,4 @@ $strYes = 'Yes';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||||
$strZip = '"zipped"';
|
$strZip = '"zipped"';
|
||||||
|
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -90,6 +90,7 @@ $strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz
|
|||||||
$strBzip = '"bzipped"';
|
$strBzip = '"bzipped"';
|
||||||
|
|
||||||
$strCSVOptions = 'CSV options';
|
$strCSVOptions = 'CSV options';
|
||||||
|
$strCalendar = 'Calendar';
|
||||||
$strCannotLogin = 'Cannot login to MySQL server';
|
$strCannotLogin = 'Cannot login to MySQL server';
|
||||||
$strCantLoad = 'cannot load %s extension,<br />please check PHP Configuration';
|
$strCantLoad = 'cannot load %s extension,<br />please check PHP Configuration';
|
||||||
$strCantLoadRecodeIconv = 'Can not load iconv or recode extension needed for charset conversion, configure php to allow using these extensions or disable charset conversion in phpMyAdmin.';
|
$strCantLoadRecodeIconv = 'Can not load iconv or recode extension needed for charset conversion, configure php to allow using these extensions or disable charset conversion in phpMyAdmin.';
|
||||||
@@ -227,6 +228,7 @@ $strEffective = 'Effective';
|
|||||||
$strEmpty = 'Empty';
|
$strEmpty = 'Empty';
|
||||||
$strEmptyResultSet = 'MySQL returned an empty result set (i.e. zero rows).';
|
$strEmptyResultSet = 'MySQL returned an empty result set (i.e. zero rows).';
|
||||||
$strEnabled = 'Enabled';
|
$strEnabled = 'Enabled';
|
||||||
|
$strEncloseInTransaction = 'Enclose export in a transaction';
|
||||||
$strEnd = 'End';
|
$strEnd = 'End';
|
||||||
$strEndCut = 'END CUT';
|
$strEndCut = 'END CUT';
|
||||||
$strEndRaw = 'END RAW';
|
$strEndRaw = 'END RAW';
|
||||||
@@ -734,5 +736,4 @@ $strYes = 'Yes';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||||
$strZip = '"zipped"';
|
$strZip = '"zipped"';
|
||||||
|
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -759,4 +759,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -760,4 +760,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,5 @@ $strYes = 'Oui';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
||||||
$strZip = '"zipp<70>"';
|
$strZip = '"zipp<70>"';
|
||||||
|
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,5 @@ $strYes = 'Oui';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
||||||
$strZip = '"zippé"';
|
$strZip = '"zippé"';
|
||||||
|
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -763,4 +763,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'Der Datenbankname ist leer!';
|
|||||||
$strDBRename = 'Datenbank umbenennen zu';
|
$strDBRename = 'Datenbank umbenennen zu';
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,5 @@ $strDatabaseEmpty = 'Der Datenbankname ist leer!';
|
|||||||
$strDBRename = 'Datenbank umbenennen zu';
|
$strDBRename = 'Datenbank umbenennen zu';
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -744,4 +744,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -759,4 +759,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -767,4 +767,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -748,4 +748,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -740,4 +740,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -748,4 +748,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -757,4 +757,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -758,4 +758,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -740,4 +740,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,5 @@ $strZip = '"zip"';
|
|||||||
|
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,5 @@ $strZip = '"zip"';
|
|||||||
|
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -758,4 +758,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -759,4 +759,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,5 @@ $strZip = 'Komprimert (zip)';
|
|||||||
|
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strZip = 'Komprimert (zip)';
|
|||||||
|
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -765,4 +765,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -764,4 +764,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
|||||||
|
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,5 @@ $strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate
|
|||||||
|
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -754,4 +754,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -755,4 +755,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,5 @@ $strZip = '"arhivat"';
|
|||||||
|
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -736,4 +736,5 @@ $strZip = '"arhivat"';
|
|||||||
|
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -743,4 +743,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -742,4 +742,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -741,4 +741,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -740,4 +740,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -737,4 +737,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -738,4 +738,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -739,4 +739,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -734,4 +734,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -735,4 +735,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strDatabaseEmpty = 'The database name is empty!'; //to translate
|
|||||||
$strDBRename = 'Rename database to'; //to translate
|
$strDBRename = 'Rename database to'; //to translate
|
||||||
$strOperator = 'Operator'; //to translate
|
$strOperator = 'Operator'; //to translate
|
||||||
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
$strEncloseInTransaction = 'Enclose export in a transaction'; //to translate
|
||||||
|
$strCalendar = 'Calendar'; //to translate
|
||||||
?>
|
?>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user