RFE #1044677: Check for suboptimal indexes.

EXPERIMENTAL IMPLEMENTATION! Please check, though it does work on my
installation, I had to shift around several functions to make them re-usable
from the sql.php file.
This commit is contained in:
Garvin Hicking
2004-11-02 13:41:30 +00:00
parent 9c027b859f
commit ae2022381e
106 changed files with 742 additions and 140 deletions

View File

@@ -6,11 +6,19 @@ $Id$
$Source$
2004-11-09 Garvin Hicking
* sql.php, tbl_indexes.php, libraries/tbl_indexes.lib.php,
lang/*: Added checks for common problems with table indices.
Serves as a stub for future checks, currently implemented are
the ones mentioned in RFE #1044677. The check can be performed
on multiple tables by using "check table" on selected tables in
DB structure.
2004-11-02 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: MySQL 4.1.x compatibility for list of initials
2004-11-01 Marc Delisle <lem9@users.sourceforge.net>
* main.php: for MySQL 4.1.2+ a non-privileged user can do
* main.php: for MySQL 4.1.2+ a non-privileged user can do
a simple SHOW GRANTS to fetch current privileges, so we no longer
need the control user for this check

View File

@@ -749,4 +749,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -750,4 +750,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -739,4 +739,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -743,4 +743,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -742,4 +742,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -738,4 +738,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -739,4 +739,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -741,4 +741,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -742,4 +742,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -748,4 +748,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -747,4 +747,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -763,4 +763,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -764,4 +764,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -748,4 +748,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -749,4 +749,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -748,4 +748,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -741,4 +741,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -744,4 +744,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -762,4 +762,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -763,4 +763,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -762,4 +762,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strZip = '"zazipov
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -741,4 +741,8 @@ $strZip = '"zazipováno"';
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strZip = '"zazipov
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -738,4 +738,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -739,4 +739,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strZip = '"zipped"';
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strZip = '"zipped"';
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -759,4 +759,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -760,4 +760,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -736,4 +736,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -739,4 +739,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -763,4 +763,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -727,19 +727,23 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschr<68>nkung.';
$strZip = 'Zip-komprimiert';
$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate
$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate
$strBinLogName = 'Log name'; //to translate
$strBinLogPosition = 'Position'; //to translate
$strBinLogEventType = 'Event type'; //to translate
$strBinLogServerId = 'Server ID'; //to translate
$strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strUseTabKey = 'Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten beliebig bewegen';
$strEscapeWildcards = 'Platzhalter _ und % sollten mit einem \ escaped werden, um das gew<65>nschte Sonderzeichen einzubinden';
$strBinLogName = 'Protokoll';
$strBinLogPosition = 'Position';
$strBinLogEventType = 'Ereignistyp';
$strBinLogServerId = 'Server ID';
$strBinLogOriginalPosition = 'Ursprungsposition';
$strBinLogInfo = 'Information';
$strBinaryLog = 'Bin<EFBFBD>res Protokoll';
$strSelectBinaryLog = 'Bin<EFBFBD>re Protokolldatei zur Anzeige ausw<73>hlen';
$strDBCopy = 'Datenbank kopieren zu';
$strCopyDatabaseOK = 'Datenbank %s wurde zu %s kopiert';
$strSwitchToDatabase = 'Zu kopierter Datenbank wechseln';
$strPasswordHashing = 'Password-Verschl<68>sselung';
$strCompatibleHashing = 'MySQL&nbsp;4.0 kompatibel';
$strIndexWarningPrimary = 'INDEX und PRIMARY Index-Typen sollten nicht gleichzeitig f<>r die Spalte `%s` gesetzt sein';
$strIndexWarningUnique = 'INDEX und UNIQUE Index-Typen sollten nicht gleichzeitig f<>r die Spalte `%s` gesetzt sein';
$strIndexWarningMultiple = 'Es sollte nicht mehr als ein Index des Typs %s f<>r die Spalte `%s` gesetzt sein';
$strIndexWarningTable = 'Warnungen bei den Indizen der Tabelle `%s`';
?>

View File

@@ -728,19 +728,23 @@ $strYes = 'Ja';
$strZeroRemovesTheLimit = 'Anmerkung: Der Wert 0 (null) entfernt die Beschränkung.';
$strZip = 'Zip-komprimiert';
$strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move anywhere'; //to translate
$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate
$strBinLogName = 'Log name'; //to translate
$strBinLogPosition = 'Position'; //to translate
$strBinLogEventType = 'Event type'; //to translate
$strBinLogServerId = 'Server ID'; //to translate
$strBinLogOriginalPosition = 'Original position'; //to translate
$strBinLogInfo = 'Information'; //to translate
$strBinaryLog = 'Binary log'; //to translate
$strSelectBinaryLog = 'Select binary log to view'; //to translate
$strDBCopy = 'Copy database to'; //to translate
$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strUseTabKey = 'Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten beliebig bewegen';
$strEscapeWildcards = 'Platzhalter _ und % sollten mit einem \ escaped werden, um das gewünschte Sonderzeichen einzubinden';
$strBinLogName = 'Protokoll';
$strBinLogPosition = 'Position';
$strBinLogEventType = 'Ereignistyp';
$strBinLogServerId = 'Server ID';
$strBinLogOriginalPosition = 'Ursprungsposition';
$strBinLogInfo = 'Information';
$strBinaryLog = 'Binäres Protokoll';
$strSelectBinaryLog = 'Binäre Protokolldatei zur Anzeige auswählen';
$strDBCopy = 'Datenbank kopieren zu';
$strCopyDatabaseOK = 'Datenbank %s wurde zu %s kopiert';
$strSwitchToDatabase = 'Zu kopierter Datenbank wechseln';
$strPasswordHashing = 'Password-Verschlüsselung';
$strCompatibleHashing = 'MySQL&nbsp;4.0 kompatibel';
$strIndexWarningPrimary = 'INDEX und PRIMARY Index-Typen sollten nicht gleichzeitig für die Spalte `%s` gesetzt sein';
$strIndexWarningUnique = 'INDEX und UNIQUE Index-Typen sollten nicht gleichzeitig für die Spalte `%s` gesetzt sein';
$strIndexWarningMultiple = 'Es sollte nicht mehr als ein Index des Typs %s für die Spalte `%s` gesetzt sein';
$strIndexWarningTable = 'Warnungen bei den Indizen der Tabelle `%s`';
?>

View File

@@ -743,4 +743,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -744,4 +744,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -759,4 +759,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -760,4 +760,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -767,4 +767,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -741,4 +741,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -742,4 +742,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -739,4 +739,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -755,4 +755,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -756,4 +756,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -756,4 +756,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -757,4 +757,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -758,4 +758,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -741,4 +741,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -758,4 +758,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -759,4 +759,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -738,4 +738,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -739,4 +739,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -764,4 +764,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -763,4 +763,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -754,4 +754,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -755,4 +755,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -736,4 +736,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -742,4 +742,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -742,4 +742,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -743,4 +743,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -742,4 +742,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -741,4 +741,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -741,4 +741,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -740,4 +740,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -736,4 +736,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -737,4 +737,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -736,4 +736,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -736,4 +736,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -737,4 +737,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -736,4 +736,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -734,4 +734,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -735,4 +735,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -759,4 +759,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -760,4 +760,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

View File

@@ -748,4 +748,8 @@ $strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate
$strSwitchToDatabase = 'Switch to copied database'; //to translate
$strPasswordHashing = 'Password Hashing'; //to translate
$strCompatibleHashing = 'MySQL&nbsp;4.0 compatible'; //to translate
$strIndexWarningPrimary = 'PRIMARY and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningUnique = 'UNIQUE and INDEX keys should not both be set for column `%s`';//to translate
$strIndexWarningMultiple = 'More than one %s key was created for column `%s`';//to translate
$strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate
?>

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