diff --git a/ChangeLog b/ChangeLog index fbb0548ec..e188f42e3 100755 --- a/ChangeLog +++ b/ChangeLog @@ -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 * server_privileges.php: MySQL 4.1.x compatibility for list of initials 2004-11-01 Marc Delisle - * 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 diff --git a/lang/afrikaans-iso-8859-1.inc.php b/lang/afrikaans-iso-8859-1.inc.php index 86aca188e..e9731295d 100644 --- a/lang/afrikaans-iso-8859-1.inc.php +++ b/lang/afrikaans-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/afrikaans-utf-8.inc.php b/lang/afrikaans-utf-8.inc.php index 706ad22d0..033496676 100644 --- a/lang/afrikaans-utf-8.inc.php +++ b/lang/afrikaans-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/albanian-iso-8859-1.inc.php b/lang/albanian-iso-8859-1.inc.php index 28494a4af..8723048bf 100644 --- a/lang/albanian-iso-8859-1.inc.php +++ b/lang/albanian-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/albanian-utf-8.inc.php b/lang/albanian-utf-8.inc.php index 13579c781..6a529ade0 100644 --- a/lang/albanian-utf-8.inc.php +++ b/lang/albanian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/arabic-utf-8.inc.php b/lang/arabic-utf-8.inc.php index 42b17caf9..1ab3fe8c9 100644 --- a/lang/arabic-utf-8.inc.php +++ b/lang/arabic-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/arabic-windows-1256.inc.php b/lang/arabic-windows-1256.inc.php index 1c4d2cea9..e4f083c9c 100644 --- a/lang/arabic-windows-1256.inc.php +++ b/lang/arabic-windows-1256.inc.php @@ -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 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 ?> diff --git a/lang/azerbaijani-iso-8859-9.inc.php b/lang/azerbaijani-iso-8859-9.inc.php index 1be2922b5..209d77083 100644 --- a/lang/azerbaijani-iso-8859-9.inc.php +++ b/lang/azerbaijani-iso-8859-9.inc.php @@ -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 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 ?> diff --git a/lang/azerbaijani-utf-8.inc.php b/lang/azerbaijani-utf-8.inc.php index f14b74d92..61b8c7e0f 100644 --- a/lang/azerbaijani-utf-8.inc.php +++ b/lang/azerbaijani-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/basque-iso-8859-1.inc.php b/lang/basque-iso-8859-1.inc.php index 9c0819536..16a2c6a1d 100644 --- a/lang/basque-iso-8859-1.inc.php +++ b/lang/basque-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/basque-utf-8.inc.php b/lang/basque-utf-8.inc.php index 90eb1b056..fee689715 100644 --- a/lang/basque-utf-8.inc.php +++ b/lang/basque-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/bosnian-utf-8.inc.php b/lang/bosnian-utf-8.inc.php index cd1fad231..c74aab64e 100644 --- a/lang/bosnian-utf-8.inc.php +++ b/lang/bosnian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/bosnian-windows-1250.inc.php b/lang/bosnian-windows-1250.inc.php index caf884e39..a8ab8463f 100644 --- a/lang/bosnian-windows-1250.inc.php +++ b/lang/bosnian-windows-1250.inc.php @@ -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 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 ?> diff --git a/lang/brazilian_portuguese-iso-8859-1.inc.php b/lang/brazilian_portuguese-iso-8859-1.inc.php index 2771e5e11..bbba654cc 100644 --- a/lang/brazilian_portuguese-iso-8859-1.inc.php +++ b/lang/brazilian_portuguese-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/brazilian_portuguese-utf-8.inc.php b/lang/brazilian_portuguese-utf-8.inc.php index 6557e890d..975418f8c 100644 --- a/lang/brazilian_portuguese-utf-8.inc.php +++ b/lang/brazilian_portuguese-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/bulgarian-koi8-r.inc.php b/lang/bulgarian-koi8-r.inc.php index 1e616d8d6..52191ff4d 100644 --- a/lang/bulgarian-koi8-r.inc.php +++ b/lang/bulgarian-koi8-r.inc.php @@ -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 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 ?> diff --git a/lang/bulgarian-utf-8.inc.php b/lang/bulgarian-utf-8.inc.php index cf3b4a2de..451d9f2e8 100644 --- a/lang/bulgarian-utf-8.inc.php +++ b/lang/bulgarian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/bulgarian-windows-1251.inc.php b/lang/bulgarian-windows-1251.inc.php index 7a247d9d7..40bec49e3 100644 --- a/lang/bulgarian-windows-1251.inc.php +++ b/lang/bulgarian-windows-1251.inc.php @@ -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 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 ?> diff --git a/lang/catalan-iso-8859-1.inc.php b/lang/catalan-iso-8859-1.inc.php index 59f31f016..6cd4bd579 100644 --- a/lang/catalan-iso-8859-1.inc.php +++ b/lang/catalan-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/catalan-utf-8.inc.php b/lang/catalan-utf-8.inc.php index c891c2902..179489ad5 100644 --- a/lang/catalan-utf-8.inc.php +++ b/lang/catalan-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/chinese_simplified-gb2312.inc.php b/lang/chinese_simplified-gb2312.inc.php index ce9ae0865..6a50777f7 100644 --- a/lang/chinese_simplified-gb2312.inc.php +++ b/lang/chinese_simplified-gb2312.inc.php @@ -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 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 ?> diff --git a/lang/chinese_simplified-utf-8.inc.php b/lang/chinese_simplified-utf-8.inc.php index 3668dbcad..40a0d0381 100644 --- a/lang/chinese_simplified-utf-8.inc.php +++ b/lang/chinese_simplified-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/chinese_traditional-big5.inc.php b/lang/chinese_traditional-big5.inc.php index 8e395491c..9500d3fd7 100644 --- a/lang/chinese_traditional-big5.inc.php +++ b/lang/chinese_traditional-big5.inc.php @@ -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 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 ?> diff --git a/lang/chinese_traditional-utf-8.inc.php b/lang/chinese_traditional-utf-8.inc.php index ad3929fc6..add5552c9 100644 --- a/lang/chinese_traditional-utf-8.inc.php +++ b/lang/chinese_traditional-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/croatian-iso-8859-2.inc.php b/lang/croatian-iso-8859-2.inc.php index cfa229416..11cd89bc1 100644 --- a/lang/croatian-iso-8859-2.inc.php +++ b/lang/croatian-iso-8859-2.inc.php @@ -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 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 ?> diff --git a/lang/croatian-utf-8.inc.php b/lang/croatian-utf-8.inc.php index 778a8e16a..df7a7ac73 100644 --- a/lang/croatian-utf-8.inc.php +++ b/lang/croatian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/croatian-windows-1250.inc.php b/lang/croatian-windows-1250.inc.php index 4cbd6a50e..b033b08ec 100644 --- a/lang/croatian-windows-1250.inc.php +++ b/lang/croatian-windows-1250.inc.php @@ -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 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 ?> diff --git a/lang/czech-iso-8859-2.inc.php b/lang/czech-iso-8859-2.inc.php index 7bcac5010..c54f18888 100644 --- a/lang/czech-iso-8859-2.inc.php +++ b/lang/czech-iso-8859-2.inc.php @@ -740,4 +740,8 @@ $strZip = '"zazipov $strPasswordHashing = 'Password Hashing'; //to translate $strCompatibleHashing = 'MySQL 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 ?> diff --git a/lang/czech-utf-8.inc.php b/lang/czech-utf-8.inc.php index e8f18206a..b5caa0e21 100644 --- a/lang/czech-utf-8.inc.php +++ b/lang/czech-utf-8.inc.php @@ -741,4 +741,8 @@ $strZip = '"zazipováno"'; $strPasswordHashing = 'Password Hashing'; //to translate $strCompatibleHashing = 'MySQL 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 ?> diff --git a/lang/czech-windows-1250.inc.php b/lang/czech-windows-1250.inc.php index b330c52a3..fd1f15b39 100644 --- a/lang/czech-windows-1250.inc.php +++ b/lang/czech-windows-1250.inc.php @@ -740,4 +740,8 @@ $strZip = '"zazipov $strPasswordHashing = 'Password Hashing'; //to translate $strCompatibleHashing = 'MySQL 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 ?> diff --git a/lang/danish-iso-8859-1.inc.php b/lang/danish-iso-8859-1.inc.php index 46c658fb7..7bbfb5de7 100644 --- a/lang/danish-iso-8859-1.inc.php +++ b/lang/danish-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/danish-utf-8.inc.php b/lang/danish-utf-8.inc.php index dbfdbb6f0..f2b848281 100644 --- a/lang/danish-utf-8.inc.php +++ b/lang/danish-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/dutch-iso-8859-1.inc.php b/lang/dutch-iso-8859-1.inc.php index 0d0261c26..07b00fa23 100644 --- a/lang/dutch-iso-8859-1.inc.php +++ b/lang/dutch-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/dutch-utf-8.inc.php b/lang/dutch-utf-8.inc.php index 79385c095..8b5aad5a5 100644 --- a/lang/dutch-utf-8.inc.php +++ b/lang/dutch-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/english-iso-8859-1.inc.php b/lang/english-iso-8859-1.inc.php index 30bbfe357..88b2c12d7 100644 --- a/lang/english-iso-8859-1.inc.php +++ b/lang/english-iso-8859-1.inc.php @@ -734,4 +734,8 @@ $strZip = '"zipped"'; $strPasswordHashing = 'Password Hashing'; //to translate $strCompatibleHashing = 'MySQL 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 ?> diff --git a/lang/english-utf-8.inc.php b/lang/english-utf-8.inc.php index aeba1c97b..9e3827133 100644 --- a/lang/english-utf-8.inc.php +++ b/lang/english-utf-8.inc.php @@ -735,4 +735,8 @@ $strZip = '"zipped"'; $strPasswordHashing = 'Password Hashing'; //to translate $strCompatibleHashing = 'MySQL 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 ?> diff --git a/lang/estonian-iso-8859-1.inc.php b/lang/estonian-iso-8859-1.inc.php index 577692e1d..e9e2e59a8 100644 --- a/lang/estonian-iso-8859-1.inc.php +++ b/lang/estonian-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/estonian-utf-8.inc.php b/lang/estonian-utf-8.inc.php index a7d52151a..d82b61663 100644 --- a/lang/estonian-utf-8.inc.php +++ b/lang/estonian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/finnish-iso-8859-1.inc.php b/lang/finnish-iso-8859-1.inc.php index 248e2c777..9af7e913c 100644 --- a/lang/finnish-iso-8859-1.inc.php +++ b/lang/finnish-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/finnish-utf-8.inc.php b/lang/finnish-utf-8.inc.php index 15e0623c2..7e1a577f1 100644 --- a/lang/finnish-utf-8.inc.php +++ b/lang/finnish-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/french-iso-8859-1.inc.php b/lang/french-iso-8859-1.inc.php index 3861fc79a..52a4d16b3 100644 --- a/lang/french-iso-8859-1.inc.php +++ b/lang/french-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/french-utf-8.inc.php b/lang/french-utf-8.inc.php index d6775b1f2..e50d7c07d 100644 --- a/lang/french-utf-8.inc.php +++ b/lang/french-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/galician-iso-8859-1.inc.php b/lang/galician-iso-8859-1.inc.php index 15e4ab1f4..7f4631139 100644 --- a/lang/galician-iso-8859-1.inc.php +++ b/lang/galician-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/galician-utf-8.inc.php b/lang/galician-utf-8.inc.php index ddc577144..c93f53275 100644 --- a/lang/galician-utf-8.inc.php +++ b/lang/galician-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/georgian-utf-8.inc.php b/lang/georgian-utf-8.inc.php index 0923c27fa..f1b926343 100644 --- a/lang/georgian-utf-8.inc.php +++ b/lang/georgian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/german-iso-8859-1.inc.php b/lang/german-iso-8859-1.inc.php index 8f20acc04..4ba3349d9 100644 --- a/lang/german-iso-8859-1.inc.php +++ b/lang/german-iso-8859-1.inc.php @@ -727,19 +727,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 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 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`'; ?> diff --git a/lang/german-utf-8.inc.php b/lang/german-utf-8.inc.php index 6812ca7c1..a66256768 100644 --- a/lang/german-utf-8.inc.php +++ b/lang/german-utf-8.inc.php @@ -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 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 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`'; ?> diff --git a/lang/greek-iso-8859-7.inc.php b/lang/greek-iso-8859-7.inc.php index 369261652..cf3e0a70f 100644 --- a/lang/greek-iso-8859-7.inc.php +++ b/lang/greek-iso-8859-7.inc.php @@ -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 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 ?> diff --git a/lang/greek-utf-8.inc.php b/lang/greek-utf-8.inc.php index 6547c6eba..0ffd94aab 100644 --- a/lang/greek-utf-8.inc.php +++ b/lang/greek-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/hebrew-iso-8859-8-i.inc.php b/lang/hebrew-iso-8859-8-i.inc.php index 624fc6d0d..fde0b33dd 100644 --- a/lang/hebrew-iso-8859-8-i.inc.php +++ b/lang/hebrew-iso-8859-8-i.inc.php @@ -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 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 ?> diff --git a/lang/hebrew-utf-8.inc.php b/lang/hebrew-utf-8.inc.php index a9ba8521b..fe79b9ed5 100644 --- a/lang/hebrew-utf-8.inc.php +++ b/lang/hebrew-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/hindi-utf-8.inc.php b/lang/hindi-utf-8.inc.php index 46dcc5ab8..59fcc413b 100644 --- a/lang/hindi-utf-8.inc.php +++ b/lang/hindi-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/hungarian-iso-8859-2.inc.php b/lang/hungarian-iso-8859-2.inc.php index ed42a717c..493d24462 100644 --- a/lang/hungarian-iso-8859-2.inc.php +++ b/lang/hungarian-iso-8859-2.inc.php @@ -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 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 ?> diff --git a/lang/hungarian-utf-8.inc.php b/lang/hungarian-utf-8.inc.php index cc9ba5852..2af11e7e8 100644 --- a/lang/hungarian-utf-8.inc.php +++ b/lang/hungarian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/indonesian-iso-8859-1.inc.php b/lang/indonesian-iso-8859-1.inc.php index 5772ec0f3..f4f09e376 100644 --- a/lang/indonesian-iso-8859-1.inc.php +++ b/lang/indonesian-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/indonesian-utf-8.inc.php b/lang/indonesian-utf-8.inc.php index 76c0baaa8..59d4e1e7c 100644 --- a/lang/indonesian-utf-8.inc.php +++ b/lang/indonesian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/italian-iso-8859-1.inc.php b/lang/italian-iso-8859-1.inc.php index bb587542a..684ca5087 100644 --- a/lang/italian-iso-8859-1.inc.php +++ b/lang/italian-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/italian-utf-8.inc.php b/lang/italian-utf-8.inc.php index b0da7328d..2e8ae6415 100644 --- a/lang/italian-utf-8.inc.php +++ b/lang/italian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/japanese-euc.inc.php b/lang/japanese-euc.inc.php index e49193355..24189484c 100644 --- a/lang/japanese-euc.inc.php +++ b/lang/japanese-euc.inc.php @@ -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 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 ?> diff --git a/lang/japanese-sjis.inc.php b/lang/japanese-sjis.inc.php index 1aa680bc3..029766e6e 100644 --- a/lang/japanese-sjis.inc.php +++ b/lang/japanese-sjis.inc.php @@ -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 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 ?> diff --git a/lang/japanese-utf-8.inc.php b/lang/japanese-utf-8.inc.php index f6e61d8c5..a8a659c55 100644 --- a/lang/japanese-utf-8.inc.php +++ b/lang/japanese-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/korean-euc-kr.inc.php b/lang/korean-euc-kr.inc.php index c979435d7..bd07cd7b4 100644 --- a/lang/korean-euc-kr.inc.php +++ b/lang/korean-euc-kr.inc.php @@ -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 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 ?> diff --git a/lang/korean-utf-8.inc.php b/lang/korean-utf-8.inc.php index 12ce1f63f..a2fd53fda 100644 --- a/lang/korean-utf-8.inc.php +++ b/lang/korean-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/latvian-utf-8.inc.php b/lang/latvian-utf-8.inc.php index e5aa6bad9..4764e78d7 100644 --- a/lang/latvian-utf-8.inc.php +++ b/lang/latvian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/latvian-windows-1257.inc.php b/lang/latvian-windows-1257.inc.php index 755db69ed..9661b73ba 100644 --- a/lang/latvian-windows-1257.inc.php +++ b/lang/latvian-windows-1257.inc.php @@ -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 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 ?> diff --git a/lang/lithuanian-utf-8.inc.php b/lang/lithuanian-utf-8.inc.php index 438ce51dd..82378bc64 100644 --- a/lang/lithuanian-utf-8.inc.php +++ b/lang/lithuanian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/lithuanian-windows-1257.inc.php b/lang/lithuanian-windows-1257.inc.php index fd5577ead..afb46cfc3 100644 --- a/lang/lithuanian-windows-1257.inc.php +++ b/lang/lithuanian-windows-1257.inc.php @@ -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 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 ?> diff --git a/lang/malay-iso-8859-1.inc.php b/lang/malay-iso-8859-1.inc.php index 7151d0efd..f60b2b939 100644 --- a/lang/malay-iso-8859-1.inc.php +++ b/lang/malay-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/malay-utf-8.inc.php b/lang/malay-utf-8.inc.php index 142aa3056..453048c2d 100644 --- a/lang/malay-utf-8.inc.php +++ b/lang/malay-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/norwegian-iso-8859-1.inc.php b/lang/norwegian-iso-8859-1.inc.php index 6c85f3cda..c7d64726a 100644 --- a/lang/norwegian-iso-8859-1.inc.php +++ b/lang/norwegian-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/norwegian-utf-8.inc.php b/lang/norwegian-utf-8.inc.php index 55fd81eac..fe44e6d9f 100644 --- a/lang/norwegian-utf-8.inc.php +++ b/lang/norwegian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/persian-utf-8.inc.php b/lang/persian-utf-8.inc.php index e81e0afa6..fc0349d0c 100644 --- a/lang/persian-utf-8.inc.php +++ b/lang/persian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/persian-windows-1256.inc.php b/lang/persian-windows-1256.inc.php index cfd0ae6be..2f3877a7f 100644 --- a/lang/persian-windows-1256.inc.php +++ b/lang/persian-windows-1256.inc.php @@ -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 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 ?> diff --git a/lang/polish-iso-8859-2.inc.php b/lang/polish-iso-8859-2.inc.php index b8442b3ab..9f2c961ac 100644 --- a/lang/polish-iso-8859-2.inc.php +++ b/lang/polish-iso-8859-2.inc.php @@ -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 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 ?> diff --git a/lang/polish-utf-8.inc.php b/lang/polish-utf-8.inc.php index 12715970b..9c0b348ef 100644 --- a/lang/polish-utf-8.inc.php +++ b/lang/polish-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/portuguese-iso-8859-1.inc.php b/lang/portuguese-iso-8859-1.inc.php index 343dd85aa..118ea70f3 100644 --- a/lang/portuguese-iso-8859-1.inc.php +++ b/lang/portuguese-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/portuguese-utf-8.inc.php b/lang/portuguese-utf-8.inc.php index a9272b8fe..568f06e62 100644 --- a/lang/portuguese-utf-8.inc.php +++ b/lang/portuguese-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/romanian-iso-8859-1.inc.php b/lang/romanian-iso-8859-1.inc.php index 98c002444..0c137632f 100644 --- a/lang/romanian-iso-8859-1.inc.php +++ b/lang/romanian-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/romanian-utf-8.inc.php b/lang/romanian-utf-8.inc.php index 16a134800..ceedc9e88 100644 --- a/lang/romanian-utf-8.inc.php +++ b/lang/romanian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/russian-cp-866.inc.php b/lang/russian-cp-866.inc.php index b15875708..348cb32c7 100644 --- a/lang/russian-cp-866.inc.php +++ b/lang/russian-cp-866.inc.php @@ -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 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 ?> diff --git a/lang/russian-koi8-r.inc.php b/lang/russian-koi8-r.inc.php index 7704ef231..39272df2f 100644 --- a/lang/russian-koi8-r.inc.php +++ b/lang/russian-koi8-r.inc.php @@ -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 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 ?> diff --git a/lang/russian-utf-8.inc.php b/lang/russian-utf-8.inc.php index 61a499853..9632afb97 100644 --- a/lang/russian-utf-8.inc.php +++ b/lang/russian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/russian-windows-1251.inc.php b/lang/russian-windows-1251.inc.php index ccd07bfc6..7df994f4c 100644 --- a/lang/russian-windows-1251.inc.php +++ b/lang/russian-windows-1251.inc.php @@ -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 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 ?> diff --git a/lang/serbian_cyrillic-utf-8.inc.php b/lang/serbian_cyrillic-utf-8.inc.php index eaddf88a3..f51bab278 100644 --- a/lang/serbian_cyrillic-utf-8.inc.php +++ b/lang/serbian_cyrillic-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/serbian_cyrillic-windows-1251.inc.php b/lang/serbian_cyrillic-windows-1251.inc.php index 7761928e7..96b51e147 100644 --- a/lang/serbian_cyrillic-windows-1251.inc.php +++ b/lang/serbian_cyrillic-windows-1251.inc.php @@ -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 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 ?> diff --git a/lang/serbian_latin-utf-8.inc.php b/lang/serbian_latin-utf-8.inc.php index e0c6adfff..58802637d 100644 --- a/lang/serbian_latin-utf-8.inc.php +++ b/lang/serbian_latin-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/serbian_latin-windows-1250.inc.php b/lang/serbian_latin-windows-1250.inc.php index 8bd491390..4c8fe6571 100644 --- a/lang/serbian_latin-windows-1250.inc.php +++ b/lang/serbian_latin-windows-1250.inc.php @@ -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 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 ?> diff --git a/lang/slovak-iso-8859-2.inc.php b/lang/slovak-iso-8859-2.inc.php index d11907900..481a34bc5 100644 --- a/lang/slovak-iso-8859-2.inc.php +++ b/lang/slovak-iso-8859-2.inc.php @@ -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 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 ?> diff --git a/lang/slovak-utf-8.inc.php b/lang/slovak-utf-8.inc.php index d09562e0b..a50ba6144 100644 --- a/lang/slovak-utf-8.inc.php +++ b/lang/slovak-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/slovak-windows-1250.inc.php b/lang/slovak-windows-1250.inc.php index 4c9f49ccf..7b473bdac 100644 --- a/lang/slovak-windows-1250.inc.php +++ b/lang/slovak-windows-1250.inc.php @@ -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 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 ?> diff --git a/lang/slovenian-iso-8859-2.inc.php b/lang/slovenian-iso-8859-2.inc.php index 1c147887c..bf7174368 100644 --- a/lang/slovenian-iso-8859-2.inc.php +++ b/lang/slovenian-iso-8859-2.inc.php @@ -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 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 ?> diff --git a/lang/slovenian-utf-8.inc.php b/lang/slovenian-utf-8.inc.php index 868a0f33f..b91cde1d2 100644 --- a/lang/slovenian-utf-8.inc.php +++ b/lang/slovenian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/slovenian-windows-1250.inc.php b/lang/slovenian-windows-1250.inc.php index 2e53e8f7a..c3424b2f6 100644 --- a/lang/slovenian-windows-1250.inc.php +++ b/lang/slovenian-windows-1250.inc.php @@ -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 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 ?> diff --git a/lang/spanish-iso-8859-1.inc.php b/lang/spanish-iso-8859-1.inc.php index d2b70b677..ff18106af 100644 --- a/lang/spanish-iso-8859-1.inc.php +++ b/lang/spanish-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/spanish-utf-8.inc.php b/lang/spanish-utf-8.inc.php index 93e0c096f..7b947ccf8 100644 --- a/lang/spanish-utf-8.inc.php +++ b/lang/spanish-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/swedish-iso-8859-1.inc.php b/lang/swedish-iso-8859-1.inc.php index 1d3714e55..1b217808a 100644 --- a/lang/swedish-iso-8859-1.inc.php +++ b/lang/swedish-iso-8859-1.inc.php @@ -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 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 ?> diff --git a/lang/swedish-utf-8.inc.php b/lang/swedish-utf-8.inc.php index 63ef59f50..a186f4c05 100644 --- a/lang/swedish-utf-8.inc.php +++ b/lang/swedish-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/thai-tis-620.inc.php b/lang/thai-tis-620.inc.php index 03ccfa87f..181c5ea49 100644 --- a/lang/thai-tis-620.inc.php +++ b/lang/thai-tis-620.inc.php @@ -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 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 ?> diff --git a/lang/thai-utf-8.inc.php b/lang/thai-utf-8.inc.php index 32e041f9d..e3ff9b8c1 100644 --- a/lang/thai-utf-8.inc.php +++ b/lang/thai-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/turkish-iso-8859-9.inc.php b/lang/turkish-iso-8859-9.inc.php index cba68c066..831829975 100644 --- a/lang/turkish-iso-8859-9.inc.php +++ b/lang/turkish-iso-8859-9.inc.php @@ -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 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 ?> diff --git a/lang/turkish-utf-8.inc.php b/lang/turkish-utf-8.inc.php index 1b37d8103..72ae8a925 100644 --- a/lang/turkish-utf-8.inc.php +++ b/lang/turkish-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/ukrainian-utf-8.inc.php b/lang/ukrainian-utf-8.inc.php index ff4fbc35c..c31e64c1d 100644 --- a/lang/ukrainian-utf-8.inc.php +++ b/lang/ukrainian-utf-8.inc.php @@ -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 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 ?> diff --git a/lang/ukrainian-windows-1251.inc.php b/lang/ukrainian-windows-1251.inc.php index daa9c03e8..528827f22 100644 --- a/lang/ukrainian-windows-1251.inc.php +++ b/lang/ukrainian-windows-1251.inc.php @@ -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 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 ?> diff --git a/libraries/tbl_indexes.lib.php b/libraries/tbl_indexes.lib.php new file mode 100644 index 000000000..fff7b2a6b --- /dev/null +++ b/libraries/tbl_indexes.lib.php @@ -0,0 +1,263 @@ + $w_count) { + if (isset($idx_collection['PRIMARY'][$w_keyname]) && (isset($idx_collection['INDEX'][$w_keyname]) || isset($idx_collection['UNIQUE'][$w_keyname]))) { + $output .= PMA_index_warning(sprintf($GLOBALS['strIndexWarningPrimary'], htmlspecialchars($w_keyname)), $table); + } elseif (isset($idx_collection['UNIQUE'][$w_keyname]) && isset($idx_collection['INDEX'][$w_keyname])) { + $output .= PMA_index_warning(sprintf($GLOBALS['strIndexWarningUnique'], htmlspecialchars($w_keyname)), $table); + } + + foreach($index_types AS $index_type) { + if (isset($idx_collection[$index_type][$w_keyname]) && $idx_collection[$index_type][$w_keyname] > 1) { + $output .= PMA_index_warning(sprintf($GLOBALS['strIndexWarningMultiple'], $index_type, htmlspecialchars($w_keyname)), $table); + } + } + } + } + + return $output; + } + + /** + * Loop array of returned index keys and extract key information to + * seperate arrays. Those arrays are passed by reference. + * + * @param array Referenced Array of indexes + * @param array Referenced return array + * @param array Referenced return array + * @param array Referenced return array + * + * @access public + * @return boolean void + * @author Garvin Hicking (pma@supergarv.de) + */ + function PMA_extract_indexes(&$ret_keys, &$indexes, &$indexes_info, &$indexes_data) { + if (!is_array($ret_keys)) { + return false; + } + + $prev_index = ''; + foreach ($ret_keys as $row) { + if ($row['Key_name'] != $prev_index ){ + $indexes[] = $row['Key_name']; + $prev_index = $row['Key_name']; + } + + $indexes_info[$row['Key_name']]['Sequences'][] = $row['Seq_in_index']; + $indexes_info[$row['Key_name']]['Non_unique'] = $row['Non_unique']; + + if (isset($row['Cardinality'])) { + $indexes_info[$row['Key_name']]['Cardinality'] = $row['Cardinality']; + } + + // I don't know what does following column mean.... + // $indexes_info[$row['Key_name']]['Packed'] = $row['Packed']; + $indexes_info[$row['Key_name']]['Comment'] = (isset($row['Comment'])) + ? $row['Comment'] + : ''; + $indexes_info[$row['Key_name']]['Index_type'] = (isset($row['Index_type'])) + ? $row['Index_type'] + : ''; + + $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Column_name'] = $row['Column_name']; + if (isset($row['Sub_part'])) { + $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Sub_part'] = $row['Sub_part']; + } + } // end while + + return true; + } + + /** + * Show index data and prepare returned collection array for index + * key checks. + * + * @param string The tablename + * @param array Referenced Array of indexes + * @param array Referenced info array + * @param array Referenced data array + * @param boolean Output HTML code, or just return collection array? + * + * @access public + * @return array Index collection array + * @author Garvin Hicking (pma@supergarv.de) + */ + function PMA_show_indexes($table, &$indexes, &$indexes_info, &$indexes_data, $display_html = true) { + $idx_collection = array(); + foreach ($indexes AS $index_no => $index_name) { + if ($display_html) { + $cell_bgd = (($index_no % 2) ? $GLOBALS['cfg']['BgcolorOne'] : $GLOBALS['cfg']['BgcolorTwo']); + $index_td = ' ' . "\n"; + echo ' ' . "\n"; + echo $index_td + . ' ' . htmlspecialchars($index_name) . "\n" + . ' ' . "\n"; + } + + if ((PMA_MYSQL_INT_VERSION < 40002 && $indexes_info[$index_name]['Comment'] == 'FULLTEXT') + || (PMA_MYSQL_INT_VERSION >= 40002 && $indexes_info[$index_name]['Index_type'] == 'FULLTEXT')) { + $index_type = 'FULLTEXT'; + } else if ($index_name == 'PRIMARY') { + $index_type = 'PRIMARY'; + } else if ($indexes_info[$index_name]['Non_unique'] == '0') { + $index_type = 'UNIQUE'; + } else { + $index_type = 'INDEX'; + } + + if ($display_html) { + echo $index_td + . ' ' . $index_type . "\n" + . ' ' . "\n"; + + echo str_replace('">' . "\n", '" align="right">' . "\n", $index_td) + . ' ' . (isset($indexes_info[$index_name]['Cardinality']) ? $indexes_info[$index_name]['Cardinality'] : $GLOBALS['strNone']) . ' ' . "\n" + . ' ' . "\n"; + + echo $index_td + . ' ' . $GLOBALS['edit_link_text'] . '' . "\n" + . ' ' . "\n"; + + if ($index_name == 'PRIMARY') { + $local_query = urlencode('ALTER TABLE ' . PMA_backquote($table) . ' DROP PRIMARY KEY'); + $js_msg = 'ALTER TABLE ' . PMA_jsFormat($table) . ' DROP PRIMARY KEY'; + $zero_rows = urlencode($GLOBALS['strPrimaryKeyHasBeenDropped']); + } else { + $local_query = urlencode('ALTER TABLE ' . PMA_backquote($table) . ' DROP INDEX ' . PMA_backquote($index_name)); + $js_msg = 'ALTER TABLE ' . PMA_jsFormat($table) . ' DROP INDEX ' . PMA_jsFormat($index_name); + $zero_rows = urlencode(sprintf($GLOBALS['strIndexHasBeenDropped'], htmlspecialchars($index_name))); + } + + echo $index_td + . ' ' . $GLOBALS['drop_link_text'] . '' . "\n" + . ' ' . "\n"; + } + + foreach ($indexes_info[$index_name]['Sequences'] AS $row_no => $seq_index) { + $col_name = $indexes_data[$index_name][$seq_index]['Column_name']; + if ($row_no == 0) { + if (isset($idx_collection[$index_type][$col_name])) { + $idx_collection[$index_type][$col_name]++; + } else { + $idx_collection[$index_type][$col_name] = 1; + } + + if (isset($idx_collection['ALL'][$col_name])) { + $idx_collection['ALL'][$col_name]++; + } else { + $idx_collection['ALL'][$col_name] = 1; + } + } + + if ($display_html) { + if ($row_no > 0) { + echo ' ' . "\n"; + } + + if (!empty($indexes_data[$index_name][$seq_index]['Sub_part'])) { + echo ' ' . "\n" + . ' ' . $col_name . "\n" + . ' ' . "\n"; + echo ' ' . "\n" + . ' ' . $indexes_data[$index_name][$seq_index]['Sub_part'] . "\n" + . ' ' . "\n"; + echo ' ' . "\n"; + } else { + echo ' ' . "\n" + . ' ' . htmlspecialchars($col_name) . "\n" + . ' ' . "\n"; + echo ' ' . "\n"; + } + } + } // end while + } // end while + + return $idx_collection; + } + + /** + * Function to emit a index warning + * + * @param string Message string + * @param boolean Whether to output HTML in table layout + * + * @access public + * @output string Output HTML + * @author Garvin Hicking (pma@supergarv.de) + */ + function PMA_index_warning($string, $table = true) { + $output = ''; + if ($table) { + $output .= "\n" . ' ' . "\n"; + } + + if ($GLOBALS['cfg']['ErrorIconic']) { + $output .= 'Warning'; + } + + $output .= ' ' . $string . ''; + + if ($table) { + $output .= ''; + } else { + $output .= '
'; + } + + $output .= "\n\n"; + return $output; + } +?> \ No newline at end of file diff --git a/sql.php b/sql.php index 186032f7d..2a8d0db93 100644 --- a/sql.php +++ b/sql.php @@ -7,6 +7,7 @@ */ require_once('./libraries/grab_globals.lib.php'); require_once('./libraries/common.lib.php'); +require_once('./libraries/tbl_indexes.lib.php'); /** @@ -706,6 +707,29 @@ else { PMA_displayTable($result, $disp_mode, $analyzed_sql); PMA_DBI_free_result($result); + // BEGIN INDEX CHECK See if indexes should be checked. + if (isset($query_type) && $query_type == 'check_tbl' && isset($selected) && is_array($selected)) { + foreach($selected AS $idx => $tbl_name) { + $indexes = $indexes_info = $indexes_data = array(); + $tbl_ret_keys = PMA_get_indexes(urldecode($tbl_name), $err_url_0); + + PMA_extract_indexes($tbl_ret_keys, $indexes, $indexes_info, $indexes_data); + + $idx_collection = PMA_show_indexes(urldecode($tbl_name), $indexes, $indexes_info, $indexes_data, false); + $check = PMA_check_indexes($idx_collection); + if (!empty($check)) { + ?> + + + + + +
+ ' . "\n"; diff --git a/tbl_indexes.php b/tbl_indexes.php index ab6521d32..34a3ccf45 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -8,18 +8,13 @@ */ require_once('./libraries/grab_globals.lib.php'); require_once('./libraries/common.lib.php'); - +require_once('./libraries/tbl_indexes.lib.php'); /** * Defines the index types ("FULLTEXT" is available since MySQL 3.23.23) */ -$index_types_cnt = 4; -$index_types = array( - 'PRIMARY', - 'INDEX', - 'UNIQUE', - 'FULLTEXT' -); +$index_types = PMA_get_indextypes(); +$index_types_cnt = count($index_types); /** * Ensures the db & table are valid, then loads headers and gets indexes @@ -62,44 +57,14 @@ if (defined('PMA_IDX_INCLUDED')) { // Gets table keys and store them in arrays $indexes = array(); -$prev_index = ''; $indexes_info = array(); $indexes_data = array(); // keys had already been grabbed in "tbl_properties.php" if (!defined('PMA_IDX_INCLUDED')) { - $local_query = 'SHOW KEYS FROM ' . PMA_backquote($table); - $result = PMA_DBI_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url_0); - $ret_keys = array(); - while ($row = PMA_DBI_fetch_assoc($result)) { - $ret_keys[] = $row; - } - PMA_DBI_free_result($result); + $tbl_ret_keys = PMA_get_indexes($tbl_name, $err_url_0); } -foreach ($ret_keys as $row) { - if ($row['Key_name'] != $prev_index ){ - $indexes[] = $row['Key_name']; - $prev_index = $row['Key_name']; - } - $indexes_info[$row['Key_name']]['Sequences'][] = $row['Seq_in_index']; - $indexes_info[$row['Key_name']]['Non_unique'] = $row['Non_unique']; - if (isset($row['Cardinality'])) { - $indexes_info[$row['Key_name']]['Cardinality'] = $row['Cardinality']; - } -// I don't know what does following column mean.... -// $indexes_info[$row['Key_name']]['Packed'] = $row['Packed']; - $indexes_info[$row['Key_name']]['Comment'] = (isset($row['Comment'])) - ? $row['Comment'] - : ''; - $indexes_info[$row['Key_name']]['Index_type'] = (isset($row['Index_type'])) - ? $row['Index_type'] - : ''; - - $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Column_name'] = $row['Column_name']; - if (isset($row['Sub_part'])) { - $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Sub_part'] = $row['Sub_part']; - } -} // end while +PMA_extract_indexes($ret_keys, $indexes, $indexes_info, $indexes_data); // Get fields and stores their name/type // fields had already been grabbed in "tbl_properties.php" @@ -406,7 +371,7 @@ else if (!defined('PMA_IDX_INCLUDED') // We need to copy the value or else the == 'both' check will always return true $propicon = (string)$cfg['PropertiesIconic']; - + if ($cfg['PropertiesIconic'] === true || $propicon == 'both') { $edit_link_text = '' . $strEdit . ''; $drop_link_text = '' . $strDrop . ''; @@ -432,74 +397,8 @@ else if (!defined('PMA_IDX_INCLUDED') $index_name) { - $cell_bgd = (($index_no % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']); - $index_td = ' ' . "\n"; - echo ' ' . "\n"; - echo $index_td - . ' ' . htmlspecialchars($index_name) . "\n" - . ' ' . "\n"; - - if ((PMA_MYSQL_INT_VERSION < 40002 && $indexes_info[$index_name]['Comment'] == 'FULLTEXT') - || (PMA_MYSQL_INT_VERSION >= 40002 && $indexes_info[$index_name]['Index_type'] == 'FULLTEXT')) { - $index_type = 'FULLTEXT'; - } else if ($index_name == 'PRIMARY') { - $index_type = 'PRIMARY'; - } else if ($indexes_info[$index_name]['Non_unique'] == '0') { - $index_type = 'UNIQUE'; - } else { - $index_type = 'INDEX'; - } - echo $index_td - . ' ' . $index_type . "\n" - . ' ' . "\n"; - - echo str_replace('">' . "\n", '" align="right">' . "\n", $index_td) - . ' ' . (isset($indexes_info[$index_name]['Cardinality']) ? $indexes_info[$index_name]['Cardinality'] : $strNone) . ' ' . "\n" - . ' ' . "\n"; - - echo $index_td - . ' ' . $edit_link_text . '' . "\n" - . ' ' . "\n"; - - if ($index_name == 'PRIMARY') { - $local_query = urlencode('ALTER TABLE ' . PMA_backquote($table) . ' DROP PRIMARY KEY'); - $js_msg = 'ALTER TABLE ' . PMA_jsFormat($table) . ' DROP PRIMARY KEY'; - $zero_rows = urlencode($strPrimaryKeyHasBeenDropped); - } else { - $local_query = urlencode('ALTER TABLE ' . PMA_backquote($table) . ' DROP INDEX ' . PMA_backquote($index_name)); - $js_msg = 'ALTER TABLE ' . PMA_jsFormat($table) . ' DROP INDEX ' . PMA_jsFormat($index_name); - $zero_rows = urlencode(sprintf($strIndexHasBeenDropped, htmlspecialchars($index_name))); - } - echo $index_td - . ' ' . $drop_link_text . '' . "\n" - . ' ' . "\n"; - - foreach ($indexes_info[$index_name]['Sequences'] AS $row_no => $seq_index) { - if ($row_no > 0) { - echo ' ' . "\n"; - } - if (!empty($indexes_data[$index_name][$seq_index]['Sub_part'])) { - echo ' ' . "\n" - . ' ' . $indexes_data[$index_name][$seq_index]['Column_name'] . "\n" - . ' ' . "\n"; - echo ' ' . "\n" - . ' ' . $indexes_data[$index_name][$seq_index]['Sub_part'] . "\n" - . ' ' . "\n"; - echo ' ' . "\n"; - } else { - echo ' ' . "\n" - . ' ' . htmlspecialchars($indexes_data[$index_name][$seq_index]['Column_name']) . "\n" - . ' ' . "\n"; - echo ' ' . "\n"; - } - } // end while - } // end while - ?> - -