Views are now displayed correctly within the table list.
This commit is contained in:
@@ -11,6 +11,8 @@ $Source$
|
|||||||
- Fixed some comments.
|
- Fixed some comments.
|
||||||
* tbl_properties_structure.php: Corrected TH numbering.
|
* tbl_properties_structure.php: Corrected TH numbering.
|
||||||
* db_details_structure.php: Small design glitch with "in use" tables.
|
* 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>
|
2005-01-11 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/dbi/mysqli.dbi.lib.php: bug #1076213, headers sent
|
* libraries/dbi/mysqli.dbi.lib.php: bug #1076213, headers sent
|
||||||
|
@@ -250,7 +250,7 @@ else {
|
|||||||
require_once('./libraries/bookmark.lib.php');
|
require_once('./libraries/bookmark.lib.php');
|
||||||
$book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label');
|
$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 . '&sql_query='
|
echo '<a href="sql.php?' . $tbl_url_query . '&sql_query='
|
||||||
. (isset($book_sql_query) && $book_sql_query != FALSE ? urlencode($book_sql_query) : urlencode('SELECT * FROM ' . PMA_backquote($table)))
|
. (isset($book_sql_query) && $book_sql_query != FALSE ? urlencode($book_sql_query) : urlencode('SELECT * FROM ' . PMA_backquote($table)))
|
||||||
. '&pos=0">' . $titles['Browse'] . '</a>';
|
. '&pos=0">' . $titles['Browse'] . '</a>';
|
||||||
@@ -261,7 +261,7 @@ else {
|
|||||||
</td>
|
</td>
|
||||||
<td bgcolor="<?php echo $bgcolor; ?>">
|
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||||
<?php
|
<?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 . '">'
|
echo '<a href="tbl_select.php?' . $tbl_url_query . '">'
|
||||||
. $titles['Search'] . '</a>';
|
. $titles['Search'] . '</a>';
|
||||||
} else {
|
} else {
|
||||||
@@ -410,6 +410,29 @@ else {
|
|||||||
<?php
|
<?php
|
||||||
echo "\n";
|
echo "\n";
|
||||||
} // end if
|
} // 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; ?>">
|
||||||
|
-
|
||||||
|
</td>
|
||||||
|
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||||
|
<?php echo $strView ; ?>
|
||||||
|
</td>
|
||||||
|
<td bgcolor="<?php echo $bgcolor; ?>">
|
||||||
|
---
|
||||||
|
</td>
|
||||||
|
<?php
|
||||||
|
if ($cfg['ShowStats']) {
|
||||||
|
?>
|
||||||
|
<td align="right" bgcolor="<?php echo $bgcolor; ?>">
|
||||||
|
-
|
||||||
|
</td>
|
||||||
|
<td align="right" bgcolor="<?php echo $bgcolor; ?>">
|
||||||
|
-
|
||||||
|
</td>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
?>
|
?>
|
||||||
<td colspan="<?php echo ($structure_tbl_col_cnt - 8) ?>" align="center" bgcolor="<?php echo $bgcolor; ?>" <?php echo $click_mouse; ?>>
|
<td colspan="<?php echo ($structure_tbl_col_cnt - 8) ?>" align="center" bgcolor="<?php echo $bgcolor; ?>" <?php echo $click_mouse; ?>>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -744,4 +744,5 @@ $strYes = 'Si';
|
|||||||
$strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.';
|
$strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.';
|
||||||
$strZip = '"comprimit amb zip"';
|
$strZip = '"comprimit amb zip"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -745,4 +745,5 @@ $strYes = 'Si';
|
|||||||
$strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.';
|
$strZeroRemovesTheLimit = 'Nota: Establint aquestes opcions a 0 (zero) treu el limit.';
|
||||||
$strZip = '"comprimit amb zip"';
|
$strZip = '"comprimit amb zip"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -750,4 +750,5 @@ $strYes = 'Ano';
|
|||||||
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
||||||
$strZip = '"zazipov<6F>no"';
|
$strZip = '"zazipov<6F>no"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -751,4 +751,5 @@ $strYes = 'Ano';
|
|||||||
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
|
$strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.';
|
||||||
$strZip = '"zazipováno"';
|
$strZip = '"zazipováno"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -750,4 +750,5 @@ $strYes = 'Ano';
|
|||||||
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
$strZeroRemovesTheLimit = 'Pozn<7A>mka: Nastaven<65> t<>chto parametr<74> na 0 (nulu) odstran<61> omezen<65>.';
|
||||||
$strZip = '"zazipov<6F>no"';
|
$strZip = '"zazipov<6F>no"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -746,4 +746,5 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Bem<65>rk: Indstilling af disse v<>rdier til 0 (nul) fjerner begr<67>nsningen.';
|
$strZeroRemovesTheLimit = 'Bem<65>rk: Indstilling af disse v<>rdier til 0 (nul) fjerner begr<67>nsningen.';
|
||||||
$strZip = '"zippet"';
|
$strZip = '"zippet"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen.';
|
$strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen.';
|
||||||
$strZip = '"zippet"';
|
$strZip = '"zippet"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -748,4 +748,5 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijderd het limiet.';
|
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijderd het limiet.';
|
||||||
$strZip = '"Gezipt"';
|
$strZip = '"Gezipt"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -749,4 +749,5 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijderd het limiet.';
|
$strZeroRemovesTheLimit = 'Opmerking: Het instellen van deze waarden op 0 (nul) verwijderd het limiet.';
|
||||||
$strZip = '"Gezipt"';
|
$strZip = '"Gezipt"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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.';
|
$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';
|
$strValue = 'Value';
|
||||||
$strVar = 'Variable';
|
$strVar = 'Variable';
|
||||||
|
$strView = 'View';
|
||||||
$strViewDump = 'View dump (schema) of table';
|
$strViewDump = 'View dump (schema) of table';
|
||||||
$strViewDumpDB = 'View dump (schema) of database';
|
$strViewDumpDB = 'View dump (schema) of database';
|
||||||
$strViewDumpDatabases = 'View dump (schema) of databases';
|
$strViewDumpDatabases = 'View dump (schema) of databases';
|
||||||
|
@@ -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.';
|
$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';
|
$strValue = 'Value';
|
||||||
$strVar = 'Variable';
|
$strVar = 'Variable';
|
||||||
|
$strView = 'View';
|
||||||
$strViewDump = 'View dump (schema) of table';
|
$strViewDump = 'View dump (schema) of table';
|
||||||
$strViewDumpDB = 'View dump (schema) of database';
|
$strViewDumpDB = 'View dump (schema) of database';
|
||||||
$strViewDumpDatabases = 'View dump (schema) of databases';
|
$strViewDumpDatabases = 'View dump (schema) of databases';
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -746,4 +746,5 @@ $strYes = 'Oui';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
||||||
$strZip = '"zipp<70>"';
|
$strZip = '"zipp<70>"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -747,4 +747,5 @@ $strYes = 'Oui';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
||||||
$strZip = '"zippé"';
|
$strZip = '"zippé"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -750,4 +750,5 @@ $strYes = 'Si';
|
|||||||
$strZeroRemovesTheLimit = 'Nota: Se estas opci<63>ns se configuran como 0 (cero) elimina-se o limite.';
|
$strZeroRemovesTheLimit = 'Nota: Se estas opci<63>ns se configuran como 0 (cero) elimina-se o limite.';
|
||||||
$strZip = 'comprimido no formato "zip"';
|
$strZip = 'comprimido no formato "zip"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -751,4 +751,5 @@ $strYes = 'Si';
|
|||||||
$strZeroRemovesTheLimit = 'Nota: Se estas opcións se configuran como 0 (cero) elimina-se o limite.';
|
$strZeroRemovesTheLimit = 'Nota: Se estas opcións se configuran como 0 (cero) elimina-se o limite.';
|
||||||
$strZip = 'comprimido no formato "zip"';
|
$strZip = 'comprimido no formato "zip"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -752,4 +752,5 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr<68>nkung.';
|
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr<68>nkung.';
|
||||||
$strZip = 'Zip-komprimiert';
|
$strZip = 'Zip-komprimiert';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -753,4 +753,5 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.';
|
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.';
|
||||||
$strZip = 'Zip-komprimiert';
|
$strZip = 'Zip-komprimiert';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -744,4 +744,5 @@ $strYes = 'Ya';
|
|||||||
$strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
|
$strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
|
||||||
$strZip = 'Dikompress dengan Zip';
|
$strZip = 'Dikompress dengan Zip';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -745,4 +745,5 @@ $strYes = 'Ya';
|
|||||||
$strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
|
$strZeroRemovesTheLimit = 'Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas yang telah ditentukan.';
|
||||||
$strZip = 'Dikompress dengan Zip';
|
$strZip = 'Dikompress dengan Zip';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -749,4 +749,5 @@ $strYes = ' Si ';
|
|||||||
$strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
|
$strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
|
||||||
$strZip = '"compresso con zip"';
|
$strZip = '"compresso con zip"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -750,4 +750,5 @@ $strYes = ' Si ';
|
|||||||
$strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
|
$strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
|
||||||
$strZip = '"compresso con zip"';
|
$strZip = '"compresso con zip"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$strTruncateQueries = 'Truncate Shown Queries'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -755,4 +755,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
|
|||||||
|
|
||||||
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -754,4 +754,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
|
|||||||
|
|
||||||
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -753,4 +753,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
|
|||||||
|
|
||||||
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -754,4 +754,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
|
|||||||
|
|
||||||
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -744,4 +744,5 @@ $strYes = 'S
|
|||||||
$strZeroRemovesTheLimit = 'Nota: si cambia los par<61>metros de estas opciones a 0 (cero), remueve el l<>mite.';
|
$strZeroRemovesTheLimit = 'Nota: si cambia los par<61>metros de estas opciones a 0 (cero), remueve el l<>mite.';
|
||||||
$strZip = '"comprimido con zip"';
|
$strZip = '"comprimido con zip"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -745,4 +745,5 @@ $strYes = 'Sí';
|
|||||||
$strZeroRemovesTheLimit = 'Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el límite.';
|
$strZeroRemovesTheLimit = 'Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el límite.';
|
||||||
$strZip = '"comprimido con zip"';
|
$strZip = '"comprimido con zip"';
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -748,4 +748,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
|
|||||||
|
|
||||||
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -749,4 +749,5 @@ $strMbOverloadWarning = 'You have enabled mbstring.func_overload in your PHP con
|
|||||||
|
|
||||||
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
$strSQLExportCompatibility = 'SQL export compatibility'; //to translate
|
||||||
|
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$strAfterInsertNext = 'Edit next row'; //to translate
|
||||||
|
$strView = 'View'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
$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
|
$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
|
$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
Reference in New Issue
Block a user