Added ability to drop views from the db structure page.

This commit is contained in:
Alexander M. Turek
2005-01-12 00:31:59 +00:00
parent 408520965f
commit 865e6211d9
105 changed files with 177 additions and 13 deletions

View File

@@ -11,8 +11,10 @@ $Source$
- Fixed some comments.
* tbl_properties_structure.php: Corrected TH numbering.
* db_details_structure.php: Small design glitch with "in use" tables.
* db_details_structure.php, lang/*.inc.php: Views are now displayed
correctly within the table list.
* db_details_structure.php, mult_submits.inc.php, lang/*.inc.php:
- Views are now displayed correctly within the table list;
- Added ability to drop views from the db structure page.
TODO: It is not yet possible to drop a view from the table sub pages.
2005-01-11 Marc Delisle <lem9@users.sourceforge.net>
* libraries/dbi/mysqli.dbi.lib.php: bug #1076213, headers sent

View File

@@ -199,6 +199,9 @@ else {
$table = $sts_data['Name'];
$table_encoded = urlencode($table);
$table_name = htmlspecialchars($table);
$is_view = (PMA_MYSQL_INT_VERSION >= 50000
&& !isset($sts_data['Type'])
&& $sts_data['Comment'] == 'view');
$alias = (!empty($tooltip_aliasname) && isset($tooltip_aliasname[$table]))
? htmlspecialchars($tooltip_aliasname[$table])
@@ -234,13 +237,20 @@ else {
</td>
<td><img src="<?php echo $GLOBALS['pmaThemeImage'] . 'spacer.png'; ?>" border="0" width="10" height="1" alt="" /></td>
<td valign="top">
<?php
<?php
pma_TableHeader();
}
?>
<tr <?php echo $on_mouse; ?>>
<td align="center" bgcolor="<?php echo $bgcolor; ?>">
<input type="checkbox" name="selected_tbl[]" value="<?php echo $table_encoded; ?>" id="checkbox_tbl_<?php echo $i; ?>"<?php echo $checked; ?> />
<?php
if ($is_view) {
?>
<input type="hidden" name="views[]" value="<?php echo $table_encoded; ?>" />
<?php
}
?>
</td>
<td bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap" <?php echo $click_mouse; ?>>
&nbsp;<b><label onclick="javascript: return (document.getElementById('checkbox_tbl_<?php echo $i; ?>') ? false : true)" for="checkbox_tbl_<?php echo $i; ?>" title="<?php echo $alias; ?>"><?php echo $truename; ?></label>&nbsp;</b>&nbsp;
@@ -250,7 +260,7 @@ else {
require_once('./libraries/bookmark.lib.php');
$book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label');
if (!empty($sts_data['Rows']) || (PMA_MYSQL_INT_VERSION >= 50000 && $sts_data['Comment'] == 'view')) {
if (!empty($sts_data['Rows']) || $is_view) {
echo '<a href="sql.php?' . $tbl_url_query . '&amp;sql_query='
. (isset($book_sql_query) && $book_sql_query != FALSE ? urlencode($book_sql_query) : urlencode('SELECT * FROM ' . PMA_backquote($table)))
. '&amp;pos=0">' . $titles['Browse'] . '</a>';
@@ -261,7 +271,7 @@ else {
</td>
<td bgcolor="<?php echo $bgcolor; ?>">
<?php
if (!empty($sts_data['Rows']) || (PMA_MYSQL_INT_VERSION >= 50000 && $sts_data['Comment'] == 'view')) {
if (!empty($sts_data['Rows']) || $is_view) {
echo '<a href="tbl_select.php?' . $tbl_url_query . '">'
. $titles['Search'] . '</a>';
} else {
@@ -297,14 +307,20 @@ else {
} else {
echo $titles['NoEmpty'];
}
$drop_query = 'DROP '
. ($is_view ? 'VIEW' : 'TABLE')
. ' ' . PMA_backquote($table);
$drop_message = sprintf(($is_view ? $strViewHasBeenDropped : $strTableHasBeenDropped), htmlspecialchars($table));
?>
</td>
<td align="center" bgcolor="<?php echo $bgcolor; ?>">
<a href="sql.php?<?php echo $tbl_url_query; ?>&amp;reload=1&amp;purge=1&amp;sql_query=<?php echo urlencode('DROP TABLE ' . PMA_backquote($table)); ?>&amp;zero_rows=<?php echo urlencode(sprintf($strTableHasBeenDropped, htmlspecialchars($table))); ?>"
onclick="return confirmLink(this, 'DROP TABLE <?php echo PMA_jsFormat($table); ?>')">
<a href="sql.php?<?php echo $tbl_url_query; ?>&amp;reload=1&amp;purge=1&amp;sql_query=<?php echo urlencode($drop_query); ?>&amp;zero_rows=<?php echo $drop_message; ?>"
onclick="return confirmLink(this, '<?php echo PMA_jsFormat($drop_query, FALSE); ?>')">
<?php echo $titles['Drop']; ?></a>
</td>
<?php
unset($drop_query, $drop_message);
echo "\n";
// loic1: Patch from Joshua Nye <josh at boxcarmedia.com> to get valid

View File

@@ -760,4 +760,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -761,4 +761,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -754,4 +754,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -759,4 +759,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -758,4 +758,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -774,4 +774,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -775,4 +775,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -759,4 +759,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -760,4 +760,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -759,4 +759,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el l
$strZip = '"comprimit amb zip"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el l
$strZip = '"comprimit amb zip"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -773,4 +773,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -774,4 +774,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -773,4 +773,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strZeroRemovesTheLimit = 'Pozn
$strZip = '"zazipov<6F>no"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu)
$strZip = '"zazipováno"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strZeroRemovesTheLimit = 'Pozn
$strZip = '"zazipov<6F>no"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strZeroRemovesTheLimit = 'Bem
$strZip = '"zippet"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fj
$strZip = '"zippet"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul)
$strZip = '"Gezipt"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul)
$strZip = '"Gezipt"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -726,6 +726,7 @@ $strView = 'View';
$strViewDump = 'View dump (schema) of table';
$strViewDumpDB = 'View dump (schema) of database';
$strViewDumpDatabases = 'View dump (schema) of databases';
$strViewHasBeenDropped = 'View %s has been dropped';
$strWebServerUploadDirectory = 'web-server upload directory';
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached';

View File

@@ -727,6 +727,7 @@ $strView = 'View';
$strViewDump = 'View dump (schema) of table';
$strViewDumpDB = 'View dump (schema) of database';
$strViewDumpDatabases = 'View dump (schema) of databases';
$strViewHasBeenDropped = 'View %s has been dropped';
$strWebServerUploadDirectory = 'web-server upload directory';
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached';

View File

@@ -745,4 +745,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -771,4 +771,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl
$strZip = '"zipp<70>"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
$strZip = '"zippé"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strZeroRemovesTheLimit = 'Nota: Se estas opci
$strZip = 'comprimido no formato "zip"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strZeroRemovesTheLimit = 'Nota: Se estas opcións se configuran como 0 (cero) e
$strZip = 'comprimido no formato "zip"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -774,4 +774,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr
$strZip = 'Zip-komprimiert';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -754,4 +754,5 @@ $strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränku
$strZip = 'Zip-komprimiert';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -754,4 +754,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -755,4 +755,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -771,4 +771,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -778,4 +778,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) a
$strZip = 'Dikompress dengan Zip';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) a
$strZip = 'Dikompress dengan Zip';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
$strZip = '"compresso con zip"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
$strZip = '"compresso con zip"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strTransformation_text_plain__link = 'Displays a link, the field contains the f
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strTransformation_text_plain__link = 'Displays a link, the field contains the f
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -771,4 +771,5 @@ $strTransformation_text_plain__link = 'Displays a link, the field contains the f
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -768,4 +768,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -769,4 +769,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -756,4 +756,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -755,4 +755,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -769,4 +769,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -754,4 +754,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -755,4 +755,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -775,4 +775,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -774,4 +774,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -765,4 +765,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -766,4 +766,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -754,4 +754,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -752,4 +752,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strZeroRemovesTheLimit = 'Nota: si cambia los par
$strZip = '"comprimido con zip"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strZeroRemovesTheLimit = 'Nota: si cambia los parámetros de estas opciones a 0
$strZip = '"comprimido con zip"';
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

View File

@@ -771,4 +771,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strMbExtensionMissing = 'The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.'; //to translate
$strAfterInsertNext = 'Edit next row'; //to translate
$strView = 'View'; //to translate
$strViewHasBeenDropped = 'View %s has been dropped'; //to translate
?>

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