diff --git a/ChangeLog b/ChangeLog index bd9c1decab..5f7320da3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,7 +25,7 @@ phpMyAdmin - ChangeLog - [core] Dropped support for PHP 5.2. + rfe #487 and rfe #1405 Find and Replacing column wise + rfe #1373 Use same create view dialog for editing a view -+ rfe #316 Configurable menus; allow user groups with customized menus per group ++ rfe #316 Configurable menus; allow user groups with customized menus per group- bug #4024 Editing field a record is selected by makes pma load forever 4.0.5.0 (not yet released) - bug #3977 Not detected configuration storage diff --git a/db_qbe.php b/db_qbe.php index 940758cccf..003b2fe033 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -11,6 +11,9 @@ */ require_once 'libraries/common.inc.php'; require_once 'libraries/DBQbe.class.php'; +require_once 'libraries/bookmark.lib.php'; +require_once 'libraries/sql.lib.php'; + $response = PMA_Response::getInstance(); // Gets the relation settings @@ -25,8 +28,15 @@ if (isset($_REQUEST['submit_sql']) && ! empty($sql_query)) { $message_to_display = true; } else { $goto = 'db_sql.php'; - include 'sql.php'; - exit; + + // Parse and analyze the query + require_once 'libraries/parse_analyze.inc.php'; + + PMA_executeQueryAndSendQueryResponse( + $analyzed_sql_results, false, $_REQUEST['db'], null, null, null, null, + false, null, null, null, null, $goto, $pmaThemeImage, null, null, null, + $sql_query, null, null + ); } } diff --git a/import_status.php b/import_status.php index 9b79f3fff6..f2e661ce24 100644 --- a/import_status.php +++ b/import_status.php @@ -63,24 +63,11 @@ if (defined('SESSIONUPLOAD')) { } } -/** - * Sets globals from $_GET - */ -$get_params = array( - 'message', - 'id' -); -foreach ($get_params as $one_get_param) { - if (isset($_GET[$one_get_param])) { - $GLOBALS[$one_get_param] = $_GET[$one_get_param]; - } -} - // AJAX requests can't be cached! PMA_noCacheHeader(); -// $GLOBALS["message"] is used for asking for an import message -if (isset($GLOBALS["message"]) && $GLOBALS["message"]) { +// $_GET["message"] is used for asking for an import message +if (isset($_GET["message"]) && $_GET["message"]) { header('Content-type: text/html'); @@ -100,6 +87,6 @@ if (isset($GLOBALS["message"]) && $GLOBALS["message"]) { echo ''."\n"; } else { - PMA_importAjaxStatus($GLOBALS["id"]); + PMA_importAjaxStatus($_GET["id"]); } ?> diff --git a/js/chart.js b/js/chart.js index 895d051d9b..dcd08cc2ae 100644 --- a/js/chart.js +++ b/js/chart.js @@ -170,7 +170,7 @@ var ColumnType = { }; /******************************************************************************* - * JQPlot specifc code + * JQPlot specific code ******************************************************************************/ /** diff --git a/js/server_status_monitor.js b/js/server_status_monitor.js index c093fea83a..91765bc5a1 100644 --- a/js/server_status_monitor.js +++ b/js/server_status_monitor.js @@ -1201,6 +1201,19 @@ AJAX.registerOnload('server_status_monitor.js', function () { settings.axes.yaxis.tickOptions = { formatter: $.jqplot.byteFormatter(1) // KiB }; + } else if (settings.title === PMA_messages.strQuestions + || settings.title === PMA_messages.strConnections + ) { + settings.axes.yaxis.tickOptions = { + formatter: function(format, val) { + if (Math.abs(val) >= 1000000) + return $.jqplot.sprintf("%.3g M", val/1000000); + else if (Math.abs(val) >= 1000) + return $.jqplot.sprintf("%.3g k", val/1000); + else + return $.jqplot.sprintf("%d", val); + } + }; } settings.series = chartObj.series; @@ -1290,7 +1303,6 @@ AJAX.registerOnload('server_status_monitor.js', function () { ); } $('#gridchart' + runtime.chartAI) - .css('overflow', 'hidden') .parent() .append($legend); diff --git a/js/sql.js b/js/sql.js index e561ba5bf5..18c26d4296 100644 --- a/js/sql.js +++ b/js/sql.js @@ -364,7 +364,7 @@ AJAX.registerOnload('sql.js', function () { $("#resultsForm.ajax .mult_submit[value=edit]").live('click', function (event) { event.preventDefault(); - /*Check whether atleast one row is selected for change*/ + /*Check whether at least one row is selected*/ if ($("#table_results tbody tr, #table_results tbody tr td").hasClass("marked")) { var $div = $('
'); @@ -426,6 +426,17 @@ AJAX.registerOnload('sql.js', function () { } }); + /** + * Checks whether at least one row is selected for deletion or export + */ + $("#resultsForm.ajax .mult_submit[value=delete]," + + "#resultsForm.ajax .mult_submit[value=export]").live('click', function (event) { + /*Check whether at least one row is selected*/ + if (!$("#table_results tbody tr, #table_results tbody tr td").hasClass("marked")) { + event.preventDefault(); + PMA_ajaxShowMessage(PMA_messages.strNoRowSelected); + } + }); /** * Click action for "Go" button in ajax dialog insertForm -> insertRowTable */ diff --git a/js/tbl_zoom_plot_jqplot.js b/js/tbl_zoom_plot_jqplot.js index 17aba65970..fe7dcf35f3 100644 --- a/js/tbl_zoom_plot_jqplot.js +++ b/js/tbl_zoom_plot_jqplot.js @@ -362,7 +362,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () { // other } else { // type explicitly identified - if (sqlTypes[key] !== null) { + if (sqlTypes[key] != null) { if (sqlTypes[key] == 'bit') { sql_query += "b'" + value + "', "; } @@ -376,6 +376,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () { } } } + // remove two extraneous characters ', ' sql_query = sql_query.substring(0, sql_query.length - 2); sql_query += ' WHERE ' + PMA_urldecode(searchedData[searchedDataKey].where_clause); diff --git a/libraries/Advisor.class.php b/libraries/Advisor.class.php index 438340f1ec..f7d537197c 100644 --- a/libraries/Advisor.class.php +++ b/libraries/Advisor.class.php @@ -304,11 +304,14 @@ class Advisor */ private function _ruleExprEvaluateVariable($matches) { - return isset($this->variables[$matches[1]]) - ? (is_numeric($this->variables[$matches[1]]) - ? $this->variables[$matches[1]] - : '"'.$this->variables[$matches[1]].'"') - : $matches[1]; + if (! isset($this->variables[$matches[1]])) { + return $matches[1]; + } + if (is_numeric($this->variables[$matches[1]])) { + return $this->variables[$matches[1]]; + } else { + return '\'' . addslashes($this->variables[$matches[1]]) . '\''; + } } /** diff --git a/libraries/advisory_rules.txt b/libraries/advisory_rules.txt index 3ffa1d9faf..354791c12b 100644 --- a/libraries/advisory_rules.txt +++ b/libraries/advisory_rules.txt @@ -200,8 +200,8 @@ rule 'Query cache max size' [!fired('Query cache disabled')] Current query cache size: %s | implode(' ',ADVISOR_formatByteDown(value, 2, 2)) rule 'Query cache min result size' [!fired('Query cache disabled')] - value == 1024*1024 query_cache_limit + value == 1024*1024 The max size of the result set in the query cache is the default of 1 MiB. Changing {query_cache_limit} (usually by increasing) may increase efficiency. This variable determines the maximum size a query result may have to be inserted into the query cache. If there are many query results above 1 MiB that are well cacheable (many reads, little writes) then increasing {query_cache_limit} will increase efficiency. Whereas in the case of many query results being above 1 MiB that are not very well cacheable (often invalidated due to table updates) increasing {query_cache_limit} might reduce efficiency. query_cache_limit is set to 1 MiB diff --git a/libraries/core.lib.php b/libraries/core.lib.php index e5766e51e4..fe26d3f2f3 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -55,7 +55,7 @@ function PMA_ifSetOr(&$var, $default = null, $type = 'similar') * $type can be: * - false : no type checking * - 'scalar' : whether type of $var is integer, float, string or boolean - * - 'numeric' : whether type of $var is any number repesentation + * - 'numeric' : whether type of $var is any number representation * - 'length' : whether type of $var is scalar with a string length > 0 * - 'similar' : whether type of $var is similar to type of $compare * - 'equal' : whether type of $var is identical to type of $compare diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 9e25525437..7d85b369b3 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -380,7 +380,7 @@ function PMA_getSqlQueryAndCreateDbBeforeCopy() // Set the SQL mode to NO_AUTO_VALUE_ON_ZERO to prevent MySQL from creating // export statements it cannot import $sql_set_mode = "SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'"; - PMA_DBI_query($sql_set_mode); + $GLOBALS['dbi']->query($sql_set_mode); // rebuild the database list because PMA_Table::moveCopy // checks in this list if the target db exists @@ -428,7 +428,7 @@ function PMA_getSqlConstraintsQueryForFullDb( * * @param array $tables_full array of all tables in given db or dbs * @param object $export_sql_plugin export plugin instance - * @param strin $db database name + * @param string $db database name * * @return array $views */ diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index df1f0fb91c..1ff74c7328 100644 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -340,6 +340,8 @@ function PMA_langDetails($lang) return array('uz[-_]lat|uzbek-latin', 'uz-lat', 'O‘zbekcha'); case 'uz': return array('uz[-_]cyr|uzbek-cyrillic', 'uz-cyr', 'Ўзбекча'); + case 'vls': + return array('vls|flemish', 'vls', 'West-Vlams'); case 'zh_TW': return array('zh[-_](tw|hk)|chinese traditional', 'zh-TW', '中文'); case 'zh_CN': diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php index e2ea325f7b..bbb7f90a8f 100644 --- a/libraries/sql.lib.php +++ b/libraries/sql.lib.php @@ -15,7 +15,7 @@ if (!defined('PHPMYADMIN')) { * @param string $sql SQL query * @param array $databases array with all databases * - * @return strin $db new database name + * @return string $db new database name */ function PMA_getNewDatabase($sql, $databases) { @@ -1028,6 +1028,9 @@ function PMA_addBookmark($pmaAbsoluteUri, $goto) exit; } else { // go back to sql.php to redisplay query; do not use & in this case: + /** + * @todo In which scenario does this happen? + */ PMA_sendHeaderLocation( $pmaAbsoluteUri . $goto . '&label=' . $_POST['bkm_fields']['bkm_label'] @@ -2013,6 +2016,7 @@ function PMA_sendQueryResponseForResultsReturned($result, $justBrowsing, // value of a transformed field, show it here if (isset($_REQUEST['grid_edit']) && $_REQUEST['grid_edit'] == true) { PMA_sendResponseForGridEdit($result); + // script has exited at this point } // Gets the list of fields properties @@ -2249,7 +2253,7 @@ function PMA_executeQueryAndSendQueryResponse($analyzed_sql_results, $query_type, $sql_query, $selected, $complete_query ) { // Include PMA_Index class for use in PMA_DisplayResults class - include './libraries/Index.class.php'; + include_once './libraries/Index.class.php'; include 'libraries/DisplayResults.class.php'; diff --git a/libraries/sqlparser.lib.php b/libraries/sqlparser.lib.php index b99ba814be..c7fe15b7ce 100644 --- a/libraries/sqlparser.lib.php +++ b/libraries/sqlparser.lib.php @@ -3041,5 +3041,18 @@ function PMA_SQP_getParserDataMap() 'PMA_SQPdata_column_type' => $PMA_SQPdata_column_type, ); } +/** + * Get Parser analyze Map from parse_analyze_inc.php + * + * @param array $sql_query The SQL string + * @param array $db Current DB + * + * @return Array analyze Map from parse_analyze_inc.php + */ +function PMA_SQP_getParserAnalyzeMap($sql_query, $db) +{ + include 'libraries/parse_analyze.inc.php'; + return $analyzed_sql_results; +} ?> diff --git a/libraries/sysinfo.lib.php b/libraries/sysinfo.lib.php index d2b2e982b3..ef33910626 100644 --- a/libraries/sysinfo.lib.php +++ b/libraries/sysinfo.lib.php @@ -176,14 +176,10 @@ class PMA_SysInfoWinnt extends PMA_SysInfo } $arrInstance = array(); foreach ($arrProp as $propItem) { - if ( empty($strValue)) { - eval("\$value = \$objItem->" . $propItem->Name . ";"); - $arrInstance[$propItem->Name] = trim($value); - } else { - if (in_array($propItem->Name, $strValue)) { - eval("\$value = \$objItem->" . $propItem->Name . ";"); - $arrInstance[$propItem->Name] = trim($value); - } + $name = $propItem->Name; + if ( empty($strValue) || in_array($name, $strValue)) { + $value = $objItem->$name; + $arrInstance[$name] = trim($value); } } $arrData[] = $arrInstance; diff --git a/po/gl.po b/po/gl.po index e1d45c27ff..57b98824a9 100644 --- a/po/gl.po +++ b/po/gl.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2013-07-12 16:06+0200\n" -"PO-Revision-Date: 2013-07-15 11:28+0200\n" -"Last-Translator: Michal ČihařINSERT "
-"INSERT INTO nome_taboa (col_A,col_B,"
-"col_C) VALUES (1,2,3)"
+"INSERT INTO nome_taboa "
+"(col_A,col_B,col_C) VALUES (1,2,3)"
#: libraries/plugins/export/ExportSql.class.php:361
msgid ""
@@ -8568,10 +8503,9 @@ msgid "Export contents"
msgstr "Exportar o contido"
#: libraries/plugins/export/PMA_ExportPdf.class.php:116
-#, fuzzy
#| msgid "Table"
msgid "Table:"
-msgstr "Táboa"
+msgstr "Táboa:"
#: libraries/plugins/import/ImportCsv.class.php:63
#: libraries/plugins/import/ImportOds.class.php:74
@@ -8590,7 +8524,8 @@ msgid ""
msgstr ""
"Se os datos de cada fileira do ficheiro non están na mesma orde que na base "
"de datos, enumere aquí os nomes das columnas correspondentes. Os nomes das "
-"columnas teñen que estar separados por vírgulas e non encerrados entre aspas."
+"columnas teñen que estar separados por vírgulas e non encerrados entre "
+"aspas."
#: libraries/plugins/import/ImportCsv.class.php:81
#: libraries/plugins/import/ImportLdi.class.php:66
@@ -8659,10 +8594,9 @@ msgstr ""
"problema e ténteo de novo."
#: libraries/plugins/import/ImportOds.class.php:182
-#, fuzzy
#| msgid "Open Document Spreadsheet"
msgid "Could not parse OpenDocument Spreadsheet!"
-msgstr "Folla de cálculo de Open Document"
+msgstr "Non foi posíbel analizar a folla de cálculo de OpenDocument!"
#: libraries/plugins/import/ImportShp.class.php:53
msgid "ESRI Shape File"
@@ -8730,10 +8664,10 @@ msgstr ""
"numérica de UNIX como hora e data con formato. A primeira opción é a "
"diferenza (en horas) que se engade á hora ou data (Por omisión: 0). Empregue "
"a segunda opción para indicar unha cadea de formato de data/hora diferente. "
-"A terceira opción determina se se desexa ver a hora local ou a UTC (empregue "
-"as cadeas «local»ou «utc») para iso. Segundo isto, o formato de data ten un "
-"valor diferente - para «local» vexa a documentación acerca da función de PHP "
-"strftime() e para «utc» faise empregando a función gmdate()."
+"A terceira opción determina se se desexa ver a hora local ou a UTC "
+"(empregue as cadeas «local»ou «utc») para iso. Segundo isto, o formato de "
+"data ten un valor diferente - para «local» vexa a documentación acerca da "
+"función de PHP strftime() e para «utc» faise empregando a función gmdate()."
#: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31
msgid ""
@@ -8763,13 +8697,14 @@ msgstr ""
"SÓ EN LINUX: Inicia un aplicativo externa e envíalle o campo de datos por "
"medio da entrada normal. Devolve a saída normal do aplicativo. Por omisión é "
"Tidy, para que resulte código HTML claro. Por razóns de seguranza, ten que "
-"editar manualmente o ficheiro libraries/plugins/transformations/"
-"Text_Plain_External.class.php e inserir as ferramentas que queira permitir "
-"que funcionen. A primeira opción, polo tanto, é o número do programa que "
-"quere usar e a segunda opción son os parámetros do programa. O terceiro "
-"parámetro, se for 1, usará htmlspecialchars() para converter a saída (Por "
-"omisión é 1). Un cuarto parámetro, se for 1, porá un NOWRAP na cela de "
-"contidos para que toda a saída se mostre sen reformatar (por omisión é 1)."
+"editar manualmente o ficheiro "
+"libraries/plugins/transformations/Text_Plain_External.class.php e inserir as "
+"ferramentas que queira permitir que funcionen. A primeira opción, polo "
+"tanto, é o número do programa que quere usar e a segunda opción son os "
+"parámetros do programa. O terceiro parámetro, se for 1, usará "
+"htmlspecialchars() para converter a saída (Por omisión é 1). Un cuarto "
+"parámetro, se for 1, porá un NOWRAP na cela de contidos para que toda a "
+"saída se mostre sen reformatar (por omisión é 1)."
#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
msgid ""
@@ -8926,8 +8861,8 @@ msgid ""
"code>), for example by starting from config.sample.inc.php."
msgstr ""
"Active as funcionalidades avanzadas no ficheiro de configuración "
-"(config.inc.php) comezando, por exemplo con config.sample."
-"inc.php."
+"(config.inc.php) comezando, por exemplo con "
+"config.sample.inc.php."
#: libraries/relation.lib.php:276
msgid "Re-login to phpMyAdmin to load the updated configuration file."
@@ -9123,10 +9058,9 @@ msgstr ""
#: libraries/replication_gui.lib.php:384 libraries/replication_gui.lib.php:761
#: libraries/server_privileges.lib.php:1053
-#, fuzzy
#| msgid "User name"
msgid "User name:"
-msgstr "Nome do usuario"
+msgstr "Nome de usuario:"
#: libraries/replication_gui.lib.php:390 libraries/replication_gui.lib.php:765
#: libraries/replication_gui.lib.php:781
@@ -9136,10 +9070,9 @@ msgid "User name"
msgstr "Nome do usuario"
#: libraries/replication_gui.lib.php:416
-#, fuzzy
#| msgid "Port"
msgid "Port:"
-msgstr "Porto"
+msgstr "Porto:"
#: libraries/replication_gui.lib.php:496
msgid "Master status"
@@ -9173,8 +9106,8 @@ msgid ""
"Only slaves started with the --report-host=host_name option are visible in "
"this list."
msgstr ""
-"Nesta listaxe só son visíbeis os escravos que se inicien coa opción --report-"
-"host=nome_da_máquina."
+"Nesta listaxe só son visíbeis os escravos que se inicien coa opción "
+"--report-host=nome_da_máquina."
#: libraries/replication_gui.lib.php:718
#: libraries/server_privileges.lib.php:1168
@@ -9200,10 +9133,9 @@ msgstr "Calquera usuario"
#: libraries/replication_gui.lib.php:843
#: libraries/server_privileges.lib.php:1204
#: libraries/server_privileges.lib.php:2321
-#, fuzzy
#| msgid "Use text field"
msgid "Use text field:"
-msgstr "Empregar un campo de texto"
+msgstr "Empregar un campo de texto:"
#: libraries/replication_gui.lib.php:804
#: libraries/server_privileges.lib.php:1195
@@ -9225,10 +9157,9 @@ msgid "Re-type"
msgstr "Reescribir"
#: libraries/replication_gui.lib.php:859
-#, fuzzy
#| msgid "Generate Password"
msgid "Generate Password:"
-msgstr "Xerar un contrasinal"
+msgstr "Xerar un contrasinal:"
#: libraries/replication_gui.lib.php:920
msgid "Unknown error"
@@ -9299,10 +9230,9 @@ msgstr "Editar o acontecemento"
#: libraries/rte/rte_routines.lib.php:1481
#: libraries/rte/rte_routines.lib.php:1521
#: libraries/rte/rte_triggers.lib.php:230
-#, fuzzy
#| msgid "Error in processing request"
msgid "Error in processing request:"
-msgstr "Produciuse un erro ao procesar a petición"
+msgstr "Produciuse un erro ao procesar a petición:"
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:931
#: libraries/rte/rte_triggers.lib.php:347
@@ -9516,10 +9446,8 @@ msgstr "Resultados da execución da rutina %s"
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
-msgstr[0] ""
-"%d fileira afectada pola última instrución de dentro do procedemento"
-msgstr[1] ""
-"%d fileiras afectadas pola última instrución de dentro do procedemento"
+msgstr[0] "%d fileira afectada pola última instrución de dentro do procedemento"
+msgstr[1] "%d fileiras afectadas pola última instrución de dentro do procedemento"
#: libraries/rte/rte_routines.lib.php:1508
#: libraries/rte/rte_routines.lib.php:1516
@@ -9767,7 +9695,7 @@ msgstr "Mostrar a dimensión das táboas"
#: libraries/schema/User_Schema.class.php:461
msgid "Same width for all tables"
-msgstr ""
+msgstr "A mesma largura para todas as táboas"
#: libraries/schema/User_Schema.class.php:464 libraries/structure.lib.php:379
msgid "Data Dictionary"
@@ -9812,10 +9740,9 @@ msgid "Unknown language: %1$s."
msgstr "Linguaxe descoñecida: %1$s."
#: libraries/select_server.lib.php:39 libraries/select_server.lib.php:44
-#, fuzzy
#| msgid "Current Server"
msgid "Current Server:"
-msgstr "Servidor actual"
+msgstr "Servidor actual:"
#: libraries/server_bin_log.lib.php:30
msgid "Select binary log to view"
@@ -10140,7 +10067,8 @@ msgstr "Permite eliminar táboas."
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
-"Permite engadir usuarios e privilexios sen recargar as táboas de privilexios."
+"Permite engadir usuarios e privilexios sen recargar as táboas de "
+"privilexios."
#: libraries/server_privileges.lib.php:1050
msgid "Login Information"
@@ -10157,6 +10085,8 @@ msgid ""
"An account already exists with the same username but possibly a different "
"hostname. Are you sure you wish to proceed?"
msgstr ""
+"Xa existe unha conta co mesmo nome de usuario mais con, posibelmente, un "
+"nome de servidor diferente. Ten a certeza de querer proseguir?"
#: libraries/server_privileges.lib.php:1233
msgid "Do not change the password"
@@ -10281,10 +10211,9 @@ msgid "Column-specific privileges"
msgstr "Privilexios propios das columnas"
#: libraries/server_privileges.lib.php:2317
-#, fuzzy
#| msgid "Add privileges on the following database"
msgid "Add privileges on the following database:"
-msgstr "Engadir privilexios para esta base de datos"
+msgstr "Engadir privilexios para esta base de datos:"
#: libraries/server_privileges.lib.php:2338
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
@@ -10293,10 +10222,9 @@ msgstr ""
"literalmente"
#: libraries/server_privileges.lib.php:2356
-#, fuzzy
#| msgid "Add privileges on the following table"
msgid "Add privileges on the following table:"
-msgstr "Engadir privilexios para esta táboa"
+msgstr "Engadir privilexios para esta táboa:"
#: libraries/server_privileges.lib.php:2573
msgid "Remove selected users"
@@ -10337,10 +10265,9 @@ msgid "Privileges for %s"
msgstr "Privilexios para %s"
#: libraries/server_privileges.lib.php:2890
-#, fuzzy
#| msgid "Edit Privileges"
msgid "Edit Privileges:"
-msgstr "Modificar os privilexios"
+msgstr "Modificar os privilexios:"
#: libraries/server_privileges.lib.php:2944
msgid "Users overview"
@@ -10480,8 +10407,8 @@ msgid ""
"it is advisable to select only a small time span and to disable the "
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-"Activar general_log pode incrementar a carga do servidor entre un 5% e un "
-"15%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha "
+"Activar general_log pode incrementar a carga do servidor entre un 5% e un 15"
+"%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha "
"tarefa que require un traballo intensivo, polo que se recomenda escoller só "
"un tempo limitado e desactivar general_log e baleirar a súa táboa cando non "
"se requira máis esa vixilancia."
@@ -10544,16 +10471,14 @@ msgid "Instructions/Setup"
msgstr "Instrucións/Configuración"
#: libraries/server_status_monitor.lib.php:298
-#, fuzzy
#| msgid "Done rearranging/editing charts"
msgid "Done dragging (rearranging) charts"
-msgstr "Rematou a redistribución/edición das gráficas"
+msgstr "Rematou o arrastre (redistribución) das gráficas"
#: libraries/server_status_monitor.lib.php:317
-#, fuzzy
#| msgid "Enable highlighting"
msgid "Enable charts dragging"
-msgstr "Activar o realce"
+msgstr "Activar o arrastre das gráficas"
#: libraries/server_status_monitor.lib.php:321
msgid "Refresh rate"
@@ -10747,9 +10672,9 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
"Número de peticións para ler unha fileira baseadas nunha posición fixa. Isto "
-"é alto se está a realizar moitas consultas que requiran ordenar o resultado. "
-"Posibelmente terá un monte de consultas que esixan que MySQL examine táboas "
-"completas ou ten unións que non usan as chaves axeitadamente."
+"é alto se está a realizar moitas consultas que requiran ordenar o "
+"resultado. Posibelmente terá un monte de consultas que esixan que MySQL "
+"examine táboas completas ou ten unións que non usan as chaves axeitadamente."
#: libraries/server_status_variables.lib.php:407
msgid ""
@@ -10856,8 +10781,8 @@ msgid ""
msgstr ""
"Normalmente, escríbese no buffer de InnoDB como tarefa de fondo. Porén, de "
"se precisar ler ou crear unha páxina e non haber páxinas limpas dispoñíbeis, "
-"hai que agardar a que se limpen. Este contador vai contando cantas veces hai "
-"que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser "
+"hai que agardar a que se limpen. Este contador vai contando cantas veces "
+"hai que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser "
"pequeno."
#: libraries/server_status_variables.lib.php:475
@@ -11043,7 +10968,8 @@ msgid ""
msgstr ""
"Número de lecturas físicas dun bloque chave desde o disco. Se key_reads for "
"grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A "
-"relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests."
+"relación de perdas da caché pódese calcular así: "
+"Key_reads/Key_read_requests."
#: libraries/server_status_variables.lib.php:598
msgid ""
@@ -11311,67 +11237,58 @@ msgid "SQL result"
msgstr "Resultado de SQL"
#: libraries/sql.lib.php:416
-#, fuzzy
#| msgid "Generated by"
msgid "Generated by:"
-msgstr "Xerado por"
+msgstr "Xerado por:"
#: libraries/sql.lib.php:447
-#, fuzzy
#| msgid "Data file grow size"
msgid "Detailed profile"
-msgstr "Tamaño de aumento do ficheiro de datos"
+msgstr "Perfil detallado"
#: libraries/sql.lib.php:450
-#, fuzzy
#| msgid "Other"
msgid "Order"
-msgstr "Outro"
+msgstr "Orde"
#: libraries/sql.lib.php:452 libraries/sql.lib.php:499
-#, fuzzy
#| msgctxt "Start of recurring event"
#| msgid "Start"
msgid "State"
-msgstr "Inicio"
+msgstr "Estado"
#: libraries/sql.lib.php:496
msgid "Summary by state"
-msgstr ""
+msgstr "Resumo por estado"
#: libraries/sql.lib.php:504
-#, fuzzy
#| msgid "Total time:"
msgid "Total Time"
-msgstr "Tempo total:"
+msgstr "Tempo total"
#: libraries/sql.lib.php:506
-#, fuzzy
#| msgid "Time"
msgid "% Time"
-msgstr "Tempo"
+msgstr "% Tempo"
#: libraries/sql.lib.php:508
-#, fuzzy
#| msgid "Close"
msgid "Calls"
-msgstr "Fechar"
+msgstr "Chamadas"
#: libraries/sql.lib.php:510
-#, fuzzy
#| msgid "Time"
msgid "ø Time"
-msgstr "Tempo"
+msgstr "ø Tempo"
#: libraries/sql.lib.php:682 libraries/sql.lib.php:702
msgid "Bookmark this SQL query"
-msgstr "Marcar esta busca de SQL"
+msgstr "Marcar esta consulta de SQL"
#: libraries/sql.lib.php:686
-#, fuzzy
#| msgid "Label"
msgid "Label:"
-msgstr "Etiqueta"
+msgstr "Etiqueta:"
#: libraries/sql.lib.php:694 libraries/sql_query_form.lib.php:330
msgid "Let every user access this bookmark"
@@ -11409,10 +11326,9 @@ msgid "Clear"
msgstr "Limpar"
#: libraries/sql_query_form.lib.php:322
-#, fuzzy
#| msgid "Bookmark this SQL query"
msgid "Bookmark this SQL query:"
-msgstr "Marcar esta busca de SQL"
+msgstr "Marcar esta consulta de SQL:"
#: libraries/sql_query_form.lib.php:336
msgid "Replace existing bookmark of same name"
@@ -11420,7 +11336,7 @@ msgstr "Substituír un marcador xa existente que teña o mesmo nome"
#: libraries/sql_query_form.lib.php:353
msgid "Do not overwrite this query from outside the window"
-msgstr "Non escribir sobre esta procura desde fóra da xanela"
+msgstr "Non escribir sobre esta consulta desde fóra da xanela"
#: libraries/sql_query_form.lib.php:360
msgid "Delimiter"
@@ -11440,7 +11356,7 @@ msgid ""
"below, if there is any, may also help you in diagnosing the problem."
msgstr ""
"Parece que se produciu un erro na súa consulta de SQL. Se máis abaixo "
-"aparece unha mensaxe de erro do servidor de MySQL, isto pode axudar a "
+"aparecer unha mensaxe de erro do servidor de MySQL, isto pode axudar a "
"diagnosticar o problema."
#: libraries/sqlparser.lib.php:178
@@ -11637,7 +11553,6 @@ msgid "After %s"
msgstr "Despois de %s"
#: libraries/structure.lib.php:1674
-#, fuzzy
#| msgid "Row Statistics"
msgid "Row statistics"
msgstr "Estatísticas das fileiras"
@@ -11721,7 +11636,7 @@ msgstr "Movéronse as columnas satisfactoriamente."
#: libraries/structure.lib.php:2561
#, php-format
msgid "The column name '%s' is a MySQL reserved keyword."
-msgstr ""
+msgstr "O nome de columna «%s» é unha palabra chave reservada do MySQL."
#: libraries/tbl_columns_definition_form.inc.php:101
msgid ""
@@ -11803,27 +11718,24 @@ msgid "Table name"
msgstr "Nome da táboa"
#: libraries/tbl_columns_definition_form.inc.php:838
-#, fuzzy
#| msgid "Storage Engine"
msgid "Storage Engine:"
-msgstr "Motor de almacenamento"
+msgstr "Motor de almacenamento:"
#: libraries/tbl_columns_definition_form.inc.php:842
-#, fuzzy
#| msgid "Collation"
msgid "Collation:"
-msgstr "Orde alfabética"
+msgstr "Orde alfabética:"
#: libraries/tbl_columns_definition_form.inc.php:876
-#, fuzzy
#| msgid "PARTITION definition"
msgid "PARTITION definition:"
-msgstr "Definición da PARTICIÓN"
+msgstr "Definición da PARTICIÓN:"
#: libraries/tbl_common.inc.php:54
#, php-format
msgid "Tracking of %s is activated."
-msgstr "O seguemento de %s está activado."
+msgstr "O seguimento de %s está activado."
#: libraries/tbl_gis_visualization.lib.php:141
msgid "No data found for GIS visualization."
@@ -11978,10 +11890,9 @@ msgid "Hide/Show Tables with no relation"
msgstr "Agochar/Mostrar as táboas sen relación"
#: pmd_general.php:204
-#, fuzzy
#| msgid "Number of tables"
msgid "Number of tables:"
-msgstr "Número de táboas"
+msgstr "Número de táboas:"
#: pmd_general.php:453
msgid "Delete relation"
@@ -12026,10 +11937,9 @@ msgid "Page creation failed"
msgstr "Fallou a creación da páxina"
#: pmd_pdf.php:112
-#, fuzzy
#| msgid "Page"
msgid "Page:"
-msgstr "Páxina"
+msgstr "Páxina:"
#: pmd_pdf.php:122
msgid "Import from selected page"
@@ -12048,10 +11958,9 @@ msgid "New page name: "
msgstr "Nome da nova páxina: "
#: pmd_pdf.php:140
-#, fuzzy
#| msgid "Export/Import to scale"
msgid "Export/Import to scale:"
-msgstr "Exportar/Importar a escala"
+msgstr "Exportar/Importar a escala:"
#: pmd_pdf.php:145
msgid "recommended"
@@ -12070,10 +11979,9 @@ msgid "FOREIGN KEY relation added"
msgstr "Engadiuse unha relación cunha CHAVE EXTERNA"
#: pmd_relation_new.php:82
-#, fuzzy
#| msgid "Error: Relation not added."
msgid "Error: Relational features are disabled!"
-msgstr "Erro: non se engadiu a relación."
+msgstr "Erro: As funcionalidades relacionais están desactivadas!"
#: pmd_relation_new.php:98
msgid "Internal relation added"
@@ -12138,8 +12046,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o "
-"%sScript de configuración%s."
+"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o %"
+"sScript de configuración%s."
#: prefs_manage.php:308
msgid "Save to browser's storage"
@@ -12166,10 +12074,9 @@ msgid "All"
msgstr "Todo"
#: querywindow.php:154
-#, fuzzy
#| msgid "SQL history"
msgid "SQL history:"
-msgstr "Historial de SQL"
+msgstr "Historial de SQL:"
#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53
#, php-format
@@ -12184,7 +12091,7 @@ msgstr "Ese ficheiro non existe"
#, php-format
msgid "%1$d database has been dropped successfully."
msgid_plural "%1$d databases have been dropped successfully."
-msgstr[0] "Elimináouse %1$d base de datos sen problemas."
+msgstr[0] "Eliminouse %1$d base de datos sen problemas."
msgstr[1] "Elimináronse %1$d bases de datos sen problemas."
#: server_databases.php:182
@@ -12248,8 +12155,8 @@ msgstr ""
#: server_status.php:126
msgid "This MySQL server works as slave in replication process."
msgstr ""
-"Este servidor funciona como escravo nun proceso de replicación"
-"b>."
+"Este servidor funciona como escravo nun proceso de "
+"replicación."
#: server_status.php:140
msgid "Replication status"
@@ -12331,8 +12238,8 @@ msgid ""
"no clearly measurable improvement."
msgstr ""
"A mellor maneira de axustar o sistema sería modificar só unha opción de cada "
-"vez, observar ou someter a base de datos a probas e desfacer o cambio se non "
-"se apreciaron melloras medíbeis."
+"vez, observar ou someter a base de datos a probas e desfacer o cambio se "
+"non se apreciaron melloras medíbeis."
#: server_status_queries.php:67
#, php-format
@@ -12340,22 +12247,19 @@ msgid "Questions since startup: %s"
msgstr "Preguntas desde o inicio: %s"
#: server_status_queries.php:79
-#, fuzzy
#| msgid "per hour"
msgid "per hour:"
-msgstr "por hora"
+msgstr "por hora:"
#: server_status_queries.php:82
-#, fuzzy
#| msgid "per minute"
msgid "per minute:"
-msgstr "por minuto"
+msgstr "por minuto:"
#: server_status_queries.php:86
-#, fuzzy
#| msgid "per second"
msgid "per second:"
-msgstr "por segundo"
+msgstr "por segundo:"
#: server_status_queries.php:119
msgid "Statements"
@@ -12544,8 +12448,8 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-"Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] :-)"
-"[br]A versión estable máis recente é %s, publicada o %s."
+"Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] "
+":-)[br]A versión estable máis recente é %s, publicada o %s."
#: setup/lib/index.lib.php:170
msgid "No newer stable version is available"
@@ -12560,10 +12464,10 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
"Esta %sopción%s debe estar desactivada porque permite que os atacantes "
-"inicien unhasesión por forza bruta a calquera servidor de MySQL. Se o estima "
-"necesario, utilice unha %slistaxe de proxies de confianza%s. Porén, a "
+"inicien unha sesión por forza bruta a calquera servidor de MySQL. Se o "
+"estima necesario, utilice unha %slistaxe de proxies de confianza%s. Porén, a "
"protección baseada en IP podería non ser fiábel se o seu IP pertence a un "
-"ISP ao que haxaconectados miles de usuarios, incluíndoo a vostede."
+"ISP ao que estean conectados miles de usuarios, incluíndoo a vostede."
#: setup/lib/index.lib.php:218
msgid ""
@@ -12625,8 +12529,8 @@ msgid ""
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
"A %svalidez das cookies de identificación%s deberíase reducir a un máximo de "
-"1800 seconds (30 minutos). Os valores superiores a 1800 poden supor un risco "
-"de seguranza, como a suplantación de personalidade."
+"1800 seconds (30 minutos). Os valores superiores a 1800 poden supor un "
+"risco de seguranza, como a suplantación de personalidade."
#: setup/lib/index.lib.php:230
#, php-format
@@ -12646,8 +12550,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Se pensa que é preciso, empregue opcións de protección adicionais - "
-"%sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a "
+"Se pensa que é preciso, empregue opcións de protección adicionais - %"
+"sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a "
"protección baseada no IP pode non ser de fiar se o IP pertence a un ISP ao "
"que estean ligados miles de usuarios, incluído vostede."
@@ -12703,15 +12607,14 @@ msgstr "A chave é curta de máis, debería ter un mínimo de oito caracteres."
#: setup/lib/index.lib.php:349
msgid "Key should contain letters, numbers [em]and[/em] special characters."
-msgstr ""
-"A chave debería conter letras, números [em]e[/em] caracteres especiais."
+msgstr "A chave debería conter letras, números [em]e[/em] caracteres especiais."
#: setup/validate.php:22
msgid "Wrong data"
msgstr "Os datos son incorrectos"
#: sql.php:399
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "This table does not contain a unique column. Features related to the grid "
#| "edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -12719,9 +12622,9 @@ msgid ""
"Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy "
"and Delete features are not available."
msgstr ""
-"Esta táboa non contén ningunha columna única. As funcionalidades "
-"relacionadas coa edición da grecha, caixa de selección, editar, copiar e "
-"eliminar ligazóns poden non funcionar despois de gravar."
+"A táboa %s non contén ningunha columna única. As funcionalidades "
+"relacionadas coa edición da grella, caixa de selección, editar, copiar e "
+"eliminar non están dispoñíbeis."
#: sql.php:452
#, php-format
@@ -12734,11 +12637,11 @@ msgstr "Non hai datos que mostrar"
#: tbl_chart.php:62 tbl_gis_visualization.php:24
msgid "No SQL query was set to fetch data."
-msgstr ""
+msgstr "Non se indicou unha consulta de SQL para obter os datos."
#: tbl_chart.php:124
msgid "No numeric columns present in the table to plot."
-msgstr ""
+msgstr "Na táboa que se quere debuxar non existe ningunha columna numérica."
#: tbl_chart.php:154
msgctxt "Chart type"
@@ -12777,7 +12680,7 @@ msgstr "Liña de tempo"
#: tbl_chart.php:177
msgid "Stacked"
-msgstr "Apiladas"
+msgstr "Amontoado"
#: tbl_chart.php:180
msgid "Chart title"
@@ -12804,10 +12707,9 @@ msgid "Y-Axis label:"
msgstr "Eixo Y:"
#: tbl_chart.php:241
-#, fuzzy
#| msgid "Start row"
msgid "Start row:"
-msgstr "Fila de comezo"
+msgstr "Fila inicial:"
#: tbl_create.php:34
#, php-format
@@ -12826,11 +12728,11 @@ msgstr "Creouse a táboa %1$s."
#: tbl_export.php:27
msgid "View dump (schema) of table"
-msgstr "Ver o esquema do envorcado da táboa"
+msgstr "Ver o esquema do envorcado da táboa"
#: tbl_get_field.php:30
msgid "Invalid table name"
-msgstr "Nome de táboa non válido"
+msgstr "O nome de táboa non é correcto"
#: tbl_indexes.php:71
msgid "The name of the primary key must be \"PRIMARY\"!"
@@ -12867,22 +12769,19 @@ msgid "The table name is empty!"
msgstr "O nome da táboa está baleiro!"
#: tbl_printview.php:65
-#, fuzzy
#| msgid "Showing tables"
msgid "Showing tables:"
-msgstr "A mostrar as táboas"
+msgstr "A mostrar as táboas:"
#: tbl_printview.php:296
-#, fuzzy
#| msgid "Space usage"
msgid "Space usage:"
-msgstr "Uso do espazo"
+msgstr "Uso do espazo:"
#: tbl_printview.php:345
-#, fuzzy
#| msgid "Row Statistics"
msgid "Row Statistics:"
-msgstr "Estatísticas das fileiras"
+msgstr "Estatísticas das fileiras:"
#: tbl_relation.php:279
#, php-format
@@ -12908,28 +12807,24 @@ msgid "Foreign key constraint"
msgstr "Límite das chaves externas"
#: tbl_relation.php:571
-#, fuzzy
#| msgid "Constraints for table"
msgid "Constraint name"
-msgstr "Restricións para a táboa"
+msgstr "Límite do nome"
#: tbl_relation.php:602
-#, fuzzy
#| msgid "No index defined!"
msgid "No index defined! Create one below"
-msgstr "Non se definiu ningún índice!"
+msgstr "Non se definiu ningún índice! Cree un embaixo"
#: tbl_relation.php:617
-#, fuzzy
#| msgid "Choose column to display"
msgid "Choose column to display:"
-msgstr "Escolla a columna que desexe mostrar"
+msgstr "Escolla a columna que desexe mostrar:"
#: tbl_structure.php:125
-#, fuzzy
#| msgid "No rows selected"
msgid "No column selected."
-msgstr "Non hai ningunha fileira seleccionada"
+msgstr "Non seleccionou ningunha columna."
#: tbl_tracking.php:136
#, php-format
@@ -12939,17 +12834,17 @@ msgstr "Informe de seguimento da táboa «%s»"
#: tbl_tracking.php:206
#, php-format
msgid "Version %1$s was created, tracking for %2$s is active."
-msgstr "Creouse a versión %1$s; activouse o seguemento de %2$s."
+msgstr "Creouse a versión %1$s; activouse o seguimento de %2$s."
#: tbl_tracking.php:223
#, php-format
msgid "Tracking for %1$s was deactivated at version %2$s."
-msgstr "Desactivouse o seguemento de %1$s na versión %2$s."
+msgstr "Desactivouse o seguimento de %1$s na versión %2$s."
#: tbl_tracking.php:240
#, php-format
msgid "Tracking for %1$s was activated at version %2$s."
-msgstr "Activouse o seguemento de %1$s na versión %2$s."
+msgstr "Activouse o seguimento de %1$s na versión %2$s."
#: tbl_tracking.php:254
msgid "SQL statements executed."
@@ -13041,7 +12936,7 @@ msgstr "Mostrar as versións"
#: tbl_tracking.php:827
#, php-format
msgid "Deactivate tracking for %s"
-msgstr "Desactivar o seguemento para %s"
+msgstr "Desactivar o seguimento para %s"
#: tbl_tracking.php:833
msgid "Deactivate now"
@@ -13050,7 +12945,7 @@ msgstr "Desactivar agora"
#: tbl_tracking.php:843
#, php-format
msgid "Activate tracking for %s"
-msgstr "Activar o seguemento para %s"
+msgstr "Activar o seguimento para %s"
#: tbl_tracking.php:849
msgid "Activate now"
@@ -13180,8 +13075,8 @@ msgstr ""
#, php-format
msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
-"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s"
-"%%."
+"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s%"
+"%."
#: libraries/advisory_rules.txt:70
msgid "Slow query rate"
@@ -13208,7 +13103,6 @@ msgid "Long query time"
msgstr "Tempo de consultas longas"
#: libraries/advisory_rules.txt:80
-#, fuzzy
#| msgid ""
#| "long_query_time is set to 10 seconds or more, thus only slow queries that "
#| "take above 10 seconds are logged."
@@ -13216,7 +13110,7 @@ msgid ""
"{long_query_time} is set to 10 seconds or more, thus only slow queries that "
"take above 10 seconds are logged."
msgstr ""
-"long_query_time está configurado para 10 segundos ou máis, de xeito que só "
+"{long_query_time} está configurado para 10 segundos ou máis, de xeito que só "
"se rexistran as consultas lentas que tardan máis de 10 segundos."
#: libraries/advisory_rules.txt:81
@@ -13245,7 +13139,7 @@ msgid ""
"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
"help troubleshooting badly performing queries."
msgstr ""
-"Active o rexistro de consultas lentas configurando {long_slow_queries} como "
+"Active o rexistro de consultas lentas configurando {log_slow_queries} como "
"«ON». Con isto detéctanse as consultas con desempeño defectuoso."
#: libraries/advisory_rules.txt:89
@@ -13427,9 +13321,10 @@ msgid ""
"cache, especially if you have multiple slaves."
msgstr ""
"Está a empregar a caché de consultas de MySQL cunha base de datos de "
-"bastante tráfico. Sería boa idea considerar o uso de memcached no canto da "
-"caché de consultas de MySQL, especialmente se ten varios escravos."
+"bastante tráfico. Sería boa idea considerar o uso de memcached no canto da caché de consultas de MySQL, "
+"especialmente se ten varios escravos."
#: libraries/advisory_rules.txt:165
#, php-format
@@ -13547,7 +13442,7 @@ msgid ""
msgstr ""
"Sería boa idea aumentar {query_cache_size}; porén, ha de ter en conta que o "
"exceso de manter a caché é probábel que incremente co seu tamaño, así que "
-"faga isto en incrementos pequenos e vixile os resultados."
+"faga isto en incrementos pequenos e vixíe os resultados."
#: libraries/advisory_rules.txt:193
#, php-format
@@ -13627,7 +13522,6 @@ msgid "Too many sorts are causing temporary tables."
msgstr "Demasiados ordenamentos está causando táboas temporais."
#: libraries/advisory_rules.txt:215 libraries/advisory_rules.txt:222
-#, fuzzy
#| msgid ""
#| "Consider increasing sort_buffer_size and/or read_rnd_buffer_size, "
#| "depending on your system memory limits"
@@ -13635,8 +13529,8 @@ msgid ""
"Consider increasing {sort_buffer_size} and/or {read_rnd_buffer_size}, "
"depending on your system memory limits"
msgstr ""
-"Considere aumentar sort_buffer_size e/ou read_rnd_buffer_size, dependendo "
-"dos límites de memoria do sistema"
+"Considere aumentar {sort_buffer_size} e/ou {read_rnd_buffer_size}, "
+"dependendo dos límites de memoria do sistema"
#: libraries/advisory_rules.txt:216
#, php-format
@@ -13794,10 +13688,9 @@ msgid "tmp_table_size vs. max_heap_table_size"
msgstr "tmp_table_size fronte a max_heap_table_size"
#: libraries/advisory_rules.txt:265
-#, fuzzy
#| msgid "tmp_table_size and max_heap_table_size are not the same."
msgid "{tmp_table_size} and {max_heap_table_size} are not the same."
-msgstr "tmp_table_size e max_heap_table_size non son o mesmo."
+msgstr "{tmp_table_size} e {max_heap_table_size} non son o mesmo."
#: libraries/advisory_rules.txt:266
msgid ""
@@ -13843,8 +13736,8 @@ msgstr ""
"disco, independentemente do valor destas variábeis. Para eliminalas hai que "
"reescribir as consultas para que eviten esas condicións (Nunha táboa "
"temporal: presenza dunha columna tipo BLOB ou TEXT ou presenza dunha columna "
-"maior de 512 bytes), como se menciona no comezo dun artigo do grupo "
+"maior de 512 bytes), como se menciona no comezo dun artigo do grupo "
"Pythian"
#: libraries/advisory_rules.txt:274
@@ -13875,8 +13768,9 @@ msgstr ""
"disco, independentemente do valor destas variábeis. Para eliminalas hai que "
"reescribir as consultas para que eviten esas condicións (Nunha táboa "
"temporal: presenza dunha columna tipo BLOB ou TEXT ou presenza dunha columna "
-"maior de 512 bytes), como se menciona na documentación do MySQL"
+"maior de 512 bytes), como se menciona na documentación do MySQL"
#: libraries/advisory_rules.txt:281
#, php-format
@@ -13934,18 +13828,18 @@ msgstr ""
msgid ""
"max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%"
msgstr ""
-"máximo %% buffer de chaves de MyISM %% empregado: %s%%; este valor debería "
+"máximo %% buffer de chaves de MyISAM %% empregado: %s%%; este valor debería "
"superar o 95%%"
#: libraries/advisory_rules.txt:311
msgid "Percentage of MyISAM key buffer used"
-msgstr "Porcentaxe do buffer de chaves de MySISAM empregado"
+msgstr "Porcentaxe do buffer de chaves de MyISAM empregado"
#: libraries/advisory_rules.txt:316
#, php-format
msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%"
msgstr ""
-"%% buffer de chaves de MyISM %% empregado: %s%%; este valor debería superar "
+"%% buffer de chaves de MyISAM %% empregado: %s%%; este valor debería superar "
"o 95%%"
#: libraries/advisory_rules.txt:318
@@ -14001,7 +13895,6 @@ msgstr ""
"un erro do tipo «Demasiados ficheiros abertos»."
#: libraries/advisory_rules.txt:338 libraries/advisory_rules.txt:345
-#, fuzzy
#| msgid ""
#| "Consider increasing {open_files_limit}, and check the error log when "
#| "restarting after changing open_files_limit."
@@ -14010,7 +13903,7 @@ msgid ""
"restarting after changing {open_files_limit}."
msgstr ""
"Considere aumentar {open_files_limit}, e comprobe o rexistro de erros ao "
-"reiniciar tras cambiar este valor."
+"reiniciar tras cambiar {open_files_limit}."
#: libraries/advisory_rules.txt:339
#, php-format
@@ -14067,7 +13960,7 @@ msgstr ""
#: libraries/advisory_rules.txt:362
msgid "Thread cache"
-msgstr "Caché de fios"
+msgstr "Caché de fíos"
#: libraries/advisory_rules.txt:365
msgid ""
@@ -14133,7 +14026,6 @@ msgid "Slow_launch_threads is above 2s"
msgstr "Slow_launch_threads é superior a 2s"
#: libraries/advisory_rules.txt:387
-#, fuzzy
#| msgid ""
#| "Set slow_launch_time to 1s or 2s to correctly count threads that are slow "
#| "to launch"
@@ -14141,7 +14033,7 @@ msgid ""
"Set {slow_launch_time} to 1s or 2s to correctly count threads that are slow "
"to launch"
msgstr ""
-"Configure slow_launch_time a 1 ou 2 segundos para contar correctamente os "
+"Configure {slow_launch_time} a 1 ou 2 segundos para contar correctamente os "
"fíos que se inician lentamente"
#: libraries/advisory_rules.txt:388
@@ -14154,7 +14046,6 @@ msgid "Percentage of used connections"
msgstr "Porcentaxe de conexións empregadas"
#: libraries/advisory_rules.txt:395
-#, fuzzy
#| msgid ""
#| "The maximum amount of used connections is getting close to the value of "
#| "max_connections."
@@ -14166,7 +14057,6 @@ msgstr ""
"conexións máximas (max_connections)."
#: libraries/advisory_rules.txt:396
-#, fuzzy
#| msgid ""
#| "Increase max_connections, or decrease wait_timeout so that connections "
#| "that do not close database handlers properly get killed sooner. Make sure "
@@ -14176,16 +14066,16 @@ msgid ""
"that do not close database handlers properly get killed sooner. Make sure "
"the code closes database handlers properly."
msgstr ""
-"Aumente max_connections ou reduza wait_timeout para que as conexións que non "
-"fechen os xestores da base de datos axeitadamente se maten antes. Asegúrese "
-"de que o código fecha axeitadamente os xestores da base de datos."
+"Aumente {max_connections} ou {reduza wait_timeout} para que as conexións que "
+"non fechen os xestores da base de datos axeitadamente se maten antes. "
+"Asegúrese de que o código fecha axeitadamente os xestores da base de datos."
#: libraries/advisory_rules.txt:397
#, php-format
msgid ""
"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
msgstr ""
-"max_used_connections está no %s%% de max_connections; debería ser inferior "
+"Max_used_connections está no %s%% de max_connections; debería ser inferior "
"ao 80%%"
#: libraries/advisory_rules.txt:399
@@ -14313,9 +14203,9 @@ msgstr ""
"chega simplemente con cambiar o valor desta variábel. hai que apagar o "
"servidor, retirar os ficheiros de rexistro de InnoDB, configurar o novo "
"valor en my.cnf, iniciar o servidor e a seguir comprobar os rexistros de "
-"erro par ver que todo fose ben. Consulte tamén esta entrada de blogue"
+"erro par ver que todo fose ben. Consulte tamén esta entrada de blogue"
#: libraries/advisory_rules.txt:441
#, php-format
@@ -14350,11 +14240,12 @@ msgstr ""
"Normalmente abonda con configurar {innodb_log_file_size} como o 25%% do "
"tamaño de {innodb_buffer_pool_size}. Un innodb_log_file moi grande enlentece "
"considerabelmente o tempo de recuperación a seguir unha quebra da base de "
-"datos. Consulte tamén este artigo. Hai "
-"que apagar o servidor, retirar os ficheiros de rexistro de InnoDB, "
-"configurar o novo valor en my.cnf, iniciar o servidor, e a seguir comprobar "
-"os rexistros de erro para comprobar que todo fose ben. Consulte tamén este artigo. Hai que apagar o servidor, retirar "
+"os ficheiros de rexistro de InnoDB, configurar o novo valor en my.cnf, "
+"iniciar o servidor, e a seguir comprobar os rexistros de erro para comprobar "
+"que todo fose ben. Consulte tamén esta entrada de blogue"
@@ -14394,8 +14285,9 @@ msgstr ""
"memoria dos demais servizos e as táboas que non sexan de InnoDB e configurar "
"esta variábel en consecuencia. Se se configura demasiado alta, o sistema "
"comezará a gravar no disco, o que reduce o desempeño de maneira "
-"significativa. Consulte tamén este artigo"
+"significativa. Consulte tamén este artigo"
#: libraries/advisory_rules.txt:455
#, php-format
@@ -14415,10 +14307,9 @@ msgid "MyISAM concurrent inserts"
msgstr "Insercións concorrentes de MyISAM"
#: libraries/advisory_rules.txt:462
-#, fuzzy
#| msgid "Enable concurrent_insert by setting it to 1"
msgid "Enable {concurrent_insert} by setting it to 1"
-msgstr "Active concurrent_insert configurándoo como 1"
+msgstr "Active {concurrent_insert} configurándoo como 1"
#: libraries/advisory_rules.txt:463
msgid ""
@@ -14427,8 +14318,9 @@ msgid ""
"refman/5.5/en/concurrent-inserts.html\">MySQL Documentation"
msgstr ""
"Configurar {concurrent_insert} como 1 reduce a contención entre as lecturas "
-"e as escritas nunha táboa dada. Consulte tamén a documentación do MySQL"
+"e as escritas nunha táboa dada. Consulte tamén a documentación do MySQL"
#: libraries/advisory_rules.txt:464
msgid "concurrent_insert is set to 0"
diff --git a/po/vls.po b/po/vls.po
new file mode 100644
index 0000000000..43f1a201e2
--- /dev/null
+++ b/po/vls.po
@@ -0,0 +1,12940 @@
+# phpMyAdmin translation.
+# Copyright (C) 2003 - 2013 phpMyAdmin devel team
+# This file is distributed under the same license as the phpMyAdmin package.
+# Automatically generated, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpMyAdmin 4.1-dev\n"
+"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"POT-Creation-Date: 2013-07-12 16:06+0200\n"
+"PO-Revision-Date: 2013-07-25 14:40+0200\n"
+"Last-Translator: saurabh chikate CREATE TABLE options:"
+msgstr ""
+
+#: libraries/config/messages.inc.php:121
+msgid "Creation/Update/Check dates"
+msgstr ""
+
+#: libraries/config/messages.inc.php:122
+msgid "Use delayed inserts"
+msgstr ""
+
+#: libraries/config/messages.inc.php:123
+#: libraries/plugins/export/ExportSql.class.php:141
+msgid "Disable foreign key checks"
+msgstr ""
+
+#: libraries/config/messages.inc.php:124 libraries/config/messages.inc.php:125
+#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:133
+#: libraries/operations.lib.php:206 libraries/operations.lib.php:1052
+#, php-format
+msgid "Add %s"
+msgstr ""
+
+#: libraries/config/messages.inc.php:126
+msgid "Use hexadecimal for BLOB"
+msgstr ""
+
+#: libraries/config/messages.inc.php:128
+msgid "Use ignore inserts"
+msgstr ""
+
+#: libraries/config/messages.inc.php:130
+msgid "Syntax to use when inserting data"
+msgstr ""
+
+#: libraries/config/messages.inc.php:131
+#: libraries/plugins/export/ExportSql.class.php:382
+msgid "Maximal length of created query"
+msgstr ""
+
+#: libraries/config/messages.inc.php:136
+msgid "Export type"
+msgstr ""
+
+#: libraries/config/messages.inc.php:137
+#: libraries/plugins/export/ExportSql.class.php:128
+msgid "Enclose export in a transaction"
+msgstr ""
+
+#: libraries/config/messages.inc.php:138
+msgid "Export time in UTC"
+msgstr ""
+
+#: libraries/config/messages.inc.php:146
+msgid "Force secured connection while using phpMyAdmin"
+msgstr ""
+
+#: libraries/config/messages.inc.php:147
+msgid "Force SSL connection"
+msgstr ""
+
+#: libraries/config/messages.inc.php:148
+msgid ""
+"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
+"the referenced data, [kbd]id[/kbd] is the key value"
+msgstr ""
+
+#: libraries/config/messages.inc.php:149
+msgid "Foreign key dropdown order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:150
+msgid "A dropdown will be used if fewer items are present"
+msgstr ""
+
+#: libraries/config/messages.inc.php:151
+msgid "Foreign key limit"
+msgstr ""
+
+#: libraries/config/messages.inc.php:152
+msgid "Browse mode"
+msgstr ""
+
+#: libraries/config/messages.inc.php:153
+msgid "Customize browse mode"
+msgstr ""
+
+#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157
+#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185
+#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215
+#: libraries/config/messages.inc.php:231
+msgid "Customize default options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:246
+#: libraries/config/setup.forms.php:319
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216
+msgid "CSV"
+msgstr ""
+
+#: libraries/config/messages.inc.php:158
+msgid "Developer"
+msgstr ""
+
+#: libraries/config/messages.inc.php:159
+msgid "Settings for phpMyAdmin developers"
+msgstr ""
+
+#: libraries/config/messages.inc.php:160
+msgid "Edit mode"
+msgstr ""
+
+#: libraries/config/messages.inc.php:161
+msgid "Customize edit mode"
+msgstr ""
+
+#: libraries/config/messages.inc.php:163
+msgid "Export defaults"
+msgstr ""
+
+#: libraries/config/messages.inc.php:164
+msgid "Customize default export options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207
+#: setup/frames/menu.inc.php:17
+msgid "Features"
+msgstr ""
+
+#: libraries/config/messages.inc.php:166
+msgid "General"
+msgstr ""
+
+#: libraries/config/messages.inc.php:167
+msgid "Set some commonly used options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:169
+msgid "Import defaults"
+msgstr ""
+
+#: libraries/config/messages.inc.php:170
+msgid "Customize default common import options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:171
+msgid "Import / export"
+msgstr ""
+
+#: libraries/config/messages.inc.php:172
+msgid "Set import and export directories and compression options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:173
+msgid "LaTeX"
+msgstr ""
+
+#: libraries/config/messages.inc.php:176
+msgid "Databases display options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:19
+msgid "Navigation panel"
+msgstr ""
+
+#: libraries/config/messages.inc.php:178
+msgid "Customize appearance of the navigation panel"
+msgstr ""
+
+#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:42
+#: setup/frames/index.inc.php:117
+msgid "Servers"
+msgstr ""
+
+#: libraries/config/messages.inc.php:180
+msgid "Servers display options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:182
+msgid "Tables display options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:20
+msgid "Main panel"
+msgstr ""
+
+#: libraries/config/messages.inc.php:184
+msgid "Microsoft Office"
+msgstr ""
+
+#: libraries/config/messages.inc.php:188
+msgid "Other core settings"
+msgstr ""
+
+#: libraries/config/messages.inc.php:189
+msgid "Settings that didn't fit anywhere else"
+msgstr ""
+
+#: libraries/config/messages.inc.php:190
+msgid "Page titles"
+msgstr ""
+
+#: libraries/config/messages.inc.php:191
+msgid ""
+"Specify browser's title bar text. Refer to "
+"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
+"to get special values."
+msgstr ""
+
+#: libraries/config/messages.inc.php:192
+#: libraries/navigation/NavigationHeader.class.php:204
+msgid "Query window"
+msgstr ""
+
+#: libraries/config/messages.inc.php:193
+msgid "Customize query window options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:194
+msgid "Security"
+msgstr ""
+
+#: libraries/config/messages.inc.php:195
+msgid ""
+"Please note that phpMyAdmin is just a user interface and its features do not "
+"limit MySQL"
+msgstr ""
+
+#: libraries/config/messages.inc.php:196
+msgid "Basic settings"
+msgstr ""
+
+#: libraries/config/messages.inc.php:197
+msgid "Authentication"
+msgstr ""
+
+#: libraries/config/messages.inc.php:198
+msgid "Authentication settings"
+msgstr ""
+
+#: libraries/config/messages.inc.php:199
+msgid "Server configuration"
+msgstr ""
+
+#: libraries/config/messages.inc.php:200
+msgid ""
+"Advanced server configuration, do not change these options unless you know "
+"what they are for"
+msgstr ""
+
+#: libraries/config/messages.inc.php:201
+msgid "Enter server connection parameters"
+msgstr ""
+
+#: libraries/config/messages.inc.php:202
+msgid "Configuration storage"
+msgstr ""
+
+#: libraries/config/messages.inc.php:203
+msgid ""
+"Configure phpMyAdmin configuration storage to gain access to additional "
+"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
+"documentation"
+msgstr ""
+
+#: libraries/config/messages.inc.php:204
+msgid "Changes tracking"
+msgstr ""
+
+#: libraries/config/messages.inc.php:205
+msgid ""
+"Tracking of changes made in database. Requires the phpMyAdmin configuration "
+"storage."
+msgstr ""
+
+#: libraries/config/messages.inc.php:206
+msgid "Customize export options"
+msgstr ""
+
+#: libraries/config/messages.inc.php:208
+msgid "Customize import defaults"
+msgstr ""
+
+#: libraries/config/messages.inc.php:209
+msgid "Customize navigation panel"
+msgstr ""
+
+#: libraries/config/messages.inc.php:210
+msgid "Customize main panel"
+msgstr ""
+
+#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216
+#: setup/frames/menu.inc.php:18
+msgid "SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:213
+msgid "SQL Query box"
+msgstr ""
+
+#: libraries/config/messages.inc.php:214
+msgid "Customize links shown in SQL Query boxes"
+msgstr ""
+
+#: libraries/config/messages.inc.php:217
+msgid "SQL queries settings"
+msgstr ""
+
+#: libraries/config/messages.inc.php:218
+msgid "SQL Validator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:219
+msgid ""
+"If you wish to use the SQL Validator service, you should be aware that "
+"[strong]all SQL statements are stored anonymously for statistical purposes[/"
+"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
+"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:220
+msgid "Startup"
+msgstr ""
+
+#: libraries/config/messages.inc.php:221
+msgid "Customize startup page"
+msgstr ""
+
+#: libraries/config/messages.inc.php:222
+msgid "Database structure"
+msgstr ""
+
+#: libraries/config/messages.inc.php:223
+msgid "Choose which details to show in the database structure (list of tables)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:224
+msgid "Table structure"
+msgstr ""
+
+#: libraries/config/messages.inc.php:225
+msgid "Settings for the table structure (list of columns)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:226
+msgid "Tabs"
+msgstr ""
+
+#: libraries/config/messages.inc.php:227
+msgid "Choose how you want tabs to work"
+msgstr ""
+
+#: libraries/config/messages.inc.php:228
+msgid "Text fields"
+msgstr ""
+
+#: libraries/config/messages.inc.php:229
+msgid "Customize text input fields"
+msgstr ""
+
+#: libraries/config/messages.inc.php:230
+msgid "Texy! text"
+msgstr ""
+
+#: libraries/config/messages.inc.php:232
+msgid "Warnings"
+msgstr ""
+
+#: libraries/config/messages.inc.php:233
+msgid "Disable some of the warnings shown by phpMyAdmin"
+msgstr ""
+
+#: libraries/config/messages.inc.php:234
+msgid ""
+"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
+"and export operations"
+msgstr ""
+
+#: libraries/config/messages.inc.php:235
+msgid "GZip"
+msgstr ""
+
+#: libraries/config/messages.inc.php:236
+msgid "Extra parameters for iconv"
+msgstr ""
+
+#: libraries/config/messages.inc.php:237
+msgid ""
+"If enabled, phpMyAdmin continues computing multiple-statement queries even "
+"if one of the queries failed"
+msgstr ""
+
+#: libraries/config/messages.inc.php:238
+msgid "Ignore multiple statement errors"
+msgstr ""
+
+#: libraries/config/messages.inc.php:239
+msgid ""
+"Allow interrupt of import in case script detects it is close to time limit. "
+"This might be a good way to import large files, however it can break "
+"transactions."
+msgstr ""
+
+#: libraries/config/messages.inc.php:240
+msgid "Partial import: allow interrupt"
+msgstr ""
+
+#: libraries/config/messages.inc.php:245 libraries/config/messages.inc.php:252
+#: libraries/plugins/import/ImportCsv.class.php:89
+#: libraries/plugins/import/ImportLdi.class.php:71
+msgid "Do not abort on INSERT error"
+msgstr ""
+
+#: libraries/config/messages.inc.php:246 libraries/config/messages.inc.php:254
+#: libraries/plugins/import/AbstractImportCsv.class.php:55
+msgid "Replace table data with file"
+msgstr ""
+
+#: libraries/config/messages.inc.php:248
+msgid ""
+"Default format; be aware that this list depends on location (database, "
+"table) and only SQL is always available"
+msgstr ""
+
+#: libraries/config/messages.inc.php:249
+msgid "Format of imported file"
+msgstr ""
+
+#: libraries/config/messages.inc.php:253
+#: libraries/plugins/import/ImportLdi.class.php:76
+msgid "Use LOCAL keyword"
+msgstr ""
+
+#: libraries/config/messages.inc.php:256 libraries/config/messages.inc.php:264
+#: libraries/config/messages.inc.php:265
+msgid "Column names in first row"
+msgstr ""
+
+#: libraries/config/messages.inc.php:257
+#: libraries/plugins/import/ImportOds.class.php:82
+msgid "Do not import empty rows"
+msgstr ""
+
+#: libraries/config/messages.inc.php:258
+msgid "Import currencies ($5.00 to 5.00)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:259
+msgid "Import percentages as proper decimals (12.00% to .12)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:260
+msgid "Number of queries to skip from start"
+msgstr ""
+
+#: libraries/config/messages.inc.php:261
+msgid "Partial import: skip queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:263
+msgid "Do not use AUTO_INCREMENT for zero values"
+msgstr ""
+
+#: libraries/config/messages.inc.php:266
+msgid "Initial state for sliders"
+msgstr ""
+
+#: libraries/config/messages.inc.php:267
+msgid "How many rows can be inserted at one time"
+msgstr ""
+
+#: libraries/config/messages.inc.php:268
+msgid "Number of inserted rows"
+msgstr ""
+
+#: libraries/config/messages.inc.php:269
+msgid ""
+"Maximum number of characters shown in any non-numeric column on browse view"
+msgstr ""
+
+#: libraries/config/messages.inc.php:270
+msgid "Limit column characters"
+msgstr ""
+
+#: libraries/config/messages.inc.php:271
+msgid ""
+"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
+"only occurs for the current server. Setting this to FALSE makes it easy to "
+"forget to log out from other servers when connected to multiple servers."
+msgstr ""
+
+#: libraries/config/messages.inc.php:272
+msgid "Delete all cookies on logout"
+msgstr ""
+
+#: libraries/config/messages.inc.php:273
+msgid ""
+"Define whether the previous login should be recalled or not in cookie "
+"authentication mode"
+msgstr ""
+
+#: libraries/config/messages.inc.php:274
+msgid "Recall user name"
+msgstr ""
+
+#: libraries/config/messages.inc.php:275
+msgid ""
+"Defines how long (in seconds) a login cookie should be stored in browser. "
+"The default of 0 means that it will be kept for the existing session only, "
+"and will be deleted as soon as you close the browser window. This is "
+"recommended for non-trusted environments."
+msgstr ""
+
+#: libraries/config/messages.inc.php:276
+msgid "Login cookie store"
+msgstr ""
+
+#: libraries/config/messages.inc.php:277
+msgid "Define how long (in seconds) a login cookie is valid"
+msgstr ""
+
+#: libraries/config/messages.inc.php:278
+msgid "Login cookie validity"
+msgstr ""
+
+#: libraries/config/messages.inc.php:279
+msgid "Double size of textarea for LONGTEXT columns"
+msgstr ""
+
+#: libraries/config/messages.inc.php:280
+msgid "Bigger textarea for LONGTEXT"
+msgstr ""
+
+#: libraries/config/messages.inc.php:281
+msgid "Maximum number of characters used when a SQL query is displayed"
+msgstr ""
+
+#: libraries/config/messages.inc.php:282
+msgid "Maximum displayed SQL length"
+msgstr ""
+
+#: libraries/config/messages.inc.php:283 libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:346
+msgid "Users cannot set a higher value"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
+msgid "Maximum number of databases displayed in database list"
+msgstr ""
+
+#: libraries/config/messages.inc.php:285
+msgid "Maximum databases"
+msgstr ""
+
+#: libraries/config/messages.inc.php:286
+msgid ""
+"The number of items that can be displayed on each page of the navigation tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:287
+msgid "Maximum items in branch"
+msgstr ""
+
+#: libraries/config/messages.inc.php:288
+msgid ""
+"Number of rows displayed when browsing a result set. If the result set "
+"contains more rows, "Previous" and "Next" links will be "
+"shown."
+msgstr ""
+
+#: libraries/config/messages.inc.php:289
+msgid "Maximum number of rows to display"
+msgstr ""
+
+#: libraries/config/messages.inc.php:291
+msgid "Maximum number of tables displayed in table list"
+msgstr ""
+
+#: libraries/config/messages.inc.php:292
+msgid "Maximum tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:293
+msgid ""
+"Disable the default warning that is displayed if mcrypt is missing for "
+"cookie authentication"
+msgstr ""
+
+#: libraries/config/messages.inc.php:294
+msgid "mcrypt warning"
+msgstr ""
+
+#: libraries/config/messages.inc.php:295
+msgid ""
+"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
+"([kbd]0[/kbd] for no limit)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:296
+msgid "Memory limit"
+msgstr ""
+
+#: libraries/config/messages.inc.php:297
+msgid "Show logo in navigation panel"
+msgstr ""
+
+#: libraries/config/messages.inc.php:298
+msgid "Display logo"
+msgstr ""
+
+#: libraries/config/messages.inc.php:299
+msgid "URL where logo in the navigation panel will point to"
+msgstr ""
+
+#: libraries/config/messages.inc.php:300
+msgid "Logo link URL"
+msgstr ""
+
+#: libraries/config/messages.inc.php:301
+msgid ""
+"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
+"([kbd]new[/kbd])"
+msgstr ""
+
+#: libraries/config/messages.inc.php:302
+msgid "Logo link target"
+msgstr ""
+
+#: libraries/config/messages.inc.php:303
+msgid "Display server choice at the top of the navigation panel"
+msgstr ""
+
+#: libraries/config/messages.inc.php:304
+msgid "Display servers selection"
+msgstr ""
+
+#: libraries/config/messages.inc.php:305
+msgid "Target for quick access icon"
+msgstr ""
+
+#: libraries/config/messages.inc.php:306
+msgid ""
+"Defines the minimum number of items (tables, views, routines and events) to "
+"display a filter box."
+msgstr ""
+
+#: libraries/config/messages.inc.php:307
+msgid "Minimum number of items to display the filter box"
+msgstr ""
+
+#: libraries/config/messages.inc.php:308
+msgid "Minimum number of databases to display the database filter box"
+msgstr ""
+
+#: libraries/config/messages.inc.php:309
+msgid ""
+"Group items in the navigation tree (determined by the separator defined "
+"below)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:310
+msgid "Group items in the tree"
+msgstr ""
+
+#: libraries/config/messages.inc.php:311
+msgid "String that separates databases into different tree levels"
+msgstr ""
+
+#: libraries/config/messages.inc.php:312
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:313
+msgid "String that separates tables into different tree levels"
+msgstr ""
+
+#: libraries/config/messages.inc.php:314
+msgid "Table tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:315
+msgid "Maximum table tree depth"
+msgstr ""
+
+#: libraries/config/messages.inc.php:316
+msgid "Highlight server under the mouse cursor"
+msgstr ""
+
+#: libraries/config/messages.inc.php:317
+msgid "Enable highlighting"
+msgstr ""
+
+#: libraries/config/messages.inc.php:318
+msgid "Maximum number of recently used tables; set 0 to disable"
+msgstr ""
+
+#: libraries/config/messages.inc.php:319
+msgid "Recently used tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:320
+msgid "These are Edit, Copy and Delete links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:321
+msgid "Where to show the table row links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:322
+msgid "Use natural order for sorting table and database names"
+msgstr ""
+
+#: libraries/config/messages.inc.php:323
+msgid "Natural order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:324 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:340
+msgid "Use only icons, only text or both"
+msgstr ""
+
+#: libraries/config/messages.inc.php:325
+msgid "Table navigation bar"
+msgstr ""
+
+#: libraries/config/messages.inc.php:326
+msgid "use GZip output buffering for increased speed in HTTP transfers"
+msgstr ""
+
+#: libraries/config/messages.inc.php:327
+msgid "GZip output buffering"
+msgstr ""
+
+#: libraries/config/messages.inc.php:328
+msgid ""
+"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
+"DATETIME and TIMESTAMP, ascending order otherwise"
+msgstr ""
+
+#: libraries/config/messages.inc.php:329
+msgid "Default sorting order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:330
+msgid "Use persistent connections to MySQL databases"
+msgstr ""
+
+#: libraries/config/messages.inc.php:331
+msgid "Persistent connections"
+msgstr ""
+
+#: libraries/config/messages.inc.php:332
+msgid ""
+"Disable the default warning that is displayed on the database details "
+"Structure page if any of the required tables for the phpMyAdmin "
+"configuration storage could not be found"
+msgstr ""
+
+#: libraries/config/messages.inc.php:333
+msgid "Missing phpMyAdmin configuration storage tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:334
+msgid ""
+"Disable the default warning that is displayed if a difference between the "
+"MySQL library and server is detected"
+msgstr ""
+
+#: libraries/config/messages.inc.php:335
+msgid "Server/library difference warning"
+msgstr ""
+
+#: libraries/config/messages.inc.php:336
+msgid ""
+"Disable the default warning that is displayed on the Structure page if "
+"column names in a table are reserved MySQL words"
+msgstr ""
+
+#: libraries/config/messages.inc.php:337
+msgid "MySQL reserved word warning"
+msgstr ""
+
+#: libraries/config/messages.inc.php:339
+msgid "How to display the menu tabs"
+msgstr ""
+
+#: libraries/config/messages.inc.php:341
+msgid "How to display various action links"
+msgstr ""
+
+#: libraries/config/messages.inc.php:342
+msgid "Disallow BLOB and BINARY columns from editing"
+msgstr ""
+
+#: libraries/config/messages.inc.php:343
+msgid "Protect binary columns"
+msgstr ""
+
+#: libraries/config/messages.inc.php:344
+msgid ""
+"Enable if you want DB-based query history (requires phpMyAdmin configuration "
+"storage). If disabled, this utilizes JS-routines to display query history "
+"(lost by window close)."
+msgstr ""
+
+#: libraries/config/messages.inc.php:345
+msgid "Permanent query history"
+msgstr ""
+
+#: libraries/config/messages.inc.php:347
+msgid "How many queries are kept in history"
+msgstr ""
+
+#: libraries/config/messages.inc.php:348
+msgid "Query history length"
+msgstr ""
+
+#: libraries/config/messages.inc.php:349
+msgid "Tab displayed when opening a new query window"
+msgstr ""
+
+#: libraries/config/messages.inc.php:350
+msgid "Default query window tab"
+msgstr ""
+
+#: libraries/config/messages.inc.php:351
+msgid "Query window height (in pixels)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:352
+msgid "Query window height"
+msgstr ""
+
+#: libraries/config/messages.inc.php:353
+msgid "Query window width (in pixels)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:354
+msgid "Query window width"
+msgstr ""
+
+#: libraries/config/messages.inc.php:355
+msgid "Select which functions will be used for character set conversion"
+msgstr ""
+
+#: libraries/config/messages.inc.php:356
+msgid "Recoding engine"
+msgstr ""
+
+#: libraries/config/messages.inc.php:357
+msgid "When browsing tables, the sorting of each table is remembered"
+msgstr ""
+
+#: libraries/config/messages.inc.php:358
+msgid "Remember table's sorting"
+msgstr ""
+
+#: libraries/config/messages.inc.php:359
+msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
+msgstr ""
+
+#: libraries/config/messages.inc.php:360
+msgid "Repeat headers"
+msgstr ""
+
+#: libraries/config/messages.inc.php:362
+msgid "Grid editing: trigger action"
+msgstr ""
+
+#: libraries/config/messages.inc.php:363
+msgid "Grid editing: save all edited cells at once"
+msgstr ""
+
+#: libraries/config/messages.inc.php:364
+msgid "Directory where exports can be saved on server"
+msgstr ""
+
+#: libraries/config/messages.inc.php:365
+msgid "Save directory"
+msgstr ""
+
+#: libraries/config/messages.inc.php:366
+msgid "Leave blank if not used"
+msgstr ""
+
+#: libraries/config/messages.inc.php:367
+msgid "Host authorization order"
+msgstr ""
+
+#: libraries/config/messages.inc.php:368
+msgid "Leave blank for defaults"
+msgstr ""
+
+#: libraries/config/messages.inc.php:369
+msgid "Host authorization rules"
+msgstr ""
+
+#: libraries/config/messages.inc.php:370
+msgid "Allow logins without a password"
+msgstr ""
+
+#: libraries/config/messages.inc.php:371
+msgid "Allow root login"
+msgstr ""
+
+#: libraries/config/messages.inc.php:372
+msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
+msgstr ""
+
+#: libraries/config/messages.inc.php:373
+msgid "HTTP Realm"
+msgstr ""
+
+#: libraries/config/messages.inc.php:374
+msgid ""
+"The path for the config file for [a@http://swekey.com]SweKey hardware "
+"authentication[/a] (not located in your document root; suggested: /etc/"
+"swekey.conf)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:375
+msgid "SweKey config file"
+msgstr ""
+
+#: libraries/config/messages.inc.php:376
+msgid "Authentication method to use"
+msgstr ""
+
+#: libraries/config/messages.inc.php:377 setup/frames/index.inc.php:136
+msgid "Authentication type"
+msgstr ""
+
+#: libraries/config/messages.inc.php:378
+msgid ""
+"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
+"support, suggested: [kbd]pma__bookmark[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:379
+msgid "Bookmark table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:380
+msgid ""
+"Leave blank for no column comments/mime types, suggested: "
+"[kbd]pma__column_info[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:381
+msgid "Column information table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:382
+msgid "Compress connection to MySQL server"
+msgstr ""
+
+#: libraries/config/messages.inc.php:383
+msgid "Compress connection"
+msgstr ""
+
+#: libraries/config/messages.inc.php:384
+msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
+msgstr ""
+
+#: libraries/config/messages.inc.php:385
+msgid "Connection type"
+msgstr ""
+
+#: libraries/config/messages.inc.php:386
+msgid "Control user password"
+msgstr ""
+
+#: libraries/config/messages.inc.php:387
+msgid ""
+"A special MySQL user configured with limited permissions, more information "
+"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:388
+msgid "Control user"
+msgstr ""
+
+#: libraries/config/messages.inc.php:389
+msgid ""
+"An alternate host to hold the configuration storage; leave blank to use the "
+"already defined host"
+msgstr ""
+
+#: libraries/config/messages.inc.php:390
+msgid "Control host"
+msgstr ""
+
+#: libraries/config/messages.inc.php:391
+msgid ""
+"An alternate port to connect to the host that holds the configuration "
+"storage; leave blank to use the default port, or the already defined port, "
+"if the controlhost equals host"
+msgstr ""
+
+#: libraries/config/messages.inc.php:392
+msgid "Control port"
+msgstr ""
+
+#: libraries/config/messages.inc.php:393
+msgid ""
+"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
+"kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:394
+msgid "Designer table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:395
+msgid ""
+"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
+"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:396
+msgid "Disable use of INFORMATION_SCHEMA"
+msgstr ""
+
+#: libraries/config/messages.inc.php:397
+msgid "What PHP extension to use; you should use mysqli if supported"
+msgstr ""
+
+#: libraries/config/messages.inc.php:398
+msgid "PHP extension to use"
+msgstr ""
+
+#: libraries/config/messages.inc.php:399
+msgid "Hide databases matching regular expression (PCRE)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:400
+msgid "Hide databases"
+msgstr ""
+
+#: libraries/config/messages.inc.php:401
+msgid ""
+"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
+"kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:402
+msgid "SQL query history table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:403
+msgid "Hostname where MySQL server is running"
+msgstr ""
+
+#: libraries/config/messages.inc.php:404
+msgid "Server hostname"
+msgstr ""
+
+#: libraries/config/messages.inc.php:405
+msgid "Logout URL"
+msgstr ""
+
+#: libraries/config/messages.inc.php:406
+msgid ""
+"Limits number of table preferences which are stored in database, the oldest "
+"records are automatically removed"
+msgstr ""
+
+#: libraries/config/messages.inc.php:407
+msgid "Maximal number of table preferences to store"
+msgstr ""
+
+#: libraries/config/messages.inc.php:408
+msgid "Try to connect without password"
+msgstr ""
+
+#: libraries/config/messages.inc.php:409
+msgid "Connect without password"
+msgstr ""
+
+#: libraries/config/messages.inc.php:410
+msgid ""
+"You can use MySQL wildcard characters (% and _), escape them if you want to "
+"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
+"[kbd]'my_db'[/kbd]."
+msgstr ""
+
+#: libraries/config/messages.inc.php:411
+msgid "Show only listed databases"
+msgstr ""
+
+#: libraries/config/messages.inc.php:412 libraries/config/messages.inc.php:453
+msgid "Leave empty if not using config auth"
+msgstr ""
+
+#: libraries/config/messages.inc.php:413
+msgid "Password for config auth"
+msgstr ""
+
+#: libraries/config/messages.inc.php:414
+msgid ""
+"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:415
+msgid "PDF schema: pages table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:416
+msgid ""
+"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
+"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
+"no support. Suggested: [kbd]phpmyadmin[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:417
+msgid "Database name"
+msgstr ""
+
+#: libraries/config/messages.inc.php:418
+msgid "Port on which MySQL server is listening, leave empty for default"
+msgstr ""
+
+#: libraries/config/messages.inc.php:419
+msgid "Server port"
+msgstr ""
+
+#: libraries/config/messages.inc.php:420
+msgid ""
+"Leave blank for no \"persistent\" recently used tables across sessions, "
+"suggested: [kbd]pma__recent[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:421
+msgid "Recently used table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:422
+msgid ""
+"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
+"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:423
+msgid "Relation table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:424
+msgid "SQL command to fetch available databases"
+msgstr ""
+
+#: libraries/config/messages.inc.php:425
+msgid "SHOW DATABASES command"
+msgstr ""
+
+#: libraries/config/messages.inc.php:426
+msgid ""
+"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
+"types[/a] for an example"
+msgstr ""
+
+#: libraries/config/messages.inc.php:427
+msgid "Signon session name"
+msgstr ""
+
+#: libraries/config/messages.inc.php:428
+msgid "Signon URL"
+msgstr ""
+
+#: libraries/config/messages.inc.php:429
+msgid "Socket on which MySQL server is listening, leave empty for default"
+msgstr ""
+
+#: libraries/config/messages.inc.php:430
+msgid "Server socket"
+msgstr ""
+
+#: libraries/config/messages.inc.php:431
+msgid "Enable SSL for connection to MySQL server"
+msgstr ""
+
+#: libraries/config/messages.inc.php:432
+msgid "Use SSL"
+msgstr ""
+
+#: libraries/config/messages.inc.php:433
+msgid ""
+"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
+"kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:434
+msgid "PDF schema: table coordinates"
+msgstr ""
+
+#: libraries/config/messages.inc.php:435
+msgid ""
+"Table to describe the display columns, leave blank for no support; "
+"suggested: [kbd]pma__table_info[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:436
+msgid "Display columns table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:437
+msgid ""
+"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
+"suggested: [kbd]pma__table_uiprefs[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:438
+msgid "UI preferences table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:439
+msgid ""
+"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
+"the log when creating a database."
+msgstr ""
+
+#: libraries/config/messages.inc.php:440
+msgid "Add DROP DATABASE"
+msgstr ""
+
+#: libraries/config/messages.inc.php:441
+msgid ""
+"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
+"log when creating a table."
+msgstr ""
+
+#: libraries/config/messages.inc.php:442
+msgid "Add DROP TABLE"
+msgstr ""
+
+#: libraries/config/messages.inc.php:443
+msgid ""
+"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
+"log when creating a view."
+msgstr ""
+
+#: libraries/config/messages.inc.php:444
+msgid "Add DROP VIEW"
+msgstr ""
+
+#: libraries/config/messages.inc.php:445
+msgid "Defines the list of statements the auto-creation uses for new versions."
+msgstr ""
+
+#: libraries/config/messages.inc.php:446
+msgid "Statements to track"
+msgstr ""
+
+#: libraries/config/messages.inc.php:447
+msgid ""
+"Leave blank for no SQL query tracking support, suggested: "
+"[kbd]pma__tracking[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:448
+msgid "SQL query tracking table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:449
+msgid ""
+"Whether the tracking mechanism creates versions for tables and views "
+"automatically."
+msgstr ""
+
+#: libraries/config/messages.inc.php:450
+msgid "Automatically create versions"
+msgstr ""
+
+#: libraries/config/messages.inc.php:451
+msgid ""
+"Leave blank for no user preferences storage in database, suggested: "
+"[kbd]pma__userconfig[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:452
+msgid "User preferences storage table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:454
+msgid "User for config auth"
+msgstr ""
+
+#: libraries/config/messages.inc.php:455
+msgid ""
+"A user-friendly description of this server. Leave blank to display the "
+"hostname instead."
+msgstr ""
+
+#: libraries/config/messages.inc.php:456
+msgid "Verbose name of this server"
+msgstr ""
+
+#: libraries/config/messages.inc.php:457
+msgid "Whether a user should be displayed a "show all (rows)" button"
+msgstr ""
+
+#: libraries/config/messages.inc.php:458
+msgid "Allow to display all the rows"
+msgstr ""
+
+#: libraries/config/messages.inc.php:459
+msgid ""
+"Please note that enabling this has no effect with [kbd]config[/kbd] "
+"authentication mode because the password is hard coded in the configuration "
+"file; this does not limit the ability to execute the same command directly"
+msgstr ""
+
+#: libraries/config/messages.inc.php:460
+msgid "Show password change form"
+msgstr ""
+
+#: libraries/config/messages.inc.php:461
+msgid "Show create database form"
+msgstr ""
+
+#: libraries/config/messages.inc.php:462
+msgid "Show or hide a column displaying the Creation timestamp for all tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:463
+msgid "Show Creation timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:464
+msgid ""
+"Show or hide a column displaying the Last update timestamp for all tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:465
+msgid "Show Last update timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:466
+msgid ""
+"Show or hide a column displaying the Last check timestamp for all tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:467
+msgid "Show Last check timestamp"
+msgstr ""
+
+#: libraries/config/messages.inc.php:468
+msgid ""
+"Defines whether or not type display direction option is shown when browsing "
+"a table"
+msgstr ""
+
+#: libraries/config/messages.inc.php:469
+msgid "Show display direction"
+msgstr ""
+
+#: libraries/config/messages.inc.php:470
+msgid ""
+"Defines whether or not type fields should be initially displayed in edit/"
+"insert mode"
+msgstr ""
+
+#: libraries/config/messages.inc.php:471
+msgid "Show field types"
+msgstr ""
+
+#: libraries/config/messages.inc.php:472
+msgid "Display the function fields in edit/insert mode"
+msgstr ""
+
+#: libraries/config/messages.inc.php:473
+msgid "Show function fields"
+msgstr ""
+
+#: libraries/config/messages.inc.php:474
+msgid "Whether to show hint or not"
+msgstr ""
+
+#: libraries/config/messages.inc.php:475
+msgid "Show hint"
+msgstr ""
+
+#: libraries/config/messages.inc.php:476
+msgid ""
+"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
+"output"
+msgstr ""
+
+#: libraries/config/messages.inc.php:477
+msgid "Show phpinfo() link"
+msgstr ""
+
+#: libraries/config/messages.inc.php:478
+msgid "Show detailed MySQL server information"
+msgstr ""
+
+#: libraries/config/messages.inc.php:479
+msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
+msgstr ""
+
+#: libraries/config/messages.inc.php:480
+msgid "Show SQL queries"
+msgstr ""
+
+#: libraries/config/messages.inc.php:481
+msgid ""
+"Defines whether the query box should stay on-screen after its submission"
+msgstr ""
+
+#: libraries/config/messages.inc.php:482 libraries/sql_query_form.lib.php:377
+msgid "Retain query box"
+msgstr ""
+
+#: libraries/config/messages.inc.php:483
+msgid "Allow to display database and table statistics (eg. space usage)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:484
+msgid "Show statistics"
+msgstr ""
+
+#: libraries/config/messages.inc.php:485
+msgid "Display table comments in tooltips"
+msgstr ""
+
+#: libraries/config/messages.inc.php:486
+msgid ""
+"Mark used tables and make it possible to show databases with locked tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:487
+msgid "Skip locked tables"
+msgstr ""
+
+#: libraries/config/messages.inc.php:492
+msgid "Requires SQL Validator to be enabled"
+msgstr ""
+
+#: libraries/config/messages.inc.php:494 libraries/replication_gui.lib.php:400
+#: libraries/replication_gui.lib.php:831 libraries/replication_gui.lib.php:847
+#: libraries/server_privileges.lib.php:1224
+#: libraries/server_privileges.lib.php:1248
+#: libraries/server_privileges.lib.php:2427
+msgid "Password"
+msgstr ""
+
+#: libraries/config/messages.inc.php:495
+msgid ""
+"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
+"installed"
+msgstr ""
+
+#: libraries/config/messages.inc.php:496
+msgid "Enable SQL Validator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:497
+msgid ""
+"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
+"kbd])"
+msgstr ""
+
+#: libraries/config/messages.inc.php:498 tbl_tracking.php:559
+#: tbl_tracking.php:621
+msgid "Username"
+msgstr ""
+
+#: libraries/config/messages.inc.php:499
+msgid "A warning is displayed on the main page if Suhosin is detected"
+msgstr ""
+
+#: libraries/config/messages.inc.php:500
+msgid "Suhosin warning"
+msgstr ""
+
+#: libraries/config/messages.inc.php:501
+msgid ""
+"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
+"query textareas (*2) and for query window (*1.25)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:502
+msgid "Textarea columns"
+msgstr ""
+
+#: libraries/config/messages.inc.php:503
+msgid ""
+"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
+"query textareas (*2) and for query window (*1.25)"
+msgstr ""
+
+#: libraries/config/messages.inc.php:504
+msgid "Textarea rows"
+msgstr ""
+
+#: libraries/config/messages.inc.php:505
+msgid "Title of browser window when a database is selected"
+msgstr ""
+
+#: libraries/config/messages.inc.php:507
+msgid "Title of browser window when nothing is selected"
+msgstr ""
+
+#: libraries/config/messages.inc.php:508
+msgid "Default title"
+msgstr ""
+
+#: libraries/config/messages.inc.php:509
+msgid "Title of browser window when a server is selected"
+msgstr ""
+
+#: libraries/config/messages.inc.php:511
+msgid "Title of browser window when a table is selected"
+msgstr ""
+
+#: libraries/config/messages.inc.php:513
+msgid ""
+"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
+"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
+"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
+"HTTP_X_FORWARDED_FOR[/kbd]"
+msgstr ""
+
+#: libraries/config/messages.inc.php:514
+msgid "List of trusted proxies for IP allow/deny"
+msgstr ""
+
+#: libraries/config/messages.inc.php:515
+msgid "Directory on server where you can upload files for import"
+msgstr ""
+
+#: libraries/config/messages.inc.php:516
+msgid "Upload directory"
+msgstr ""
+
+#: libraries/config/messages.inc.php:517
+msgid "Allow for searching inside the entire database"
+msgstr ""
+
+#: libraries/config/messages.inc.php:518
+msgid "Use database search"
+msgstr ""
+
+#: libraries/config/messages.inc.php:519
+msgid ""
+"When disabled, users cannot set any of the options below, regardless of the "
+"checkbox on the right"
+msgstr ""
+
+#: libraries/config/messages.inc.php:520
+msgid "Enable the Developer tab in settings"
+msgstr ""
+
+#: libraries/config/messages.inc.php:521 setup/frames/index.inc.php:275
+msgid "Check for latest version"
+msgstr ""
+
+#: libraries/config/messages.inc.php:522
+msgid "Enables check for latest version on main phpMyAdmin page"
+msgstr ""
+
+#: libraries/config/messages.inc.php:523 setup/lib/index.lib.php:117
+#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:142
+#: setup/lib/index.lib.php:154 setup/lib/index.lib.php:162
+#: setup/lib/index.lib.php:169
+msgid "Version check"
+msgstr ""
+
+#: libraries/config/messages.inc.php:524
+msgid ""
+"The url of the proxy to be used when retrieving the information about the "
+"latest version of phpMyAdmin. You need this if the server where phpMyAdmin "
+"is installed does not have direct access to the internet. The format is: "
+"\"hostname:portnumber\""
+msgstr ""
+
+#: libraries/config/messages.inc.php:525
+msgid "Version check proxy url"
+msgstr ""
+
+#: libraries/config/messages.inc.php:526
+msgid ""
+"The username for authenticating with the proxy. By default, no "
+"authentication is performed. If a username is supplied, Basic Authentication "
+"will be performed. No other types of authentication are currently supported."
+msgstr ""
+
+#: libraries/config/messages.inc.php:527
+msgid "Version check proxy username"
+msgstr ""
+
+#: libraries/config/messages.inc.php:528
+msgid "The password for authenticating with the proxy"
+msgstr ""
+
+#: libraries/config/messages.inc.php:529
+msgid "Version check proxy password"
+msgstr ""
+
+#: libraries/config/messages.inc.php:531
+msgid ""
+"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
+"for import and export operations"
+msgstr ""
+
+#: libraries/config/messages.inc.php:532
+msgid "ZIP"
+msgstr ""
+
+#: libraries/config/messages.inc.php:533
+msgid "Enter your public key for your domain reCaptcha service"
+msgstr ""
+
+#: libraries/config/messages.inc.php:534
+msgid "Public key for reCaptcha"
+msgstr ""
+
+#: libraries/config/messages.inc.php:535
+msgid "Enter your private key for your domain reCaptcha service"
+msgstr ""
+
+#: libraries/config/messages.inc.php:536
+msgid "Private key for reCaptcha"
+msgstr ""
+
+#: libraries/config/setup.forms.php:41
+msgid "Config authentication"
+msgstr ""
+
+#: libraries/config/setup.forms.php:45
+msgid "Cookie authentication"
+msgstr ""
+
+#: libraries/config/setup.forms.php:48
+msgid "HTTP authentication"
+msgstr ""
+
+#: libraries/config/setup.forms.php:51
+msgid "Signon authentication"
+msgstr ""
+
+#: libraries/config/setup.forms.php:254
+#: libraries/config/user_preferences.forms.php:153
+msgid "CSV using LOAD DATA"
+msgstr ""
+
+#: libraries/config/setup.forms.php:263 libraries/config/setup.forms.php:356
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253
+msgid "OpenDocument Spreadsheet"
+msgstr ""
+
+#: libraries/config/setup.forms.php:270
+#: libraries/config/user_preferences.forms.php:168
+msgid "Quick"
+msgstr ""
+
+#: libraries/config/setup.forms.php:274
+#: libraries/config/user_preferences.forms.php:172
+msgid "Custom"
+msgstr ""
+
+#: libraries/config/setup.forms.php:295
+#: libraries/config/user_preferences.forms.php:192
+msgid "Database export options"
+msgstr ""
+
+#: libraries/config/setup.forms.php:328
+#: libraries/config/user_preferences.forms.php:225
+msgid "CSV for MS Excel"
+msgstr ""
+
+#: libraries/config/setup.forms.php:351
+#: libraries/config/user_preferences.forms.php:248
+msgid "Microsoft Word 2000"
+msgstr ""
+
+#: libraries/config/setup.forms.php:360
+#: libraries/config/user_preferences.forms.php:257
+msgid "OpenDocument Text"
+msgstr ""
+
+#: libraries/core.lib.php:290
+#, php-format
+msgid "The %s extension is missing. Please check your PHP configuration."
+msgstr ""
+
+#: libraries/core.lib.php:449
+msgid "possible deep recursion attack"
+msgstr ""
+
+#: libraries/dbi/DBIDrizzle.class.php:146 libraries/dbi/DBIMysql.class.php:170
+#: libraries/dbi/DBIMysqli.class.php:216
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/drizzle-wrappers.lib.php:387
+msgid "Can't seek in an unbuffered result set"
+msgstr ""
+
+#: libraries/dbi/drizzle-wrappers.lib.php:408
+msgid "Can't count rows in an unbuffered result set"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:53
+#: libraries/replication_gui.lib.php:840
+#: libraries/server_privileges.lib.php:1240
+msgid "No Password"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:61
+#: libraries/plugins/auth/AuthenticationCookie.class.php:217
+#: libraries/replication_gui.lib.php:395 libraries/replication_gui.lib.php:827
+#: libraries/server_privileges.lib.php:1220
+msgid "Password:"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:67
+#: libraries/replication_gui.lib.php:851
+#: libraries/server_privileges.lib.php:1255
+msgid "Re-type:"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:74
+msgid "Password Hashing:"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:87
+msgid "MySQL 4.0 compatible"
+msgstr ""
+
+#: libraries/display_create_database.lib.php:23
+msgid "Create database"
+msgstr ""
+
+#: libraries/display_create_database.lib.php:46
+msgid "Create"
+msgstr ""
+
+#: libraries/display_create_database.lib.php:50
+msgid "Create database:"
+msgstr ""
+
+#: libraries/display_create_database.lib.php:60
+#: libraries/server_privileges.lib.php:2972 server_privileges.php:149
+#: server_replication.php:31
+msgid "No Privileges"
+msgstr ""
+
+#: libraries/display_create_table.lib.php:50 pmd_general.php:86
+msgid "Create table"
+msgstr ""
+
+#: libraries/display_create_table.lib.php:55
+#: libraries/plugins/export/ExportHtmlword.class.php:485
+#: libraries/plugins/export/ExportOdt.class.php:561
+#: libraries/plugins/export/ExportTexytext.class.php:436
+#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
+#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:967
+#: libraries/rte/rte_routines.lib.php:1579 libraries/structure.lib.php:1179
+#: libraries/tbl_columns_definition_form.inc.php:95
+#: setup/frames/index.inc.php:135
+msgid "Name"
+msgstr ""
+
+#: libraries/display_create_table.lib.php:59
+msgid "Number of columns"
+msgstr ""
+
+#: libraries/display_export.lib.php:49
+msgid "Could not load export plugins, please check your installation!"
+msgstr ""
+
+#: libraries/display_export.lib.php:100
+msgid "Exporting databases from the current server"
+msgstr ""
+
+#: libraries/display_export.lib.php:103
+#, php-format
+msgid "Exporting tables from \"%s\" database"
+msgstr ""
+
+#: libraries/display_export.lib.php:108
+#, php-format
+msgid "Exporting rows from \"%s\" table"
+msgstr ""
+
+#: libraries/display_export.lib.php:122
+msgid "Export Method:"
+msgstr ""
+
+#: libraries/display_export.lib.php:132
+msgid "Quick - display only the minimal options"
+msgstr ""
+
+#: libraries/display_export.lib.php:144
+msgid "Custom - display all possible options"
+msgstr ""
+
+#: libraries/display_export.lib.php:153
+msgid "Database(s):"
+msgstr ""
+
+#: libraries/display_export.lib.php:155
+msgid "Table(s):"
+msgstr ""
+
+#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421
+msgid "Rows:"
+msgstr ""
+
+#: libraries/display_export.lib.php:172
+msgid "Dump some row(s)"
+msgstr ""
+
+#: libraries/display_export.lib.php:187
+msgid "Row to begin at:"
+msgstr ""
+
+#: libraries/display_export.lib.php:204
+msgid "Dump all rows"
+msgstr ""
+
+#: libraries/display_export.lib.php:212 libraries/display_export.lib.php:240
+msgid "Output:"
+msgstr ""
+
+#: libraries/display_export.lib.php:221 libraries/display_export.lib.php:260
+#, php-format
+msgid "Save on server in the directory %s"
+msgstr ""
+
+#: libraries/display_export.lib.php:250
+msgid "Save output to a file"
+msgstr ""
+
+#: libraries/display_export.lib.php:277
+msgid "File name template:"
+msgstr ""
+
+#: libraries/display_export.lib.php:279
+msgid "@SERVER@ will become the server name"
+msgstr ""
+
+#: libraries/display_export.lib.php:281
+msgid ", @DATABASE@ will become the database name"
+msgstr ""
+
+#: libraries/display_export.lib.php:283
+msgid ", @TABLE@ will become the table name"
+msgstr ""
+
+#: libraries/display_export.lib.php:288
+#, php-format
+msgid ""
+"This value is interpreted using %1$sstrftime%2$s, so you can use time "
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+msgstr ""
+
+#: libraries/display_export.lib.php:341
+msgid "use this for future exports"
+msgstr ""
+
+#: libraries/display_export.lib.php:347 libraries/display_import.lib.php:255
+#: libraries/display_import.lib.php:269 libraries/sql_query_form.lib.php:499
+msgid "Character set of the file:"
+msgstr ""
+
+#: libraries/display_export.lib.php:381
+msgid "Compression:"
+msgstr ""
+
+#: libraries/display_export.lib.php:389
+msgid "zipped"
+msgstr ""
+
+#: libraries/display_export.lib.php:396
+msgid "gzipped"
+msgstr ""
+
+#: libraries/display_export.lib.php:403
+msgid "bzipped"
+msgstr ""
+
+#: libraries/display_export.lib.php:421
+msgid "View output as text"
+msgstr ""
+
+#: libraries/display_export.lib.php:426 libraries/display_import.lib.php:312
+#: libraries/plugins/export/ExportCodegen.class.php:107
+msgid "Format:"
+msgstr ""
+
+#: libraries/display_export.lib.php:431
+msgid "Format-specific options:"
+msgstr ""
+
+#: libraries/display_export.lib.php:433
+msgid ""
+"Scroll down to fill in the options for the selected format and ignore the "
+"options for other formats."
+msgstr ""
+
+#: libraries/display_export.lib.php:442 libraries/display_import.lib.php:327
+msgid "Encoding Conversion:"
+msgstr ""
+
+#: libraries/display_git_revision.lib.php:56
+#, php-format
+msgid "%1$s from %2$s branch"
+msgstr ""
+
+#: libraries/display_git_revision.lib.php:58
+msgid "no branch"
+msgstr ""
+
+#: libraries/display_git_revision.lib.php:64
+msgid "Git revision:"
+msgstr ""
+
+#: libraries/display_git_revision.lib.php:67
+#, php-format
+msgid "committed on %1$s by %2$s"
+msgstr ""
+
+#: libraries/display_git_revision.lib.php:75
+#, php-format
+msgid "authored on %1$s by %2$s"
+msgstr ""
+
+#: libraries/display_import.lib.php:69
+msgid ""
+"The file being uploaded is probably larger than the maximum allowed size or "
+"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) "
+"browsers."
+msgstr ""
+
+#: libraries/display_import.lib.php:77
+#, php-format
+msgid "%s of %s"
+msgstr ""
+
+#: libraries/display_import.lib.php:86
+msgid "Uploading your import file…"
+msgstr ""
+
+#: libraries/display_import.lib.php:94
+#, php-format
+msgid "%s/sec."
+msgstr ""
+
+#: libraries/display_import.lib.php:101
+msgid "About %MIN min. %SEC sec. remaining."
+msgstr ""
+
+#: libraries/display_import.lib.php:105
+msgid "About %SEC sec. remaining."
+msgstr ""
+
+#: libraries/display_import.lib.php:135
+msgid "The file is being processed, please be patient."
+msgstr ""
+
+#: libraries/display_import.lib.php:154
+msgid ""
+"Please be patient, the file is being uploaded. Details about the upload are "
+"not available."
+msgstr ""
+
+#: libraries/display_import.lib.php:190
+msgid "Importing into the current server"
+msgstr ""
+
+#: libraries/display_import.lib.php:192
+#, php-format
+msgid "Importing into the database \"%s\""
+msgstr ""
+
+#: libraries/display_import.lib.php:194
+#, php-format
+msgid "Importing into the table \"%s\""
+msgstr ""
+
+#: libraries/display_import.lib.php:200
+msgid "File to Import:"
+msgstr ""
+
+#: libraries/display_import.lib.php:217
+#, php-format
+msgid "File may be compressed (%s) or uncompressed."
+msgstr ""
+
+#: libraries/display_import.lib.php:219
+msgid ""
+"A compressed file's name must end in .[format].[compression]. "
+"Example: .sql.zip"
+msgstr ""
+
+#: libraries/display_import.lib.php:245
+msgid "File uploads are not allowed on this server."
+msgstr ""
+
+#: libraries/display_import.lib.php:276
+msgid "Partial Import:"
+msgstr ""
+
+#: libraries/display_import.lib.php:282
+#, php-format
+msgid ""
+"Previous import timed out, after resubmitting will continue from position %d."
+msgstr ""
+
+#: libraries/display_import.lib.php:289
+msgid ""
+"Allow the interruption of an import in case the script detects it is close "
+"to the PHP timeout limit. (This might be a good way to import large "
+"files, however it can break transactions.)"
+msgstr ""
+
+#: libraries/display_import.lib.php:296
+msgid "Number of rows to skip, starting from the first row:"
+msgstr ""
+
+#: libraries/display_import.lib.php:318
+msgid "Format-Specific Options:"
+msgstr ""
+
+#: libraries/display_indexes.lib.php:50 libraries/structure.lib.php:2016
+#: libraries/structure.lib.php:2019
+msgid "Add index"
+msgstr ""
+
+#: libraries/display_indexes.lib.php:52
+msgid "Edit index"
+msgstr ""
+
+#: libraries/display_indexes.lib.php:63
+msgid "Index name:"
+msgstr ""
+
+#: libraries/display_indexes.lib.php:67
+msgid ""
+"(\"PRIMARY\" must be the name of and only of a primary key!)"
+msgstr ""
+
+#: libraries/display_indexes.lib.php:85
+msgid "Comment:"
+msgstr ""
+
+#: libraries/display_indexes.lib.php:99
+msgid "Index type:"
+msgstr ""
+
+#: libraries/display_select_lang.lib.php:56
+#: libraries/display_select_lang.lib.php:57 setup/frames/index.inc.php:75
+msgid "Language"
+msgstr ""
+
+#: libraries/engines/bdb.lib.php:25
+msgid "Version information"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:28
+msgid "Data home directory"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:29
+msgid "The common part of the directory path for all InnoDB data files."
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:32
+msgid "Data files"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:35
+msgid "Autoextend increment"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:36
+msgid ""
+"The increment size for extending the size of an autoextending tablespace "
+"when it becomes full."
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:40
+msgid "Buffer pool size"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:41
+msgid ""
+"The size of the memory buffer InnoDB uses to cache data and indexes of its "
+"tables."
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:143
+msgid "Buffer Pool"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:166
+msgid "Buffer Pool Usage"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:176
+msgid "pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:190
+msgid "Free pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:198
+msgid "Dirty pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:206
+msgid "Pages containing data"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:214
+msgid "Pages to be flushed"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:222
+msgid "Busy pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:233
+msgid "Latched pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:246
+msgid "Buffer Pool Activity"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:250
+msgid "Read requests"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:258
+msgid "Write requests"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:266
+msgid "Read misses"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:274
+msgid "Write waits"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:282
+msgid "Read misses in %"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:297
+msgid "Write waits in %"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:28
+msgid "Data pointer size"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:29
+msgid ""
+"The default pointer size in bytes, to be used by CREATE TABLE for MyISAM "
+"tables when no MAX_ROWS option is specified."
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:33
+msgid "Automatic recovery mode"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:34
+msgid ""
+"The mode for automatic recovery of crashed MyISAM tables, as set via the --"
+"myisam-recover server startup option."
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:37
+msgid "Maximum size for temporary sort files"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:38
+msgid ""
+"The maximum size of the temporary file MySQL is allowed to use while re-"
+"creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA "
+"INFILE)."
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:42
+msgid "Maximum size for temporary files on index creation"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:43
+msgid ""
+"If the temporary file used for fast MyISAM index creation would be larger "
+"than using the key cache by the amount specified here, prefer the key cache "
+"method."
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:47
+msgid "Repair threads"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:48
+msgid ""
+"If this value is greater than 1, MyISAM table indexes are created in "
+"parallel (each index in its own thread) during the repair by sorting process."
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:52
+msgid "Sort buffer size"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:53
+msgid ""
+"The buffer that is allocated when sorting MyISAM indexes during a REPAIR "
+"TABLE or when creating indexes with CREATE INDEX or ALTER TABLE."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:28
+msgid "Index cache size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:29
+msgid ""
+"This is the amount of memory allocated to the index cache. Default value is "
+"32MB. The memory allocated here is used only for caching index pages."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:33
+msgid "Record cache size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:34
+msgid ""
+"This is the amount of memory allocated to the record cache used to cache "
+"table data. The default value is 32MB. This memory is used to cache changes "
+"to the handle data (.xtd) and row pointer (.xtr) files."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:38
+msgid "Log cache size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:39
+msgid ""
+"The amount of memory allocated to the transaction log cache used to cache on "
+"transaction log data. The default is 16MB."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:43
+msgid "Log file threshold"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:44
+msgid ""
+"The size of a transaction log before rollover, and a new log is created. The "
+"default value is 16MB."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:48
+msgid "Transaction buffer size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:49
+msgid ""
+"The size of the global transaction log buffer (the engine allocates 2 "
+"buffers of this size). The default is 1MB."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:53
+msgid "Checkpoint frequency"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:54
+msgid ""
+"The amount of data written to the transaction log before a checkpoint is "
+"performed. The default value is 24MB."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:58
+msgid "Data log threshold"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:59
+msgid ""
+"The maximum size of a data log file. The default value is 64MB. PBXT can "
+"create a maximum of 32000 data logs, which are used by all tables. So the "
+"value of this variable can be increased to increase the total amount of data "
+"that can be stored in the database."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:63
+msgid "Garbage threshold"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:64
+msgid ""
+"The percentage of garbage in a data log file before it is compacted. This is "
+"a value between 1 and 99. The default is 50."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:68
+msgid "Log buffer size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:69
+msgid ""
+"The size of the buffer used when writing a data log. The default is 256MB. "
+"The engine allocates one buffer per thread, but only if the thread is "
+"required to write a data log."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:73
+msgid "Data file grow size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:74
+msgid "The grow size of the handle data (.xtd) files."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:78
+msgid "Row file grow size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:79
+msgid "The grow size of the row pointer (.xtr) files."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:83
+msgid "Log file count"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:84
+msgid ""
+"This is the number of transaction log files (pbxt/system/xlog*.xt) the "
+"system will maintain. If the number of logs exceeds this value then old logs "
+"will be deleted, otherwise they are renamed and given the next highest "
+"number."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:131
+#, php-format
+msgid ""
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:133
+msgid "Related Links"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:135
+msgid "The PrimeBase XT Blog by Paul McCullagh"
+msgstr ""
+
+#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122
+#: libraries/rte/rte_routines.lib.php:1446 libraries/sql.lib.php:1549
+#: tbl_get_field.php:41
+msgid "MySQL returned an empty result set (i.e. zero rows)."
+msgstr ""
+
+#: libraries/import.lib.php:1190
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1191
+msgid "View a structure's contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1192
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1193
+msgid "Edit structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1197
+#, php-format
+msgid "Go to database: %s"
+msgstr ""
+
+#: libraries/import.lib.php:1200 libraries/import.lib.php:1228
+#, php-format
+msgid "Edit settings for %s"
+msgstr ""
+
+#: libraries/import.lib.php:1223
+#, php-format
+msgid "Go to table: %s"
+msgstr ""
+
+#: libraries/import.lib.php:1226
+#, php-format
+msgid "Structure of %s"
+msgstr ""
+
+#: libraries/import.lib.php:1234
+#, php-format
+msgid "Go to view: %s"
+msgstr ""
+
+#: libraries/index.lib.php:32
+#, php-format
+msgid "Create an index on %s columns"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:216 libraries/insert_edit.lib.php:247
+#: pmd_general.php:183
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:460 libraries/mysql_charsets.lib.php:143
+#: libraries/mysql_charsets.lib.php:345
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:655
+msgid "Because of its length,INSERT statements, use:"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:311
+msgid "INSERT DELAYED statements"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:322
+#: libraries/plugins/export/ExportSql.class.php:352
+msgid "INSERT IGNORE statements"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:335
+msgid "Function to use when dumping data:"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:348
+msgid "Syntax to use when inserting data:"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:356
+msgid ""
+"include column names in every INSERT statement INSERT INTO tbl_name (col_A,col_B,col_C) VALUES "
+"(1,2,3)"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:361
+msgid ""
+"insert multiple rows in every INSERT statementINSERT INTO tbl_name VALUES (1,2,3), (4,5,6), "
+"(7,8,9)"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:366
+msgid ""
+"both of the aboveINSERT INTO "
+"tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:371
+msgid ""
+"neither of the aboveINSERT INTO "
+"tbl_name VALUES (1,2,3)"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:390
+msgid ""
+"Dump binary columns in hexadecimal notation (for example, \"abc\" becomes "
+"0x616263)"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:403
+msgid ""
+"Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and "
+"reloaded between servers in different time zones)"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:1198
+msgid "Constraints for dumped tables"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:1209
+msgid "Constraints for table"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:1350
+msgid "MIME TYPES FOR TABLE"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:1375
+msgid "RELATIONS FOR TABLE"
+msgstr ""
+
+#: libraries/plugins/export/ExportSql.class.php:1569
+msgid "Error reading data:"
+msgstr ""
+
+#: libraries/plugins/export/ExportXml.class.php:102
+msgid "Object creation options (all are recommended)"
+msgstr ""
+
+#: libraries/plugins/export/ExportXml.class.php:137
+msgid "Export contents"
+msgstr ""
+
+#: libraries/plugins/export/PMA_ExportPdf.class.php:116
+msgid "Table:"
+msgstr ""
+
+#: libraries/plugins/import/ImportCsv.class.php:63
+#: libraries/plugins/import/ImportOds.class.php:74
+msgid ""
+"The first line of the file contains the table column names (if this is "
+"unchecked, the first line will become part of the data)"
+msgstr ""
+
+#: libraries/plugins/import/ImportCsv.class.php:72
+msgid ""
+"If the data in each row of the file is not in the same order as in the "
+"database, list the corresponding column names here. Column names must be "
+"separated by commas and not enclosed in quotations."
+msgstr ""
+
+#: libraries/plugins/import/ImportCsv.class.php:81
+#: libraries/plugins/import/ImportLdi.class.php:66
+msgid "Column names: "
+msgstr ""
+
+#: libraries/plugins/import/ImportCsv.class.php:133
+#: libraries/plugins/import/ImportCsv.class.php:148
+#: libraries/plugins/import/ImportCsv.class.php:155
+#: libraries/plugins/import/ImportCsv.class.php:162
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/plugins/import/ImportCsv.class.php:213
+#, php-format
+msgid ""
+"Invalid column (%s) specified! Ensure that columns names are spelled "
+"correctly, separated by commas, and not enclosed in quotes."
+msgstr ""
+
+#: libraries/plugins/import/ImportCsv.class.php:281
+#: libraries/plugins/import/ImportCsv.class.php:556
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/plugins/import/ImportCsv.class.php:437
+#, php-format
+msgid "Invalid column count in CSV input on line %d."
+msgstr ""
+
+#: libraries/plugins/import/ImportLdi.class.php:110
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/plugins/import/ImportMediawiki.class.php:56
+msgid "MediaWiki Table"
+msgstr ""
+
+#: libraries/plugins/import/ImportMediawiki.class.php:303
+#, php-format
+msgid "Invalid format of mediawiki input on line: AUTO_INCREMENT for zero values"
+msgstr ""
+
+#: libraries/plugins/import/ImportXml.class.php:53
+msgid "XML"
+msgstr ""
+
+#: libraries/plugins/import/ShapeRecord.class.php:58
+#, php-format
+msgid "Geometry type '%s' is not supported by MySQL."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/AppendTransformationsPlugin.class.php:32
+msgid ""
+"Appends text to a string. The only option is the text to be appended "
+"(enclosed in single quotes, default empty string)."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:31
+msgid ""
+"Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as "
+"formatted date. The first option is the offset (in hours) which will be "
+"added to the timestamp (Default: 0). Use second option to specify a "
+"different date/time format string. Third option determines whether you want "
+"to see local date or UTC one (use \"local\" or \"utc\" strings) for that. "
+"According to that, date format has different value - for \"local\" see the "
+"documentation for PHP's strftime() function and for \"utc\" it is done using "
+"gmdate() function."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31
+msgid ""
+"Displays a link to download the binary data of the column. You can use the "
+"first option to specify the filename, or use the second option as the name "
+"of a column which contains the filename. If you use the second option, you "
+"need to set the first option to the empty string."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31
+msgid ""
+"LINUX ONLY: Launches an external application and feeds it the column data "
+"via standard input. Returns the standard output of the application. The "
+"default is Tidy, to pretty-print HTML code. For security reasons, you have "
+"to manually edit the file libraries/plugins/transformations/"
+"Text_Plain_External.class.php and list the tools you want to make available. "
+"The first option is then the number of the program you want to use and the "
+"second option is the parameters for the program. The third option, if set to "
+"1, will convert the output using htmlspecialchars() (Default 1). The fourth "
+"option, if set to 1, will prevent wrapping and ensure that the output "
+"appears all on one line (Default 1)."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
+msgid ""
+"Displays the contents of the column as-is, without running it through "
+"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/HexTransformationsPlugin.class.php:31
+msgid ""
+"Displays hexadecimal representation of data. Optional first parameter "
+"specifies how often space will be added (defaults to 2 nibbles)."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/ImageLinkTransformationsPlugin.class.php:33
+msgid "Displays a link to download this image."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/InlineTransformationsPlugin.class.php:33
+msgid ""
+"Displays a clickable thumbnail. The options are the maximum width and height "
+"in pixels. The original aspect ratio is preserved."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/LongToIPv4TransformationsPlugin.class.php:31
+msgid ""
+"Converts an (IPv4) Internet network address into a string in Internet "
+"standard dotted format."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/SQLTransformationsPlugin.class.php:31
+msgid "Formats text as SQL query with syntax highlighting."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/SubstringTransformationsPlugin.class.php:31
+msgid ""
+"Displays a part of a string. The first option is the number of characters to "
+"skip from the beginning of the string (Default 0). The second option is the "
+"number of characters to return (Default: until end of string). The third "
+"option is the string to append and/or prepend when truncation occurs "
+"(Default: \"…\")."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
+msgid ""
+"Displays an image and a link; the column contains the filename. The first "
+"option is a URL prefix like \"http://www.example.com/\". The second and "
+"third options are the width and the height in pixels."
+msgstr ""
+
+#: libraries/plugins/transformations/abstract/TextLinkTransformationsPlugin.class.php:33
+msgid ""
+"Displays a link; the column contains the filename. The first option is a URL "
+"prefix like \"http://www.example.com/\". The second option is a title for "
+"the link."
+msgstr ""
+
+#: libraries/relation.lib.php:85
+msgid "not OK"
+msgstr ""
+
+#: libraries/relation.lib.php:92
+msgctxt "Correctly working"
+msgid "OK"
+msgstr ""
+
+#: libraries/relation.lib.php:95
+msgid "Enabled"
+msgstr ""
+
+#: libraries/relation.lib.php:102 libraries/relation.lib.php:120
+msgid "General relation features"
+msgstr ""
+
+#: libraries/relation.lib.php:131
+msgid "Display Features"
+msgstr ""
+
+#: libraries/relation.lib.php:148
+msgid "Creation of PDFs"
+msgstr ""
+
+#: libraries/relation.lib.php:159
+msgid "Displaying Column Comments"
+msgstr ""
+
+#: libraries/relation.lib.php:165
+#: libraries/tbl_columns_definition_form.inc.php:170
+#: transformation_overview.php:39
+msgid "Browser transformation"
+msgstr ""
+
+#: libraries/relation.lib.php:171
+msgid ""
+"Please see the documentation on how to update your column_comments table"
+msgstr ""
+
+#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:404
+msgid "Bookmarked SQL query"
+msgstr ""
+
+#: libraries/relation.lib.php:192 querywindow.php:70
+msgid "SQL history"
+msgstr ""
+
+#: libraries/relation.lib.php:214
+msgid "Persistent recently used tables"
+msgstr ""
+
+#: libraries/relation.lib.php:225
+msgid "Persistent tables' UI preferences"
+msgstr ""
+
+#: libraries/relation.lib.php:247
+msgid "User preferences"
+msgstr ""
+
+#: libraries/relation.lib.php:253
+msgid "Quick steps to setup advanced features:"
+msgstr ""
+
+#: libraries/relation.lib.php:257
+msgid ""
+"Create the needed tables with the examples/create_tables.sql."
+msgstr ""
+
+#: libraries/relation.lib.php:263
+msgid "Create a pma user and give access to these tables."
+msgstr ""
+
+#: libraries/relation.lib.php:268
+msgid ""
+"Enable advanced features in configuration file (config.inc.php"
+"code>), for example by starting from config.sample.inc.php."
+msgstr ""
+
+#: libraries/relation.lib.php:276
+msgid "Re-login to phpMyAdmin to load the updated configuration file."
+msgstr ""
+
+#: libraries/relation.lib.php:1425
+msgid "no description"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:45 libraries/replication_gui.lib.php:311
+#: libraries/server_databases.lib.php:393
+msgid "Master replication"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:46
+msgid "This server is configured as master in a replication process."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:54
+msgid "Show connected slaves"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:667
+msgid "Add slave replication user"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:87
+msgid "Master configuration"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:89
+msgid ""
+"This server is not configured as master server in a replication process. You "
+"can choose from either replicating all databases and ignoring certain "
+"(useful if you want to replicate majority of databases) or you can choose to "
+"ignore all databases by default and allow only certain databases to be "
+"replicated. Please select the mode:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:98
+msgid "Replicate all databases; Ignore:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:100
+msgid "Ignore all databases; Replicate:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:104
+msgid "Please select databases:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:108
+msgid ""
+"Now, add the following lines at the end of [mysqld] section in your my.cnf "
+"and please restart the MySQL server afterwards."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:113
+msgid ""
+"Once you restarted MySQL server, please click on Go button. Afterwards, you "
+"should see a message informing you, that this server is configured as "
+"master."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:139
+#: libraries/server_databases.lib.php:395
+msgid "Slave replication"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:190
+msgid "Slave SQL Thread not running!"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:195
+msgid "Slave IO Thread not running!"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:206
+msgid ""
+"Server is configured as slave in a replication process. Would you like to:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:210
+msgid "See slave status table"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:215
+msgid "Control slave:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:221
+msgid "Full start"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:222
+msgid "Full stop"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:224
+msgid "Reset slave"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:227
+msgid "Start SQL Thread only"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:230
+msgid "Stop SQL Thread only"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:234
+msgid "Start IO Thread only"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:237
+msgid "Stop IO Thread only"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:246 libraries/replication_gui.lib.php:375
+msgid "Change or reconfigure master server"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:257
+#, php-format
+msgid ""
+"This server is not configured as slave in a replication process. Would you "
+"like to configure it?"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:278
+msgid "Error management:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:281
+msgid "Skipping errors might lead into unsynchronized master and slave!"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:285
+msgid "Skip current error"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:286
+msgid "Skip next"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:290
+msgid "errors."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:314
+#, php-format
+msgid ""
+"This server is not configured as master in a replication process. Would you "
+"like to configure it?"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:352
+msgid "Uncheck All"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:374
+msgid "Slave configuration"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:377
+msgid ""
+"Make sure, you have unique server-id in your configuration file (my.cnf). If "
+"not, please add the following line into [mysqld] section:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:384 libraries/replication_gui.lib.php:761
+#: libraries/server_privileges.lib.php:1053
+msgid "User name:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:390 libraries/replication_gui.lib.php:765
+#: libraries/replication_gui.lib.php:781
+#: libraries/server_privileges.lib.php:1058
+#: libraries/server_privileges.lib.php:1089
+msgid "User name"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:416
+msgid "Port:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:496
+msgid "Master status"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:499
+msgid "Slave status"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:508
+#: libraries/server_status_variables.lib.php:219
+#: libraries/sql_query_form.lib.php:416 server_variables.php:166
+msgid "Variable"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:587 libraries/server_bin_log.lib.php:132
+msgid "Server ID"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:588 libraries/replication_gui.lib.php:675
+#: libraries/replication_gui.lib.php:816
+#: libraries/server_privileges.lib.php:1115
+#: libraries/server_privileges.lib.php:1211
+#: libraries/server_privileges.lib.php:1601
+#: libraries/server_privileges.lib.php:2426 server_status.php:375
+msgid "Host"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:608
+msgid ""
+"Only slaves started with the --report-host=host_name option are visible in "
+"this list."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:718
+#: libraries/server_privileges.lib.php:1168
+msgid "Any host"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:723
+#: libraries/server_privileges.lib.php:1176
+msgid "Local"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:730
+#: libraries/server_privileges.lib.php:1185
+msgid "This Host"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:772
+#: libraries/server_privileges.lib.php:1073
+msgid "Any user"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:777 libraries/replication_gui.lib.php:810
+#: libraries/replication_gui.lib.php:843
+#: libraries/server_privileges.lib.php:1204
+#: libraries/server_privileges.lib.php:2321
+msgid "Use text field:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:804
+#: libraries/server_privileges.lib.php:1195
+msgid "Use Host Table"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:820
+#: libraries/server_privileges.lib.php:1214
+msgid ""
+"When Host table is used, this field is ignored and values stored in Host "
+"table are used instead."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:855
+#: libraries/server_privileges.lib.php:1259
+msgid "Re-type"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:859
+msgid "Generate Password:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:920
+msgid "Unknown error"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:930
+#, php-format
+msgid "Unable to connect to master %s."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:941
+msgid ""
+"Unable to read master log position. Possible privilege problem on master."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:959
+msgid "Unable to change master"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:963
+#, php-format
+msgid "Master server changed successfully to %s"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119
+#: libraries/rte/rte_events.lib.php:157 libraries/rte/rte_routines.lib.php:296
+#: libraries/rte/rte_routines.lib.php:305
+#: libraries/rte/rte_routines.lib.php:346
+#: libraries/rte/rte_routines.lib.php:1455
+#: libraries/rte/rte_triggers.lib.php:82 libraries/rte/rte_triggers.lib.php:91
+#: libraries/rte/rte_triggers.lib.php:129
+#, php-format
+msgid "The following query has failed: \"%s\""
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:134
+msgid "Sorry, we failed to restore the dropped event."
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:137 libraries/rte/rte_routines.lib.php:325
+#: libraries/rte/rte_triggers.lib.php:109
+msgid "The backed up query was:"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:144
+#, php-format
+msgid "Event %1$s has been modified."
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:164
+#, php-format
+msgid "Event %1$s has been created."
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:175 libraries/rte/rte_routines.lib.php:366
+#: libraries/rte/rte_triggers.lib.php:147
+msgid "One or more errors have occured while processing your request:"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:228
+msgid "Edit event"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:255 libraries/rte/rte_export.lib.php:43
+#: libraries/rte/rte_routines.lib.php:464
+#: libraries/rte/rte_routines.lib.php:1481
+#: libraries/rte/rte_routines.lib.php:1521
+#: libraries/rte/rte_triggers.lib.php:230
+msgid "Error in processing request:"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:931
+#: libraries/rte/rte_triggers.lib.php:347
+msgid "Details"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:420
+msgid "Event name"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:441 libraries/server_bin_log.lib.php:131
+msgid "Event type"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:463 libraries/rte/rte_routines.lib.php:954
+#, php-format
+msgid "Change to %s"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:469
+msgid "Execute at"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:477
+msgid "Execute every"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:496
+msgctxt "Start of recurring event"
+msgid "Start"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:505
+msgctxt "End of recurring event"
+msgid "End"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:519
+msgid "On completion preserve"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:524
+#: libraries/rte/rte_routines.lib.php:1042
+#: libraries/rte/rte_triggers.lib.php:407
+msgid "Definer"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:567
+#: libraries/rte/rte_routines.lib.php:1109
+#: libraries/rte/rte_triggers.lib.php:445
+msgid "The definer must be in the \"username@hostname\" format"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:574
+msgid "You must provide an event name"
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:588
+msgid "You must provide a valid interval value for the event."
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:603
+msgid "You must provide a valid execution time for the event."
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:607
+msgid "You must provide a valid type for the event."
+msgstr ""
+
+#: libraries/rte/rte_events.lib.php:631
+msgid "You must provide an event definition."
+msgstr ""
+
+#: libraries/rte/rte_footer.lib.php:91
+msgid "OFF"
+msgstr ""
+
+#: libraries/rte/rte_footer.lib.php:96
+msgid "ON"
+msgstr ""
+
+#: libraries/rte/rte_footer.lib.php:108
+msgid "Event scheduler status"
+msgstr ""
+
+#: libraries/rte/rte_list.lib.php:55
+msgid "Returns"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:69
+msgid ""
+"You are using PHP's deprecated 'mysql' extension, which is not capable of "
+"handling multi queries. [strong]The execution of some stored routines may "
+"fail![/strong] Please use the improved 'mysqli' extension to avoid any "
+"problems."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:281
+#: libraries/rte/rte_routines.lib.php:1118
+#, php-format
+msgid "Invalid routine type: \"%s\""
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:321
+msgid "Sorry, we failed to restore the dropped routine."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:332
+#, php-format
+msgid "Routine %1$s has been modified."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:353
+#, php-format
+msgid "Routine %1$s has been created."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:434
+msgid "Edit routine"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:934
+msgid "Routine name"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:960
+msgid "Parameters"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:966
+msgid "Direction"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:969
+#: libraries/tbl_columns_definition_form.inc.php:98
+msgid "Length/Values"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:984
+msgid "Add parameter"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:988
+msgid "Remove last parameter"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:993
+msgid "Return type"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1000
+msgid "Return length/values"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1006
+msgid "Return options"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1037
+msgid "Is deterministic"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1047
+msgid "Security type"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1056
+msgid "SQL data access"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1125
+msgid "You must provide a routine name"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1155
+#, php-format
+msgid "Invalid direction \"%s\" given for parameter."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1175
+#: libraries/rte/rte_routines.lib.php:1230
+msgid ""
+"You must provide length/values for routine parameters of type ENUM, SET, "
+"VARCHAR and VARBINARY."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1198
+msgid "You must provide a name and a type for each routine parameter."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1213
+msgid "You must provide a valid return type for the routine."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1272
+msgid "You must provide a routine definition."
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1370
+#, php-format
+msgid "Execution results of routine %s"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1435
+#, php-format
+msgid "%d row affected by the last statement inside the procedure"
+msgid_plural "%d rows affected by the last statement inside the procedure"
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/rte/rte_routines.lib.php:1508
+#: libraries/rte/rte_routines.lib.php:1516
+msgid "Execute routine"
+msgstr ""
+
+#: libraries/rte/rte_routines.lib.php:1572
+#: libraries/rte/rte_routines.lib.php:1575
+msgid "Routine parameters"
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:106
+msgid "Sorry, we failed to restore the dropped trigger."
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:116
+#, php-format
+msgid "Trigger %1$s has been modified."
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:136
+#, php-format
+msgid "Trigger %1$s has been created."
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:204
+msgid "Edit trigger"
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:350
+msgid "Trigger name"
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:373
+msgctxt "Trigger action time"
+msgid "Time"
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:452
+msgid "You must provide a trigger name"
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:459
+msgid "You must provide a valid timing for the trigger"
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:466
+msgid "You must provide a valid event for the trigger"
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:474
+msgid "You must provide a valid table name"
+msgstr ""
+
+#: libraries/rte/rte_triggers.lib.php:480
+msgid "You must provide a trigger definition."
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:27
+msgid "Add routine"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:29
+#, php-format
+msgid "Export of routine %s"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:30
+msgid "routine"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:31
+msgid "You do not have the necessary privileges to create a routine"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:32
+#, php-format
+msgid "No routine with name %1$s found in database %2$s"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:33
+msgid "There are no routines to display."
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:39
+msgid "Add trigger"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:41
+#, php-format
+msgid "Export of trigger %s"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:42
+msgid "trigger"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:43
+msgid "You do not have the necessary privileges to create a trigger"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:44
+#, php-format
+msgid "No trigger with name %1$s found in database %2$s"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:45
+msgid "There are no triggers to display."
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:51
+msgid "Add event"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:53
+#, php-format
+msgid "Export of event %s"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:54
+msgid "event"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:55
+msgid "You do not have the necessary privileges to create an event"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:56
+#, php-format
+msgid "No event with name %1$s found in database %2$s"
+msgstr ""
+
+#: libraries/rte/rte_words.lib.php:57
+msgid "There are no events to display."
+msgstr ""
+
+#: libraries/schema/Dia_Relation_Schema.class.php:240
+#: libraries/schema/Eps_Relation_Schema.class.php:429
+#: libraries/schema/Pdf_Relation_Schema.class.php:412
+#: libraries/schema/Svg_Relation_Schema.class.php:396
+#, php-format
+msgid "The %s table doesn't exist!"
+msgstr ""
+
+#: libraries/schema/Dia_Relation_Schema.class.php:278
+#: libraries/schema/Eps_Relation_Schema.class.php:480
+#: libraries/schema/Pdf_Relation_Schema.class.php:454
+#: libraries/schema/Svg_Relation_Schema.class.php:449
+#, php-format
+msgid "Please configure the coordinates for table %s"
+msgstr ""
+
+#: libraries/schema/Eps_Relation_Schema.class.php:836
+#: libraries/schema/Pdf_Relation_Schema.class.php:869
+#: libraries/schema/Svg_Relation_Schema.class.php:812
+#, php-format
+msgid "Schema of the %s database - Page %s"
+msgstr ""
+
+#: libraries/schema/Export_Relation_Schema.class.php:208
+msgid "This page does not contain any tables!"
+msgstr ""
+
+#: libraries/schema/Export_Relation_Schema.class.php:236
+msgid "SCHEMA ERROR: "
+msgstr ""
+
+#: libraries/schema/Pdf_Relation_Schema.class.php:891
+#: libraries/schema/Pdf_Relation_Schema.class.php:1225
+msgid "Relational schema"
+msgstr ""
+
+#: libraries/schema/Pdf_Relation_Schema.class.php:1188
+msgid "Table of contents"
+msgstr ""
+
+#: libraries/schema/Pdf_Relation_Schema.class.php:1373
+#: libraries/schema/Pdf_Relation_Schema.class.php:1396
+#: libraries/structure.lib.php:1182
+#: libraries/tbl_columns_definition_form.inc.php:115
+msgid "Attributes"
+msgstr ""
+
+#: libraries/schema/Pdf_Relation_Schema.class.php:1376
+#: libraries/schema/Pdf_Relation_Schema.class.php:1399
+#: libraries/structure.lib.php:1185 tbl_tracking.php:330
+msgid "Extra"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:130
+msgid "Create a page"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:136
+msgid "Page name"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:142
+msgid "Automatic layout based on"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:145
+msgid "Internal relations"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:156
+msgid "FOREIGN KEY"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:193
+msgid "Please choose a page to edit"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:198
+msgid "Select page"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:265
+msgid "Select Tables"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:382 view_create.php:183
+msgid "Column names"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:417
+msgid "Display relational schema"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:426
+msgid "Select Export Relational Type"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:451
+msgid "Show grid"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:453
+msgid "Show color"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:457
+msgid "Show dimension of tables"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:461
+msgid "Same width for all tables"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:464 libraries/structure.lib.php:379
+msgid "Data Dictionary"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:466
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:468
+msgid "Landscape"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:469
+msgid "Portrait"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:471
+msgid "Orientation"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:484
+msgid "Paper size"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:530
+msgid ""
+"The current page has references to tables that no longer exist. Would you "
+"like to delete those references?"
+msgstr ""
+
+#: libraries/schema/User_Schema.class.php:556
+msgid "Toggle scratchboard"
+msgstr ""
+
+#: libraries/select_lang.lib.php:538 libraries/select_lang.lib.php:547
+#: libraries/select_lang.lib.php:556
+#, php-format
+msgid "Unknown language: %1$s."
+msgstr ""
+
+#: libraries/select_server.lib.php:39 libraries/select_server.lib.php:44
+msgid "Current Server:"
+msgstr ""
+
+#: libraries/server_bin_log.lib.php:30
+msgid "Select binary log to view"
+msgstr ""
+
+#: libraries/server_bin_log.lib.php:129
+msgid "Log name"
+msgstr ""
+
+#: libraries/server_bin_log.lib.php:130
+msgid "Position"
+msgstr ""
+
+#: libraries/server_bin_log.lib.php:133
+msgid "Original position"
+msgstr ""
+
+#: libraries/server_bin_log.lib.php:134 libraries/structure.lib.php:2163
+msgid "Information"
+msgstr ""
+
+#: libraries/server_bin_log.lib.php:188 server_status.php:488
+msgid "Truncate Shown Queries"
+msgstr ""
+
+#: libraries/server_bin_log.lib.php:192 server_status.php:493
+msgid "Show Full Queries"
+msgstr ""
+
+#: libraries/server_common.lib.php:25
+msgid "Storage Engines"
+msgstr ""
+
+#: libraries/server_common.lib.php:34
+msgid "Character Sets and Collations"
+msgstr ""
+
+#: libraries/server_common.lib.php:40
+msgid "Databases statistics"
+msgstr ""
+
+#: libraries/server_databases.lib.php:362
+msgid ""
+"Note: Enabling the database statistics here might cause heavy traffic "
+"between the web server and the MySQL server."
+msgstr ""
+
+#: libraries/server_databases.lib.php:370
+#: libraries/server_databases.lib.php:371
+msgid "Enable Statistics"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:32
+msgid "Modules"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:68
+msgid "Begin"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:75
+msgid "Plugin"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:76 libraries/server_plugins.lib.php:132
+msgid "Module"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:77 libraries/server_plugins.lib.php:134
+msgid "Library"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135
+#: tbl_tracking.php:767
+msgid "Version"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:79 libraries/server_plugins.lib.php:136
+msgid "Author"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:80 libraries/server_plugins.lib.php:137
+msgid "License"
+msgstr ""
+
+#: libraries/server_plugins.lib.php:189
+msgid "disabled"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:135 server_privileges.php:94
+msgid "No privileges."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:145 server_privileges.php:59
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:167
+#: libraries/server_privileges.lib.php:664
+#: libraries/server_privileges.lib.php:839 server_privileges.php:87
+msgid "Allows reading data."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:172
+#: libraries/server_privileges.lib.php:669
+#: libraries/server_privileges.lib.php:840 server_privileges.php:76
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:177
+#: libraries/server_privileges.lib.php:674
+#: libraries/server_privileges.lib.php:841 server_privileges.php:93
+msgid "Allows changing data."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:182
+#: libraries/server_privileges.lib.php:842 server_privileges.php:68
+msgid "Allows deleting data."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:187
+#: libraries/server_privileges.lib.php:868 server_privileges.php:62
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:192
+#: libraries/server_privileges.lib.php:880 server_privileges.php:69
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:197
+#: libraries/server_privileges.lib.php:956 server_privileges.php:84
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:202
+#: libraries/server_privileges.lib.php:960 server_privileges.php:90
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:207
+#: libraries/server_privileges.lib.php:952 server_privileges.php:82
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:212
+#: libraries/server_privileges.lib.php:848 server_privileges.php:73
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:217
+#: libraries/server_privileges.lib.php:679
+#: libraries/server_privileges.lib.php:973 server_privileges.php:83
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:222
+#: libraries/server_privileges.lib.php:876 server_privileges.php:75
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:227
+#: libraries/server_privileges.lib.php:874 server_privileges.php:60
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:232
+#: libraries/server_privileges.lib.php:964 server_privileges.php:88
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:237
+#: libraries/server_privileges.lib.php:948 server_privileges.php:91
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:242
+#: libraries/server_privileges.lib.php:886 server_privileges.php:65
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:247
+#: libraries/server_privileges.lib.php:969 server_privileges.php:77
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:252
+#: libraries/server_privileges.lib.php:982 server_privileges.php:86
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:257
+#: libraries/server_privileges.lib.php:978 server_privileges.php:85
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:262
+#: libraries/server_privileges.lib.php:278
+#: libraries/server_privileges.lib.php:906
+#: libraries/server_privileges.lib.php:913 server_privileges.php:67
+msgid "Allows creating new views."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:267
+#: libraries/server_privileges.lib.php:920 server_privileges.php:71
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:272
+#: libraries/server_privileges.lib.php:924 server_privileges.php:92
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:283
+#: libraries/server_privileges.lib.php:289
+#: libraries/server_privileges.lib.php:890 server_privileges.php:89
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:294
+#: libraries/server_privileges.lib.php:894 server_privileges.php:63
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:299
+#: libraries/server_privileges.lib.php:898 server_privileges.php:61
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:304
+#: libraries/server_privileges.lib.php:986 server_privileges.php:66
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:309
+#: libraries/server_privileges.lib.php:900 server_privileges.php:72
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:357
+#: libraries/server_privileges.lib.php:358
+msgctxt "None privileges"
+msgid "None"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:521
+msgid "Resource limits"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:523
+msgid "Note: Setting these options to 0 (zero) removes the limit."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:529
+#: libraries/server_privileges.lib.php:537 server_privileges.php:79
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:544
+#: libraries/server_privileges.lib.php:550 server_privileges.php:80
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:557
+#: libraries/server_privileges.lib.php:562 server_privileges.php:78
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:569
+#: libraries/server_privileges.lib.php:577 server_privileges.php:81
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:630
+#: libraries/server_privileges.lib.php:804
+#: libraries/server_privileges.lib.php:2253
+#: libraries/server_privileges.lib.php:2265
+msgid "Table-specific privileges"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:632
+#: libraries/server_privileges.lib.php:811
+#: libraries/server_privileges.lib.php:2430
+msgid "Note: MySQL privilege names are expressed in English"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:779
+msgid "Administration"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:800
+#: libraries/server_privileges.lib.php:2428
+msgid "Global privileges"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:802
+#: libraries/server_privileges.lib.php:2252
+msgid "Database-specific privileges"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:869 server_privileges.php:64
+msgid "Allows creating new tables."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:881 server_privileges.php:70
+msgid "Allows dropping tables."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:942 server_privileges.php:74
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1050
+msgid "Login Information"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1082
+#: libraries/server_privileges.lib.php:1243
+#: libraries/server_privileges.lib.php:2378
+msgid "Use text field"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1103
+msgid ""
+"An account already exists with the same username but possibly a different "
+"hostname. Are you sure you wish to proceed?"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1233
+msgid "Do not change the password"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1374
+#, php-format
+msgid "The password for %s was changed successfully."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1416
+#, php-format
+msgid "You have revoked the privileges for %s"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1476
+msgid "Database for user"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1480
+msgid "Create database with same name and grant all privileges"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1486
+msgid "Grant all privileges on wildcard name (username\\_%)"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1494
+#, php-format
+msgid "Grant all privileges on database "%s""
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1589
+#, php-format
+msgid "Users having access to "%s""
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1600
+#: libraries/server_privileges.lib.php:2425
+#: libraries/server_privileges.lib.php:2843
+#: libraries/server_privileges.lib.php:2891 server_status.php:371
+msgid "User"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1604
+#: libraries/server_privileges.lib.php:2262
+#: libraries/server_privileges.lib.php:2433
+msgid "Grant"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1639
+msgid "User has been added."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1647
+msgctxt "Create new user"
+msgid "New"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1703
+#: libraries/server_privileges.lib.php:1869
+#: libraries/server_privileges.lib.php:2502
+msgid "Any"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1718
+msgid "global"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1724
+msgid "database-specific"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1726
+msgid "wildcard"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1773 server_privileges.php:165
+msgid "No user found."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1799
+msgid "Edit Privileges"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1810
+msgid "Revoke"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1969
+msgid "… keep the old one."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1970
+msgid "… delete the old one from the user tables."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1971
+msgid ""
+"… revoke all active privileges from the old one and delete it afterwards."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1972
+msgid ""
+"… delete the old one from the user tables and reload the privileges "
+"afterwards."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1983
+msgid "Change Login Information / Copy User"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:1989
+msgid "Create a new user with the same privileges and …"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2266
+msgid "Column-specific privileges"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2317
+msgid "Add privileges on the following database:"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2338
+msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2356
+msgid "Add privileges on the following table:"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2573
+msgid "Remove selected users"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2577
+msgid "Revoke all active privileges from the users and delete them afterwards."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2581
+#: libraries/server_privileges.lib.php:2585
+#: libraries/server_privileges.lib.php:2586
+msgid "Drop the databases that have the same names as the users."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2717
+msgid "No users selected for deleting!"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2720
+msgid "Reloading the privileges"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2739
+msgid "The selected users have been deleted successfully."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2805
+#, php-format
+msgid "You have updated the privileges for %s."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2834
+#, php-format
+msgid "Privileges for %s"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2890
+msgid "Edit Privileges:"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:2944
+msgid "Users overview"
+msgstr ""
+
+#: libraries/server_privileges.lib.php:3019
+#, php-format
+msgid ""
+"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
+"tables. The content of these tables may differ from the privileges the "
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:3064
+msgid "The selected user was not found in the privilege table."
+msgstr ""
+
+#: libraries/server_privileges.lib.php:3277
+msgid "You have added a new user."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:77
+#, php-format
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/server_status_monitor.lib.php:80
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/server_status_monitor.lib.php:96
+msgid "Log statistics"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:97
+msgid "Selected time range:"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:103
+msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:108
+msgid "Remove variable data in INSERT statements for better grouping"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:111
+msgid "Choose from which log you want the statistics to be generated from."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:114
+msgid "Results are grouped by query text."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:118
+msgid "Query analyzer"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:135
+msgid "Monitor Instructions"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:137
+msgid ""
+"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
+"and track down time intensive queries. For the latter you will need to set "
+"log_output to 'TABLE' and have either the slow_query_log or general_log "
+"enabled. Note however, that the general_log produces a lot of data and "
+"increases server load by up to 15%."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:149
+msgid ""
+"Unfortunately your Database server does not support logging to table, which "
+"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
+"table is supported by MySQL 5.1.6 and onwards. You may still use the server "
+"charting features however."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:164
+msgid "Using the monitor:"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:167
+msgid ""
+"Your browser will refresh all displayed charts in a regular interval. You "
+"may add charts and change the refresh rate under 'Settings', or remove any "
+"chart using the cog icon on each respective chart."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:173
+msgid ""
+"To display queries from the logs, select the relevant time span on any chart "
+"by holding down the left mouse button and panning over the chart. Once "
+"confirmed, this will load a table of grouped queries, there you may click on "
+"any occurring SELECT statements to further analyze them."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:183
+msgid "Please note:"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:186
+msgid ""
+"Enabling the general_log may increase the server load by 5-15%. Also be "
+"aware that generating statistics from the logs is a load intensive task, so "
+"it is advisable to select only a small time span and to disable the "
+"general_log and empty its table once monitoring is not required any more."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:207
+#: libraries/server_status_monitor.lib.php:314
+msgid "Add chart"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:211
+msgid "Preset chart"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:216
+msgid "Status variable(s)"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:219
+msgid "Select series:"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:221
+msgid "Commonly monitored"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:237
+msgid "or type variable name:"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:244
+msgid "Display as differential value"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:247
+msgid "Apply a divisor"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:255
+msgid "Append unit to data values"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:261
+msgid "Add this series"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:263
+msgid "Clear series"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:266
+msgid "Series in Chart:"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:287
+msgid "Start Monitor"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:294
+msgid "Instructions/Setup"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:298
+msgid "Done dragging (rearranging) charts"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:317
+msgid "Enable charts dragging"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:321
+msgid "Refresh rate"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:330
+msgid "Chart columns"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:346
+msgid "Chart arrangement"
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:349
+msgid ""
+"The arrangement of the charts is stored to the browsers local storage. You "
+"may want to export it if you have a complicated set up."
+msgstr ""
+
+#: libraries/server_status_monitor.lib.php:363
+msgid "Reset to default"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:39 server_variables.php:156
+msgid "Filters"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:44 server_variables.php:158
+msgid "Containing the word:"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:52
+msgid "Show only alert values"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:57
+msgid "Filter by category…"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:78
+msgid "Show unformatted values"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:98
+msgid "Related links:"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:320
+msgid ""
+"The number of connections that were aborted because the client died without "
+"closing the connection properly."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:324
+msgid "The number of failed attempts to connect to the MySQL server."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:327
+msgid ""
+"The number of transactions that used the temporary binary log cache but that "
+"exceeded the value of binlog_cache_size and used a temporary file to store "
+"statements from the transaction."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:332
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:335
+msgid ""
+"The number of connection attempts (successful or not) to the MySQL server."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:339
+msgid ""
+"The number of temporary tables on disk created automatically by the server "
+"while executing statements. If Created_tmp_disk_tables is big, you may want "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:346
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:349
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:353
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:357
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:362
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:365
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:368
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:371
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:374
+msgid ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:380
+msgid ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:386
+msgid ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:391
+msgid ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:396
+msgid ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY … DESC."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:400
+msgid ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:407
+msgid ""
+"The number of requests to read the next row in the data file. This is high "
+"if you are doing a lot of table scans. Generally this suggests that your "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:414
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:417
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:420
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:423
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:426
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:429
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:433
+msgid "The number of free pages."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:436
+msgid ""
+"The number of latched pages in InnoDB buffer pool. These are pages currently "
+"being read or written or that can't be flushed or removed for some other "
+"reason."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:441
+msgid ""
+"The number of pages busy because they have been allocated for administrative "
+"overhead such as row locks or the adaptive hash index. This value can also "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:448
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:451
+msgid ""
+"The number of \"random\" read-aheads InnoDB initiated. This happens when a "
+"query is to scan a large portion of a table but in random order."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:456
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:460
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:463
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:467
+msgid ""
+"Normally, writes to the InnoDB buffer pool happen in the background. "
+"However, if it's necessary to read or create a page and no clean pages are "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:475
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:478
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:481
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:484
+msgid "The current number of pending reads."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:487
+msgid "The current number of pending writes."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:490
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:493
+msgid "The total number of data reads."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:496
+msgid "The total number of data writes."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:499
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:502
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:506
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:509
+msgid ""
+"The number of waits we had because log buffer was too small and we had to "
+"wait for it to be flushed before continuing."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:513
+msgid "The number of log write requests."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:516
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:519
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:522
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:525
+msgid "Pending log file writes."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:528
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:531
+msgid "The number of pages created."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:534
+msgid ""
+"The compiled-in InnoDB page size (default 16KB). Many values are counted in "
+"pages; the page size allows them to be easily converted to bytes."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:539
+msgid "The number of pages read."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:542
+msgid "The number of pages written."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:545
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:548
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:551
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:554
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:557
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:560
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:563
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:566
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:569
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:572
+msgid ""
+"The number of key blocks in the key cache that have changed but haven't yet "
+"been flushed to disk. It used to be known as Not_flushed_key_blocks."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:577
+msgid ""
+"The number of unused blocks in the key cache. You can use this value to "
+"determine how much of the key cache is in use."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:581
+msgid ""
+"The number of used blocks in the key cache. This value is a high-water mark "
+"that indicates the maximum number of blocks that have ever been in use at "
+"one time."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:586
+msgid "Percentage of used key cache (calculated value)"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:589
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:592
+msgid ""
+"The number of physical reads of a key block from disk. If Key_reads is big, "
+"then your key_buffer_size value is probably too small. The cache miss rate "
+"can be calculated as Key_reads/Key_read_requests."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:598
+msgid ""
+"Key cache miss calculated as rate of physical reads compared to read "
+"requests (calculated value)"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:602
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:605
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:608
+msgid ""
+"Percentage of physical writes compared to write requests (calculated value)"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:612
+msgid ""
+"The total cost of the last compiled query as computed by the query "
+"optimizer. Useful for comparing the cost of different query plans for the "
+"same query. The default value of 0 means that no query has been compiled yet."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:618
+msgid ""
+"The maximum number of connections that have been in use simultaneously since "
+"the server started."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:622
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:625
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:629
+msgid "The number of files that are open."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:632
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:635
+msgid "The number of tables that are open."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:638
+msgid ""
+"The number of free memory blocks in query cache. High numbers can indicate "
+"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
+"statement."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:643
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:646
+msgid "The number of cache hits."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:649
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:652
+msgid ""
+"The number of queries that have been removed from the cache to free up "
+"memory for caching new queries. This information can help you tune the query "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:659
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:663
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:666
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:669
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:672
+msgid ""
+"The number of joins that do not use indexes. If this value is not 0, you "
+"should carefully check the indexes of your tables."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:676
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:679
+msgid ""
+"The number of joins without keys that check for key usage after each row. "
+"(If this is not 0, you should carefully check the indexes of your tables.)"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:684
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:688
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:691
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:695
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:699
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:702
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:706
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:710
+msgid ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:715
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:718
+msgid "The number of sorted rows."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:721
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:724
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:727
+msgid ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:733
+msgid ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:738
+msgid "The number of currently open connections."
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:741
+msgid ""
+"The number of threads created to handle connections. If Threads_created is "
+"big, you may want to increase the thread_cache_size value. (Normally this "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:748
+msgid "Thread cache hit rate (calculated value)"
+msgstr ""
+
+#: libraries/server_status_variables.lib.php:751
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: libraries/sql.lib.php:409
+msgid "SQL result"
+msgstr ""
+
+#: libraries/sql.lib.php:416
+msgid "Generated by:"
+msgstr ""
+
+#: libraries/sql.lib.php:447
+msgid "Detailed profile"
+msgstr ""
+
+#: libraries/sql.lib.php:450
+msgid "Order"
+msgstr ""
+
+#: libraries/sql.lib.php:452 libraries/sql.lib.php:499
+msgid "State"
+msgstr ""
+
+#: libraries/sql.lib.php:496
+msgid "Summary by state"
+msgstr ""
+
+#: libraries/sql.lib.php:504
+msgid "Total Time"
+msgstr ""
+
+#: libraries/sql.lib.php:506
+msgid "% Time"
+msgstr ""
+
+#: libraries/sql.lib.php:508
+msgid "Calls"
+msgstr ""
+
+#: libraries/sql.lib.php:510
+msgid "ø Time"
+msgstr ""
+
+#: libraries/sql.lib.php:682 libraries/sql.lib.php:702
+msgid "Bookmark this SQL query"
+msgstr ""
+
+#: libraries/sql.lib.php:686
+msgid "Label:"
+msgstr ""
+
+#: libraries/sql.lib.php:694 libraries/sql_query_form.lib.php:330
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql.lib.php:942
+msgid "Bookmark not created"
+msgstr ""
+
+#: libraries/sql.lib.php:1097
+#, php-format
+msgid "Using bookmark \"%s\" as default browse query."
+msgstr ""
+
+#: libraries/sql.lib.php:1541
+msgid "Showing as PHP code"
+msgstr ""
+
+#: libraries/sql.lib.php:1546
+msgid "Validated SQL"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:188
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:209 libraries/sql_query_form.lib.php:233
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:275 setup/frames/index.inc.php:260
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:322
+msgid "Bookmark this SQL query:"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:336
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:353
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:360
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:368
+msgid "Show this query here again"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:428
+msgid "View only"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:131
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem."
+msgstr ""
+
+#: libraries/sqlparser.lib.php:178
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:191
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:193
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:195
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:199
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:398
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:402
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:570
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:688
+msgid "Unknown Punctuation String"
+msgstr ""
+
+#: libraries/sqlvalidator.lib.php:69
+#, php-format
+msgid ""
+"The SQL validator could not be initialized. Please check if you have "
+"installed the necessary PHP extensions as described in the %sdocumentation%s."
+msgstr ""
+
+#: libraries/structure.lib.php:68 tbl_operations.php:311
+#, php-format
+msgid "Table %s has been emptied"
+msgstr ""
+
+#: libraries/structure.lib.php:91 tbl_create.php:201
+msgid "Tracking is active."
+msgstr ""
+
+#: libraries/structure.lib.php:98 tbl_create.php:207
+msgid "Tracking is not active."
+msgstr ""
+
+#: libraries/structure.lib.php:129 tbl_operations.php:329
+#, php-format
+msgid "View %s has been dropped"
+msgstr ""
+
+#: libraries/structure.lib.php:130 tbl_operations.php:330
+#, php-format
+msgid "Table %s has been dropped"
+msgstr ""
+
+#: libraries/structure.lib.php:185
+msgid "Sum"
+msgstr ""
+
+#: libraries/structure.lib.php:319
+msgid "Add prefix to table"
+msgstr ""
+
+#: libraries/structure.lib.php:321
+msgid "Replace table prefix"
+msgstr ""
+
+#: libraries/structure.lib.php:323
+msgid "Copy table with prefix"
+msgstr ""
+
+#: libraries/structure.lib.php:344
+msgid "Check tables having overhead"
+msgstr ""
+
+#: libraries/structure.lib.php:851
+msgid "Sort"
+msgstr ""
+
+#: libraries/structure.lib.php:1279 tbl_tracking.php:360
+msgctxt "None for default"
+msgid "None"
+msgstr ""
+
+#: libraries/structure.lib.php:1329
+#, php-format
+msgid "Column %s has been dropped"
+msgstr ""
+
+#: libraries/structure.lib.php:1383 libraries/structure.lib.php:2058
+#: libraries/structure.lib.php:2068
+#: libraries/tbl_columns_definition_form.inc.php:562
+msgid "Primary"
+msgstr ""
+
+#: libraries/structure.lib.php:1391 libraries/structure.lib.php:2060
+#: libraries/structure.lib.php:2070 libraries/structure.lib.php:2178
+#: libraries/tbl_columns_definition_form.inc.php:123
+#: libraries/tbl_columns_definition_form.inc.php:576 tbl_printview.php:306
+msgid "Index"
+msgstr ""
+
+#: libraries/structure.lib.php:1398 libraries/structure.lib.php:2064
+#: libraries/structure.lib.php:2074
+msgid "Spatial"
+msgstr ""
+
+#: libraries/structure.lib.php:1408 libraries/structure.lib.php:2066
+#: libraries/structure.lib.php:2076
+#: libraries/tbl_columns_definition_form.inc.php:584
+msgid "Fulltext"
+msgstr ""
+
+#: libraries/structure.lib.php:1423 libraries/structure.lib.php:1519
+msgid "Move columns"
+msgstr ""
+
+#: libraries/structure.lib.php:1426
+msgid "Move the columns by dragging them up and down."
+msgstr ""
+
+#: libraries/structure.lib.php:1460
+msgid "Edit view"
+msgstr ""
+
+#: libraries/structure.lib.php:1493
+msgid "Relation view"
+msgstr ""
+
+#: libraries/structure.lib.php:1505
+msgid "Propose table structure"
+msgstr ""
+
+#: libraries/structure.lib.php:1541
+#: libraries/tbl_columns_definition_form.inc.php:758
+msgid "You have to add at least one column."
+msgstr ""
+
+#: libraries/structure.lib.php:1556
+msgid "Add column"
+msgstr ""
+
+#: libraries/structure.lib.php:1561
+#: libraries/tbl_columns_definition_form.inc.php:748
+#, php-format
+msgid "Add %s column(s)"
+msgstr ""
+
+#: libraries/structure.lib.php:1578
+msgid "At End of Table"
+msgstr ""
+
+#: libraries/structure.lib.php:1579
+msgid "At Beginning of Table"
+msgstr ""
+
+#: libraries/structure.lib.php:1580
+#, php-format
+msgid "After %s"
+msgstr ""
+
+#: libraries/structure.lib.php:1674
+msgid "Row statistics"
+msgstr ""
+
+#: libraries/structure.lib.php:1679 tbl_printview.php:353
+msgid "static"
+msgstr ""
+
+#: libraries/structure.lib.php:1681 tbl_printview.php:355
+msgid "dynamic"
+msgstr ""
+
+#: libraries/structure.lib.php:1692
+msgid "partitioned"
+msgstr ""
+
+#: libraries/structure.lib.php:1729 tbl_printview.php:376
+msgid "Row length"
+msgstr ""
+
+#: libraries/structure.lib.php:1742 tbl_printview.php:390
+msgid "Row size"
+msgstr ""
+
+#: libraries/structure.lib.php:1750 tbl_printview.php:399
+msgid "Next autoindex"
+msgstr ""
+
+#: libraries/structure.lib.php:1876 libraries/structure.lib.php:1957
+#: libraries/structure.lib.php:1965 libraries/structure.lib.php:1982
+#, php-format
+msgid "An index has been added on %s"
+msgstr ""
+
+#: libraries/structure.lib.php:1947
+#, php-format
+msgid "A primary key has been added on %s"
+msgstr ""
+
+#: libraries/structure.lib.php:2007 libraries/structure.lib.php:2078
+msgid "Distinct values"
+msgstr ""
+
+#: libraries/structure.lib.php:2010 libraries/structure.lib.php:2013
+msgid "Add primary key"
+msgstr ""
+
+#: libraries/structure.lib.php:2022 libraries/structure.lib.php:2025
+msgid "Add unique index"
+msgstr ""
+
+#: libraries/structure.lib.php:2028 libraries/structure.lib.php:2031
+msgid "Add SPATIAL index"
+msgstr ""
+
+#: libraries/structure.lib.php:2034 libraries/structure.lib.php:2037
+msgid "Add FULLTEXT index"
+msgstr ""
+
+#: libraries/structure.lib.php:2168
+msgid "Space usage"
+msgstr ""
+
+#: libraries/structure.lib.php:2188 tbl_printview.php:322
+msgid "Effective"
+msgstr ""
+
+#: libraries/structure.lib.php:2369 tbl_addfield.php:96 tbl_indexes.php:112
+#, php-format
+msgid "Table %1$s has been altered successfully"
+msgstr ""
+
+#: libraries/structure.lib.php:2417 tbl_tracking.php:458 tbl_tracking.php:482
+msgid "Query error"
+msgstr ""
+
+#: libraries/structure.lib.php:2513
+msgid "The columns have been moved successfully."
+msgstr ""
+
+#: libraries/structure.lib.php:2561
+#, php-format
+msgid "The column name '%s' is a MySQL reserved keyword."
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:101
+msgid ""
+"If column type is \"enum\" or \"set\", please enter the values using this "
+"format: 'a','b','c'…
If you ever need to put a backslash (\"\\\") or a "
+"single quote (\"'\") amongst those values, precede it with a backslash (for "
+"example '\\\\xyz' or 'a\\'b')."
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:110
+msgid ""
+"For default values, please enter just a single value, without backslash "
+"escaping or quotes, using this format: a"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:149
+msgid "Move column"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:159
+#, php-format
+msgid ""
+"For a list of available transformation options and their MIME type "
+"transformations, click on %stransformation descriptions%s"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:171
+msgid "Transformation options"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:174
+msgid ""
+"Please enter the values for transformation options using this format: 'a', "
+"100, b,'c'…
If you ever need to put a backslash (\"\\\") or a single "
+"quote (\"'\") amongst those values, precede it with a backslash (for example "
+"'\\\\xyz' or 'a\\'b')."
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:412
+msgid "ENUM or SET data too long?"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:414
+msgid "Get more editing space"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:430
+msgctxt "for default"
+msgid "None"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:431
+msgid "As defined:"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:634
+msgid "first"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:644
+#, php-format
+msgid "after %s"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:737
+msgid "Table name"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:838
+msgid "Storage Engine:"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:842
+msgid "Collation:"
+msgstr ""
+
+#: libraries/tbl_columns_definition_form.inc.php:876
+msgid "PARTITION definition:"
+msgstr ""
+
+#: libraries/tbl_common.inc.php:54
+#, php-format
+msgid "Tracking of %s is activated."
+msgstr ""
+
+#: libraries/tbl_gis_visualization.lib.php:141
+msgid "No data found for GIS visualization."
+msgstr ""
+
+#: libraries/tbl_gis_visualization.lib.php:223
+msgid "Label column"
+msgstr ""
+
+#: libraries/tbl_gis_visualization.lib.php:223
+msgid "Spatial column"
+msgstr ""
+
+#: libraries/tbl_gis_visualization.lib.php:230
+msgid "-- None --"
+msgstr ""
+
+#: libraries/tbl_gis_visualization.lib.php:287
+msgid "Display GIS Visualization"
+msgstr ""
+
+#: libraries/tbl_gis_visualization.lib.php:304
+msgid "Redraw"
+msgstr ""
+
+#: libraries/tbl_gis_visualization.lib.php:324
+msgid "File name"
+msgstr ""
+
+#: libraries/tbl_gis_visualization.lib.php:340 setup/frames/config.inc.php:38
+#: setup/frames/index.inc.php:244
+msgid "Download"
+msgstr ""
+
+#: libraries/user_preferences.inc.php:29
+msgid "Manage your settings"
+msgstr ""
+
+#: libraries/user_preferences.inc.php:46 prefs_manage.php:298
+msgid "Configuration has been saved"
+msgstr ""
+
+#: libraries/user_preferences.inc.php:66
+#, php-format
+msgid ""
+"Your preferences will be saved for current session only. Storing them "
+"permanently requires %sphpMyAdmin configuration storage%s."
+msgstr ""
+
+#: libraries/user_preferences.lib.php:122
+msgid "Could not save configuration"
+msgstr ""
+
+#: libraries/user_preferences.lib.php:280
+msgid ""
+"Your browser has phpMyAdmin configuration for this domain. Would you like to "
+"import it for current session?"
+msgstr ""
+
+#: libraries/zip_extension.lib.php:29
+msgid "No files found inside ZIP archive!"
+msgstr ""
+
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
+msgid "Error in ZIP archive:"
+msgstr ""
+
+#: navigation.php:23
+msgid "Fatal error: The navigation can only be accessed via AJAX"
+msgstr ""
+
+#: pmd_display_field.php:60 pmd_save_pos.php:75
+msgid "Modifications have been saved"
+msgstr ""
+
+#: pmd_general.php:68
+msgid "Show/Hide left menu"
+msgstr ""
+
+#: pmd_general.php:72
+msgid "View in fullscreen"
+msgstr ""
+
+#: pmd_general.php:76
+msgid "Exit fullscreen"
+msgstr ""
+
+#: pmd_general.php:81
+msgid "Save position"
+msgstr ""
+
+#: pmd_general.php:90 pmd_general.php:387
+msgid "Create relation"
+msgstr ""
+
+#: pmd_general.php:99
+msgid "Reload"
+msgstr ""
+
+#: pmd_general.php:103
+msgid "Help"
+msgstr ""
+
+#: pmd_general.php:109
+msgid "Angular links"
+msgstr ""
+
+#: pmd_general.php:109
+msgid "Direct links"
+msgstr ""
+
+#: pmd_general.php:113
+msgid "Snap to grid"
+msgstr ""
+
+#: pmd_general.php:119
+msgid "Small/Big All"
+msgstr ""
+
+#: pmd_general.php:123
+msgid "Toggle small/big"
+msgstr ""
+
+#: pmd_general.php:127
+msgid "Toggle relation lines"
+msgstr ""
+
+#: pmd_general.php:133 pmd_pdf.php:101
+msgid "Import/Export coordinates for PDF schema"
+msgstr ""
+
+#: pmd_general.php:140
+msgid "Build Query"
+msgstr ""
+
+#: pmd_general.php:147
+msgid "Move Menu"
+msgstr ""
+
+#: pmd_general.php:160
+msgid "Hide/Show all"
+msgstr ""
+
+#: pmd_general.php:164
+msgid "Hide/Show Tables with no relation"
+msgstr ""
+
+#: pmd_general.php:204
+msgid "Number of tables:"
+msgstr ""
+
+#: pmd_general.php:453
+msgid "Delete relation"
+msgstr ""
+
+#: pmd_general.php:495 pmd_general.php:554
+msgid "Relation operator"
+msgstr ""
+
+#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687
+#: pmd_general.php:804
+msgid "Except"
+msgstr ""
+
+#: pmd_general.php:511 pmd_general.php:570 pmd_general.php:693
+#: pmd_general.php:810
+msgid "subquery"
+msgstr ""
+
+#: pmd_general.php:515 pmd_general.php:611
+msgid "Rename to"
+msgstr ""
+
+#: pmd_general.php:517 pmd_general.php:616
+msgid "New name"
+msgstr ""
+
+#: pmd_general.php:520 pmd_general.php:735
+msgid "Aggregate"
+msgstr ""
+
+#: pmd_general.php:845
+msgid "Active options"
+msgstr ""
+
+#: pmd_pdf.php:49
+msgid "Page has been created"
+msgstr ""
+
+#: pmd_pdf.php:52
+msgid "Page creation failed"
+msgstr ""
+
+#: pmd_pdf.php:112
+msgid "Page:"
+msgstr ""
+
+#: pmd_pdf.php:122
+msgid "Import from selected page"
+msgstr ""
+
+#: pmd_pdf.php:123
+msgid "Export to selected page"
+msgstr ""
+
+#: pmd_pdf.php:125
+msgid "Create a page and export to it"
+msgstr ""
+
+#: pmd_pdf.php:137
+msgid "New page name: "
+msgstr ""
+
+#: pmd_pdf.php:140
+msgid "Export/Import to scale:"
+msgstr ""
+
+#: pmd_pdf.php:145
+msgid "recommended"
+msgstr ""
+
+#: pmd_relation_new.php:35
+msgid "Error: relation already exists."
+msgstr ""
+
+#: pmd_relation_new.php:77 pmd_relation_new.php:100
+msgid "Error: Relation not added."
+msgstr ""
+
+#: pmd_relation_new.php:78
+msgid "FOREIGN KEY relation added"
+msgstr ""
+
+#: pmd_relation_new.php:82
+msgid "Error: Relational features are disabled!"
+msgstr ""
+
+#: pmd_relation_new.php:98
+msgid "Internal relation added"
+msgstr ""
+
+#: pmd_relation_upd.php:66
+msgid "Relation deleted"
+msgstr ""
+
+#: pmd_save_pos.php:67
+msgid "Error saving coordinates for Designer."
+msgstr ""
+
+#: prefs_forms.php:85
+msgid "Cannot save settings, submitted form contains errors"
+msgstr ""
+
+#: prefs_manage.php:81
+msgid "Could not import configuration"
+msgstr ""
+
+#: prefs_manage.php:114
+msgid "Configuration contains incorrect data for some fields."
+msgstr ""
+
+#: prefs_manage.php:133
+msgid "Do you want to import remaining settings?"
+msgstr ""
+
+#: prefs_manage.php:232 prefs_manage.php:258
+msgid "Saved on: @DATE@"
+msgstr ""
+
+#: prefs_manage.php:246
+msgid "Import from file"
+msgstr ""
+
+#: prefs_manage.php:252
+msgid "Import from browser's storage"
+msgstr ""
+
+#: prefs_manage.php:255
+msgid "Settings will be imported from your browser's local storage."
+msgstr ""
+
+#: prefs_manage.php:261
+msgid "You have no saved settings!"
+msgstr ""
+
+#: prefs_manage.php:265 prefs_manage.php:318
+msgid "This feature is not supported by your web browser"
+msgstr ""
+
+#: prefs_manage.php:270
+msgid "Merge with current configuration"
+msgstr ""
+
+#: prefs_manage.php:284
+#, php-format
+msgid ""
+"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
+"script%s."
+msgstr ""
+
+#: prefs_manage.php:308
+msgid "Save to browser's storage"
+msgstr ""
+
+#: prefs_manage.php:312
+msgid "Settings will be saved in your browser's local storage."
+msgstr ""
+
+#: prefs_manage.php:314
+msgid "Existing settings will be overwritten!"
+msgstr ""
+
+#: prefs_manage.php:329
+msgid "You can reset all your settings and restore them to default values."
+msgstr ""
+
+#: querywindow.php:64
+msgid "Import files"
+msgstr ""
+
+#: querywindow.php:77
+msgid "All"
+msgstr ""
+
+#: querywindow.php:154
+msgid "SQL history:"
+msgstr ""
+
+#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53
+#, php-format
+msgid "%s table not found or not set in %s"
+msgstr ""
+
+#: schema_export.php:62
+msgid "File doesn't exist"
+msgstr ""
+
+#: server_databases.php:118
+#, php-format
+msgid "%1$d database has been dropped successfully."
+msgid_plural "%1$d databases have been dropped successfully."
+msgstr[0] ""
+msgstr[1] ""
+
+#: server_databases.php:182
+msgid "No databases"
+msgstr ""
+
+#: server_export.php:20
+msgid "View dump (schema) of databases"
+msgstr ""
+
+#: server_privileges.php:208
+#, php-format
+msgid "The user %s already exists!"
+msgstr ""
+
+#: server_privileges.php:311
+#, php-format
+msgid "Deleting %s"
+msgstr ""
+
+#: server_privileges.php:356
+msgid "The privileges were reloaded successfully."
+msgstr ""
+
+#: server_status.php:31
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr ""
+
+#: server_status.php:35
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr ""
+
+#: server_status.php:93
+#, php-format
+msgid "Network traffic since startup: %s"
+msgstr ""
+
+#: server_status.php:106
+#, php-format
+msgid "This MySQL server has been running for %1$s. It started up on %2$s."
+msgstr ""
+
+#: server_status.php:116
+msgid ""
+"This MySQL server works as master and slave in replication"
+"b> process."
+msgstr ""
+
+#: server_status.php:121
+msgid "This MySQL server works as master in replication process."
+msgstr ""
+
+#: server_status.php:126
+msgid "This MySQL server works as slave in replication process."
+msgstr ""
+
+#: server_status.php:140
+msgid "Replication status"
+msgstr ""
+
+#: server_status.php:169
+msgid ""
+"On a busy server, the byte counters may overrun, so those statistics as "
+"reported by the MySQL server may be incorrect."
+msgstr ""
+
+#: server_status.php:179
+msgid "Received"
+msgstr ""
+
+#: server_status.php:198
+msgid "Sent"
+msgstr ""
+
+#: server_status.php:261
+msgid "max. concurrent connections"
+msgstr ""
+
+#: server_status.php:271
+msgid "Failed attempts"
+msgstr ""
+
+#: server_status.php:295
+msgid "Aborted"
+msgstr ""
+
+#: server_status.php:367
+msgid "ID"
+msgstr ""
+
+#: server_status.php:383
+msgid "Command"
+msgstr ""
+
+#: server_status_advisor.php:44
+msgid "Instructions"
+msgstr ""
+
+#: server_status_advisor.php:50
+msgid ""
+"The Advisor system can provide recommendations on server variables by "
+"analyzing the server status variables."
+msgstr ""
+
+#: server_status_advisor.php:56
+msgid ""
+"Do note however that this system provides recommendations based on simple "
+"calculations and by rule of thumb which may not necessarily apply to your "
+"system."
+msgstr ""
+
+#: server_status_advisor.php:63
+msgid ""
+"Prior to changing any of the configuration, be sure to know what you are "
+"changing (by reading the documentation) and how to undo the change. Wrong "
+"tuning can have a very negative effect on performance."
+msgstr ""
+
+#: server_status_advisor.php:71
+msgid ""
+"The best way to tune your system would be to change only one setting at a "
+"time, observe or benchmark your database, and undo the change if there was "
+"no clearly measurable improvement."
+msgstr ""
+
+#: server_status_queries.php:67
+#, php-format
+msgid "Questions since startup: %s"
+msgstr ""
+
+#: server_status_queries.php:79
+msgid "per hour:"
+msgstr ""
+
+#: server_status_queries.php:82
+msgid "per minute:"
+msgstr ""
+
+#: server_status_queries.php:86
+msgid "per second:"
+msgstr ""
+
+#: server_status_queries.php:119
+msgid "Statements"
+msgstr ""
+
+#. l10n: # = Amount of queries
+#: server_status_queries.php:122
+msgid "#"
+msgstr ""
+
+#: server_variables.php:107
+msgid "Setting variable failed"
+msgstr ""
+
+#: server_variables.php:119
+msgid "Server variables and settings"
+msgstr ""
+
+#: server_variables.php:168 server_variables.php:208
+msgid "Session value"
+msgstr ""
+
+#: server_variables.php:168
+msgid "Global value"
+msgstr ""
+
+#: setup/frames/form.inc.php:25
+msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php"
+msgstr ""
+
+#: setup/frames/index.inc.php:51
+msgid "Cannot load or save configuration"
+msgstr ""
+
+#: setup/frames/index.inc.php:52
+msgid ""
+"Please create web server writable folder [em]config[/em] in phpMyAdmin top "
+"level directory as described in [doc@setup_script]documentation[/doc]. "
+"Otherwise you will be only able to download or display it."
+msgstr ""
+
+#: setup/frames/index.inc.php:60
+msgid ""
+"You are not using a secure connection; all data (including potentially "
+"sensitive information, like passwords) is transferred unencrypted!"
+msgstr ""
+
+#: setup/frames/index.inc.php:64
+#, php-format
+msgid ""
+"If your server is also configured to accept HTTPS requests follow [a@%s]this "
+"link[/a] to use a secure connection."
+msgstr ""
+
+#: setup/frames/index.inc.php:68
+msgid "Insecure connection"
+msgstr ""
+
+#: setup/frames/index.inc.php:98
+msgid "Configuration saved."
+msgstr ""
+
+#: setup/frames/index.inc.php:99
+msgid ""
+"Configuration saved to file config/config.inc.php in phpMyAdmin top level "
+"directory, copy it to top level one and delete directory config to use it."
+msgstr ""
+
+#: setup/frames/index.inc.php:107 setup/frames/menu.inc.php:16
+msgid "Overview"
+msgstr ""
+
+#: setup/frames/index.inc.php:115
+msgid "Show hidden messages (#MSG_COUNT)"
+msgstr ""
+
+#: setup/frames/index.inc.php:158
+msgid "There are no configured servers"
+msgstr ""
+
+#: setup/frames/index.inc.php:166
+msgid "New server"
+msgstr ""
+
+#: setup/frames/index.inc.php:199
+msgid "Default language"
+msgstr ""
+
+#: setup/frames/index.inc.php:210
+msgid "let the user choose"
+msgstr ""
+
+#: setup/frames/index.inc.php:221
+msgid "- none -"
+msgstr ""
+
+#: setup/frames/index.inc.php:225
+msgid "Default server"
+msgstr ""
+
+#: setup/frames/index.inc.php:237
+msgid "End of line"
+msgstr ""
+
+#: setup/frames/index.inc.php:243
+msgid "Display"
+msgstr ""
+
+#: setup/frames/index.inc.php:250
+msgid "Load"
+msgstr ""
+
+#: setup/frames/index.inc.php:270
+msgid "phpMyAdmin homepage"
+msgstr ""
+
+#: setup/frames/index.inc.php:272
+msgid "Donate"
+msgstr ""
+
+#: setup/frames/servers.inc.php:29
+msgid "Edit server"
+msgstr ""
+
+#: setup/frames/servers.inc.php:39
+msgid "Add a new server"
+msgstr ""
+
+#: setup/index.php:22
+msgid "Wrong GET file attribute value"
+msgstr ""
+
+#: setup/lib/form_processing.lib.php:48
+msgid "Warning"
+msgstr ""
+
+#: setup/lib/form_processing.lib.php:49
+msgid "Submitted form contains errors"
+msgstr ""
+
+#: setup/lib/form_processing.lib.php:50
+msgid "Try to revert erroneous fields to their default values"
+msgstr ""
+
+#: setup/lib/form_processing.lib.php:53
+msgid "Ignore errors"
+msgstr ""
+
+#: setup/lib/form_processing.lib.php:55
+msgid "Show form"
+msgstr ""
+
+#: setup/lib/index.lib.php:118
+msgid ""
+"Reading of version failed. Maybe you're offline or the upgrade server does "
+"not respond."
+msgstr ""
+
+#: setup/lib/index.lib.php:132
+msgid "Got invalid version string from server"
+msgstr ""
+
+#: setup/lib/index.lib.php:143
+msgid "Unparsable version string"
+msgstr ""
+
+#: setup/lib/index.lib.php:163
+#, php-format
+msgid ""
+"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
+"version is %s, released on %s."
+msgstr ""
+
+#: setup/lib/index.lib.php:170
+msgid "No newer stable version is available"
+msgstr ""
+
+#: setup/lib/index.lib.php:216
+#, php-format
+msgid ""
+"This %soption%s should be disabled as it allows attackers to bruteforce "
+"login to any MySQL server. If you feel this is necessary, use %strusted "
+"proxies list%s. However, IP-based protection may not be reliable if your IP "
+"belongs to an ISP where thousands of users, including you, are connected to."
+msgstr ""
+
+#: setup/lib/index.lib.php:218
+msgid ""
+"You didn't have blowfish secret set and have enabled cookie authentication, "
+"so a key was automatically generated for you. It is used to encrypt cookies; "
+"you don't need to remember it."
+msgstr ""
+
+#: setup/lib/index.lib.php:219
+#, php-format
+msgid ""
+"%sBzip2 compression and decompression%s requires functions (%s) which are "
+"unavailable on this system."
+msgstr ""
+
+#: setup/lib/index.lib.php:221
+msgid ""
+"This value should be double checked to ensure that this directory is neither "
+"world accessible nor readable or writable by other users on your server."
+msgstr ""
+
+#: setup/lib/index.lib.php:222
+#, php-format
+msgid "This %soption%s should be enabled if your web server supports it."
+msgstr ""
+
+#: setup/lib/index.lib.php:224
+#, php-format
+msgid ""
+"%sGZip compression and decompression%s requires functions (%s) which are "
+"unavailable on this system."
+msgstr ""
+
+#: setup/lib/index.lib.php:226
+#, php-format
+msgid ""
+"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
+"invalidation if %ssession.gc_maxlifetime%s is lower than its value "
+"(currently %d)."
+msgstr ""
+
+#: setup/lib/index.lib.php:228
+#, php-format
+msgid ""
+"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
+"most. Values larger than 1800 may pose a security risk such as impersonation."
+msgstr ""
+
+#: setup/lib/index.lib.php:230
+#, php-format
+msgid ""
+"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
+"cookie validity%s must be set to a value less or equal to it."
+msgstr ""
+
+#: setup/lib/index.lib.php:232
+#, php-format
+msgid ""
+"If you feel this is necessary, use additional protection settings - %shost "
+"authentication%s settings and %strusted proxies list%s. However, IP-based "
+"protection may not be reliable if your IP belongs to an ISP where thousands "
+"of users, including you, are connected to."
+msgstr ""
+
+#: setup/lib/index.lib.php:234
+#, php-format
+msgid ""
+"You set the [kbd]config[/kbd] authentication type and included username and "
+"password for auto-login, which is not a desirable option for live hosts. "
+"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
+"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
+"[kbd]http[/kbd]."
+msgstr ""
+
+#: setup/lib/index.lib.php:236
+#, php-format
+msgid ""
+"%sZip compression%s requires functions (%s) which are unavailable on this "
+"system."
+msgstr ""
+
+#: setup/lib/index.lib.php:238
+#, php-format
+msgid ""
+"%sZip decompression%s requires functions (%s) which are unavailable on this "
+"system."
+msgstr ""
+
+#: setup/lib/index.lib.php:266
+msgid "You should use SSL connections if your database server supports it."
+msgstr ""
+
+#: setup/lib/index.lib.php:281
+msgid "You should use mysqli for performance reasons."
+msgstr ""
+
+#: setup/lib/index.lib.php:318
+msgid "You allow for connecting to the server without a password."
+msgstr ""
+
+#: setup/lib/index.lib.php:342
+msgid "Key is too short, it should have at least 8 characters."
+msgstr ""
+
+#: setup/lib/index.lib.php:349
+msgid "Key should contain letters, numbers [em]and[/em] special characters."
+msgstr ""
+
+#: setup/validate.php:22
+msgid "Wrong data"
+msgstr ""
+
+#: sql.php:399
+#, php-format
+msgid ""
+"Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy "
+"and Delete features are not available."
+msgstr ""
+
+#: sql.php:452
+#, php-format
+msgid "Problems with indexes of table `%s`"
+msgstr ""
+
+#: tbl_chart.php:38
+msgid "No data to display"
+msgstr ""
+
+#: tbl_chart.php:62 tbl_gis_visualization.php:24
+msgid "No SQL query was set to fetch data."
+msgstr ""
+
+#: tbl_chart.php:124
+msgid "No numeric columns present in the table to plot."
+msgstr ""
+
+#: tbl_chart.php:154
+msgctxt "Chart type"
+msgid "Bar"
+msgstr ""
+
+#: tbl_chart.php:156
+msgctxt "Chart type"
+msgid "Column"
+msgstr ""
+
+#: tbl_chart.php:159
+msgctxt "Chart type"
+msgid "Line"
+msgstr ""
+
+#: tbl_chart.php:161
+msgctxt "Chart type"
+msgid "Spline"
+msgstr ""
+
+#: tbl_chart.php:163
+msgctxt "Chart type"
+msgid "Area"
+msgstr ""
+
+#: tbl_chart.php:166
+msgctxt "Chart type"
+msgid "Pie"
+msgstr ""
+
+#: tbl_chart.php:170
+msgctxt "Chart type"
+msgid "Timeline"
+msgstr ""
+
+#: tbl_chart.php:177
+msgid "Stacked"
+msgstr ""
+
+#: tbl_chart.php:180
+msgid "Chart title"
+msgstr ""
+
+#: tbl_chart.php:184
+msgid "X-Axis:"
+msgstr ""
+
+#: tbl_chart.php:200
+msgid "Series:"
+msgstr ""
+
+#: tbl_chart.php:229
+msgid "X-Axis label:"
+msgstr ""
+
+#: tbl_chart.php:232
+msgid "X Values"
+msgstr ""
+
+#: tbl_chart.php:234
+msgid "Y-Axis label:"
+msgstr ""
+
+#: tbl_chart.php:241
+msgid "Start row:"
+msgstr ""
+
+#: tbl_create.php:34
+#, php-format
+msgid "Table %s already exists!"
+msgstr ""
+
+#: tbl_create.php:58 tbl_get_field.php:23
+#, php-format
+msgid "'%s' database does not exist."
+msgstr ""
+
+#: tbl_create.php:125
+#, php-format
+msgid "Table %1$s has been created."
+msgstr ""
+
+#: tbl_export.php:27
+msgid "View dump (schema) of table"
+msgstr ""
+
+#: tbl_get_field.php:30
+msgid "Invalid table name"
+msgstr ""
+
+#: tbl_indexes.php:71
+msgid "The name of the primary key must be \"PRIMARY\"!"
+msgstr ""
+
+#: tbl_indexes.php:81
+msgid "Can't rename index to PRIMARY!"
+msgstr ""
+
+#: tbl_indexes.php:97
+msgid "No index parts defined!"
+msgstr ""
+
+#: tbl_move_copy.php:43
+msgid "Can't move table to same one!"
+msgstr ""
+
+#: tbl_move_copy.php:45
+msgid "Can't copy table to same one!"
+msgstr ""
+
+#: tbl_move_copy.php:55
+#, php-format
+msgid "Table %s has been moved to %s."
+msgstr ""
+
+#: tbl_move_copy.php:57
+#, php-format
+msgid "Table %s has been copied to %s."
+msgstr ""
+
+#: tbl_move_copy.php:79
+msgid "The table name is empty!"
+msgstr ""
+
+#: tbl_printview.php:65
+msgid "Showing tables:"
+msgstr ""
+
+#: tbl_printview.php:296
+msgid "Space usage:"
+msgstr ""
+
+#: tbl_printview.php:345
+msgid "Row Statistics:"
+msgstr ""
+
+#: tbl_relation.php:279
+#, php-format
+msgid "Error creating foreign key on %1$s (check data types)"
+msgstr ""
+
+#: tbl_relation.php:399
+msgid "Internal relation"
+msgstr ""
+
+#: tbl_relation.php:403
+msgid ""
+"An internal relation is not necessary when a corresponding FOREIGN KEY "
+"relation exists."
+msgstr ""
+
+#: tbl_relation.php:413
+msgid "Foreign key constraint"
+msgstr ""
+
+#: tbl_relation.php:571
+msgid "Constraint name"
+msgstr ""
+
+#: tbl_relation.php:602
+msgid "No index defined! Create one below"
+msgstr ""
+
+#: tbl_relation.php:617
+msgid "Choose column to display:"
+msgstr ""
+
+#: tbl_structure.php:125
+msgid "No column selected."
+msgstr ""
+
+#: tbl_tracking.php:136
+#, php-format
+msgid "Tracking report for table `%s`"
+msgstr ""
+
+#: tbl_tracking.php:206
+#, php-format
+msgid "Version %1$s was created, tracking for %2$s is active."
+msgstr ""
+
+#: tbl_tracking.php:223
+#, php-format
+msgid "Tracking for %1$s was deactivated at version %2$s."
+msgstr ""
+
+#: tbl_tracking.php:240
+#, php-format
+msgid "Tracking for %1$s was activated at version %2$s."
+msgstr ""
+
+#: tbl_tracking.php:254
+msgid "SQL statements executed."
+msgstr ""
+
+#: tbl_tracking.php:261
+msgid ""
+"You can execute the dump by creating and using a temporary database. Please "
+"ensure that you have the privileges to do so."
+msgstr ""
+
+#: tbl_tracking.php:263
+msgid "Comment out these two lines if you do not need them."
+msgstr ""
+
+#: tbl_tracking.php:273
+msgid "SQL statements exported. Please copy the dump or execute it."
+msgstr ""
+
+#: tbl_tracking.php:311
+#, php-format
+msgid "Version %s snapshot (SQL code)"
+msgstr ""
+
+#: tbl_tracking.php:455
+msgid "Tracking data definition successfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:479
+msgid "Tracking data manipulation successfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:494
+msgid "Tracking statements"
+msgstr ""
+
+#: tbl_tracking.php:525 tbl_tracking.php:675
+#, php-format
+msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s"
+msgstr ""
+
+#: tbl_tracking.php:533
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:549
+msgid "No data"
+msgstr ""
+
+#: tbl_tracking.php:558 tbl_tracking.php:620
+msgid "Date"
+msgstr ""
+
+#: tbl_tracking.php:560
+msgid "Data definition statement"
+msgstr ""
+
+#: tbl_tracking.php:622
+msgid "Data manipulation statement"
+msgstr ""
+
+#: tbl_tracking.php:680
+msgid "SQL dump (file download)"
+msgstr ""
+
+#: tbl_tracking.php:681
+msgid "SQL dump"
+msgstr ""
+
+#: tbl_tracking.php:683
+msgid "This option will replace your table and contained data."
+msgstr ""
+
+#: tbl_tracking.php:684
+msgid "SQL execution"
+msgstr ""
+
+#: tbl_tracking.php:702
+#, php-format
+msgid "Export as %s"
+msgstr ""
+
+#: tbl_tracking.php:739
+msgid "Show versions"
+msgstr ""
+
+#: tbl_tracking.php:827
+#, php-format
+msgid "Deactivate tracking for %s"
+msgstr ""
+
+#: tbl_tracking.php:833
+msgid "Deactivate now"
+msgstr ""
+
+#: tbl_tracking.php:843
+#, php-format
+msgid "Activate tracking for %s"
+msgstr ""
+
+#: tbl_tracking.php:849
+msgid "Activate now"
+msgstr ""
+
+#: tbl_tracking.php:862
+#, php-format
+msgid "Create version %1$s of %2$s"
+msgstr ""
+
+#: tbl_tracking.php:870
+msgid "Track these data definition statements:"
+msgstr ""
+
+#: tbl_tracking.php:878
+msgid "Track these data manipulation statements:"
+msgstr ""
+
+#: tbl_tracking.php:888
+msgid "Create version"
+msgstr ""
+
+#: themes.php:17 themes.php:22
+msgid "Theme"
+msgstr ""
+
+#: themes.php:25
+msgid "Get more themes!"
+msgstr ""
+
+#: transformation_overview.php:22
+msgid "Available MIME types"
+msgstr ""
+
+#: transformation_overview.php:35
+msgid "Available transformations"
+msgstr ""
+
+#: transformation_overview.php:40
+msgctxt "for MIME transformation"
+msgid "Description"
+msgstr ""
+
+#: user_password.php:29
+msgid "You don't have sufficient privileges to be here right now!"
+msgstr ""
+
+#: user_password.php:106
+msgid "The profile has been updated."
+msgstr ""
+
+#: view_create.php:178
+msgid "VIEW name"
+msgstr ""
+
+#: view_operations.php:91
+msgid "Rename view to"
+msgstr ""
+
+#: libraries/advisory_rules.txt:49
+msgid "Uptime below one day"
+msgstr ""
+
+#: libraries/advisory_rules.txt:52
+msgid "Uptime is less than 1 day, performance tuning may not be accurate."
+msgstr ""
+
+#: libraries/advisory_rules.txt:53
+msgid ""
+"To have more accurate averages it is recommended to let the server run for "
+"longer than a day before running this analyzer"
+msgstr ""
+
+#: libraries/advisory_rules.txt:54
+#, php-format
+msgid "The uptime is only %s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:56
+msgid "Questions below 1,000"
+msgstr ""
+
+#: libraries/advisory_rules.txt:59
+msgid ""
+"Fewer than 1,000 questions have been run against this server. The "
+"recommendations may not be accurate."
+msgstr ""
+
+#: libraries/advisory_rules.txt:60
+msgid ""
+"Let the server run for a longer time until it has executed a greater amount "
+"of queries."
+msgstr ""
+
+#: libraries/advisory_rules.txt:61
+#, php-format
+msgid "Current amount of Questions: %s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:63
+msgid "Percentage of slow queries"
+msgstr ""
+
+#: libraries/advisory_rules.txt:66
+msgid ""
+"There is a lot of slow queries compared to the overall amount of Queries."
+msgstr ""
+
+#: libraries/advisory_rules.txt:67 libraries/advisory_rules.txt:74
+msgid ""
+"You might want to increase {long_query_time} or optimize the queries listed "
+"in the slow query log"
+msgstr ""
+
+#: libraries/advisory_rules.txt:68
+#, php-format
+msgid "The slow query rate should be below 5%%, your value is %s%%."
+msgstr ""
+
+#: libraries/advisory_rules.txt:70
+msgid "Slow query rate"
+msgstr ""
+
+#: libraries/advisory_rules.txt:73
+msgid ""
+"There is a high percentage of slow queries compared to the server uptime."
+msgstr ""
+
+#: libraries/advisory_rules.txt:75
+#, php-format
+msgid ""
+"You have a slow query rate of %s per hour, you should have less than 1%% per "
+"hour."
+msgstr ""
+
+#: libraries/advisory_rules.txt:77
+msgid "Long query time"
+msgstr ""
+
+#: libraries/advisory_rules.txt:80
+msgid ""
+"{long_query_time} is set to 10 seconds or more, thus only slow queries that "
+"take above 10 seconds are logged."
+msgstr ""
+
+#: libraries/advisory_rules.txt:81
+msgid ""
+"It is suggested to set {long_query_time} to a lower value, depending on your "
+"environment. Usually a value of 1-5 seconds is suggested."
+msgstr ""
+
+#: libraries/advisory_rules.txt:82
+#, php-format
+msgid "long_query_time is currently set to %ds."
+msgstr ""
+
+#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91
+msgid "Slow query logging"
+msgstr ""
+
+#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94
+msgid "The slow query log is disabled."
+msgstr ""
+
+#: libraries/advisory_rules.txt:88
+msgid ""
+"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: libraries/advisory_rules.txt:89
+msgid "log_slow_queries is set to 'OFF'"
+msgstr ""
+
+#: libraries/advisory_rules.txt:95
+msgid ""
+"Enable slow query logging by setting {slow_query_log} to 'ON'. This will "
+"help troubleshooting badly performing queries."
+msgstr ""
+
+#: libraries/advisory_rules.txt:96
+msgid "slow_query_log is set to 'OFF'"
+msgstr ""
+
+#: libraries/advisory_rules.txt:100
+msgid "Release Series"
+msgstr ""
+
+#: libraries/advisory_rules.txt:103
+msgid "The MySQL server version less than 5.1."
+msgstr ""
+
+#: libraries/advisory_rules.txt:104
+msgid ""
+"You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 "
+"even more so."
+msgstr ""
+
+#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112
+#: libraries/advisory_rules.txt:119
+#, php-format
+msgid "Current version: %s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114
+msgid "Minor Version"
+msgstr ""
+
+#: libraries/advisory_rules.txt:110
+msgid "Version less than 5.1.30 (the first GA release of 5.1)."
+msgstr ""
+
+#: libraries/advisory_rules.txt:111
+msgid ""
+"You should upgrade, as recent versions of MySQL 5.1 have improved "
+"performance and MySQL 5.5 even more so."
+msgstr ""
+
+#: libraries/advisory_rules.txt:117
+msgid "Version less than 5.5.8 (the first GA release of 5.5)."
+msgstr ""
+
+#: libraries/advisory_rules.txt:118
+msgid "You should upgrade, to a stable version of MySQL 5.5"
+msgstr ""
+
+#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128
+#: libraries/advisory_rules.txt:135
+msgid "Distribution"
+msgstr ""
+
+#: libraries/advisory_rules.txt:124
+msgid "Version is compiled from source, not a MySQL official binary."
+msgstr ""
+
+#: libraries/advisory_rules.txt:125
+msgid ""
+"If you did not compile from source, you may be using a package modified by a "
+"distribution. The MySQL manual only is accurate for official MySQL binaries, "
+"not any package distributions (such as RedHat, Debian/Ubuntu etc)."
+msgstr ""
+
+#: libraries/advisory_rules.txt:126
+msgid "'source' found in version_comment"
+msgstr ""
+
+#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138
+msgid "The MySQL manual only is accurate for official MySQL binaries."
+msgstr ""
+
+#: libraries/advisory_rules.txt:132
+msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
+msgstr ""
+
+#: libraries/advisory_rules.txt:133
+msgid "'percona' found in version_comment"
+msgstr ""
+
+#: libraries/advisory_rules.txt:139
+msgid "Drizzle documentation is at http://docs.drizzle.org/"
+msgstr ""
+
+#: libraries/advisory_rules.txt:140
+#, php-format
+msgid "Version string (%s) matches Drizzle versioning scheme"
+msgstr ""
+
+#: libraries/advisory_rules.txt:142
+msgid "MySQL Architecture"
+msgstr ""
+
+#: libraries/advisory_rules.txt:145
+msgid "MySQL is not compiled as a 64-bit package."
+msgstr ""
+
+#: libraries/advisory_rules.txt:146
+msgid ""
+"Your memory capacity is above 3 GiB (assuming the Server is on localhost), "
+"so MySQL might not be able to access all of your memory. You might want to "
+"consider installing the 64-bit version of MySQL."
+msgstr ""
+
+#: libraries/advisory_rules.txt:147
+#, php-format
+msgid "Available memory on this host: %s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:153
+msgid "Query cache disabled"
+msgstr ""
+
+#: libraries/advisory_rules.txt:156
+msgid "The query cache is not enabled."
+msgstr ""
+
+#: libraries/advisory_rules.txt:157
+msgid ""
+"The query cache is known to greatly improve performance if configured "
+"correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value "
+"and setting {query_cache_type} to 'ON'. Note: If you are using "
+"memcached, ignore this recommendation."
+msgstr ""
+
+#: libraries/advisory_rules.txt:158
+msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
+msgstr ""
+
+#: libraries/advisory_rules.txt:160
+msgid "Query caching method"
+msgstr ""
+
+#: libraries/advisory_rules.txt:163
+msgid "Suboptimal caching method."
+msgstr ""
+
+#: libraries/advisory_rules.txt:164
+msgid ""
+"You are using the MySQL Query cache with a fairly high traffic database. It "
+"might be worth considering to use memcached instead of the MySQL Query "
+"cache, especially if you have multiple slaves."
+msgstr ""
+
+#: libraries/advisory_rules.txt:165
+#, php-format
+msgid ""
+"The query cache is enabled and the server receives %d queries per second. "
+"This rule fires if there is more than 100 queries per second."
+msgstr ""
+
+#: libraries/advisory_rules.txt:167
+#, php-format
+msgid "Query cache efficiency (%%)"
+msgstr ""
+
+#: libraries/advisory_rules.txt:170
+msgid "Query cache not running efficiently, it has a low hit rate."
+msgstr ""
+
+#: libraries/advisory_rules.txt:171
+msgid "Consider increasing {query_cache_limit}."
+msgstr ""
+
+#: libraries/advisory_rules.txt:172
+#, php-format
+msgid "The current query cache hit rate of %s%% is below 20%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:174
+msgid "Query Cache usage"
+msgstr ""
+
+#: libraries/advisory_rules.txt:177
+#, php-format
+msgid "Less than 80%% of the query cache is being utilized."
+msgstr ""
+
+#: libraries/advisory_rules.txt:178
+msgid ""
+"This might be caused by {query_cache_limit} being too low. Flushing the "
+"query cache might help as well."
+msgstr ""
+
+#: libraries/advisory_rules.txt:179
+#, php-format
+msgid ""
+"The current ratio of free query cache memory to total query cache size is %s"
+"%%. It should be above 80%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:181
+msgid "Query cache fragmentation"
+msgstr ""
+
+#: libraries/advisory_rules.txt:184
+msgid "The query cache is considerably fragmented."
+msgstr ""
+
+#: libraries/advisory_rules.txt:185
+msgid ""
+"Severe fragmentation is likely to (further) increase Qcache_lowmem_prunes. "
+"This might be caused by many Query cache low memory prunes due to "
+"{query_cache_size} being too small. For a immediate but short lived fix you "
+"can flush the query cache (might lock the query cache for a long time). "
+"Carefully adjusting {query_cache_min_res_unit} to a lower value might help "
+"too, e.g. you can set it to the average size of your queries in the cache "
+"using this formula: (query_cache_size - qcache_free_memory) / "
+"qcache_queries_in_cache"
+msgstr ""
+
+#: libraries/advisory_rules.txt:186
+#, php-format
+msgid ""
+"The cache is currently fragmented by %s%% , with 100%% fragmentation meaning "
+"that the query cache is an alternating pattern of free and used blocks. This "
+"value should be below 20%%."
+msgstr ""
+
+#: libraries/advisory_rules.txt:188
+msgid "Query cache low memory prunes"
+msgstr ""
+
+#: libraries/advisory_rules.txt:191
+msgid ""
+"Cached queries are removed due to low query cache memory from the query "
+"cache."
+msgstr ""
+
+#: libraries/advisory_rules.txt:192
+msgid ""
+"You might want to increase {query_cache_size}, however keep in mind that the "
+"overhead of maintaining the cache is likely to increase with its size, so do "
+"this in small increments and monitor the results."
+msgstr ""
+
+#: libraries/advisory_rules.txt:193
+#, php-format
+msgid ""
+"The ratio of removed queries to inserted queries is %s%%. The lower this "
+"value is, the better (This rules firing limit: 0.1%%)"
+msgstr ""
+
+#: libraries/advisory_rules.txt:195
+msgid "Query cache max size"
+msgstr ""
+
+#: libraries/advisory_rules.txt:198
+msgid ""
+"The query cache size is above 128 MiB. Big query caches may cause "
+"significant overhead that is required to maintain the cache."
+msgstr ""
+
+#: libraries/advisory_rules.txt:199
+msgid ""
+"Depending on your environment, it might be performance increasing to reduce "
+"this value."
+msgstr ""
+
+#: libraries/advisory_rules.txt:200
+#, php-format
+msgid "Current query cache size: %s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:202
+msgid "Query cache min result size"
+msgstr ""
+
+#: libraries/advisory_rules.txt:205
+msgid ""
+"The max size of the result set in the query cache is the default of 1 MiB."
+msgstr ""
+
+#: libraries/advisory_rules.txt:206
+msgid ""
+"Changing {query_cache_limit} (usually by increasing) may increase "
+"efficiency. This variable determines the maximum size a query result may "
+"have to be inserted into the query cache. If there are many query results "
+"above 1 MiB that are well cacheable (many reads, little writes) then "
+"increasing {query_cache_limit} will increase efficiency. Whereas in the case "
+"of many query results being above 1 MiB that are not very well cacheable "
+"(often invalidated due to table updates) increasing {query_cache_limit} "
+"might reduce efficiency."
+msgstr ""
+
+#: libraries/advisory_rules.txt:207
+msgid "query_cache_limit is set to 1 MiB"
+msgstr ""
+
+#: libraries/advisory_rules.txt:211
+msgid "Percentage of sorts that cause temporary tables"
+msgstr ""
+
+#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221
+msgid "Too many sorts are causing temporary tables."
+msgstr ""
+
+#: libraries/advisory_rules.txt:215 libraries/advisory_rules.txt:222
+msgid ""
+"Consider increasing {sort_buffer_size} and/or {read_rnd_buffer_size}, "
+"depending on your system memory limits"
+msgstr ""
+
+#: libraries/advisory_rules.txt:216
+#, php-format
+msgid ""
+"%s%% of all sorts cause temporary tables, this value should be lower than "
+"10%%."
+msgstr ""
+
+#: libraries/advisory_rules.txt:218
+msgid "Rate of sorts that cause temporary tables"
+msgstr ""
+
+#: libraries/advisory_rules.txt:223
+#, php-format
+msgid ""
+"Temporary tables average: %s, this value should be less than 1 per hour."
+msgstr ""
+
+#: libraries/advisory_rules.txt:225
+msgid "Sort rows"
+msgstr ""
+
+#: libraries/advisory_rules.txt:228
+msgid "There are lots of rows being sorted."
+msgstr ""
+
+#: libraries/advisory_rules.txt:229
+msgid ""
+"While there is nothing wrong with a high amount of row sorting, you might "
+"want to make sure that the queries which require a lot of sorting use "
+"indexed columns in the ORDER BY clause, as this will result in much faster "
+"sorting"
+msgstr ""
+
+#: libraries/advisory_rules.txt:230
+#, php-format
+msgid "Sorted rows average: %s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:233
+msgid "Rate of joins without indexes"
+msgstr ""
+
+#: libraries/advisory_rules.txt:236
+msgid "There are too many joins without indexes."
+msgstr ""
+
+#: libraries/advisory_rules.txt:237
+msgid ""
+"This means that joins are doing full table scans. Adding indexes for the "
+"columns being used in the join conditions will greatly speed up table joins"
+msgstr ""
+
+#: libraries/advisory_rules.txt:238
+#, php-format
+msgid "Table joins average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:240
+msgid "Rate of reading first index entry"
+msgstr ""
+
+#: libraries/advisory_rules.txt:243
+msgid "The rate of reading the first index entry is high."
+msgstr ""
+
+#: libraries/advisory_rules.txt:244
+msgid ""
+"This usually indicates frequent full index scans. Full index scans are "
+"faster than table scans but require lots of CPU cycles in big tables, if "
+"those tables that have or had high volumes of UPDATEs and DELETEs, running "
+"'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index "
+"scans. Other than that full index scans can only be reduced by rewriting "
+"queries."
+msgstr ""
+
+#: libraries/advisory_rules.txt:245
+#, php-format
+msgid "Index scans average: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:247
+msgid "Rate of reading fixed position"
+msgstr ""
+
+#: libraries/advisory_rules.txt:250
+msgid "The rate of reading data from a fixed position is high."
+msgstr ""
+
+#: libraries/advisory_rules.txt:251
+msgid ""
+"This indicates that many queries need to sort results and/or do a full table "
+"scan, including join queries that do not use indexes. Add indexes where "
+"applicable."
+msgstr ""
+
+#: libraries/advisory_rules.txt:252
+#, php-format
+msgid ""
+"Rate of reading fixed position average: %s, this value should be less than 1 "
+"per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:254
+msgid "Rate of reading next table row"
+msgstr ""
+
+#: libraries/advisory_rules.txt:257
+msgid "The rate of reading the next table row is high."
+msgstr ""
+
+#: libraries/advisory_rules.txt:258
+msgid ""
+"This indicates that many queries are doing full table scans. Add indexes "
+"where applicable."
+msgstr ""
+
+#: libraries/advisory_rules.txt:259
+#, php-format
+msgid ""
+"Rate of reading next table row: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:262
+msgid "tmp_table_size vs. max_heap_table_size"
+msgstr ""
+
+#: libraries/advisory_rules.txt:265
+msgid "{tmp_table_size} and {max_heap_table_size} are not the same."
+msgstr ""
+
+#: libraries/advisory_rules.txt:266
+msgid ""
+"If you have deliberately changed one of either: The server uses the lower "
+"value of either to determine the maximum size of in-memory tables. So if you "
+"wish to increase the in-memory table limit you will have to increase the "
+"other value as well."
+msgstr ""
+
+#: libraries/advisory_rules.txt:267
+#, php-format
+msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:269
+msgid "Percentage of temp tables on disk"
+msgstr ""
+
+#: libraries/advisory_rules.txt:272 libraries/advisory_rules.txt:279
+msgid ""
+"Many temporary tables are being written to disk instead of being kept in "
+"memory."
+msgstr ""
+
+#: libraries/advisory_rules.txt:273
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To eliminate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the beginning of an Article by the Pythian Group"
+msgstr ""
+
+#: libraries/advisory_rules.txt:274
+#, php-format
+msgid ""
+"%s%% of all temporary tables are being written to disk, this value should be "
+"below 25%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:276
+msgid "Temp disk rate"
+msgstr ""
+
+#: libraries/advisory_rules.txt:280
+msgid ""
+"Increasing {max_heap_table_size} and {tmp_table_size} might help. However "
+"some temporary tables are always being written to disk, independent of the "
+"value of these variables. To eliminate these you will have to rewrite your "
+"queries to avoid those conditions (Within a temporary table: Presence of a "
+"BLOB or TEXT column or presence of a column bigger than 512 bytes) as "
+"mentioned in the MySQL Documentation"
+msgstr ""
+
+#: libraries/advisory_rules.txt:281
+#, php-format
+msgid ""
+"Rate of temporary tables being written to disk: %s, this value should be "
+"less than 1 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:296
+msgid "MyISAM key buffer size"
+msgstr ""
+
+#: libraries/advisory_rules.txt:299
+msgid "Key buffer is not initialized. No MyISAM indexes will be cached."
+msgstr ""
+
+#: libraries/advisory_rules.txt:300
+msgid ""
+"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
+"good start."
+msgstr ""
+
+#: libraries/advisory_rules.txt:301
+msgid "key_buffer_size is 0"
+msgstr ""
+
+#: libraries/advisory_rules.txt:303
+#, php-format
+msgid "Max %% MyISAM key buffer ever used"
+msgstr ""
+
+#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314
+#, php-format
+msgid "MyISAM key buffer (index cache) %% used is low."
+msgstr ""
+
+#: libraries/advisory_rules.txt:307 libraries/advisory_rules.txt:315
+msgid ""
+"You may need to decrease the size of {key_buffer_size}, re-examine your "
+"tables to see if indexes have been removed, or examine queries and "
+"expectations about what indexes are being used."
+msgstr ""
+
+#: libraries/advisory_rules.txt:308
+#, php-format
+msgid ""
+"max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:311
+msgid "Percentage of MyISAM key buffer used"
+msgstr ""
+
+#: libraries/advisory_rules.txt:316
+#, php-format
+msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:318
+msgid "Percentage of index reads from memory"
+msgstr ""
+
+#: libraries/advisory_rules.txt:321
+#, php-format
+msgid "The %% of indexes that use the MyISAM key buffer is low."
+msgstr ""
+
+#: libraries/advisory_rules.txt:322
+msgid "You may need to increase {key_buffer_size}."
+msgstr ""
+
+#: libraries/advisory_rules.txt:323
+#, php-format
+msgid "Index reads from memory: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:327
+msgid "Rate of table open"
+msgstr ""
+
+#: libraries/advisory_rules.txt:330
+msgid "The rate of opening tables is high."
+msgstr ""
+
+#: libraries/advisory_rules.txt:331
+msgid ""
+"Opening tables requires disk I/O which is costly. Increasing "
+"{table_open_cache} might avoid this."
+msgstr ""
+
+#: libraries/advisory_rules.txt:332
+#, php-format
+msgid "Opened table rate: %s, this value should be less than 10 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:334
+msgid "Percentage of used open files limit"
+msgstr ""
+
+#: libraries/advisory_rules.txt:337
+msgid ""
+"The number of open files is approaching the max number of open files. You "
+"may get a \"Too many open files\" error."
+msgstr ""
+
+#: libraries/advisory_rules.txt:338 libraries/advisory_rules.txt:345
+msgid ""
+"Consider increasing {open_files_limit}, and check the error log when "
+"restarting after changing {open_files_limit}."
+msgstr ""
+
+#: libraries/advisory_rules.txt:339
+#, php-format
+msgid ""
+"The number of opened files is at %s%% of the limit. It should be below 85%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:341
+msgid "Rate of open files"
+msgstr ""
+
+#: libraries/advisory_rules.txt:344
+msgid "The rate of opening files is high."
+msgstr ""
+
+#: libraries/advisory_rules.txt:346
+#, php-format
+msgid "Opened files rate: %s, this value should be less than 5 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:348
+#, php-format
+msgid "Immediate table locks %%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358
+msgid "Too many table locks were not granted immediately."
+msgstr ""
+
+#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359
+msgid "Optimize queries and/or use InnoDB to reduce lock wait."
+msgstr ""
+
+#: libraries/advisory_rules.txt:353
+#, php-format
+msgid "Immediate table locks: %s%%, this value should be above 95%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:355
+msgid "Table lock wait rate"
+msgstr ""
+
+#: libraries/advisory_rules.txt:360
+#, php-format
+msgid "Table lock wait rate: %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:362
+msgid "Thread cache"
+msgstr ""
+
+#: libraries/advisory_rules.txt:365
+msgid ""
+"Thread cache is disabled, resulting in more overhead from new connections to "
+"MySQL."
+msgstr ""
+
+#: libraries/advisory_rules.txt:366
+msgid "Enable the thread cache by setting {thread_cache_size} > 0."
+msgstr ""
+
+#: libraries/advisory_rules.txt:367
+msgid "The thread cache is set to 0"
+msgstr ""
+
+#: libraries/advisory_rules.txt:369
+#, php-format
+msgid "Thread cache hit rate %%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:372
+msgid "Thread cache is not efficient."
+msgstr ""
+
+#: libraries/advisory_rules.txt:373
+msgid "Increase {thread_cache_size}."
+msgstr ""
+
+#: libraries/advisory_rules.txt:374
+#, php-format
+msgid "Thread cache hitrate: %s%%, this value should be above 80%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:376
+msgid "Threads that are slow to launch"
+msgstr ""
+
+#: libraries/advisory_rules.txt:379
+msgid "There are too many threads that are slow to launch."
+msgstr ""
+
+#: libraries/advisory_rules.txt:380
+msgid ""
+"This generally happens in case of general system overload as it is pretty "
+"simple operations. You might want to monitor your system load carefully."
+msgstr ""
+
+#: libraries/advisory_rules.txt:381
+#, php-format
+msgid "%s thread(s) took longer than %s seconds to start, it should be 0"
+msgstr ""
+
+#: libraries/advisory_rules.txt:383
+msgid "Slow launch time"
+msgstr ""
+
+#: libraries/advisory_rules.txt:386
+msgid "Slow_launch_threads is above 2s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:387
+msgid ""
+"Set {slow_launch_time} to 1s or 2s to correctly count threads that are slow "
+"to launch"
+msgstr ""
+
+#: libraries/advisory_rules.txt:388
+#, php-format
+msgid "slow_launch_time is set to %s"
+msgstr ""
+
+#: libraries/advisory_rules.txt:392
+msgid "Percentage of used connections"
+msgstr ""
+
+#: libraries/advisory_rules.txt:395
+msgid ""
+"The maximum amount of used connections is getting close to the value of "
+"{max_connections}."
+msgstr ""
+
+#: libraries/advisory_rules.txt:396
+msgid ""
+"Increase {max_connections}, or decrease {wait_timeout} so that connections "
+"that do not close database handlers properly get killed sooner. Make sure "
+"the code closes database handlers properly."
+msgstr ""
+
+#: libraries/advisory_rules.txt:397
+#, php-format
+msgid ""
+"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:399
+msgid "Percentage of aborted connections"
+msgstr ""
+
+#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409
+msgid "Too many connections are aborted."
+msgstr ""
+
+#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410
+msgid ""
+"Connections are usually aborted when they cannot be authorized. This article might help you track down the "
+"source."
+msgstr ""
+
+#: libraries/advisory_rules.txt:404
+#, php-format
+msgid "%s%% of all connections are aborted. This value should be below 1%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:406
+msgid "Rate of aborted connections"
+msgstr ""
+
+#: libraries/advisory_rules.txt:411
+#, php-format
+msgid ""
+"Aborted connections rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:413
+msgid "Percentage of aborted clients"
+msgstr ""
+
+#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423
+msgid "Too many clients are aborted."
+msgstr ""
+
+#: libraries/advisory_rules.txt:417 libraries/advisory_rules.txt:424
+msgid ""
+"Clients are usually aborted when they did not close their connection to "
+"MySQL properly. This can be due to network issues or code not closing a "
+"database handler properly. Check your network and code."
+msgstr ""
+
+#: libraries/advisory_rules.txt:418
+#, php-format
+msgid "%s%% of all clients are aborted. This value should be below 2%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:420
+msgid "Rate of aborted clients"
+msgstr ""
+
+#: libraries/advisory_rules.txt:425
+#, php-format
+msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
+msgstr ""
+
+#: libraries/advisory_rules.txt:429
+msgid "Is InnoDB disabled?"
+msgstr ""
+
+#: libraries/advisory_rules.txt:432
+msgid "You do not have InnoDB enabled."
+msgstr ""
+
+#: libraries/advisory_rules.txt:433
+msgid "InnoDB is usually the better choice for table engines."
+msgstr ""
+
+#: libraries/advisory_rules.txt:434
+msgid "have_innodb is set to 'value'"
+msgstr ""
+
+#: libraries/advisory_rules.txt:436
+msgid "InnoDB log size"
+msgstr ""
+
+#: libraries/advisory_rules.txt:439
+msgid ""
+"The InnoDB log file size is not an appropriate size, in relation to the "
+"InnoDB buffer pool."
+msgstr ""
+
+#: libraries/advisory_rules.txt:440
+#, php-format
+msgid ""
+"Especially on a system with a lot of writes to InnoDB tables you should set "
+"{innodb_log_file_size} to 25%% of {innodb_buffer_pool_size}. However the "
+"bigger this value, the longer the recovery time will be when database "
+"crashes, so this value should not be set much higher than 256 MiB. Please "
+"note however that you cannot simply change the value of this variable. You "
+"need to shutdown the server, remove the InnoDB log files, set the new value "
+"in my.cnf, start the server, then check the error logs if everything went "
+"fine. See also this blog entry"
+msgstr ""
+
+#: libraries/advisory_rules.txt:441
+#, php-format
+msgid ""
+"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, "
+"it should not be below 20%%"
+msgstr ""
+
+#: libraries/advisory_rules.txt:443
+msgid "Max InnoDB log size"
+msgstr ""
+
+#: libraries/advisory_rules.txt:446
+msgid "The InnoDB log file size is inadequately large."
+msgstr ""
+
+#: libraries/advisory_rules.txt:447
+#, php-format
+msgid ""
+"It is usually sufficient to set {innodb_log_file_size} to 25%% of the size "
+"of {innodb_buffer_pool_size}. A very big {innodb_log_file_size} slows down "
+"the recovery time after a database crash considerably. See also this Article. You need to shutdown the server, "
+"remove the InnoDB log files, set the new value in my.cnf, start the server, "
+"then check the error logs if everything went fine. See also this blog entry"
+msgstr ""
+
+#: libraries/advisory_rules.txt:448
+#, php-format
+msgid "Your absolute InnoDB log size is %s MiB"
+msgstr ""
+
+#: libraries/advisory_rules.txt:450
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: libraries/advisory_rules.txt:453
+msgid "Your InnoDB buffer pool is fairly small."
+msgstr ""
+
+#: libraries/advisory_rules.txt:454
+#, php-format
+msgid ""
+"The InnoDB buffer pool has a profound impact on performance for InnoDB "
+"tables. Assign all your remaining memory to this buffer. For database "
+"servers that use solely InnoDB as storage engine and have no other services "
+"(e.g. a web server) running, you may set this as high as 80%% of your "
+"available memory. If that is not the case, you need to carefully assess the "
+"memory consumption of your other services and non-InnoDB-Tables and set this "
+"variable accordingly. If it is set too high, your system will start "
+"swapping, which decreases performance significantly. See also this article"
+msgstr ""
+
+#: libraries/advisory_rules.txt:455
+#, php-format
+msgid ""
+"You are currently using %s%% of your memory for the InnoDB buffer pool. This "
+"rule fires if you are assigning less than 60%%, however this might be "
+"perfectly adequate for your system if you don't have much InnoDB tables or "
+"other services running on the same machine."
+msgstr ""
+
+#: libraries/advisory_rules.txt:459
+msgid "MyISAM concurrent inserts"
+msgstr ""
+
+#: libraries/advisory_rules.txt:462
+msgid "Enable {concurrent_insert} by setting it to 1"
+msgstr ""
+
+#: libraries/advisory_rules.txt:463
+msgid ""
+"Setting {concurrent_insert} to 1 reduces contention between readers and "
+"writers for a given table. See also MySQL Documentation"
+msgstr ""
+
+#: libraries/advisory_rules.txt:464
+msgid "concurrent_insert is set to 0"
+msgstr ""
diff --git a/sql.php b/sql.php
index d64570a65e..2aeadebbb6 100644
--- a/sql.php
+++ b/sql.php
@@ -24,8 +24,6 @@ $header = $response->getHeader();
$scripts = $header->getScripts();
$scripts->addFile('jquery/jquery-ui-timepicker-addon.js');
$scripts->addFile('tbl_change.js');
-// the next one needed because sql.php may do a "goto" to tbl_structure.php
-$scripts->addFile('tbl_structure.js');
$scripts->addFile('indexes.js');
$scripts->addFile('gis_data_editor.js');
@@ -84,17 +82,20 @@ if (isset($_REQUEST['get_relational_values'])
&& $_REQUEST['get_relational_values'] == true
) {
PMA_getRelationalValues($db, $table, $display_field);
+ // script has exited at this point
}
// Just like above, find possible values for enum fields during grid edit.
if (isset($_REQUEST['get_enum_values']) && $_REQUEST['get_enum_values'] == true) {
PMA_getEnumOrSetValues($db, $table, "enum");
+ // script has exited at this point
}
// Find possible values for set fields during grid edit.
if (isset($_REQUEST['get_set_values']) && $_REQUEST['get_set_values'] == true) {
PMA_getEnumOrSetValues($db, $table, "set");
+ // script has exited at this point
}
/**
@@ -102,6 +103,7 @@ if (isset($_REQUEST['get_set_values']) && $_REQUEST['get_set_values'] == true) {
*/
if (isset($_REQUEST['set_col_prefs']) && $_REQUEST['set_col_prefs'] == true) {
PMA_setColumnOrderOrVisibility($table, $db);
+ // script has exited at this point
}
// Default to browse if no query set and we have table
@@ -153,6 +155,7 @@ if (isset($find_real_end) && $find_real_end) {
*/
if (isset($_POST['store_bkm'])) {
PMA_addBookmark($cfg['PmaAbsoluteUri'], $goto);
+ // script has exited at this point
} // end if
diff --git a/tbl_row_action.php b/tbl_row_action.php
index b9ccaa4a3c..7ecae32694 100644
--- a/tbl_row_action.php
+++ b/tbl_row_action.php
@@ -1,7 +1,7 @@
show again the query and tell that user.
- */
-if (! PMA_isValid($_REQUEST['rows_to_delete'], 'array')
- && ! isset($_REQUEST['mult_btn'])
-) {
- $disp_message = __('No rows selected');
- $disp_query = '';
- include 'sql.php';
- exit;
-}
+require_once 'libraries/sql.lib.php';
if (isset($_REQUEST['submit_mult'])) {
$submit_mult = $_REQUEST['submit_mult'];
@@ -131,13 +120,17 @@ if (!empty($submit_mult)) {
$url_query = $original_url_query;
}
- // this is because sql.php could call tbl_structure
- // which would think it needs to call mult_submits.inc.php:
- unset($submit_mult, $_REQUEST['mult_btn']);
-
$active_page = 'sql.php';
- include 'sql.php';
- break;
+ /**
+ * Parse and analyze the query
+ */
+ require_once 'libraries/parse_analyze.inc.php';
+
+ PMA_executeQueryAndSendQueryResponse(
+ $analyzed_sql_results, false, $db, $table, null, null, null, false, null,
+ null, null, null, $goto, $pmaThemeImage, null, null, null, $sql_query,
+ null, null
+ );
}
}
?>
diff --git a/tbl_select.php b/tbl_select.php
index e0fd01f113..f91b0d1c6c 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -27,16 +27,6 @@ $scripts->addFile('tbl_change.js');
$scripts->addFile('jquery/jquery-ui-timepicker-addon.js');
$scripts->addFile('gis_data_editor.js');
-$post_params = array(
- 'ajax_request',
- 'session_max_rows'
-);
-foreach ($post_params as $one_post_param) {
- if (isset($_POST[$one_post_param])) {
- $GLOBALS[$one_post_param] = $_POST[$one_post_param];
- }
-}
-
$table_search = new PMA_TableSearch($db, $table, "normal");
/**
diff --git a/tbl_structure.php b/tbl_structure.php
index c2f8bb1c9a..1a210cf22d 100644
--- a/tbl_structure.php
+++ b/tbl_structure.php
@@ -1,8 +1,8 @@
getHeader();
@@ -91,7 +93,7 @@ if (! empty($submit_mult)) {
if (isset($_REQUEST['selected_fld'])) {
$err_url = 'tbl_structure.php?' . PMA_generate_common_url($db, $table);
if ($submit_mult == 'browse') {
- // browsing the table displaying only selected fields/columns
+ // browsing the table displaying only selected columns
$GLOBALS['active_page'] = 'sql.php';
$sql_query = '';
foreach ($_REQUEST['selected_fld'] as $idx => $sval) {
@@ -103,11 +105,18 @@ if (! empty($submit_mult)) {
}
$sql_query .= ' FROM ' . PMA_Util::backquote($db)
. '.' . PMA_Util::backquote($table);
- include 'sql.php';
- exit;
+
+ // Parse and analyze the query
+ require_once 'libraries/parse_analyze.inc.php';
+
+ PMA_executeQueryAndSendQueryResponse(
+ $analyzed_sql_results, false, $db, $table, null, null, null, false, null,
+ null, null, null, $goto, $pmaThemeImage, null, null, null, $sql_query,
+ null, null
+ );
} else {
// handle multiple field commands
- // handle confirmation of deleting multiple fields/columns
+ // handle confirmation of deleting multiple columns
$action = 'tbl_structure.php';
include 'libraries/mult_submits.inc.php';
/**
diff --git a/test/classes/PMA_TableSearch_test.php b/test/classes/PMA_TableSearch_test.php
index cb1f1bcfaa..5a1e078fab 100644
--- a/test/classes/PMA_TableSearch_test.php
+++ b/test/classes/PMA_TableSearch_test.php
@@ -341,5 +341,93 @@ class PMA_TableSearch_Test extends PHPUnit_Framework_TestCase
$html
);
}
+
+ /**
+ * Test for buildSqlQuery
+ *
+ * @return void
+ */
+ public function testBuildSqlQueryw()
+ {
+ $_POST['distinct'] = true;
+ $_POST['zoom_submit'] = true;
+ $_POST['table'] = "PMA";
+ $_POST['orderByColumn'] = "name";
+ $_POST['order'] = "asc";
+ $_POST['customWhereClause'] = "name='pma'";
+
+ $tableSearch = new PMA_TableSearch("PMA", "PMA_BookMark", "zoom");
+
+ $sql = $tableSearch->buildSqlQuery();
+ $result = "SELECT DISTINCT * FROM `PMA` WHERE name='pma' ORDER BY `name` asc";
+ $this->assertEquals(
+ $result,
+ $sql
+ );
+
+ unset($_POST['customWhereClause']);
+ $sql = $tableSearch->buildSqlQuery();
+ $result = "SELECT DISTINCT * FROM `PMA` ORDER BY `name` asc";
+ $this->assertEquals(
+ $result,
+ $sql
+ );
+
+ $_POST['criteriaValues'] = array(
+ 'value1',
+ 'value2',
+ 'value3',
+ 'value4',
+ 'value5',
+ 'value6',
+ 'value7,value8'
+ );
+ $_POST['criteriaColumnNames'] = array(
+ 'name',
+ 'id',
+ 'index',
+ 'index2',
+ 'index3',
+ 'index4',
+ 'index5',
+ );
+ $_POST['criteriaColumnTypes'] = array(
+ 'varchar',
+ 'int',
+ 'enum',
+ 'type1',
+ 'type2',
+ 'type3',
+ 'type4'
+ );
+ $_POST['criteriaColumnCollations'] = array(
+ "char1",
+ "char2",
+ "char3",
+ "char4",
+ "char5",
+ "char6",
+ "char7",
+ );
+ $_POST['criteriaColumnOperators'] = array(
+ "!=",
+ ">",
+ "IS NULL",
+ "LIKE %...%",
+ "REGEXP ^...$",
+ "IN (...)",
+ "BETWEEN"
+ );
+
+ $sql = $tableSearch->buildSqlQuery();
+ $result = "SELECT DISTINCT * FROM `PMA` WHERE `name` != 'value1' AND `id` > value2 "
+ . "AND `index` IS NULL AND `index2` LIKE '%value4%' AND `index3` REGEXP ^value5$ "
+ . "AND `index4` IN (value6) AND `index5` BETWEEN value7 "
+ . "AND value8 ORDER BY `name` asc";
+ $this->assertEquals(
+ $result,
+ $sql
+ );
+ }
}
?>
diff --git a/test/classes/PMA_Table_test.php b/test/classes/PMA_Table_test.php
index 727431a73b..b01e933cf5 100644
--- a/test/classes/PMA_Table_test.php
+++ b/test/classes/PMA_Table_test.php
@@ -10,6 +10,7 @@
* Include to test.
*/
require_once 'libraries/Table.class.php';
+require_once 'libraries/sqlparser.lib.php';
require_once 'libraries/mysql_charsets.lib.php';
require_once 'libraries/Util.class.php';
require_once 'libraries/database_interface.inc.php';
@@ -42,10 +43,15 @@ class PMA_Table_Test extends PHPUnit_Framework_TestCase
$GLOBALS['cfg']['MySQLManualType'] = 'viewable';
$GLOBALS['cfg']['MySQLManualBase'] = 'http://dev.mysql.com/doc/refman';
$GLOBALS['cfg']['ActionLinksMode'] = 'both';
+ $GLOBALS['cfg']['MaxExactCount'] = 100;
+ $GLOBALS['cfg']['MaxExactCountViews'] = 100;
$_SESSION['PMA_Theme'] = new PMA_Theme();
$GLOBALS['pmaThemeImage'] = 'themes/dot.gif';
$GLOBALS['is_ajax_request'] = false;
$GLOBALS['cfgRelation'] = PMA_getRelationsParam();
+ $GLOBALS['pma'] = new DataBasePMAMock();
+ $GLOBALS['pma']->databases = new DataBaseMock();
+
PMA_Table::$cache["PMA"]["PMA_BookMark"] = array(
'ENGINE' => true,
'Create_time' => true,
@@ -151,6 +157,9 @@ class PMA_Table_Test extends PHPUnit_Framework_TestCase
'column1',
'column3',
'column5',
+ 'ACCESSIBLE',
+ 'ADD',
+ 'ALL'
)
),
array(
@@ -163,6 +172,9 @@ class PMA_Table_Test extends PHPUnit_Framework_TestCase
'column1',
'column3',
'column5',
+ 'ACCESSIBLE',
+ 'ADD',
+ 'ALL'
)
),
);
@@ -191,6 +203,9 @@ class PMA_Table_Test extends PHPUnit_Framework_TestCase
$dbi->expects($this->any())->method('numRows')
->will($this->returnValue(20));
+
+ $dbi->expects($this->any())->method('tryQuery')
+ ->will($this->returnValue(10));
$triggers = array(
array("name" => "name1", "create"=>"crate1"),
@@ -611,8 +626,6 @@ class PMA_Table_Test extends PHPUnit_Framework_TestCase
$table_new = 'PMA_BookMark_new';
$db_new = 'PMA_new';
- $GLOBALS['pma'] = new DataBasePMAMock();
- $GLOBALS['pma']->databases = new DataBaseMock();
$result = $table->rename($table_new, $db_new);
$this->assertEquals(
true,
@@ -648,8 +661,7 @@ class PMA_Table_Test extends PHPUnit_Framework_TestCase
$return
);
}
-
-
+
/**
* Test for getIndexedColumns
*
@@ -665,7 +677,10 @@ class PMA_Table_Test extends PHPUnit_Framework_TestCase
$expect = array(
'`PMA`.`PMA_BookMark`.`column1`',
'`PMA`.`PMA_BookMark`.`column3`',
- '`PMA`.`PMA_BookMark`.`column5`'
+ '`PMA`.`PMA_BookMark`.`column5`',
+ '`PMA`.`PMA_BookMark`.`ACCESSIBLE`',
+ '`PMA`.`PMA_BookMark`.`ADD`',
+ '`PMA`.`PMA_BookMark`.`ALL`',
);
$this->assertEquals(
$expect,
@@ -689,13 +704,108 @@ class PMA_Table_Test extends PHPUnit_Framework_TestCase
$expect = array(
'`PMA`.`PMA_BookMark`.`column1`',
'`PMA`.`PMA_BookMark`.`column3`',
- '`PMA`.`PMA_BookMark`.`column5`'
+ '`PMA`.`PMA_BookMark`.`column5`',
+ '`PMA`.`PMA_BookMark`.`ACCESSIBLE`',
+ '`PMA`.`PMA_BookMark`.`ADD`',
+ '`PMA`.`PMA_BookMark`.`ALL`',
+ );
+ $this->assertEquals(
+ $expect,
+ $return
+ );
+
+ $return = $table->getReservedColumnNames();
+ $expect = array(
+ 'ACCESSIBLE',
+ 'ADD',
+ 'ALL',
);
$this->assertEquals(
$expect,
$return
);
}
+
+ /**
+ * Test for countRecords
+ *
+ * @return void
+ */
+ public function testCountRecords()
+ {
+ $table = 'PMA_BookMark';
+ $db = 'PMA';
+ PMA_Table::$cache[$db][$table] = array('Comment' => "Comment222");
+
+ $return = PMA_Table::countRecords($db, $table, false, true);
+ $expect = 20;
+ $this->assertEquals(
+ $expect,
+ $return
+ );
+ }
+
+ /**
+ * Test for moveCopy
+ *
+ * @return void
+ */
+ public function testMoveCopy()
+ {
+ $source_table = 'PMA_BookMark';
+ $source_db = 'PMA';
+ $target_table = 'PMA_BookMark_new';
+ $target_db = 'PMA_new';
+ $what = "dataonly";
+ $move = true;
+ $mode = "one_table";
+
+ $_REQUEST['drop_if_exists'] = true;
+
+ $return = PMA_Table::moveCopy(
+ $source_db, $source_table, $target_db,
+ $target_table, $what, $move, $mode
+ );
+
+ //successully
+ $expect = true;
+ $this->assertEquals(
+ $expect,
+ $return
+ );
+ $sql_query = "INSERT INTO `PMA_new`.`PMA_BookMark_new` SELECT * FROM `PMA`.`PMA_BookMark`";
+ $this->assertContains(
+ $sql_query,
+ $GLOBALS['sql_query']
+ );
+ $sql_query = "DROP VIEW `PMA`.`PMA_BookMark`";
+ $this->assertContains(
+ $sql_query,
+ $GLOBALS['sql_query']
+ );
+
+ $return = PMA_Table::moveCopy(
+ $source_db, $source_table, $target_db,
+ $target_table, $what, false, $mode
+ );
+
+ //successully
+ $expect = true;
+ $this->assertEquals(
+ $expect,
+ $return
+ );
+ $sql_query = "INSERT INTO `PMA_new`.`PMA_BookMark_new` SELECT * FROM `PMA`.`PMA_BookMark`;";
+ $this->assertContains(
+ $sql_query,
+ $GLOBALS['sql_query']
+ );
+ $sql_query = "DROP VIEW `PMA`.`PMA_BookMark`";
+ $this->assertNotContains(
+ $sql_query,
+ $GLOBALS['sql_query']
+ );
+ }
}
/**
diff --git a/test/libraries/PMA_SQL_parse_analyze_test.php b/test/libraries/PMA_SQL_parse_analyze_test.php
new file mode 100644
index 0000000000..61a6723c38
--- /dev/null
+++ b/test/libraries/PMA_SQL_parse_analyze_test.php
@@ -0,0 +1,67 @@
+assertEquals(
+ array(
+ 'type' => 'alpha_reservedWord',
+ 'data' => 'select',
+ 'pos' => 6,
+ 'forbidden' => true,
+ ),
+ $data['parsed_sql'][0]
+ );
+ $this->assertEquals(
+ 'select * from PMA.PMAParse',
+ $data['analyzed_sql'][0]['unsorted_query']
+ );
+
+ $this->assertTrue($data['is_select']);
+ $this->assertFalse($data['is_group']);
+ $this->assertFalse($data['is_show']);
+
+ //update statement
+ $sql_query = "UPDATE `11`.`pma_bookmark` SET `id` = '2' WHERE `pma_bookmark`.`id` = 1;";
+ $db = "PMA";
+ $data = PMA_SQP_getParserAnalyzeMap($sql_query, $db);
+
+ $this->assertEquals(
+ array(
+ 'type' => 'alpha_reservedWord',
+ 'data' => 'UPDATE',
+ 'pos' => 6,
+ 'forbidden' => true,
+ ),
+ $data['parsed_sql'][0]
+ );
+ $this->assertEquals(
+ $sql_query,
+ $data['analyzed_sql'][0]['unsorted_query']
+ );
+ $this->assertFalse($data['is_group']);
+ $this->assertFalse($data['is_show']);
+ $this->assertTrue($data['is_affected']);
+ $this->assertFalse($data['is_select']);
+ }
+}
+
+?>
diff --git a/test/libraries/PMA_display_export_test.php b/test/libraries/PMA_display_export_test.php
new file mode 100644
index 0000000000..8475c27890
--- /dev/null
+++ b/test/libraries/PMA_display_export_test.php
@@ -0,0 +1,239 @@
+getMockBuilder('PMA_Config')
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $pmaconfig->expects($this->any())
+ ->method('getUserValue')
+ ->will($this->returnValue('user value for test'));
+
+ $GLOBALS['PMA_Config'] = $pmaconfig;
+ }
+
+ /**
+ * Test for PMA_getHtmlForHiddenInput
+ *
+ * @return void
+ */
+ public function testPMAGetHtmlForHiddenInput()
+ {
+ $export_type = "server";
+ $db = "PMA";
+ $table = "PMA_test";
+ $single_table_str = "PMA_single_str";
+ $sql_query_str = "sql_query_str";
+
+ //Call the test function
+ $html = PMA_getHtmlForHiddenInput(
+ $export_type,
+ $db,
+ $table,
+ $single_table_str,
+ $sql_query_str
+ );
+
+ //validate 1: PMA_generate_common_hidden_inputs
+ //$single_table
+ $this->assertContains(
+ 'assertContains(
+ 'assertContains(
+ ' $export_type,
+ 'single_table' => isset($single_table)
+ )
+ );
+
+ //Call the test function
+ $html = PMA_getHtmlForExportOptions(
+ $export_type,
+ $db,
+ $table,
+ $multi_values_str,
+ $num_tables_str,
+ $export_list,
+ $unlim_num_rows_str
+ );
+
+ //validate 1: PMA_getHtmlForExportOptionHeader
+ $this->assertContains(
+ '