diff --git a/ChangeLog b/ChangeLog index 8fb185a5c..c9edaad11 100644 --- a/ChangeLog +++ b/ChangeLog @@ -29,6 +29,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #1823018 [charset] Edit(Delete) img-links pointing to wrong row - bug #1826205 [export] Problems with yaml text export + rfe #1840165 [interface] Enlarge column name field in vertical mode ++ patch #1847534 [interface] New "Inside field" in db search, + thanks to obiserver 2.11.4.0 (not yet released) - bug #1843428 [GUI] Space issue with DROP/DELETE/ALTER TABLE diff --git a/db_search.php b/db_search.php index d24fba13e..68d887749 100644 --- a/db_search.php +++ b/db_search.php @@ -38,6 +38,7 @@ * @uses $_REQUEST['table_select'] * @uses $_REQUEST['unselectall'] * @uses $_REQUEST['selectall'] + * @uses $_REQUEST['field_str'] * @uses is_string() * @uses htmlspecialchars() * @uses array_key_exists() @@ -118,6 +119,12 @@ if (isset($_REQUEST['selectall'])) { $tables_selected = array(); } +if (empty($_REQUEST['field_str']) || ! is_string($_REQUEST['field_str'])) { + unset($field_str); +} else { + $field_str = PMA_sqlAddslashes($_REQUEST['field_str'], true); +} + /** * Displays top links */ @@ -143,6 +150,7 @@ if (isset($_REQUEST['submit_search'])) { * count * strlen * @param string the table name + * @param string restrict the search to this field * @param string the string to search * @param integer type of search (1 -> 1 word at least, 2 -> all words, * 3 -> exact string, 4 -> regexp) @@ -152,7 +160,7 @@ if (isset($_REQUEST['submit_search'])) { * @global string the url to return to in case of errors * @global string charset connection */ - function PMA_getSearchSqls($table, $search_str, $search_option) + function PMA_getSearchSqls($table, $field, $search_str, $search_option) { global $err_url, $charset_connection; @@ -198,21 +206,31 @@ if (isset($_REQUEST['submit_search'])) { } else { $prefix = $suffix = ''; } - $thefieldlikevalue[] = $tblfield['Field'] - . ' ' . $like_or_regex . ' ' - . $prefix - . "'" - . $automatic_wildcard - . $search_word - . $automatic_wildcard . "'" - . $suffix; + if ((!isset($field)) || (strlen($field) == 0) || ($tblfield['Field'] == PMA_backquote($field))) { + $thefieldlikevalue[] = $tblfield['Field'] + . ' ' . $like_or_regex . ' ' + . $prefix + . "'" + . $automatic_wildcard + . $search_word + . $automatic_wildcard . "'" + . $suffix; + } } // end for - $fieldslikevalues[] = implode(' OR ', $thefieldlikevalue); + if (count($thefieldlikevalue) > 0) { + $fieldslikevalues[] = implode(' OR ', $thefieldlikevalue); + } } // end for $implode_str = ($search_option == 1 ? ' OR ' : ' AND '); - $sqlstr_where = ' WHERE (' . implode(') ' . $implode_str . ' (', $fieldslikevalues) . ')'; + if ( empty($fieldslikevalues)) { + // this could happen when the "inside field" does not exist + // in any selected tables + $sqlstr_where = ' WHERE FALSE'; + } else { + $sqlstr_where = ' WHERE (' . implode(') ' . $implode_str . ' (', $fieldslikevalues) . ')'; + } unset($fieldslikevalues); // Builds complete queries @@ -249,8 +267,7 @@ if (isset($_REQUEST['submit_search'])) { foreach ($tables_selected as $each_table) { // Gets the SQL statements - $newsearchsqls = PMA_getSearchSqls($each_table, - $search_str, $search_option); + $newsearchsqls = PMA_getSearchSqls($each_table, (! empty($field_str) ? $field_str : ''), $search_str, $search_option); // Executes the "COUNT" statement $res_cnt = PMA_DBI_fetch_value($newsearchsqls['select_count']); @@ -359,6 +376,11 @@ $alter_select = + + + +
diff --git a/lang/afrikaans-utf-8.inc.php b/lang/afrikaans-utf-8.inc.php index 71a1e1ae1..b209d7b8c 100644 --- a/lang/afrikaans-utf-8.inc.php +++ b/lang/afrikaans-utf-8.inc.php @@ -1062,4 +1062,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/albanian-utf-8.inc.php b/lang/albanian-utf-8.inc.php index 50b64a408..07c81590b 100644 --- a/lang/albanian-utf-8.inc.php +++ b/lang/albanian-utf-8.inc.php @@ -1061,4 +1061,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/arabic-utf-8.inc.php b/lang/arabic-utf-8.inc.php index ee699be1b..0e7c38046 100644 --- a/lang/arabic-utf-8.inc.php +++ b/lang/arabic-utf-8.inc.php @@ -1063,4 +1063,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/azerbaijani-utf-8.inc.php b/lang/azerbaijani-utf-8.inc.php index 523e370c3..4c76f0e72 100644 --- a/lang/azerbaijani-utf-8.inc.php +++ b/lang/azerbaijani-utf-8.inc.php @@ -1058,4 +1058,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/basque-utf-8.inc.php b/lang/basque-utf-8.inc.php index 1b1710865..b97cf87fa 100644 --- a/lang/basque-utf-8.inc.php +++ b/lang/basque-utf-8.inc.php @@ -1055,4 +1055,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/belarusian_cyrillic-utf-8.inc.php b/lang/belarusian_cyrillic-utf-8.inc.php index 117e862ad..2a4ce4ce7 100644 --- a/lang/belarusian_cyrillic-utf-8.inc.php +++ b/lang/belarusian_cyrillic-utf-8.inc.php @@ -1038,4 +1038,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/belarusian_latin-utf-8.inc.php b/lang/belarusian_latin-utf-8.inc.php index 40721c481..2e0b83412 100644 --- a/lang/belarusian_latin-utf-8.inc.php +++ b/lang/belarusian_latin-utf-8.inc.php @@ -1037,4 +1037,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/bosnian-utf-8.inc.php b/lang/bosnian-utf-8.inc.php index 03aebb0ec..31495cd7d 100644 --- a/lang/bosnian-utf-8.inc.php +++ b/lang/bosnian-utf-8.inc.php @@ -1061,4 +1061,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/brazilian_portuguese-utf-8.inc.php b/lang/brazilian_portuguese-utf-8.inc.php index 9fd53480b..15049a5c6 100644 --- a/lang/brazilian_portuguese-utf-8.inc.php +++ b/lang/brazilian_portuguese-utf-8.inc.php @@ -1035,4 +1035,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/bulgarian-utf-8.inc.php b/lang/bulgarian-utf-8.inc.php index bd21c846d..f7d86a13c 100644 --- a/lang/bulgarian-utf-8.inc.php +++ b/lang/bulgarian-utf-8.inc.php @@ -1058,4 +1058,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/catalan-utf-8.inc.php b/lang/catalan-utf-8.inc.php index 79c035bb3..12a812529 100644 --- a/lang/catalan-utf-8.inc.php +++ b/lang/catalan-utf-8.inc.php @@ -1031,4 +1031,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/chinese_simplified-utf-8.inc.php b/lang/chinese_simplified-utf-8.inc.php index 344ec3f41..d12aeb890 100644 --- a/lang/chinese_simplified-utf-8.inc.php +++ b/lang/chinese_simplified-utf-8.inc.php @@ -1063,4 +1063,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/chinese_traditional-utf-8.inc.php b/lang/chinese_traditional-utf-8.inc.php index dd2c129c1..e6eda31c6 100644 --- a/lang/chinese_traditional-utf-8.inc.php +++ b/lang/chinese_traditional-utf-8.inc.php @@ -1042,4 +1042,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/croatian-utf-8.inc.php b/lang/croatian-utf-8.inc.php index 30c201a23..5ca5ebfeb 100644 --- a/lang/croatian-utf-8.inc.php +++ b/lang/croatian-utf-8.inc.php @@ -1036,4 +1036,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/czech-utf-8.inc.php b/lang/czech-utf-8.inc.php index 095bafd23..47c8509bd 100644 --- a/lang/czech-utf-8.inc.php +++ b/lang/czech-utf-8.inc.php @@ -1037,4 +1037,5 @@ $strYes = 'Ano'; $strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení.'; $strZip = '„zazipováno“'; +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/danish-utf-8.inc.php b/lang/danish-utf-8.inc.php index 9d6417fb9..28db96364 100644 --- a/lang/danish-utf-8.inc.php +++ b/lang/danish-utf-8.inc.php @@ -1037,4 +1037,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/dutch-utf-8.inc.php b/lang/dutch-utf-8.inc.php index e94b0d8a6..a651f4b21 100644 --- a/lang/dutch-utf-8.inc.php +++ b/lang/dutch-utf-8.inc.php @@ -1059,4 +1059,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/english-utf-8.inc.php b/lang/english-utf-8.inc.php index 1eb65a312..0c42ca596 100644 --- a/lang/english-utf-8.inc.php +++ b/lang/english-utf-8.inc.php @@ -700,6 +700,7 @@ $strSavePosition = 'Save position'; $strSave = 'Save'; $strScaleFactorSmall = 'The scale factor is too small to fit the schema on one page'; $strSearchFormTitle = 'Search in database'; +$strSearchInField = 'Inside field:'; $strSearchInTables = 'Inside table(s):'; $strSearchNeedle = 'Word(s) or value(s) to search for (wildcard: "%"):'; $strSearchOption1 = 'at least one of the words'; diff --git a/lang/estonian-utf-8.inc.php b/lang/estonian-utf-8.inc.php index 6a3fa3087..19b01535f 100644 --- a/lang/estonian-utf-8.inc.php +++ b/lang/estonian-utf-8.inc.php @@ -1043,4 +1043,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/finnish-utf-8.inc.php b/lang/finnish-utf-8.inc.php index e5d8ac9dd..8b2f0eae4 100644 --- a/lang/finnish-utf-8.inc.php +++ b/lang/finnish-utf-8.inc.php @@ -1037,4 +1037,5 @@ $strYes = 'Kyllä'; $strZeroRemovesTheLimit = 'Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen.'; $strZip = '"zip-pakattu"'; +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/french-utf-8.inc.php b/lang/french-utf-8.inc.php index e9db1f06b..95b5784cc 100644 --- a/lang/french-utf-8.inc.php +++ b/lang/french-utf-8.inc.php @@ -1034,4 +1034,5 @@ $strOptimize = 'Optimiser'; $strRebuild = 'Reconstruire'; $strRepair = 'Réparer'; $strRemovePartitioning = 'Supprimer le partitionnement'; +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/galician-utf-8.inc.php b/lang/galician-utf-8.inc.php index 7599f2c66..1eb78be93 100644 --- a/lang/galician-utf-8.inc.php +++ b/lang/galician-utf-8.inc.php @@ -1036,4 +1036,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/georgian-utf-8.inc.php b/lang/georgian-utf-8.inc.php index b62015430..0967a77a3 100644 --- a/lang/georgian-utf-8.inc.php +++ b/lang/georgian-utf-8.inc.php @@ -1063,4 +1063,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/german-utf-8.inc.php b/lang/german-utf-8.inc.php index 3b9c4cbc0..5c3825807 100644 --- a/lang/german-utf-8.inc.php +++ b/lang/german-utf-8.inc.php @@ -1043,4 +1043,5 @@ $strZeroRemovesTheLimit = 'Der Wert 0 (null) entfernt die Beschränkung.'; $strZip = 'Zip-komprimiert'; $strExportImportToScale = 'Export/Import to scale'; // to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/greek-utf-8.inc.php b/lang/greek-utf-8.inc.php index 736f5a705..17375da61 100644 --- a/lang/greek-utf-8.inc.php +++ b/lang/greek-utf-8.inc.php @@ -1060,4 +1060,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/hebrew-utf-8.inc.php b/lang/hebrew-utf-8.inc.php index 394797886..8dd704781 100644 --- a/lang/hebrew-utf-8.inc.php +++ b/lang/hebrew-utf-8.inc.php @@ -1055,4 +1055,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/hindi-utf-8.inc.php b/lang/hindi-utf-8.inc.php index 4ebf328ff..bc9964d38 100644 --- a/lang/hindi-utf-8.inc.php +++ b/lang/hindi-utf-8.inc.php @@ -1063,4 +1063,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/hungarian-utf-8.inc.php b/lang/hungarian-utf-8.inc.php index 095105695..487d2b44c 100644 --- a/lang/hungarian-utf-8.inc.php +++ b/lang/hungarian-utf-8.inc.php @@ -1054,4 +1054,5 @@ $strUploadErrorUnknown = 'Unknown error in file upload.';//to translate $strUploadLimit = 'You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.';//to translate $strUploadsNotAllowed = 'File uploads are not allowed on this server.';//to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/indonesian-utf-8.inc.php b/lang/indonesian-utf-8.inc.php index 0502df82d..aee2188a8 100644 --- a/lang/indonesian-utf-8.inc.php +++ b/lang/indonesian-utf-8.inc.php @@ -1053,4 +1053,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/italian-utf-8.inc.php b/lang/italian-utf-8.inc.php index 8484354f4..d5fb05800 100644 --- a/lang/italian-utf-8.inc.php +++ b/lang/italian-utf-8.inc.php @@ -1037,4 +1037,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/japanese-utf-8.inc.php b/lang/japanese-utf-8.inc.php index d3be2ca5d..15cacf337 100644 --- a/lang/japanese-utf-8.inc.php +++ b/lang/japanese-utf-8.inc.php @@ -1041,4 +1041,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/korean-utf-8.inc.php b/lang/korean-utf-8.inc.php index 5e806c04a..9e18b9822 100644 --- a/lang/korean-utf-8.inc.php +++ b/lang/korean-utf-8.inc.php @@ -1058,4 +1058,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/latvian-utf-8.inc.php b/lang/latvian-utf-8.inc.php index 9fc66d290..1f23f7fc0 100644 --- a/lang/latvian-utf-8.inc.php +++ b/lang/latvian-utf-8.inc.php @@ -1060,4 +1060,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/lithuanian-utf-8.inc.php b/lang/lithuanian-utf-8.inc.php index 4a9a7c69a..83fd96598 100644 --- a/lang/lithuanian-utf-8.inc.php +++ b/lang/lithuanian-utf-8.inc.php @@ -1053,4 +1053,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/macedonian_cyrillic-utf-8.inc.php b/lang/macedonian_cyrillic-utf-8.inc.php index 8ea665aa4..610c01ffc 100644 --- a/lang/macedonian_cyrillic-utf-8.inc.php +++ b/lang/macedonian_cyrillic-utf-8.inc.php @@ -1038,4 +1038,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/malay-utf-8.inc.php b/lang/malay-utf-8.inc.php index 6eea5bfc3..afa9b802e 100644 --- a/lang/malay-utf-8.inc.php +++ b/lang/malay-utf-8.inc.php @@ -1075,4 +1075,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/mongolian-utf-8.inc.php b/lang/mongolian-utf-8.inc.php index 9b371b808..b423adc03 100644 --- a/lang/mongolian-utf-8.inc.php +++ b/lang/mongolian-utf-8.inc.php @@ -1058,4 +1058,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/norwegian-utf-8.inc.php b/lang/norwegian-utf-8.inc.php index daa137d27..ca0b31438 100644 --- a/lang/norwegian-utf-8.inc.php +++ b/lang/norwegian-utf-8.inc.php @@ -1035,4 +1035,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/persian-utf-8.inc.php b/lang/persian-utf-8.inc.php index 356835dab..513a8fc39 100644 --- a/lang/persian-utf-8.inc.php +++ b/lang/persian-utf-8.inc.php @@ -1060,4 +1060,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/polish-utf-8.inc.php b/lang/polish-utf-8.inc.php index 32ca83b62..102305a47 100644 --- a/lang/polish-utf-8.inc.php +++ b/lang/polish-utf-8.inc.php @@ -1031,4 +1031,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/portuguese-utf-8.inc.php b/lang/portuguese-utf-8.inc.php index 69f30e288..1c19ae23f 100644 --- a/lang/portuguese-utf-8.inc.php +++ b/lang/portuguese-utf-8.inc.php @@ -1064,4 +1064,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/romanian-utf-8.inc.php b/lang/romanian-utf-8.inc.php index 6318b0504..86c79be44 100644 --- a/lang/romanian-utf-8.inc.php +++ b/lang/romanian-utf-8.inc.php @@ -1056,4 +1056,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/russian-utf-8.inc.php b/lang/russian-utf-8.inc.php index 8422db64a..d55afd117 100644 --- a/lang/russian-utf-8.inc.php +++ b/lang/russian-utf-8.inc.php @@ -1038,4 +1038,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/serbian_cyrillic-utf-8.inc.php b/lang/serbian_cyrillic-utf-8.inc.php index 9a9161418..c9a194505 100644 --- a/lang/serbian_cyrillic-utf-8.inc.php +++ b/lang/serbian_cyrillic-utf-8.inc.php @@ -1037,4 +1037,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/serbian_latin-utf-8.inc.php b/lang/serbian_latin-utf-8.inc.php index 715771293..601124127 100644 --- a/lang/serbian_latin-utf-8.inc.php +++ b/lang/serbian_latin-utf-8.inc.php @@ -1037,4 +1037,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/sinhala-utf-8.inc.php b/lang/sinhala-utf-8.inc.php index d427a10e1..458489424 100644 --- a/lang/sinhala-utf-8.inc.php +++ b/lang/sinhala-utf-8.inc.php @@ -1040,4 +1040,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/slovak-utf-8.inc.php b/lang/slovak-utf-8.inc.php index f9baac2bf..10b28e545 100644 --- a/lang/slovak-utf-8.inc.php +++ b/lang/slovak-utf-8.inc.php @@ -1038,4 +1038,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/slovenian-utf-8.inc.php b/lang/slovenian-utf-8.inc.php index 54192d68d..d33b40c0d 100644 --- a/lang/slovenian-utf-8.inc.php +++ b/lang/slovenian-utf-8.inc.php @@ -1057,4 +1057,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/spanish-utf-8.inc.php b/lang/spanish-utf-8.inc.php index 87004eace..95bf96904 100644 --- a/lang/spanish-utf-8.inc.php +++ b/lang/spanish-utf-8.inc.php @@ -1033,4 +1033,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/swedish-utf-8.inc.php b/lang/swedish-utf-8.inc.php index b7c7da43a..d5283b0b0 100644 --- a/lang/swedish-utf-8.inc.php +++ b/lang/swedish-utf-8.inc.php @@ -1036,4 +1036,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/tatarish-utf-8.inc.php b/lang/tatarish-utf-8.inc.php index 5477ca720..3e13a4dfb 100644 --- a/lang/tatarish-utf-8.inc.php +++ b/lang/tatarish-utf-8.inc.php @@ -1049,4 +1049,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/thai-utf-8.inc.php b/lang/thai-utf-8.inc.php index 44f923493..4fd6e7576 100644 --- a/lang/thai-utf-8.inc.php +++ b/lang/thai-utf-8.inc.php @@ -1059,4 +1059,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/turkish-utf-8.inc.php b/lang/turkish-utf-8.inc.php index 4af7f3955..78145dc3a 100644 --- a/lang/turkish-utf-8.inc.php +++ b/lang/turkish-utf-8.inc.php @@ -1043,4 +1043,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?> diff --git a/lang/ukrainian-utf-8.inc.php b/lang/ukrainian-utf-8.inc.php index cb9c17304..67e2f027a 100644 --- a/lang/ukrainian-utf-8.inc.php +++ b/lang/ukrainian-utf-8.inc.php @@ -1057,4 +1057,5 @@ $strOptimize = 'Optimize'; //to translate $strRebuild = 'Rebuild'; //to translate $strRepair = 'Repair'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate +$strSearchInField = 'Inside field:'; //to translate ?>