Views are now displayed correctly within the table list.

This commit is contained in:
Alexander M. Turek
2005-01-11 23:03:39 +00:00
parent 8317bab79e
commit 408520965f
104 changed files with 129 additions and 2 deletions

View File

@@ -11,6 +11,8 @@ $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.
2005-01-11 Marc Delisle <lem9@users.sourceforge.net>
* libraries/dbi/mysqli.dbi.lib.php: bug #1076213, headers sent

View File

@@ -250,7 +250,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'])) {
if (!empty($sts_data['Rows']) || (PMA_MYSQL_INT_VERSION >= 50000 && $sts_data['Comment'] == '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 +261,7 @@ else {
</td>
<td bgcolor="<?php echo $bgcolor; ?>">
<?php
if (!empty($sts_data['Rows'])) {
if (!empty($sts_data['Rows']) || (PMA_MYSQL_INT_VERSION >= 50000 && $sts_data['Comment'] == 'view')) {
echo '<a href="tbl_select.php?' . $tbl_url_query . '">'
. $titles['Search'] . '</a>';
} else {
@@ -410,6 +410,29 @@ else {
<?php
echo "\n";
} // end if
} else if (PMA_MYSQL_INT_VERSION >= 50000 && $sts_data['Comment'] == 'view') {
// rabus: We've found a view
?>
<td align="right" bgcolor="<?php echo $bgcolor; ?>">
&nbsp;-&nbsp;
</td>
<td bgcolor="<?php echo $bgcolor; ?>">
&nbsp;<?php echo $strView ; ?>&nbsp;
</td>
<td bgcolor="<?php echo $bgcolor; ?>">
&nbsp;---&nbsp;
</td>
<?php
if ($cfg['ShowStats']) {
?>
<td align="right" bgcolor="<?php echo $bgcolor; ?>">
&nbsp;-&nbsp;
</td>
<td align="right" bgcolor="<?php echo $bgcolor; ?>">
&nbsp;-&nbsp;
</td>
<?php
}
} else {
?>
<td colspan="<?php echo ($structure_tbl_col_cnt - 8) ?>" align="center" bgcolor="<?php echo $bgcolor; ?>" <?php echo $click_mouse; ?>>

View File

@@ -759,4 +759,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -760,4 +760,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -749,4 +749,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -750,4 +750,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -753,4 +753,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -752,4 +752,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -748,4 +748,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -749,4 +749,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -751,4 +751,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -752,4 +752,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -758,4 +758,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -757,4 +757,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -773,4 +773,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -774,4 +774,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -758,4 +758,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -759,4 +759,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -758,4 +758,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -744,4 +744,5 @@ $strYes = 'Si';
$strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.';
$strZip = '"comprimit amb zip"';
$strView = 'View'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strYes = 'Si';
$strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.';
$strZip = '"comprimit amb zip"';
$strView = 'View'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -751,4 +751,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -750,4 +750,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -751,4 +751,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -772,4 +772,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -773,4 +773,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -772,4 +772,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -750,4 +750,5 @@ $strYes = 'Ano';
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
$strZip = '"zazipov<6F>no"';
$strView = 'View'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strYes = 'Ano';
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
$strZip = '"zazipováno"';
$strView = 'View'; //to translate
?>

View File

@@ -750,4 +750,5 @@ $strYes = 'Ano';
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
$strZip = '"zazipov<6F>no"';
$strView = 'View'; //to translate
?>

View File

@@ -746,4 +746,5 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Bem<65>rk: Indstilling af disse v<>rdier til 0 (nul) fjerner begr<67>nsningen.';
$strZip = '"zippet"';
$strView = 'View'; //to translate
?>

View File

@@ -747,4 +747,5 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen.';
$strZip = '"zippet"';
$strView = 'View'; //to translate
?>

View File

@@ -748,4 +748,5 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijderd het limiet.';
$strZip = '"Gezipt"';
$strView = 'View'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijderd het limiet.';
$strZip = '"Gezipt"';
$strView = 'View'; //to translate
?>

View File

@@ -722,6 +722,7 @@ $strValidateSQL = 'Validate SQL';
$strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary php extensions as described in the %sdocumentation%s.';
$strValue = 'Value';
$strVar = 'Variable';
$strView = 'View';
$strViewDump = 'View dump (schema) of table';
$strViewDumpDB = 'View dump (schema) of database';
$strViewDumpDatabases = 'View dump (schema) of databases';

View File

@@ -723,6 +723,7 @@ $strValidateSQL = 'Validate SQL';
$strValidatorError = 'The SQL validator could not be initialized. Please check if you have installed the necessary php extensions as described in the %sdocumentation%s.';
$strValue = 'Value';
$strVar = 'Variable';
$strView = 'View';
$strViewDump = 'View dump (schema) of table';
$strViewDumpDB = 'View dump (schema) of database';
$strViewDumpDatabases = 'View dump (schema) of databases';

View File

@@ -744,4 +744,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -745,4 +745,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -769,4 +769,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -770,4 +770,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

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

View File

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

View File

@@ -750,4 +750,5 @@ $strYes = 'Si';
$strZeroRemovesTheLimit = 'Nota: Se estas opci<63>ns se configuran como 0 (cero) elimina-se o limite.';
$strZip = 'comprimido no formato "zip"';
$strView = 'View'; //to translate
?>

View File

@@ -751,4 +751,5 @@ $strYes = 'Si';
$strZeroRemovesTheLimit = 'Nota: Se estas opcións se configuran como 0 (cero) elimina-se o limite.';
$strZip = 'comprimido no formato "zip"';
$strView = 'View'; //to translate
?>

View File

@@ -773,4 +773,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

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

View File

@@ -753,4 +753,5 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.';
$strZip = 'Zip-komprimiert';
$strView = 'View'; //to translate
?>

View File

@@ -753,4 +753,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -754,4 +754,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -769,4 +769,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -770,4 +770,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -777,4 +777,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -751,4 +751,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -752,4 +752,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -744,4 +744,5 @@ $strYes = 'Ya';
$strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
$strZip = 'Dikompress dengan Zip';
$strView = 'View'; //to translate
?>

View File

@@ -745,4 +745,5 @@ $strYes = 'Ya';
$strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
$strZip = 'Dikompress dengan Zip';
$strView = 'View'; //to translate
?>

View File

@@ -749,4 +749,5 @@ $strYes = ' Si ';
$strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
$strZip = '"compresso con zip"';
$strView = 'View'; //to translate
?>

View File

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

View File

@@ -769,4 +769,5 @@ $strTransformation_text_plain__imagelink = 'Displays an image and a link, the fi
$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
$strView = 'View'; //to translate
?>

View File

@@ -769,4 +769,5 @@ $strTransformation_text_plain__imagelink = 'Displays an image and a link, the fi
$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
$strView = 'View'; //to translate
?>

View File

@@ -770,4 +770,5 @@ $strTransformation_text_plain__imagelink = 'Displays an image and a link, the fi
$strTransformation_text_plain__link = 'Displays a link, the field contains the filename; first option is a prefix like "http://domain.com/", second option is a title for the link.'; //to translate
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
$strView = 'View'; //to translate
?>

View File

@@ -767,4 +767,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -768,4 +768,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

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
?>

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
?>

View File

@@ -745,4 +745,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -744,4 +744,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -768,4 +768,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -769,4 +769,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -753,4 +753,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strView = 'View'; //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
?>

View File

@@ -774,4 +774,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -773,4 +773,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -744,4 +744,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -745,4 +745,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -764,4 +764,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -765,4 +765,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -745,4 +745,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -746,4 +746,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -752,4 +752,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -752,4 +752,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -753,4 +753,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -752,4 +752,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -751,4 +751,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -750,4 +750,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -751,4 +751,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -750,4 +750,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -746,4 +746,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -747,4 +747,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -746,4 +746,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -746,4 +746,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -747,4 +747,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -746,4 +746,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

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

View File

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

View File

@@ -748,4 +748,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strView = 'View'; //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
?>

View File

@@ -769,4 +769,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

View File

@@ -770,4 +770,5 @@ $strSQLExportCompatibility = 'SQL export compatibility'; //to translate
$strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP configuration. This option is incompatible with phpMyAdmin and might cause breaking of some data!'; //to translate
$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
?>

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