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ř \n" +"PO-Revision-Date: 2013-07-25 23:17+0200\n" +"Last-Translator: Xosé Calvo \n" "Language-Team: Galician " "\n" "Language: gl\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 1.6-dev\n" +"X-Generator: Weblate 1.6\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:339 #: libraries/DisplayResults.class.php:813 @@ -41,10 +41,9 @@ msgstr "" "bloqueando as actualizacións entre xanelas." #: browse_foreigners.php:182 -#, fuzzy #| msgid "Search" msgid "Search:" -msgstr "Buscar" +msgstr "Buscar:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 #: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1653 @@ -122,10 +121,9 @@ msgstr "Comentario da base de datos: " #: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1345 #: libraries/tbl_columns_definition_form.inc.php:836 tbl_printview.php:120 -#, fuzzy #| msgid "Table comments" msgid "Table comments:" -msgstr "Comentarios da táboa" +msgstr "Comentarios da táboa:" #: db_datadict.php:166 libraries/Index.class.php:565 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1233 @@ -343,24 +341,21 @@ msgstr "en uso" #: db_printview.php:117 libraries/plugins/export/ExportSql.class.php:947 #: libraries/schema/Pdf_Relation_Schema.class.php:1350 -#, fuzzy #| msgid "Creation" msgid "Creation:" -msgstr "Creación" +msgstr "Creación:" #: db_printview.php:126 libraries/plugins/export/ExportSql.class.php:960 #: libraries/schema/Pdf_Relation_Schema.class.php:1355 -#, fuzzy #| msgid "Last update" msgid "Last update:" -msgstr "Última actualización" +msgstr "Última actualización:" #: db_printview.php:135 libraries/plugins/export/ExportSql.class.php:973 #: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#, fuzzy #| msgid "Last check" msgid "Last check:" -msgstr "Última revisión" +msgstr "Última revisión:" #: db_printview.php:149 libraries/structure.lib.php:176 #, php-format @@ -528,22 +523,20 @@ msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilizar OpenStreetMaps como capa base" #: gis_data_editor.php:161 -#, fuzzy #| msgid "SRID" msgid "SRID:" -msgstr "SRID" +msgstr "SRID:" #: gis_data_editor.php:184 -#, fuzzy, php-format +#, php-format #| msgid "Geometry" msgid "Geometry %d:" -msgstr "Xeometría" +msgstr "Xeometría %d:" #: gis_data_editor.php:206 -#, fuzzy #| msgid "Point" msgid "Point:" -msgstr "Punto" +msgstr "Punto:" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 #: gis_data_editor.php:362 js/messages.php:304 @@ -567,22 +560,21 @@ msgid "Add a point" msgstr "Engadir un punto" #: gis_data_editor.php:262 -#, fuzzy, php-format +#, php-format #| msgid "Linestring" msgid "Linestring %d:" -msgstr "Cadea de liñas" +msgstr "Cadea de liñas %d:" #: gis_data_editor.php:265 gis_data_editor.php:341 -#, fuzzy #| msgid "Outer Ring" msgid "Outer ring:" -msgstr "Círculo externo" +msgstr "Círculo externo:" #: gis_data_editor.php:267 gis_data_editor.php:343 -#, fuzzy, php-format +#, php-format #| msgid "Inner Ring" msgid "Inner ring %d:" -msgstr "Círculo interno" +msgstr "Círculo interno %d:" #: gis_data_editor.php:303 msgid "Add a linestring" @@ -593,10 +585,10 @@ msgid "Add an inner ring" msgstr "Engadir un círculo interno" #: gis_data_editor.php:325 -#, fuzzy, php-format +#, php-format #| msgid "Polygon" msgid "Polygon %d:" -msgstr "Polígono" +msgstr "Polígono %d:" #: gis_data_editor.php:384 js/messages.php:315 msgid "Add a polygon" @@ -624,8 +616,8 @@ msgid "" "You probably tried to upload a file that is too large. Please refer to " "%sdocumentation%s for a workaround for this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " -"%sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" +"sdocumentación%s para averiguar como evitar este límite." #: import.php:268 import.php:534 msgid "Showing bookmark" @@ -741,62 +733,54 @@ msgid "Server:" msgstr "Servidor:" #: index.php:244 -#, fuzzy #| msgid "Server type" msgid "Server type:" -msgstr "Tipo do servidor" +msgstr "Tipo de servidor:" #: index.php:248 libraries/plugins/export/ExportLatex.class.php:225 #: libraries/plugins/export/ExportSql.class.php:612 #: libraries/plugins/export/ExportXml.class.php:198 -#, fuzzy #| msgid "Server version" msgid "Server version:" -msgstr "Versión do servidor" +msgstr "Versión do servidor:" #: index.php:252 -#, fuzzy #| msgid "Protocol version" msgid "Protocol version:" -msgstr "Versión do protocolo" +msgstr "Versión do protocolo:" #: index.php:256 -#, fuzzy #| msgid "User" msgid "User:" -msgstr "Usuario" +msgstr "Usuario:" #: index.php:261 -#, fuzzy #| msgid "Server charset" msgid "Server charset:" -msgstr "Conxunto de caracteres do servidor" +msgstr "Conxunto de caracteres do servidor:" #: index.php:273 msgid "Web server" msgstr "Servidor web" #: index.php:286 -#, fuzzy #| msgid "Database client version" msgid "Database client version:" -msgstr "Versión do cliente da base de datos" +msgstr "Versión do cliente da base de datos:" #: index.php:290 -#, fuzzy #| msgid "PHP extension" msgid "PHP extension:" -msgstr "Extensión de PHP" +msgstr "Extensión de PHP:" #: index.php:304 msgid "Show PHP information" msgstr "Mostrar información sobre o PHP" #: index.php:327 -#, fuzzy #| msgid "Version information" msgid "Version information:" -msgstr "Información sobre a versión" +msgstr "Información sobre a versión:" #: index.php:336 libraries/Util.class.php:441 libraries/Util.class.php:527 #: libraries/config/FormDisplay.tpl.php:149 @@ -820,7 +804,7 @@ msgstr "Colaborar" #: index.php:366 msgid "Get support" -msgstr "Obter soporte" +msgstr "Obter axuda" #: index.php:373 msgid "List of changes" @@ -866,10 +850,11 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" -"O parámetro PHP [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] é menor do que a " -"validez das cookies que se configurou en phpMyAdmin; por causa disto, o " -"rexistro caducará antes do que está configurado en phpMyAdmin." +"O parámetro PHP " +"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" +"maxlifetime@_blank]session.gc_maxlifetime[/a] é menor do que a validez das " +"cookies que se configurou en phpMyAdmin; por causa disto, o rexistro " +"caducará antes do que está configurado en phpMyAdmin." #: index.php:456 msgid "" @@ -887,7 +872,6 @@ msgstr "" "(blowfish_secret)." #: index.php:479 -#, fuzzy #| msgid "" #| "Directory [code]config[/code], which is used by the setup script, still " #| "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -899,8 +883,10 @@ msgid "" "may be compromised by unauthorized people downloading your configuration." msgstr "" "O directorio [code]config[/code], que é o que emprega o script de inicio, " -"existe aínda no directorio de phpMyAdmin. Deberíao eliminar unha vez " -"finalice a configuración do phpMyAdmin." +"existe aínda no directorio de phpMyAdmin. Recoméndase moito eliminalo unha " +"vez finalice a configuración do phpMyAdmin. De non o facer, a seguranza do " +"servidor poderíase ver comprometida por persoas non autorizadas que " +"descargasen a configuración." #: index.php:489 #, php-format @@ -1092,7 +1078,7 @@ msgstr "Memoria de intercambio do sistema" #: js/messages.php:81 msgid "Average load" -msgstr "Carga promedio" +msgstr "Carga media" #: js/messages.php:82 msgid "Total memory" @@ -1527,7 +1513,7 @@ msgstr "Escolla o ficheiro que desexa importar" #: js/messages.php:194 msgid "Analyse Query" -msgstr "Analizar pesquisa" +msgstr "Analizar a consulta" #: js/messages.php:198 msgid "Advisor system" @@ -1547,7 +1533,7 @@ msgstr "Recomendación" #: js/messages.php:202 msgid "Rule details" -msgstr "Detalles da regla" +msgstr "Detalles da regra" #: js/messages.php:203 msgid "Justification" @@ -1764,16 +1750,14 @@ msgid "Show search criteria" msgstr "Mostrar o criterio de busca" #: js/messages.php:278 -#, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" -msgstr "Agochar o criterio de busca" +msgstr "Agochar os criterios de busca e substitución" #: js/messages.php:279 -#, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" -msgstr "Mostrar o criterio de busca" +msgstr "Mostrar os criterios de busca e substitución" #: js/messages.php:282 libraries/TableSearch.class.php:212 msgid "Zoom Search" @@ -1986,8 +1970,7 @@ msgstr "Agochar o panel" #: js/messages.php:371 msgid "The requested page was not found in the history, it may have expired." -msgstr "" -"Non foi posíbel atopar a páxina pedida no historial; pode que caducase." +msgstr "Non foi posíbel atopar a páxina pedida no historial; pode que caducase." #: js/messages.php:374 setup/lib/index.lib.php:155 #, php-format @@ -2306,12 +2289,12 @@ msgid "Unexpected characters on line %s." msgstr "Hai caracteres inesperados na liña %s." #: libraries/Advisor.class.php:434 -#, fuzzy, php-format +#, php-format #| msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Hai un carácter inesperado na liña %1$s. Agardábase unha tabulación mais " -"atopouse «%2$s»" +"atopouse «%2$s»." #: libraries/Advisor.class.php:467 msgid "per second" @@ -2364,32 +2347,28 @@ msgid "Descending" msgstr "Descendente" #: libraries/DBQbe.class.php:364 libraries/TableSearch.class.php:1284 -#, fuzzy #| msgid "Column" msgid "Column:" -msgstr "Columna" +msgstr "Columna:" #: libraries/DBQbe.class.php:406 -#, fuzzy #| msgid "Sort" msgid "Sort:" -msgstr "Ordenar" +msgstr "Ordenar:" #: libraries/DBQbe.class.php:468 -#, fuzzy #| msgid "Show" msgid "Show:" -msgstr "Mostrar" +msgstr "Mostrar:" #: libraries/DBQbe.class.php:513 -#, fuzzy #| msgid "Criteria" msgid "Criteria:" -msgstr "Criterio" +msgstr "Criterios:" #: libraries/DBQbe.class.php:576 msgid "Add/Delete criteria rows" -msgstr "Engadir/Eliminar filas de criterio" +msgstr "Engadir/Eliminar filas de criterios" #: libraries/DBQbe.class.php:576 msgid "Add/Delete columns" @@ -2404,14 +2383,13 @@ msgid "Use Tables" msgstr "Usar as táboas" #: libraries/DBQbe.class.php:653 libraries/DBQbe.class.php:757 -#, fuzzy #| msgid "Or" msgid "Or:" -msgstr "ou" +msgstr "Ou:" #: libraries/DBQbe.class.php:657 libraries/DBQbe.class.php:742 msgid "And:" -msgstr "" +msgstr "E:" #: libraries/DBQbe.class.php:661 msgid "Ins" @@ -2422,18 +2400,17 @@ msgid "Del" msgstr "Eliminar" #: libraries/DBQbe.class.php:680 -#, fuzzy #| msgid "Modify" msgid "Modify:" -msgstr "Modificar" +msgstr "Modificar:" #: libraries/DBQbe.class.php:737 msgid "Ins:" -msgstr "" +msgstr "Inserir:" #: libraries/DBQbe.class.php:752 msgid "Del:" -msgstr "" +msgstr "Eliminar:" #: libraries/DBQbe.class.php:1321 #, php-format @@ -2585,10 +2562,9 @@ msgid "Number of rows:" msgstr "Número de filas:" #: libraries/DisplayResults.class.php:925 -#, fuzzy #| msgid "Mode" msgid "Mode:" -msgstr "Modo" +msgstr "Modo:" #: libraries/DisplayResults.class.php:927 msgid "horizontal" @@ -2794,8 +2770,8 @@ msgstr "O ficheiro non foi subido como un ficheiro." #: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php." -"ini." +"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de " +"php.ini." #: libraries/File.class.php:282 msgid "" @@ -3231,16 +3207,14 @@ msgid "Target database `%s` was not found!" msgstr "Non foi posíbel atopar a base de datos de destino «%s»!" #: libraries/Table.class.php:1237 -#, fuzzy #| msgid "Invalid database" msgid "Invalid database:" -msgstr "A base de datos non é válida" +msgstr "A base de datos non é válida:" #: libraries/Table.class.php:1251 -#, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" -msgstr "Nome de táboa non válido" +msgstr "O nome da táboa non é válido:" #: libraries/Table.class.php:1286 #, php-format @@ -3301,7 +3275,7 @@ msgstr "Busca na táboa" #: libraries/TableSearch.class.php:217 libraries/TableSearch.class.php:1172 msgid "Find and Replace" -msgstr "" +msgstr "Buscar e substituír" #: libraries/TableSearch.class.php:239 libraries/insert_edit.lib.php:1352 msgid "Edit/Insert" @@ -3368,38 +3342,33 @@ msgid "Reset zoom" msgstr "Restaurar a ampliación" #: libraries/TableSearch.class.php:1281 -#, fuzzy #| msgid "Replace NULL with:" msgid "Replace with:" -msgstr "Substituír NULL por:" +msgstr "Substituír por:" #: libraries/TableSearch.class.php:1341 msgid "Find and replace - preview" -msgstr "" +msgstr "Buscar e substituír - vista previa" #: libraries/TableSearch.class.php:1345 -#, fuzzy #| msgid "Column" msgid "Count" -msgstr "Columna" +msgstr "Cantidade" #: libraries/TableSearch.class.php:1346 -#, fuzzy #| msgid "Original position" msgid "Original string" -msgstr "Posición orixinal" +msgstr "Cadea orixinal" #: libraries/TableSearch.class.php:1347 -#, fuzzy #| msgid "Related Links" msgid "Replaced string" -msgstr "Ligazóns relacionadas" +msgstr "Cadea substituída" #: libraries/TableSearch.class.php:1371 -#, fuzzy #| msgid "Replicated" msgid "Replace" -msgstr "Duplicado" +msgstr "Substituír" #: libraries/Theme.class.php:170 #, php-format @@ -3430,10 +3399,9 @@ msgid "Theme path not found for theme %s!" msgstr "Non se atopou a ruta do tema para o tema %s!" #: libraries/Theme_Manager.class.php:363 -#, fuzzy #| msgid "Theme" msgid "Theme:" -msgstr "Tema" +msgstr "Tema:" #: libraries/Types.class.php:296 msgid "" @@ -3489,8 +3457,8 @@ msgid "" "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Un número de vírgula flutuante pequeno; os valores permitidos son " -"-3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até 3,402823466E" -"+38" +"-3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até " +"3,402823466E+38" #: libraries/Types.class.php:310 msgid "" @@ -3745,8 +3713,7 @@ msgstr "" #: libraries/Types.class.php:715 msgid "A system's default double-precision floating-point number" -msgstr "" -"Un número de vírgula flotante de dupla precisión por omisión do sistema" +msgstr "Un número de vírgula flotante de dupla precisión por omisión do sistema" #: libraries/Types.class.php:717 msgid "True or false" @@ -3786,10 +3753,9 @@ msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" #: libraries/Util.class.php:685 libraries/sql.lib.php:417 -#, fuzzy #| msgid "SQL query" msgid "SQL query:" -msgstr "consulta de SQL" +msgstr "Consulta de SQL:" #: libraries/Util.class.php:729 libraries/rte/rte_events.lib.php:114 #: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:140 @@ -4014,18 +3980,18 @@ msgstr "O índice de servidor non é válido: %s" #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -"O nome de servidor non é válido para o servidor %1$s. Revise a configuración." +"O nome de servidor non é válido para o servidor %1$s. Revise a " +"configuración." #: libraries/common.inc.php:650 -#, fuzzy, php-format +#, php-format #| msgid "Server" msgid "Server %d" -msgstr "Servidor" +msgstr "Servidor %d" #: libraries/common.inc.php:843 msgid "Invalid authentication method set in configuration:" -msgstr "" -"Na configuración indicouse un método de autenticación que non é válido:" +msgstr "Na configuración indicouse un método de autenticación que non é válido:" #: libraries/common.inc.php:984 #, php-format @@ -4050,17 +4016,15 @@ msgstr "detectouse unha tecla numérica" #: libraries/config.values.php:49 libraries/config.values.php:65 #: libraries/config.values.php:70 -#, fuzzy #| msgid "Ins" msgid "Icons" -msgstr "Inserir" +msgstr "Iconas" #: libraries/config.values.php:50 libraries/config.values.php:66 #: libraries/config.values.php:71 -#, fuzzy #| msgid "Test" msgid "Text" -msgstr "Proba" +msgstr "Texto" #: libraries/config.values.php:51 libraries/config.values.php:59 #: libraries/config.values.php:67 libraries/config.values.php:72 @@ -4203,16 +4167,16 @@ msgid "\"%s\" requires %s extension" msgstr "«%s» require a extensión %s" #: libraries/config/FormDisplay.class.php:784 -#, fuzzy, php-format +#, php-format #| msgid "import will not work, missing function (%s)" msgid "Compressed import will not work due to missing function %s." -msgstr "importar non vai funcionar, falta a función (%s)" +msgstr "A importación comprimida non vai funcionar porque falta a función %s." #: libraries/config/FormDisplay.class.php:790 -#, fuzzy, php-format +#, php-format #| msgid "export will not work, missing function (%s)" msgid "Compressed export will not work due to missing function %s." -msgstr "exportar non vai funcionar, falta a función (%s)" +msgstr "A exportación comprimida non vai funcionar porque falta a función %s." #: libraries/config/FormDisplay.class.php:800 msgid "SQL Validator is disabled" @@ -4229,8 +4193,7 @@ msgstr "máximo %s" #: libraries/config/FormDisplay.tpl.php:225 msgid "This setting is disabled, it will not be applied to your configuration." -msgstr "" -"Esta preferencia está desactivada; non se aplicará á súa configuración." +msgstr "Esta preferencia está desactivada; non se aplicará á súa configuración." #: libraries/config/FormDisplay.tpl.php:313 #, php-format @@ -4248,7 +4211,7 @@ msgstr "Permitir que os usuarios personalicen este valor" #: libraries/config/FormDisplay.tpl.php:396 msgid "Apply" -msgstr "" +msgstr "Aplicar" #: libraries/config/FormDisplay.tpl.php:398 libraries/insert_edit.lib.php:1551 #: libraries/schema/User_Schema.class.php:558 prefs_manage.php:326 @@ -4298,10 +4261,9 @@ msgstr "" "Atopouse un contrasinal de control de phpMyAdmin baleiro ao empregar pmadb" #: libraries/config/Validator.class.php:438 -#, fuzzy #| msgid "Incorrect value" msgid "Incorrect value:" -msgstr "O valor é incorrecto" +msgstr "O valor é incorrecto:" #: libraries/config/Validator.class.php:446 #, php-format @@ -4384,8 +4346,9 @@ msgid "" "Use user-friendly editor for editing SQL queries ([a@http://codemirror." "net/]CodeMirror[/a]) with syntax highlighting and line numbers" msgstr "" -"Empregue un editor amigábel para editar as consultas de SQL ([a@http://" -"codemirror.net/]CodeMirror[/a]) con realce da sintaxe e números de liña" +"Empregue un editor amigábel para editar as consultas de SQL " +"([a@http://codemirror.net/]CodeMirror[/a]) con realce da sintaxe e números " +"de liña" #: libraries/config/messages.inc.php:31 msgid "Enable CodeMirror" @@ -4594,28 +4557,25 @@ msgstr "Pór os nomes das columnas na primeira fila" #: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:243 #: libraries/config/messages.inc.php:250 #: libraries/plugins/import/ImportCsv.class.php:150 -#, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" -msgstr "Columnas delimitadas por:" +msgstr "Columnas delimitadas por" #: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:244 #: libraries/config/messages.inc.php:251 #: libraries/plugins/import/ImportCsv.class.php:157 -#, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" -msgstr "Carácter de escape das columnas:" +msgstr "Carácter de escape das columnas" #: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 #: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 #: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 #: libraries/config/messages.inc.php:145 -#, fuzzy #| msgid "Replace NULL with:" msgid "Replace NULL with" -msgstr "Substituír NULL por:" +msgstr "Substituír NULL por" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" @@ -4624,17 +4584,15 @@ msgstr "Eliminar os caracteres CRLF nas columnas" #: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:247 #: libraries/config/messages.inc.php:255 #: libraries/plugins/import/ImportCsv.class.php:135 -#, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Columnas terminadas en" #: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:242 #: libraries/plugins/import/ImportCsv.class.php:164 -#, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" -msgstr "Liñas rematadas en:" +msgstr "Liñas rematadas en" #: libraries/config/messages.inc.php:80 msgid "Excel edition" @@ -5065,9 +5023,10 @@ msgid "" msgstr "" "Se desexa empregar o servizo do validador de SQL ha de te ren conta que " "[strong]todas as instrucións de SQL se almacenan de maneira anónima con " -"finalidade estatística[/strong].[br][em][a@http://sqlválidator.mimer." -"com/]Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. " -"Todos os dereitos reservados.[/em]" +"finalidade " +"estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]Mimer SQL " +"Validator[/a], Copyright 2002 Upright Database Technology. Todos os dereitos " +"reservados.[/em]" #: libraries/config/messages.inc.php:220 msgid "Startup" @@ -5512,10 +5471,9 @@ msgid "Use only icons, only text or both" msgstr "Empregar só iconas, só texto ou ambos os dous" #: libraries/config/messages.inc.php:325 -#, fuzzy #| msgid "Iconic navigation bar" msgid "Table navigation bar" -msgstr "Barra de navegación por iconas" +msgstr "Barra de navegación das táboas" #: libraries/config/messages.inc.php:326 msgid "use GZip output buffering for increased speed in HTTP transfers" @@ -5559,7 +5517,7 @@ msgstr "" #: libraries/config/messages.inc.php:333 msgid "Missing phpMyAdmin configuration storage tables" -msgstr "Faltan as táboas de almacenamento da configuración do phpMyadmin" +msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" #: libraries/config/messages.inc.php:334 msgid "" @@ -5574,7 +5532,6 @@ msgid "Server/library difference warning" msgstr "Advertencia de diferenza entre servidor e biblioteca" #: libraries/config/messages.inc.php:336 -#, fuzzy #| msgid "" #| "Disable the default warning that is displayed on the database details " #| "Structure page if any of the required tables for the phpMyAdmin " @@ -5583,23 +5540,21 @@ msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words" msgstr "" -"Desactivar o aviso que por omisión se mostra na páxina de detalles da " -"estrutura da base de datos se non foi posíbel atopar algunha das táboas " -"requiridas para o almacenamento da configuración do phpMyAdmin" +"Desactivar o aviso que por omisión se mostra na páxina da estrutura da base " +"de datos se os nomes de columna dunha táboa son palabras reservadas do MySQL" #: libraries/config/messages.inc.php:337 msgid "MySQL reserved word warning" -msgstr "" +msgstr "Advertencia de palabra reservada do MySQL" #: libraries/config/messages.inc.php:339 -#, fuzzy #| msgid "Allow to display all the rows" msgid "How to display the menu tabs" -msgstr "Permitir que se mostren todas as fileiras" +msgstr "Como mostrar as lapelas do menú" #: libraries/config/messages.inc.php:341 msgid "How to display various action links" -msgstr "" +msgstr "Como mostrar diversas ligazóns de acción" #: libraries/config/messages.inc.php:342 msgid "Disallow BLOB and BINARY columns from editing" @@ -5616,7 +5571,7 @@ msgid "" "(lost by window close)." msgstr "" "Activar se se quere un historial baseado en base de datos (require o " -"almacenamento da configuración do phpMyadmin). Se se desactiva, utiliza " +"almacenamento da configuración do phpMyAdmin). Se se desactiva, utiliza " "rutinas JS para mostrar o historial de consultas (que se perde cando se " "fecha a xanela)." @@ -5741,8 +5696,8 @@ msgid "" "swekey.conf)" msgstr "" "A ruta ao ficheiro de configuración da [a@http://swekey.com]autenticación de " -"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /etc/" -"swekey.conf)" +"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: " +"/etc/swekey.conf)" #: libraries/config/messages.inc.php:375 msgid "SweKey config file" @@ -5761,8 +5716,9 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin." -"net/pma/bookmark]bookmark[/a] ; por omisión: [kbd]pma_bookmark[/kbd]" +"Déixeo en branco se non quere a funcionalidade de " +"[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] ; por omisión: " +"[kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Bookmark table" @@ -5790,8 +5746,7 @@ msgstr "Comprimir a conexión" #: libraries/config/messages.inc.php:384 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "" -"Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a" +msgstr "Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a" #: libraries/config/messages.inc.php:385 msgid "Connection type" @@ -5807,8 +5762,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Un usuario especial de MySQL configurado con permisos limitados; hai máis " -"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/" -"controluser]wiki[/a]" +"información dispoñíbel no " +"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" #: libraries/config/messages.inc.php:388 msgid "Control user" @@ -5827,7 +5782,6 @@ msgid "Control host" msgstr "Servidor de control" #: libraries/config/messages.inc.php:391 -#, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " #| "the already defined host" @@ -5836,14 +5790,14 @@ msgid "" "storage; leave blank to use the default port, or the already defined port, " "if the controlhost equals host" msgstr "" -"Un servidor alternativo que manteña o almacenamento da configuración; déixeo " -"en branco para empregar o servidor xa indicado" +"Un porto alternativo ao que conectar o servidor que manteña o almacenamento " +"da configuración; déixeo en branco para empregar o servidor por omisión, ou " +"o porto xa definido se controlhost for o mesmo que o servidor" #: libraries/config/messages.inc.php:392 -#, fuzzy #| msgid "Control host" msgid "Control port" -msgstr "Servidor de control" +msgstr "Porto de control" #: libraries/config/messages.inc.php:393 msgid "" @@ -5862,9 +5816,9 @@ 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 "" -"Máis información no [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql." -"com/19588]Erros do MySQL[/a]" +"Máis información no " +"[a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]Seguidor de erros de " +"PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do MySQL[/a]" #: libraries/config/messages.inc.php:396 msgid "Disable use of INFORMATION_SCHEMA" @@ -5932,7 +5886,6 @@ msgid "Connect without password" msgstr "Conectarse sen contrasinal" #: libraries/config/messages.inc.php:410 -#, fuzzy #| 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 " @@ -5946,9 +5899,7 @@ msgid "" msgstr "" "Pódense empregar os caracteres comodín do MySQL (% and _); escápeos se quere " "empregar os caracteres en si, isto é, empregue [kbd]'my\\_db'[/kbd]' no " -"canto de [kbd]'my_db'[/kbd]. Usando esta opción pode ordenar a lista de " -"bases de datos, só poña os nomes en orde e use [kbd]*[/kbd] ao final para " -"mostrar o resto en orde alfabética." +"canto de [kbd]'my_db'[/kbd]." #: libraries/config/messages.inc.php:411 msgid "Show only listed databases" @@ -5966,8 +5917,8 @@ msgstr "Contrasinal para config auth" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__pdf_pages[/" -"kbd]" +"Déixeo en branco se non quere PDF schema; por omisión: " +"[kbd]pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:415 msgid "PDF schema: pages table" @@ -6015,8 +5966,9 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/" -"relation]ligazóns de relación[/a]; suxírese: [kbd]pma__relation[/kbd]" +"Déixeo en branco se non quere " +"[a@http://wiki.phpmyadmin.net/pma/relation]ligazóns de relación[/a]; " +"suxírese: [kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:423 msgid "Relation table" @@ -6089,7 +6041,6 @@ msgid "Display columns table" msgstr "Mostrar a táboa de columnas" #: libraries/config/messages.inc.php:437 -#, fuzzy #| msgid "" #| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " #| "suggested: [kbd]pma__table_uiprefs[/kbd]" @@ -6155,8 +6106,8 @@ msgid "" "Leave blank for no SQL query tracking support, suggested: " "[kbd]pma__tracking[/kbd]" msgstr "" -"Déixeo en branco se non quere un soporte de seguimento das consultas SQL, " -"valor suxerido: [kbd]pma_tracking[/kbd]" +"Déixeo en branco se non quere a funcionalidade de seguimento das consultas " +"de SQL; valor suxerido: [kbd]pma_tracking[/kbd]" #: libraries/config/messages.inc.php:448 msgid "SQL query tracking table" @@ -6280,8 +6231,8 @@ msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -"Define se os campos tipo deben ser mostrados inicialmente no modo editar/" -"inserir" +"Define se os campos tipo deben ser mostrados inicialmente no modo " +"editar/inserir" #: libraries/config/messages.inc.php:471 msgid "Show field types" @@ -6308,8 +6259,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo." -"php]phpinfo()[/a]" +"Mostra unha ligazón á saída de " +"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]" #: libraries/config/messages.inc.php:477 msgid "Show phpinfo() link" @@ -6341,8 +6292,8 @@ msgstr "Reter a caixa de consultas" #: libraries/config/messages.inc.php:483 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -"Permitir que se mostren as estatísticas das bases de datos e das táboas (p." -"ex. o uso do espazo)" +"Permitir que se mostren as estatísticas das bases de datos e das táboas " +"(p.ex. o uso do espazo)" #: libraries/config/messages.inc.php:484 msgid "Show statistics" @@ -6463,8 +6414,8 @@ msgid "" msgstr "" "Escriba os proxies como [kbd]IP: cabezallo HTTP de confianza[/kbd]. O " "exemplo seguinte especifica que o phpMyAdmin debería confiar nun cabezallo " -"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br]" -"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" +"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy " +"1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" #: libraries/config/messages.inc.php:514 msgid "List of trusted proxies for IP allow/deny" @@ -6472,8 +6423,7 @@ msgstr "Lista de proxies de confianza para permiso/denegación de IP" #: libraries/config/messages.inc.php:515 msgid "Directory on server where you can upload files for import" -msgstr "" -"Directorio do servidor ao que se poden enviar os ficheiros que importar" +msgstr "Directorio do servidor ao que se poden enviar os ficheiros que importar" #: libraries/config/messages.inc.php:516 msgid "Upload directory" @@ -6522,12 +6472,15 @@ msgid "" "is installed does not have direct access to the internet. The format is: " "\"hostname:portnumber\"" msgstr "" +"O URL do proxy que se desexa empregar para obter a información sobre a " +"versión máis recente do phpMyAdmin. É necesario se o servidor no que está " +"instalado o phpMyAdmin non ten acceso á Internet. O formato é: " +"«nome_do_servidor:número_do_porto»" #: libraries/config/messages.inc.php:525 -#, fuzzy #| msgid "Version check" msgid "Version check proxy url" -msgstr "Comprobación da versión" +msgstr "URL do proxy de comprobación da versión" #: libraries/config/messages.inc.php:526 msgid "" @@ -6535,22 +6488,24 @@ msgid "" "authentication is performed. If a username is supplied, Basic Authentication " "will be performed. No other types of authentication are currently supported." msgstr "" +"O nome de usuario para autenticarse no proxy. Por omisión, non se realiza " +"ningunha autenticación. Se se indicar un nome de usuario realízase a " +"Autenticación Básica. De momento non se admite ningún outro tipo de " +"autenticación." #: libraries/config/messages.inc.php:527 -#, fuzzy #| msgid "Version check" msgid "Version check proxy username" -msgstr "Comprobación da versión" +msgstr "Nome de usuario do proxy de comprobación da versión" #: libraries/config/messages.inc.php:528 msgid "The password for authenticating with the proxy" -msgstr "" +msgstr "O contrasinal para identificarse diante do proxy" #: libraries/config/messages.inc.php:529 -#, fuzzy #| msgid "Version check" msgid "Version check proxy password" -msgstr "Comprobación da versión" +msgstr "Contrasinal do proxy de comprobación da versión" #: libraries/config/messages.inc.php:531 msgid "" @@ -6567,26 +6522,28 @@ msgstr "ZIP" #: libraries/config/messages.inc.php:533 msgid "Enter your public key for your domain reCaptcha service" msgstr "" +"Introduza a súa chave pública para o servizo de reCaptcha do seu dominio" #: libraries/config/messages.inc.php:534 msgid "Public key for reCaptcha" -msgstr "" +msgstr "Chave pública do reCaptcha" #: libraries/config/messages.inc.php:535 msgid "Enter your private key for your domain reCaptcha service" msgstr "" +"Introduza a súa chave privada para o servizo de reCaptcha do seu dominio" #: libraries/config/messages.inc.php:536 msgid "Private key for reCaptcha" -msgstr "" +msgstr "Chave privada do reCaptcha" #: libraries/config/setup.forms.php:41 msgid "Config authentication" -msgstr "Configurar a autenticación" +msgstr "Autenticación mediante configuración" #: libraries/config/setup.forms.php:45 msgid "Cookie authentication" -msgstr "Autenticación por cookies" +msgstr "Autenticación mediante cookies" #: libraries/config/setup.forms.php:48 msgid "HTTP authentication" @@ -6604,10 +6561,9 @@ msgstr "CSV empregando LOAD DATA" #: 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 -#, fuzzy #| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" -msgstr "Folla de cálculo de Open Document" +msgstr "Folla de cálculo de OpenDocument" #: libraries/config/setup.forms.php:270 #: libraries/config/user_preferences.forms.php:168 @@ -6636,10 +6592,9 @@ msgstr "Microsoft Word 2000" #: libraries/config/setup.forms.php:360 #: libraries/config/user_preferences.forms.php:257 -#, fuzzy #| msgid "Open Document Text" msgid "OpenDocument Text" -msgstr "Texto de Open Document" +msgstr "Texto de OpenDocument" #: libraries/core.lib.php:290 #, php-format @@ -6683,16 +6638,14 @@ msgstr "Contrasinal:" #: libraries/display_change_password.lib.php:67 #: libraries/replication_gui.lib.php:851 #: libraries/server_privileges.lib.php:1255 -#, fuzzy #| msgid "Re-type" msgid "Re-type:" -msgstr "Reescribir" +msgstr "Reescribir:" #: libraries/display_change_password.lib.php:74 -#, fuzzy #| msgid "Password Hashing" msgid "Password Hashing:" -msgstr "Hash do contrasinal" +msgstr "Hash do contrasinal:" #: libraries/display_change_password.lib.php:87 msgid "MySQL 4.0 compatible" @@ -6707,10 +6660,9 @@ msgid "Create" msgstr "Crear" #: libraries/display_create_database.lib.php:50 -#, fuzzy #| msgid "Create database" msgid "Create database:" -msgstr "Crear unha base de datos" +msgstr "Crear unha base de datos:" #: libraries/display_create_database.lib.php:60 #: libraries/server_privileges.lib.php:2972 server_privileges.php:149 @@ -6894,10 +6846,9 @@ msgid "no branch" msgstr "ningunha galla" #: libraries/display_git_revision.lib.php:64 -#, fuzzy #| msgid "Git revision" msgid "Git revision:" -msgstr "Revisión do git" +msgstr "Revisión do git:" #: libraries/display_git_revision.lib.php:67 #, php-format @@ -6981,8 +6932,8 @@ msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" -"O nome dun ficheiro comprimido debe rematar en .[formato].[compresión]. Exemplo: .sql.zip" +"O nome dun ficheiro comprimido debe rematar en " +".[formato].[compresión]. Exemplo: .sql.zip" #: libraries/display_import.lib.php:245 msgid "File uploads are not allowed on this server." @@ -7205,8 +7156,8 @@ msgid "" "method." msgstr "" "Se o ficheiro temporal usado para a creación rápida dun índice de MyISAM for " -"máis grande que se se usar o caché de chaves na cantidade que se especifique " -"aquí, preferir o método da caché de chaves." +"máis grande que se se usar o caché de chaves na cantidade que se " +"especifique aquí, preferir o método da caché de chaves." #: libraries/engines/myisam.lib.php:47 msgid "Repair threads" @@ -7218,7 +7169,8 @@ msgid "" "parallel (each index in its own thread) during the repair by sorting process." msgstr "" "Se este valor é maior que 1, os índices das táboas MyISAM créanse en " -"paralelo (cada índice no seu propio fío) durante o proceso Reparar ordenando." +"paralelo (cada índice no seu propio fío) durante o proceso Reparar " +"ordenando." #: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" @@ -7380,10 +7332,10 @@ msgid "" "will be deleted, otherwise they are renamed and given the next highest " "number." msgstr "" -"Este é o número de ficheiros de rexistro de transaccións (pbxt/system/xlog*." -"xt) que vai manter o sistema. Se o número de ficheiros de rexistro excede " -"este valor, os ficheiros de rexistro antigos elimínanse; se non, múdaselles " -"o nome e dáselles o número máis alto seguinte." +"Este é o número de ficheiros de rexistro de transaccións " +"(pbxt/system/xlog*.xt) que vai manter o sistema. Se o número de ficheiros de " +"rexistro excede este valor, os ficheiros de rexistro antigos elimínanse; se " +"non, múdaselles o nome e dáselles o número máis alto seguinte." #: libraries/engines/pbxt.lib.php:131 #, php-format @@ -7476,10 +7428,9 @@ msgid "Binary - do not edit" msgstr "Binario - non editar" #: libraries/insert_edit.lib.php:1187 libraries/sql_query_form.lib.php:486 -#, fuzzy #| msgid "web server upload directory" msgid "web server upload directory:" -msgstr "directorio de recepción do servidor web" +msgstr "directorio de recepción do servidor web:" #: libraries/insert_edit.lib.php:1402 #, php-format @@ -7546,16 +7497,14 @@ msgid "Convert to Kana" msgstr "Converter a Kana" #: libraries/mult_submits.inc.php:288 -#, fuzzy #| msgid "Replace table prefix" msgid "Replace table prefix:" -msgstr "Substituír o prefixo da táboa" +msgstr "Substituír o prefixo da táboa:" #: libraries/mult_submits.inc.php:290 -#, fuzzy #| msgid "Copy table with prefix" msgid "Copy table with prefix:" -msgstr "Copiar a táboa con prefixo" +msgstr "Copiar a táboa con prefixo:" #: libraries/mult_submits.inc.php:295 msgid "From" @@ -7571,10 +7520,9 @@ msgid "Submit" msgstr "Enviar" #: libraries/mult_submits.inc.php:317 -#, fuzzy #| msgid "Add table prefix" msgid "Add table prefix:" -msgstr "Engadir un prefixo á táboa" +msgstr "Engadir un prefixo á táboa:" #: libraries/mult_submits.inc.php:320 msgid "Add prefix" @@ -7634,7 +7582,7 @@ msgstr "Esperanto" #: libraries/mysql_charsets.lib.php:186 msgid "Estonian" -msgstr "Estonio" +msgstr "Estoniano" #: libraries/mysql_charsets.lib.php:189 libraries/mysql_charsets.lib.php:192 msgid "German" @@ -7756,7 +7704,7 @@ msgstr "Árabe" #: libraries/mysql_charsets.lib.php:317 msgid "Hebrew" -msgstr "Hebreu" +msgstr "Hebreo" #: libraries/mysql_charsets.lib.php:320 msgid "Georgian" @@ -7892,10 +7840,9 @@ msgid "New" msgstr "Nova" #: libraries/operations.lib.php:83 -#, fuzzy #| msgid "Rename database to" msgid "Rename database to:" -msgstr "Renomear a base de datos como" +msgstr "Renomear a base de datos como:" #: libraries/operations.lib.php:115 #, php-format @@ -7926,10 +7873,9 @@ msgid "Data only" msgstr "Só os datos" #: libraries/operations.lib.php:191 -#, fuzzy #| msgid "Copy database to" msgid "Copy database to:" -msgstr "Copiar a base de datos a" +msgstr "Copiar a base de datos a:" #: libraries/operations.lib.php:202 msgid "CREATE DATABASE before copying" @@ -8104,7 +8050,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:142 msgid "Retry to connect" -msgstr "" +msgstr "Ténteo de novo para conectar" #: libraries/plugins/auth/AuthenticationCookie.class.php:44 msgid "Failed to use Blowfish from mcrypt!" @@ -8131,18 +8077,17 @@ msgid "Username:" msgstr "Nome de usuario:" #: libraries/plugins/auth/AuthenticationCookie.class.php:223 -#, fuzzy #| msgid "Server Choice" msgid "Server Choice:" -msgstr "Escolla de servidor" +msgstr "Escolla de servidor:" #: libraries/plugins/auth/AuthenticationCookie.class.php:384 msgid "Entered captcha is wrong, try again!" -msgstr "" +msgstr "O captcha introducido é incorrecto; ténteo de novo!" #: libraries/plugins/auth/AuthenticationCookie.class.php:393 msgid "Please enter correct captcha!" -msgstr "" +msgstr "Introduza o captcha correcto!" #: libraries/plugins/auth/AuthenticationCookie.class.php:655 #: libraries/plugins/auth/AuthenticationSignon.class.php:247 @@ -8302,24 +8247,21 @@ msgstr "Opcións de creación de obxectos" #: libraries/plugins/export/ExportLatex.class.php:121 #: libraries/plugins/export/ExportLatex.class.php:166 -#, fuzzy #| msgid "Table caption" msgid "Table caption:" -msgstr "Título da táboa" +msgstr "Título da táboa:" #: libraries/plugins/export/ExportLatex.class.php:126 #: libraries/plugins/export/ExportLatex.class.php:171 -#, fuzzy #| msgid "Table caption (continued)" msgid "Table caption (continued):" -msgstr "Descrición da táboa (continuado)" +msgstr "Descrición da táboa (continuado):" #: libraries/plugins/export/ExportLatex.class.php:131 #: libraries/plugins/export/ExportLatex.class.php:176 -#, fuzzy #| msgid "Label key" msgid "Label key:" -msgstr "Chave da etiqueta" +msgstr "Chave da etiqueta:" #: libraries/plugins/export/ExportLatex.class.php:137 #: libraries/plugins/export/ExportOdt.class.php:103 @@ -8339,59 +8281,52 @@ msgid "Display MIME types" msgstr "Mostrar os tipos MIME" #: libraries/plugins/export/ExportLatex.class.php:162 -#, fuzzy #| msgid "Put columns names in the first row" msgid "Put columns names in the first row:" -msgstr "Pór os nomes das columnas na primeira fila" +msgstr "Pór os nomes das columnas na primeira fila:" #: libraries/plugins/export/ExportLatex.class.php:218 #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:405 libraries/replication_gui.lib.php:671 #: libraries/server_privileges.lib.php:1110 libraries/sql.lib.php:411 -#, fuzzy #| msgid "Host" msgid "Host:" -msgstr "Servidor" +msgstr "Servidor:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 #: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 -#, fuzzy #| msgid "Generation Time" msgid "Generation Time:" -msgstr "Xerado en" +msgstr "Xerado en:" #: libraries/plugins/export/ExportLatex.class.php:226 #: libraries/plugins/export/ExportSql.class.php:614 #: libraries/plugins/export/ExportXml.class.php:199 -#, fuzzy #| msgid "PHP Version" msgid "PHP Version:" -msgstr "Versión do PHP" +msgstr "Versión do PHP:" #: libraries/plugins/export/ExportLatex.class.php:251 #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 #: libraries/sql.lib.php:412 -#, fuzzy #| msgid "Database" msgid "Database:" -msgstr "Base de datos" +msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.class.php:303 #: libraries/plugins/export/ExportSql.class.php:1546 -#, fuzzy #| msgid "Data" msgid "Data:" -msgstr "Datos" +msgstr "Datos:" #: libraries/plugins/export/ExportLatex.class.php:487 -#, fuzzy #| msgid "Structure" msgid "Structure:" -msgstr "Estrutura" +msgstr "Estrutura:" #: libraries/plugins/export/ExportMediawiki.class.php:84 msgid "Export table names" @@ -8493,8 +8428,8 @@ msgid "" "(1,2,3)" msgstr "" "incluír os nomes das columnas en todas as instrucións INSERT " -"
    Exemplo: INSERT INTO nome_taboa (col_A,col_B," -"col_C) VALUES (1,2,3)" +"
    Exemplo: 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." +"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 \n" +"Language-Team: West Flemish " +"\n" +"Language: vls\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 1.6-dev\n" + +#: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:339 +#: libraries/DisplayResults.class.php:813 +#: libraries/server_privileges.lib.php:2652 +msgid "Show all" +msgstr "" + +#: browse_foreigners.php:93 libraries/PDF.class.php:70 +#: libraries/Util.class.php:2559 +#: libraries/schema/Pdf_Relation_Schema.class.php:1196 +#: libraries/schema/Pdf_Relation_Schema.class.php:1220 +#: libraries/schema/User_Schema.class.php:430 +#: libraries/select_lang.lib.php:531 +msgid "Page number:" +msgstr "" + +#: browse_foreigners.php:110 +msgid "" +"The target browser window could not be updated. Maybe you have closed the " +"parent window, or your browser's security settings are configured to block " +"cross-window updates." +msgstr "" + +#: browse_foreigners.php:182 +msgid "Search:" +msgstr "" + +#: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1653 +#: libraries/TableSearch.class.php:1185 libraries/core.lib.php:556 +#: libraries/display_change_password.lib.php:94 +#: libraries/display_create_table.lib.php:65 +#: libraries/display_export.lib.php:453 libraries/display_import.lib.php:335 +#: libraries/display_indexes.lib.php:202 libraries/index.lib.php:37 +#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1584 +#: libraries/operations.lib.php:43 libraries/operations.lib.php:90 +#: libraries/operations.lib.php:226 libraries/operations.lib.php:274 +#: libraries/operations.lib.php:665 libraries/operations.lib.php:718 +#: libraries/operations.lib.php:767 libraries/operations.lib.php:1083 +#: libraries/operations.lib.php:1367 +#: libraries/plugins/auth/AuthenticationCookie.class.php:274 +#: libraries/replication_gui.lib.php:121 libraries/replication_gui.lib.php:292 +#: libraries/replication_gui.lib.php:431 libraries/replication_gui.lib.php:871 +#: libraries/rte/rte_events.lib.php:542 +#: libraries/rte/rte_routines.lib.php:1081 +#: libraries/rte/rte_routines.lib.php:1667 +#: libraries/rte/rte_triggers.lib.php:420 +#: libraries/schema/User_Schema.class.php:164 +#: libraries/schema/User_Schema.class.php:226 +#: libraries/schema/User_Schema.class.php:487 +#: libraries/schema/User_Schema.class.php:537 +#: libraries/server_bin_log.lib.php:61 libraries/server_privileges.lib.php:505 +#: libraries/server_privileges.lib.php:1508 +#: libraries/server_privileges.lib.php:2000 +#: libraries/server_privileges.lib.php:2592 +#: libraries/server_privileges.lib.php:3119 +#: libraries/sql_query_form.lib.php:382 libraries/sql_query_form.lib.php:439 +#: libraries/sql_query_form.lib.php:504 libraries/structure.lib.php:1586 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 +#: prefs_manage.php:272 prefs_manage.php:322 tbl_chart.php:251 +#: tbl_tracking.php:522 tbl_tracking.php:687 view_create.php:225 +#: view_operations.php:99 +msgid "Go" +msgstr "" + +#: browse_foreigners.php:197 browse_foreigners.php:201 +#: libraries/Index.class.php:561 tbl_tracking.php:383 +msgid "Keyname" +msgstr "" + +#: browse_foreigners.php:198 browse_foreigners.php:200 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_engines.lib.php:50 +#: libraries/server_plugins.lib.php:133 +#: libraries/server_status_variables.lib.php:221 +msgid "Description" +msgstr "" + +#: browse_foreigners.php:284 browse_foreigners.php:296 +#: browse_foreigners.php:312 browse_foreigners.php:324 +msgid "Use this value" +msgstr "" + +#: changelog.php:36 license.php:28 +#, php-format +msgid "" +"The %s file is not available on this system, please visit www.phpmyadmin.net " +"for more information." +msgstr "" + +#: db_create.php:60 +#, php-format +msgid "Database %1$s has been created." +msgstr "" + +#: db_datadict.php:52 libraries/operations.lib.php:36 +msgid "Database comment: " +msgstr "" + +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/tbl_columns_definition_form.inc.php:836 tbl_printview.php:120 +msgid "Table comments:" +msgstr "" + +#: db_datadict.php:166 libraries/Index.class.php:565 +#: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1233 +#: libraries/display_indexes.lib.php:117 libraries/insert_edit.lib.php:1568 +#: libraries/plugins/export/ExportHtmlword.class.php:278 +#: libraries/plugins/export/ExportHtmlword.class.php:393 +#: libraries/plugins/export/ExportLatex.class.php:510 +#: libraries/plugins/export/ExportOdt.class.php:360 +#: libraries/plugins/export/ExportOdt.class.php:458 +#: libraries/plugins/export/ExportTexytext.class.php:271 +#: libraries/plugins/export/ExportTexytext.class.php:371 +#: libraries/plugins/export/ExportTexytext.class.php:434 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/schema/Pdf_Relation_Schema.class.php:1394 +#: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 +#: tbl_relation.php:396 tbl_relation.php:492 tbl_relation.php:562 +#: tbl_tracking.php:325 tbl_tracking.php:387 +msgid "Column" +msgstr "" + +#: db_datadict.php:167 db_printview.php:49 libraries/Index.class.php:562 +#: libraries/TableSearch.class.php:186 libraries/insert_edit.lib.php:243 +#: libraries/insert_edit.lib.php:247 +#: libraries/plugins/export/ExportHtmlword.class.php:281 +#: libraries/plugins/export/ExportHtmlword.class.php:396 +#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportOdt.class.php:363 +#: libraries/plugins/export/ExportOdt.class.php:461 +#: libraries/plugins/export/ExportTexytext.class.php:272 +#: libraries/plugins/export/ExportTexytext.class.php:372 +#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 +#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:968 +#: libraries/rte/rte_routines.lib.php:1580 +#: libraries/schema/Pdf_Relation_Schema.class.php:1372 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/server_privileges.lib.php:1602 libraries/structure.lib.php:776 +#: libraries/structure.lib.php:1180 +#: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 +#: tbl_tracking.php:326 tbl_tracking.php:384 +msgid "Type" +msgstr "" + +#: db_datadict.php:168 libraries/Index.class.php:568 +#: libraries/TableSearch.class.php:1234 libraries/insert_edit.lib.php:1577 +#: libraries/plugins/export/ExportHtmlword.class.php:284 +#: libraries/plugins/export/ExportHtmlword.class.php:399 +#: libraries/plugins/export/ExportLatex.class.php:512 +#: libraries/plugins/export/ExportOdt.class.php:366 +#: libraries/plugins/export/ExportOdt.class.php:464 +#: libraries/plugins/export/ExportTexytext.class.php:273 +#: libraries/plugins/export/ExportTexytext.class.php:373 +#: libraries/schema/Pdf_Relation_Schema.class.php:1374 +#: libraries/schema/Pdf_Relation_Schema.class.php:1397 +#: libraries/structure.lib.php:1183 +#: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 +#: tbl_tracking.php:328 tbl_tracking.php:390 +msgid "Null" +msgstr "" + +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:287 +#: libraries/plugins/export/ExportHtmlword.class.php:402 +#: libraries/plugins/export/ExportLatex.class.php:513 +#: libraries/plugins/export/ExportOdt.class.php:369 +#: libraries/plugins/export/ExportOdt.class.php:467 +#: libraries/plugins/export/ExportTexytext.class.php:274 +#: libraries/plugins/export/ExportTexytext.class.php:374 +#: libraries/schema/Pdf_Relation_Schema.class.php:1375 +#: libraries/schema/Pdf_Relation_Schema.class.php:1398 +#: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 +#: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 +#: tbl_tracking.php:329 +msgid "Default" +msgstr "" + +#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:406 +#: libraries/plugins/export/ExportLatex.class.php:515 +#: libraries/plugins/export/ExportOdt.class.php:471 +#: libraries/plugins/export/ExportTexytext.class.php:376 +#: libraries/schema/Pdf_Relation_Schema.class.php:1377 +#: libraries/schema/Pdf_Relation_Schema.class.php:1400 tbl_printview.php:135 +msgid "Links to" +msgstr "" + +#: db_datadict.php:173 db_printview.php:53 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 +#: libraries/plugins/export/ExportHtmlword.class.php:411 +#: libraries/plugins/export/ExportLatex.class.php:518 +#: libraries/plugins/export/ExportOdt.class.php:476 +#: libraries/plugins/export/ExportTexytext.class.php:379 +#: libraries/schema/Pdf_Relation_Schema.class.php:1388 +#: libraries/schema/Pdf_Relation_Schema.class.php:1401 +#: libraries/tbl_columns_definition_form.inc.php:136 tbl_printview.php:137 +msgid "Comments" +msgstr "" + +#: db_datadict.php:237 js/messages.php:231 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:874 +#: libraries/config/FormDisplay.tpl.php:262 libraries/mult_submits.inc.php:370 +#: libraries/mult_submits.inc.php:371 +#: libraries/plugins/export/ExportHtmlword.class.php:633 +#: libraries/plugins/export/ExportLatex.class.php:589 +#: libraries/plugins/export/ExportOdt.class.php:726 +#: libraries/plugins/export/ExportTexytext.class.php:568 +#: libraries/schema/Pdf_Relation_Schema.class.php:1427 +#: libraries/server_privileges.lib.php:1744 +#: libraries/server_privileges.lib.php:1879 +#: libraries/server_privileges.lib.php:1892 +#: libraries/server_privileges.lib.php:2186 +#: libraries/server_privileges.lib.php:2192 +#: libraries/server_privileges.lib.php:2512 +#: libraries/server_privileges.lib.php:2526 libraries/structure.lib.php:1268 +#: libraries/user_preferences.lib.php:286 prefs_manage.php:138 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 +msgid "No" +msgstr "" + +#: db_datadict.php:237 js/messages.php:230 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:874 +#: libraries/config/FormDisplay.tpl.php:262 libraries/mult_submits.inc.php:74 +#: libraries/mult_submits.inc.php:109 libraries/mult_submits.inc.php:118 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:128 +#: libraries/mult_submits.inc.php:133 libraries/mult_submits.inc.php:309 +#: libraries/mult_submits.inc.php:329 libraries/mult_submits.inc.php:364 +#: libraries/mult_submits.inc.php:365 libraries/mult_submits.inc.php:377 +#: libraries/plugins/export/ExportHtmlword.class.php:634 +#: libraries/plugins/export/ExportLatex.class.php:589 +#: libraries/plugins/export/ExportOdt.class.php:727 +#: libraries/plugins/export/ExportTexytext.class.php:568 +#: libraries/schema/Pdf_Relation_Schema.class.php:1428 +#: libraries/server_privileges.lib.php:1744 +#: libraries/server_privileges.lib.php:1876 +#: libraries/server_privileges.lib.php:1890 +#: libraries/server_privileges.lib.php:2185 +#: libraries/server_privileges.lib.php:2190 +#: libraries/server_privileges.lib.php:2509 +#: libraries/server_privileges.lib.php:2526 libraries/structure.lib.php:1268 +#: libraries/user_preferences.lib.php:284 prefs_manage.php:136 +#: server_databases.php:104 server_databases.php:111 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 +msgid "Yes" +msgstr "" + +#: db_export.php:29 +msgid "View dump (schema) of database" +msgstr "" + +#: db_export.php:33 db_printview.php:41 db_structure.php:86 db_tracking.php:49 +#: export.php:557 libraries/DBQbe.class.php:268 +msgid "No tables found in database." +msgstr "" + +#: db_export.php:40 libraries/DbSearch.class.php:438 server_export.php:25 +msgid "Select All" +msgstr "" + +#: db_export.php:45 libraries/DbSearch.class.php:441 server_export.php:30 +msgid "Unselect All" +msgstr "" + +#: db_operations.php:45 tbl_create.php:24 +msgid "The database name is empty!" +msgstr "" + +#: db_operations.php:129 +#, php-format +msgid "Database %1$s has been renamed to %2$s" +msgstr "" + +#: db_operations.php:133 +#, php-format +msgid "Database %1$s has been copied to %2$s" +msgstr "" + +#: db_operations.php:261 +#, php-format +msgid "" +"The phpMyAdmin configuration storage has been deactivated. To find out why " +"click %shere%s." +msgstr "" + +#: db_printview.php:47 db_tracking.php:79 db_tracking.php:204 +#: libraries/Menu.class.php:207 libraries/config/messages.inc.php:512 +#: libraries/plugins/export/ExportXml.class.php:459 +#: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:355 +#: libraries/schema/User_Schema.class.php:298 +#: libraries/server_privileges.lib.php:2028 +#: libraries/server_privileges.lib.php:2259 +#: libraries/server_privileges.lib.php:2911 libraries/structure.lib.php:757 +#: tbl_relation.php:475 tbl_relation.php:545 tbl_tracking.php:766 +msgid "Table" +msgstr "" + +#: db_printview.php:48 libraries/Table.class.php:351 +#: libraries/build_html_for_db.lib.php:31 libraries/import.lib.php:181 +#: libraries/structure.lib.php:768 libraries/structure.lib.php:1712 +#: libraries/structure.lib.php:1905 tbl_printview.php:365 +msgid "Rows" +msgstr "" + +#: db_printview.php:51 libraries/display_indexes.lib.php:118 +#: libraries/structure.lib.php:787 +msgid "Size" +msgstr "" + +#: db_printview.php:97 libraries/plugins/export/ExportSql.class.php:1021 +#: libraries/structure.lib.php:731 +msgid "in use" +msgstr "" + +#: db_printview.php:117 libraries/plugins/export/ExportSql.class.php:947 +#: libraries/schema/Pdf_Relation_Schema.class.php:1350 +msgid "Creation:" +msgstr "" + +#: db_printview.php:126 libraries/plugins/export/ExportSql.class.php:960 +#: libraries/schema/Pdf_Relation_Schema.class.php:1355 +msgid "Last update:" +msgstr "" + +#: db_printview.php:135 libraries/plugins/export/ExportSql.class.php:973 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +msgid "Last check:" +msgstr "" + +#: db_printview.php:149 libraries/structure.lib.php:176 +#, php-format +msgid "%s table" +msgid_plural "%s tables" +msgstr[0] "" +msgstr[1] "" + +#: db_qbe.php:40 +msgid "You have to choose at least one column to display" +msgstr "" + +#: db_qbe.php:60 +#, php-format +msgid "Switch to %svisual builder%s" +msgstr "" + +#: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:81 +#: libraries/plugins/auth/AuthenticationConfig.class.php:96 +#: libraries/plugins/auth/AuthenticationCookie.class.php:659 +#: libraries/plugins/auth/AuthenticationHttp.class.php:65 +#: libraries/plugins/auth/AuthenticationSignon.class.php:251 +msgid "Access denied" +msgstr "" + +#: db_tracking.php:73 +msgid "Tracked tables" +msgstr "" + +#: db_tracking.php:78 libraries/Menu.class.php:180 +#: libraries/config/messages.inc.php:506 +#: libraries/plugins/export/ExportHtmlword.class.php:158 +#: libraries/plugins/export/ExportOdt.class.php:203 +#: libraries/plugins/export/ExportTexytext.class.php:142 +#: libraries/server_databases.lib.php:310 +#: libraries/server_privileges.lib.php:2018 +#: libraries/server_privileges.lib.php:2259 +#: libraries/server_privileges.lib.php:2902 server_status.php:379 +#: tbl_relation.php:452 tbl_relation.php:518 tbl_tracking.php:765 +msgid "Database" +msgstr "" + +#: db_tracking.php:80 +msgid "Last version" +msgstr "" + +#: db_tracking.php:81 tbl_tracking.php:768 +msgid "Created" +msgstr "" + +#: db_tracking.php:82 tbl_tracking.php:769 +msgid "Updated" +msgstr "" + +#: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:473 +#: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 +#: server_status.php:391 tbl_tracking.php:770 +msgid "Status" +msgstr "" + +#: db_tracking.php:84 libraries/Index.class.php:559 +#: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 +#: libraries/rte/rte_list.lib.php:79 libraries/server_databases.lib.php:404 +#: libraries/server_privileges.lib.php:1605 +#: libraries/server_privileges.lib.php:2269 +#: libraries/server_privileges.lib.php:2434 libraries/structure.lib.php:765 +#: libraries/structure.lib.php:1198 +msgid "Action" +msgstr "" + +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:771 +msgid "Show" +msgstr "" + +#: db_tracking.php:101 js/messages.php:34 +msgid "Delete tracking data for this table" +msgstr "" + +#: db_tracking.php:109 libraries/Index.class.php:625 +#: libraries/Util.class.php:3475 libraries/Util.class.php:3476 +#: libraries/server_databases.lib.php:155 libraries/structure.lib.php:307 +#: libraries/structure.lib.php:1378 libraries/structure.lib.php:2054 +#: libraries/structure.lib.php:2056 +msgid "Drop" +msgstr "" + +#: db_tracking.php:126 tbl_tracking.php:726 tbl_tracking.php:780 +msgid "active" +msgstr "" + +#: db_tracking.php:128 tbl_tracking.php:728 tbl_tracking.php:782 +msgid "not active" +msgstr "" + +#: db_tracking.php:144 +msgid "Versions" +msgstr "" + +#: db_tracking.php:145 tbl_tracking.php:490 tbl_tracking.php:802 +msgid "Tracking report" +msgstr "" + +#: db_tracking.php:146 tbl_tracking.php:293 tbl_tracking.php:807 +msgid "Structure snapshot" +msgstr "" + +#: db_tracking.php:199 +msgid "Untracked tables" +msgstr "" + +#: db_tracking.php:218 libraries/structure.lib.php:1515 +msgid "Track table" +msgstr "" + +#: db_tracking.php:245 +msgid "Database Log" +msgstr "" + +#: export.php:151 +msgid "Bad type!" +msgstr "" + +#: export.php:202 +msgid "Selected export type has to be saved in file!" +msgstr "" + +#: export.php:231 +msgid "Bad parameters!" +msgstr "" + +#: export.php:335 export.php:366 export.php:928 +#, php-format +msgid "Insufficient space to save the file %s." +msgstr "" + +#: export.php:506 +#, php-format +msgid "" +"File %s already exists on server, change filename or check overwrite option." +msgstr "" + +#: export.php:512 export.php:518 +#, php-format +msgid "The web server does not have permission to save the file %s." +msgstr "" + +#: export.php:934 +#, php-format +msgid "Dump has been saved to file %s." +msgstr "" + +#: file_echo.php:22 +msgid "Invalid export type" +msgstr "" + +#: gis_data_editor.php:112 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:140 libraries/tbl_gis_visualization.lib.php:260 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:161 +msgid "SRID:" +msgstr "" + +#: gis_data_editor.php:184 +#, php-format +msgid "Geometry %d:" +msgstr "" + +#: gis_data_editor.php:206 +msgid "Point:" +msgstr "" + +#: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 +#: gis_data_editor.php:362 js/messages.php:304 +msgid "X" +msgstr "" + +#: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 +#: gis_data_editor.php:366 js/messages.php:305 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 +#: js/messages.php:307 +#, php-format +msgid "Point %d" +msgstr "" + +#: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 +#: js/messages.php:313 +msgid "Add a point" +msgstr "" + +#: gis_data_editor.php:262 +#, php-format +msgid "Linestring %d:" +msgstr "" + +#: gis_data_editor.php:265 gis_data_editor.php:341 +msgid "Outer ring:" +msgstr "" + +#: gis_data_editor.php:267 gis_data_editor.php:343 +#, php-format +msgid "Inner ring %d:" +msgstr "" + +#: gis_data_editor.php:303 +msgid "Add a linestring" +msgstr "" + +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:314 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:325 +#, php-format +msgid "Polygon %d:" +msgstr "" + +#: gis_data_editor.php:384 js/messages.php:315 +msgid "Add a polygon" +msgstr "" + +#: gis_data_editor.php:390 +msgid "Add geometry" +msgstr "" + +#: gis_data_editor.php:399 +msgid "Output" +msgstr "" + +#: gis_data_editor.php:402 +msgid "" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" +msgstr "" + +#: import.php:107 +#, php-format +msgid "" +"You probably tried to upload a file that is too large. Please refer to " +"%sdocumentation%s for a workaround for this limit." +msgstr "" + +#: import.php:268 import.php:534 +msgid "Showing bookmark" +msgstr "" + +#: import.php:283 import.php:530 +msgid "The bookmark has been deleted." +msgstr "" + +#: import.php:378 import.php:439 libraries/File.class.php:433 +#: libraries/File.class.php:526 +msgid "File could not be read" +msgstr "" + +#: import.php:387 import.php:398 import.php:419 import.php:430 +#: libraries/File.class.php:605 +#, php-format +msgid "" +"You attempted to load file with unsupported compression (%s). Either support " +"for it is not implemented or disabled by your configuration." +msgstr "" + +#: import.php:445 +msgid "" +"No data was received to import. Either no file name was submitted, or the " +"file size exceeded the maximum size permitted by your PHP configuration. See " +"[doc@faq1-16]FAQ 1.16[/doc]." +msgstr "" + +#: import.php:465 +msgid "" +"Cannot convert file's character set without character set conversion library" +msgstr "" + +#: import.php:503 libraries/display_import.lib.php:29 +msgid "Could not load import plugins, please check your installation!" +msgstr "" + +#: import.php:537 libraries/sql.lib.php:938 sql.php:409 +#, php-format +msgid "Bookmark %s created" +msgstr "" + +#: import.php:546 import.php:558 +#, php-format +msgid "Import has been successfully finished, %d queries executed." +msgstr "" + +#: import.php:573 +msgid "" +"Script timeout passed, if you want to finish import, please resubmit same " +"file and import will resume." +msgstr "" + +#: import.php:577 +msgid "" +"However on last run no data has been parsed, this usually means phpMyAdmin " +"won't be able to finish this import unless you increase php time limits." +msgstr "" + +#: import.php:608 libraries/DisplayResults.class.php:4534 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 +#: libraries/sql_query_form.lib.php:116 tbl_find_replace.php:49 +#: tbl_operations.php:184 tbl_relation.php:317 tbl_row_action.php:122 +#: view_operations.php:57 +msgid "Your SQL query has been executed successfully" +msgstr "" + +#: import_status.php:99 libraries/Util.class.php:778 +#: libraries/schema/Export_Relation_Schema.class.php:245 user_password.php:239 +msgid "Back" +msgstr "" + +#: index.php:114 +msgid "General Settings" +msgstr "" + +#: index.php:144 libraries/display_change_password.lib.php:46 +#: user_password.php:233 +msgid "Change password" +msgstr "" + +#: index.php:160 +msgid "Server connection collation" +msgstr "" + +#: index.php:186 +msgid "Appearance Settings" +msgstr "" + +#: index.php:216 prefs_manage.php:281 +msgid "More settings" +msgstr "" + +#: index.php:237 +msgid "Database server" +msgstr "" + +#: index.php:240 libraries/plugins/auth/AuthenticationCookie.class.php:199 +msgid "Server:" +msgstr "" + +#: index.php:244 +msgid "Server type:" +msgstr "" + +#: index.php:248 libraries/plugins/export/ExportLatex.class.php:225 +#: libraries/plugins/export/ExportSql.class.php:612 +#: libraries/plugins/export/ExportXml.class.php:198 +msgid "Server version:" +msgstr "" + +#: index.php:252 +msgid "Protocol version:" +msgstr "" + +#: index.php:256 +msgid "User:" +msgstr "" + +#: index.php:261 +msgid "Server charset:" +msgstr "" + +#: index.php:273 +msgid "Web server" +msgstr "" + +#: index.php:286 +msgid "Database client version:" +msgstr "" + +#: index.php:290 +msgid "PHP extension:" +msgstr "" + +#: index.php:304 +msgid "Show PHP information" +msgstr "" + +#: index.php:327 +msgid "Version information:" +msgstr "" + +#: index.php:336 libraries/Util.class.php:441 libraries/Util.class.php:527 +#: libraries/config/FormDisplay.tpl.php:149 +#: libraries/display_export.lib.php:292 libraries/engines/pbxt.lib.php:112 +#: libraries/navigation/NavigationHeader.class.php:229 +#: libraries/relation.lib.php:88 server_variables.php:137 +msgid "Documentation" +msgstr "" + +#: index.php:343 libraries/config/FormDisplay.tpl.php:150 +msgid "Wiki" +msgstr "" + +#: index.php:352 +msgid "Official Homepage" +msgstr "" + +#: index.php:359 +msgid "Contribute" +msgstr "" + +#: index.php:366 +msgid "Get support" +msgstr "" + +#: index.php:373 +msgid "List of changes" +msgstr "" + +#: index.php:397 +msgid "" +"Your configuration file contains settings (root with no password) that " +"correspond to the default MySQL privileged account. Your MySQL server is " +"running with this default, is open to intrusion, and you really should fix " +"this security hole by setting a password for user 'root'." +msgstr "" + +#: index.php:414 +msgid "" +"You have enabled mbstring.func_overload in your PHP configuration. This " +"option is incompatible with phpMyAdmin and might cause some data to be " +"corrupted!" +msgstr "" + +#: index.php:429 +msgid "" +"The mbstring PHP extension was not found and you seem to be using a " +"multibyte charset. Without the mbstring extension phpMyAdmin is unable to " +"split strings correctly and it may result in unexpected results." +msgstr "" + +#: index.php:444 +msgid "" +"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than " +"cookie validity configured in phpMyAdmin, because of this, your login will " +"expire sooner than configured in phpMyAdmin." +msgstr "" + +#: index.php:456 +msgid "" +"Login cookie store is lower than cookie validity configured in phpMyAdmin, " +"because of this, your login will expire sooner than configured in phpMyAdmin." +msgstr "" + +#: index.php:468 +msgid "The configuration file now needs a secret passphrase (blowfish_secret)." +msgstr "" + +#: index.php:479 +msgid "" +"Directory [code]config[/code], which is used by the setup script, still " +"exists in your phpMyAdmin directory. It is strongly recommended to remove it " +"once phpMyAdmin has been configured. Otherwise the security of your server " +"may be compromised by unauthorized people downloading your configuration." +msgstr "" + +#: index.php:489 +#, php-format +msgid "" +"The phpMyAdmin configuration storage is not completely configured, some " +"extended features have been deactivated. To find out why click %shere%s." +msgstr "" + +#: index.php:521 +#, php-format +msgid "" +"Your PHP MySQL library version %s differs from your MySQL server version %s. " +"This may cause unpredictable behavior." +msgstr "" + +#: index.php:545 +#, php-format +msgid "" +"Server running with Suhosin. Please refer to %sdocumentation%s for possible " +"issues." +msgstr "" + +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:136 +msgid "\"DROP DATABASE\" statements are disabled." +msgstr "" + +#: js/messages.php:30 +#, php-format +msgid "Do you really want to execute \"%s\"?" +msgstr "" + +#: js/messages.php:31 libraries/mult_submits.inc.php:337 +msgid "You are about to DESTROY a complete database!" +msgstr "" + +#: js/messages.php:32 +msgid "You are about to DESTROY a complete table!" +msgstr "" + +#: js/messages.php:33 +msgid "You are about to TRUNCATE a complete table!" +msgstr "" + +#: js/messages.php:35 +msgid "Deleting tracking data" +msgstr "" + +#: js/messages.php:36 +msgid "Dropping Primary Key/Index" +msgstr "" + +#: js/messages.php:37 +msgid "This operation could take a long time. Proceed anyway?" +msgstr "" + +#: js/messages.php:40 +msgid "Missing value in the form!" +msgstr "" + +#: js/messages.php:41 +msgid "This is not a number!" +msgstr "" + +#: js/messages.php:42 +msgid "Add Index" +msgstr "" + +#: js/messages.php:43 +msgid "Edit Index" +msgstr "" + +#: js/messages.php:44 libraries/display_indexes.lib.php:199 +#: libraries/display_indexes.lib.php:205 +#, php-format +msgid "Add %s column(s) to index" +msgstr "" + +#. l10n: Default label for the y-Axis of Charts +#: js/messages.php:48 tbl_chart.php:236 +msgid "Y Values" +msgstr "" + +#: js/messages.php:51 +msgid "The host name is empty!" +msgstr "" + +#: js/messages.php:52 +msgid "The user name is empty!" +msgstr "" + +#: js/messages.php:53 libraries/server_privileges.lib.php:1340 +#: user_password.php:110 +msgid "The password is empty!" +msgstr "" + +#: js/messages.php:54 libraries/server_privileges.lib.php:1338 +#: user_password.php:113 +msgid "The passwords aren't the same!" +msgstr "" + +#: js/messages.php:55 libraries/server_privileges.lib.php:1468 +#: libraries/server_privileges.lib.php:1658 +#: libraries/server_privileges.lib.php:2567 +#: libraries/server_privileges.lib.php:2869 +msgid "Add user" +msgstr "" + +#: js/messages.php:56 +msgid "Reloading Privileges" +msgstr "" + +#: js/messages.php:57 +msgid "Removing Selected Users" +msgstr "" + +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 +msgid "Close" +msgstr "" + +#. l10n: Other, small valued, queries +#: js/messages.php:61 libraries/ServerStatusData.class.php:200 +#: server_status_queries.php:171 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:63 libraries/Util.class.php:1526 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: js/messages.php:65 libraries/Util.class.php:1528 +msgid "." +msgstr "" + +#: js/messages.php:67 +msgid "Connections / Processes" +msgstr "" + +#: js/messages.php:70 +msgid "Local monitor configuration incompatible" +msgstr "" + +#: js/messages.php:71 +msgid "" +"The chart arrangement configuration in your browsers local storage is not " +"compatible anymore to the newer version of the monitor dialog. It is very " +"likely that your current configuration will not work anymore. Please reset " +"your configuration to default in the Settings menu." +msgstr "" + +#: js/messages.php:73 +msgid "Query cache efficiency" +msgstr "" + +#: js/messages.php:74 +msgid "Query cache usage" +msgstr "" + +#: js/messages.php:75 +msgid "Query cache used" +msgstr "" + +#: js/messages.php:77 +msgid "System CPU Usage" +msgstr "" + +#: js/messages.php:78 +msgid "System memory" +msgstr "" + +#: js/messages.php:79 +msgid "System swap" +msgstr "" + +#: js/messages.php:81 +msgid "Average load" +msgstr "" + +#: js/messages.php:82 +msgid "Total memory" +msgstr "" + +#: js/messages.php:83 +msgid "Cached memory" +msgstr "" + +#: js/messages.php:84 +msgid "Buffered memory" +msgstr "" + +#: js/messages.php:85 +msgid "Free memory" +msgstr "" + +#: js/messages.php:86 +msgid "Used memory" +msgstr "" + +#: js/messages.php:88 +msgid "Total Swap" +msgstr "" + +#: js/messages.php:89 +msgid "Cached Swap" +msgstr "" + +#: js/messages.php:90 +msgid "Used Swap" +msgstr "" + +#: js/messages.php:91 +msgid "Free Swap" +msgstr "" + +#: js/messages.php:93 +msgid "Bytes sent" +msgstr "" + +#: js/messages.php:94 +msgid "Bytes received" +msgstr "" + +#: js/messages.php:95 server_status.php:254 +msgid "Connections" +msgstr "" + +#: js/messages.php:96 server_status.php:440 +msgid "Processes" +msgstr "" + +#. l10n: shortcuts for Byte +#: js/messages.php:99 libraries/Util.class.php:1472 +msgid "B" +msgstr "" + +#. l10n: shortcuts for Kilobyte +#: js/messages.php:100 libraries/Util.class.php:1474 +#: libraries/server_status_monitor.lib.php:250 +msgid "KiB" +msgstr "" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:101 libraries/Util.class.php:1476 +#: libraries/server_status_monitor.lib.php:251 +msgid "MiB" +msgstr "" + +#. l10n: shortcuts for Gigabyte +#: js/messages.php:102 libraries/Util.class.php:1478 +msgid "GiB" +msgstr "" + +#. l10n: shortcuts for Terabyte +#: js/messages.php:103 libraries/Util.class.php:1480 +msgid "TiB" +msgstr "" + +#. l10n: shortcuts for Petabyte +#: js/messages.php:104 libraries/Util.class.php:1482 +msgid "PiB" +msgstr "" + +#. l10n: shortcuts for Exabyte +#: js/messages.php:105 libraries/Util.class.php:1484 +msgid "EiB" +msgstr "" + +#: js/messages.php:106 +#, php-format +msgid "%d table(s)" +msgstr "" + +#. l10n: Questions is the name of a MySQL Status variable +#: js/messages.php:109 +msgid "Questions" +msgstr "" + +#: js/messages.php:110 server_status.php:166 +msgid "Traffic" +msgstr "" + +#: js/messages.php:111 libraries/Menu.class.php:501 +#: libraries/server_status_monitor.lib.php:290 +msgid "Settings" +msgstr "" + +#: js/messages.php:112 +msgid "Remove chart" +msgstr "" + +#: js/messages.php:113 +msgid "Edit title and labels" +msgstr "" + +#: js/messages.php:114 +msgid "Add chart to grid" +msgstr "" + +#: js/messages.php:116 +msgid "Please add at least one variable to the series" +msgstr "" + +#: js/messages.php:117 libraries/DisplayResults.class.php:1291 +#: libraries/TableSearch.class.php:851 libraries/TableSearch.class.php:998 +#: libraries/display_export.lib.php:383 +#: libraries/plugins/export/ExportSql.class.php:1546 +#: libraries/server_privileges.lib.php:2161 +#: libraries/server_status_monitor.lib.php:269 +#: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:545 +#: server_status.php:529 +msgid "None" +msgstr "" + +#: js/messages.php:118 +msgid "Resume monitor" +msgstr "" + +#: js/messages.php:119 +msgid "Pause monitor" +msgstr "" + +#: js/messages.php:121 +msgid "general_log and slow_query_log are enabled." +msgstr "" + +#: js/messages.php:122 +msgid "general_log is enabled." +msgstr "" + +#: js/messages.php:123 +msgid "slow_query_log is enabled." +msgstr "" + +#: js/messages.php:124 +msgid "slow_query_log and general_log are disabled." +msgstr "" + +#: js/messages.php:125 +msgid "log_output is not set to TABLE." +msgstr "" + +#: js/messages.php:126 +msgid "log_output is set to TABLE." +msgstr "" + +#: js/messages.php:127 +#, php-format +msgid "" +"slow_query_log is enabled, but the server logs only queries that take longer " +"than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " +"depending on your system." +msgstr "" + +#: js/messages.php:128 +#, php-format +msgid "long_query_time is set to %d second(s)." +msgstr "" + +#: js/messages.php:129 +msgid "" +"Following settings will be applied globally and reset to default on server " +"restart:" +msgstr "" + +#. l10n: %s is FILE or TABLE +#: js/messages.php:131 +#, php-format +msgid "Set log_output to %s" +msgstr "" + +#. l10n: Enable in this context means setting a status variable to ON +#: js/messages.php:133 +#, php-format +msgid "Enable %s" +msgstr "" + +#. l10n: Disable in this context means setting a status variable to OFF +#: js/messages.php:135 +#, php-format +msgid "Disable %s" +msgstr "" + +#. l10n: %d seconds +#: js/messages.php:137 +#, php-format +msgid "Set long_query_time to %ds" +msgstr "" + +#: js/messages.php:138 +msgid "" +"You can't change these variables. Please log in as root or contact your " +"database administrator." +msgstr "" + +#: js/messages.php:139 +msgid "Change settings" +msgstr "" + +#: js/messages.php:140 +msgid "Current settings" +msgstr "" + +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 +msgid "Chart Title" +msgstr "" + +#. l10n: As in differential values +#: js/messages.php:144 +msgid "Differential" +msgstr "" + +#: js/messages.php:145 +#, php-format +msgid "Divided by %s" +msgstr "" + +#: js/messages.php:146 +msgid "Unit" +msgstr "" + +#: js/messages.php:148 +msgid "From slow log" +msgstr "" + +#: js/messages.php:149 +msgid "From general log" +msgstr "" + +#: js/messages.php:150 +msgid "Analysing logs" +msgstr "" + +#: js/messages.php:151 +msgid "Analysing & loading logs. This may take a while." +msgstr "" + +#: js/messages.php:152 +msgid "Cancel request" +msgstr "" + +#: js/messages.php:153 +msgid "" +"This column shows the amount of identical queries that are grouped together. " +"However only the SQL query itself has been used as a grouping criteria, so " +"the other attributes of queries, such as start time, may differ." +msgstr "" + +#: js/messages.php:154 +msgid "" +"Since grouping of INSERTs queries has been selected, INSERT queries into the " +"same table are also being grouped together, disregarding of the inserted " +"data." +msgstr "" + +#: js/messages.php:155 +msgid "Log data loaded. Queries executed in this time span:" +msgstr "" + +#: js/messages.php:157 +msgid "Jump to Log table" +msgstr "" + +#: js/messages.php:158 +msgid "No data found" +msgstr "" + +#: js/messages.php:159 +msgid "Log analysed, but no data found in this time span." +msgstr "" + +#: js/messages.php:161 +msgid "Analyzing…" +msgstr "" + +#: js/messages.php:162 +msgid "Explain output" +msgstr "" + +#: js/messages.php:164 js/messages.php:519 +#: libraries/plugins/export/ExportHtmlword.class.php:486 +#: libraries/plugins/export/ExportOdt.class.php:564 +#: libraries/plugins/export/ExportTexytext.class.php:437 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 +#: server_status.php:387 +msgid "Time" +msgstr "" + +#: js/messages.php:165 +msgid "Total time:" +msgstr "" + +#: js/messages.php:166 +msgid "Profiling results" +msgstr "" + +#: js/messages.php:167 +msgctxt "Display format" +msgid "Table" +msgstr "" + +#: js/messages.php:168 +msgid "Chart" +msgstr "" + +#: js/messages.php:169 +msgid "Edit chart" +msgstr "" + +#: js/messages.php:170 +msgid "Series" +msgstr "" + +#. l10n: A collection of available filters +#: js/messages.php:173 +msgid "Log table filter options" +msgstr "" + +#. l10n: Filter as in "Start Filtering" +#: js/messages.php:175 +msgid "Filter" +msgstr "" + +#: js/messages.php:176 +msgid "Filter queries by word/regexp:" +msgstr "" + +#: js/messages.php:177 +msgid "Group queries, ignoring variable data in WHERE clauses" +msgstr "" + +#: js/messages.php:178 +msgid "Sum of grouped rows:" +msgstr "" + +#: js/messages.php:179 +msgid "Total:" +msgstr "" + +#: js/messages.php:181 +msgid "Loading logs" +msgstr "" + +#: js/messages.php:182 +msgid "Monitor refresh failed" +msgstr "" + +#: js/messages.php:183 +msgid "" +"While requesting new chart data the server returned an invalid response. " +"This is most likely because your session expired. Reloading the page and " +"reentering your credentials should help." +msgstr "" + +#: js/messages.php:184 +msgid "Reload page" +msgstr "" + +#: js/messages.php:186 +msgid "Affected rows:" +msgstr "" + +#: js/messages.php:188 +msgid "Failed parsing config file. It doesn't seem to be valid JSON code." +msgstr "" + +#: js/messages.php:189 +msgid "" +"Failed building chart grid with imported config. Resetting to default config…" +msgstr "" + +#: js/messages.php:190 libraries/Menu.class.php:304 +#: libraries/Menu.class.php:386 libraries/Menu.class.php:497 +#: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 +#: setup/frames/menu.inc.php:21 +msgid "Import" +msgstr "" + +#: js/messages.php:191 +msgid "Import monitor configuration" +msgstr "" + +#: js/messages.php:192 +msgid "Please select the file you want to import" +msgstr "" + +#: js/messages.php:194 +msgid "Analyse Query" +msgstr "" + +#: js/messages.php:198 +msgid "Advisor system" +msgstr "" + +#: js/messages.php:199 +msgid "Possible performance issues" +msgstr "" + +#: js/messages.php:200 +msgid "Issue" +msgstr "" + +#: js/messages.php:201 +msgid "Recommendation" +msgstr "" + +#: js/messages.php:202 +msgid "Rule details" +msgstr "" + +#: js/messages.php:203 +msgid "Justification" +msgstr "" + +#: js/messages.php:204 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:205 +msgid "Test" +msgstr "" + +#: js/messages.php:210 pmd_general.php:423 pmd_general.php:460 +#: pmd_general.php:580 pmd_general.php:628 pmd_general.php:704 +#: pmd_general.php:758 pmd_general.php:821 pmd_general.php:852 +#: server_variables.php:134 +msgid "Cancel" +msgstr "" + +#: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 +#: libraries/server_status_monitor.lib.php:159 +msgid "Loading" +msgstr "" + +#: js/messages.php:214 +msgid "Processing Request" +msgstr "" + +#: js/messages.php:215 +msgid "Error in Processing Request" +msgstr "" + +#: js/messages.php:216 +#, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:217 +#, php-format +msgid "Error text: %s" +msgstr "" + +#: js/messages.php:218 libraries/db_common.inc.php:58 +#: libraries/db_table_exists.lib.php:28 server_databases.php:90 +msgid "No databases selected." +msgstr "" + +#: js/messages.php:219 +msgid "Dropping Column" +msgstr "" + +#: js/messages.php:220 +msgid "Adding Primary Key" +msgstr "" + +#: js/messages.php:221 pmd_general.php:421 pmd_general.php:578 +#: pmd_general.php:626 pmd_general.php:702 pmd_general.php:756 +#: pmd_general.php:819 +msgid "OK" +msgstr "" + +#: js/messages.php:222 +msgid "Click to dismiss this notification" +msgstr "" + +#: js/messages.php:225 +msgid "Renaming Databases" +msgstr "" + +#: js/messages.php:226 +msgid "Reload Database" +msgstr "" + +#: js/messages.php:227 +msgid "Copying Database" +msgstr "" + +#: js/messages.php:228 +msgid "Changing Charset" +msgstr "" + +#: js/messages.php:229 +msgid "Table must have at least one column" +msgstr "" + +#: js/messages.php:234 +msgid "Insert Table" +msgstr "" + +#: js/messages.php:235 +msgid "Hide indexes" +msgstr "" + +#: js/messages.php:236 +msgid "Show indexes" +msgstr "" + +#: js/messages.php:237 libraries/mult_submits.inc.php:350 +msgid "Foreign key check:" +msgstr "" + +#: js/messages.php:238 libraries/mult_submits.inc.php:360 +msgid "(Enabled)" +msgstr "" + +#: js/messages.php:239 libraries/mult_submits.inc.php:360 +msgid "(Disabled)" +msgstr "" + +#: js/messages.php:242 +msgid "Searching" +msgstr "" + +#: js/messages.php:243 +msgid "Hide search results" +msgstr "" + +#: js/messages.php:244 +msgid "Show search results" +msgstr "" + +#: js/messages.php:245 +msgid "Browsing" +msgstr "" + +#: js/messages.php:246 +msgid "Deleting" +msgstr "" + +#: js/messages.php:249 +msgid "The definition of a stored function must contain a RETURN statement!" +msgstr "" + +#: js/messages.php:252 libraries/rte/rte_routines.lib.php:790 +msgid "ENUM/SET editor" +msgstr "" + +#: js/messages.php:253 +#, php-format +msgid "Values for column %s" +msgstr "" + +#: js/messages.php:254 +msgid "Values for a new column" +msgstr "" + +#: js/messages.php:255 +msgid "Enter each value in a separate field" +msgstr "" + +#: js/messages.php:256 +#, php-format +msgid "Add %d value(s)" +msgstr "" + +#: js/messages.php:259 +msgid "" +"Note: If the file contains multiple tables, they will be combined into one." +msgstr "" + +#: js/messages.php:262 +msgid "Hide query box" +msgstr "" + +#: js/messages.php:263 +msgid "Show query box" +msgstr "" + +#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: libraries/Index.class.php:591 libraries/Util.class.php:710 +#: libraries/Util.class.php:1257 libraries/Util.class.php:3479 +#: libraries/Util.class.php:3480 libraries/config/messages.inc.php:488 +#: libraries/schema/User_Schema.class.php:216 server_variables.php:130 +#: setup/frames/index.inc.php:147 +msgid "Edit" +msgstr "" + +#: js/messages.php:265 tbl_row_action.php:21 +msgid "No rows selected" +msgstr "" + +#: js/messages.php:266 libraries/DisplayResults.class.php:5042 +#: libraries/structure.lib.php:1374 libraries/structure.lib.php:2052 +#: querywindow.php:85 +msgid "Change" +msgstr "" + +#: js/messages.php:267 +msgid "Query execution time" +msgstr "" + +#: js/messages.php:268 libraries/DisplayResults.class.php:725 +#: libraries/DisplayResults.class.php:733 +#, php-format +msgid "%d is not valid row number." +msgstr "" + +#: js/messages.php:271 libraries/display_indexes.lib.php:195 +#: libraries/insert_edit.lib.php:1462 +#: libraries/schema/User_Schema.class.php:383 +#: libraries/tbl_columns_definition_form.inc.php:898 server_variables.php:132 +#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246 +#: tbl_relation.php:636 +msgid "Save" +msgstr "" + +#: js/messages.php:274 +msgid "Hide search criteria" +msgstr "" + +#: js/messages.php:275 +msgid "Show search criteria" +msgstr "" + +#: js/messages.php:278 +msgid "Hide find and replace criteria" +msgstr "" + +#: js/messages.php:279 +msgid "Show find and replace criteria" +msgstr "" + +#: js/messages.php:282 libraries/TableSearch.class.php:212 +msgid "Zoom Search" +msgstr "" + +#: js/messages.php:284 +msgid "Each point represents a data row." +msgstr "" + +#: js/messages.php:286 +msgid "Hovering over a point will show its label." +msgstr "" + +#: js/messages.php:288 +msgid "To zoom in, select a section of the plot with the mouse." +msgstr "" + +#: js/messages.php:290 +msgid "Click reset zoom button to come back to original state." +msgstr "" + +#: js/messages.php:292 +msgid "Click a data point to view and possibly edit the data row." +msgstr "" + +#: js/messages.php:294 +msgid "The plot can be resized by dragging it along the bottom right corner." +msgstr "" + +#: js/messages.php:296 +msgid "Select two columns" +msgstr "" + +#: js/messages.php:297 +msgid "Select two different columns" +msgstr "" + +#: js/messages.php:298 +msgid "Query results" +msgstr "" + +#: js/messages.php:299 +msgid "Data point content" +msgstr "" + +#: js/messages.php:302 libraries/display_indexes.lib.php:134 +#: libraries/display_indexes.lib.php:170 tbl_change.php:263 +msgid "Ignore" +msgstr "" + +#: js/messages.php:303 libraries/DisplayResults.class.php:3317 +msgid "Copy" +msgstr "" + +#: js/messages.php:306 +msgid "Point" +msgstr "" + +#: js/messages.php:308 +msgid "Linestring" +msgstr "" + +#: js/messages.php:309 +msgid "Polygon" +msgstr "" + +#: js/messages.php:310 libraries/DisplayResults.class.php:1637 +msgid "Geometry" +msgstr "" + +#: js/messages.php:311 +msgid "Inner Ring" +msgstr "" + +#: js/messages.php:312 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:318 +msgid "Add columns" +msgstr "" + +#: js/messages.php:321 +msgid "Select referenced key" +msgstr "" + +#: js/messages.php:322 +msgid "Select Foreign Key" +msgstr "" + +#: js/messages.php:323 +msgid "Please select the primary key or a unique key" +msgstr "" + +#: js/messages.php:324 pmd_general.php:95 +msgid "Choose column to display" +msgstr "" + +#: js/messages.php:325 +msgid "" +"You haven't saved the changes in the layout. They will be lost if you don't " +"save them. Do you want to continue?" +msgstr "" + +#: js/messages.php:328 +msgid "Add an option for column " +msgstr "" + +#: js/messages.php:329 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:332 +msgid "Press escape to cancel editing" +msgstr "" + +#: js/messages.php:333 +msgid "" +"You have edited some data and they have not been saved. Are you sure you " +"want to leave this page before saving the data?" +msgstr "" + +#: js/messages.php:334 +msgid "Drag to reorder" +msgstr "" + +#: js/messages.php:335 +msgid "Click to sort" +msgstr "" + +#: js/messages.php:336 +msgid "Click to mark/unmark" +msgstr "" + +#: js/messages.php:337 +msgid "Double-click to copy column name" +msgstr "" + +#: js/messages.php:338 +msgid "Click the drop-down arrow
to toggle column's visibility" +msgstr "" + +#: js/messages.php:340 +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." +msgstr "" + +#: js/messages.php:345 +msgid "You can also edit most values
by double-clicking directly on them." +msgstr "" + +#: js/messages.php:348 +msgid "You can also edit most values
by clicking directly on them." +msgstr "" + +#: js/messages.php:353 +msgid "Go to link" +msgstr "" + +#: js/messages.php:354 +msgid "Copy column name" +msgstr "" + +#: js/messages.php:355 +msgid "Right-click the column name to copy it to your clipboard." +msgstr "" + +#: js/messages.php:356 +msgid "Show data row(s)" +msgstr "" + +#: js/messages.php:359 +msgid "Generate password" +msgstr "" + +#: js/messages.php:360 libraries/replication_gui.lib.php:863 +msgid "Generate" +msgstr "" + +#: js/messages.php:361 +msgid "Change Password" +msgstr "" + +#: js/messages.php:364 +msgid "More" +msgstr "" + +#: js/messages.php:367 +msgid "Show Panel" +msgstr "" + +#: js/messages.php:368 +msgid "Hide Panel" +msgstr "" + +#: js/messages.php:371 +msgid "The requested page was not found in the history, it may have expired." +msgstr "" + +#: js/messages.php:374 setup/lib/index.lib.php:155 +#, php-format +msgid "" +"A newer version of phpMyAdmin is available and you should consider " +"upgrading. The newest version is %s, released on %s." +msgstr "" + +#. l10n: Latest available phpMyAdmin version +#: js/messages.php:376 +msgid ", latest stable version:" +msgstr "" + +#: js/messages.php:377 +msgid "up to date" +msgstr "" + +#. l10n: Display text for calendar close link +#: js/messages.php:396 +msgid "Done" +msgstr "" + +#: js/messages.php:400 +msgctxt "Previous month" +msgid "Prev" +msgstr "" + +#: js/messages.php:405 +msgctxt "Next month" +msgid "Next" +msgstr "" + +#. l10n: Display text for current month link in calendar +#: js/messages.php:408 +msgid "Today" +msgstr "" + +#: js/messages.php:412 +msgid "January" +msgstr "" + +#: js/messages.php:413 +msgid "February" +msgstr "" + +#: js/messages.php:414 +msgid "March" +msgstr "" + +#: js/messages.php:415 +msgid "April" +msgstr "" + +#: js/messages.php:416 +msgid "May" +msgstr "" + +#: js/messages.php:417 +msgid "June" +msgstr "" + +#: js/messages.php:418 +msgid "July" +msgstr "" + +#: js/messages.php:419 +msgid "August" +msgstr "" + +#: js/messages.php:420 +msgid "September" +msgstr "" + +#: js/messages.php:421 +msgid "October" +msgstr "" + +#: js/messages.php:422 +msgid "November" +msgstr "" + +#: js/messages.php:423 +msgid "December" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:430 libraries/Util.class.php:1683 +msgid "Jan" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:432 libraries/Util.class.php:1685 +msgid "Feb" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:434 libraries/Util.class.php:1687 +msgid "Mar" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:436 libraries/Util.class.php:1689 +msgid "Apr" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:438 libraries/Util.class.php:1691 +msgctxt "Short month name" +msgid "May" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:440 libraries/Util.class.php:1693 +msgid "Jun" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:442 libraries/Util.class.php:1695 +msgid "Jul" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:444 libraries/Util.class.php:1697 +msgid "Aug" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:446 libraries/Util.class.php:1699 +msgid "Sep" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:448 libraries/Util.class.php:1701 +msgid "Oct" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:450 libraries/Util.class.php:1703 +msgid "Nov" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:452 libraries/Util.class.php:1705 +msgid "Dec" +msgstr "" + +#: js/messages.php:458 +msgid "Sunday" +msgstr "" + +#: js/messages.php:459 +msgid "Monday" +msgstr "" + +#: js/messages.php:460 +msgid "Tuesday" +msgstr "" + +#: js/messages.php:461 +msgid "Wednesday" +msgstr "" + +#: js/messages.php:462 +msgid "Thursday" +msgstr "" + +#: js/messages.php:463 +msgid "Friday" +msgstr "" + +#: js/messages.php:464 +msgid "Saturday" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:471 +msgid "Sun" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:473 libraries/Util.class.php:1710 +msgid "Mon" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:475 libraries/Util.class.php:1712 +msgid "Tue" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:477 libraries/Util.class.php:1714 +msgid "Wed" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:479 libraries/Util.class.php:1716 +msgid "Thu" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:481 libraries/Util.class.php:1718 +msgid "Fri" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:483 libraries/Util.class.php:1720 +msgid "Sat" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:490 +msgid "Su" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:492 +msgid "Mo" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:494 +msgid "Tu" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:496 +msgid "We" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:498 +msgid "Th" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:500 +msgid "Fr" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:502 +msgid "Sa" +msgstr "" + +#. l10n: Column header for week of the year in calendar +#: js/messages.php:506 +msgid "Wk" +msgstr "" + +#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". +#: js/messages.php:509 +msgid "calendar-month-year" +msgstr "calendar-month-year" + +#. l10n: Year suffix for calendar, "none" is empty. +#: js/messages.php:511 +msgctxt "Year suffix" +msgid "none" +msgstr "none" + +#: js/messages.php:520 +msgid "Hour" +msgstr "" + +#: js/messages.php:521 +msgid "Minute" +msgstr "" + +#: js/messages.php:522 +msgid "Second" +msgstr "" + +#: libraries/Advisor.class.php:78 +#, php-format +msgid "PHP threw following error: %s" +msgstr "पी एच पी ने ये त्रुटी दिखाई है:%s" + +#: libraries/Advisor.class.php:107 +#, php-format +msgid "Failed evaluating precondition for rule '%s'." +msgstr "पूर्व शर्त कि वजाह से नियम सुलाझाने मे विफलता'%s'." + +#: libraries/Advisor.class.php:124 +#, php-format +msgid "Failed calculating value for rule '%s'." +msgstr "" + +#: libraries/Advisor.class.php:143 +#, php-format +msgid "Failed running test for rule '%s'." +msgstr "" + +#: libraries/Advisor.class.php:225 +#, php-format +msgid "Failed formatting string for rule '%s'." +msgstr "" + +#: libraries/Advisor.class.php:395 +#, php-format +msgid "" +"Invalid rule declaration on line %1$s, expected line %2$s of previous rule." +msgstr "" + +#: libraries/Advisor.class.php:412 +#, php-format +msgid "Invalid rule declaration on line %s." +msgstr "" + +#: libraries/Advisor.class.php:420 +#, php-format +msgid "Unexpected characters on line %s." +msgstr "" + +#: libraries/Advisor.class.php:434 +#, php-format +msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." +msgstr "" + +#: libraries/Advisor.class.php:467 +msgid "per second" +msgstr "" + +#: libraries/Advisor.class.php:470 +msgid "per minute" +msgstr "" + +#: libraries/Advisor.class.php:473 server_status.php:174 server_status.php:255 +#: server_status_queries.php:124 +msgid "per hour" +msgstr "" + +#: libraries/Advisor.class.php:476 +msgid "per day" +msgstr "" + +#: libraries/Config.class.php:1117 +#, php-format +msgid "Existing configuration file (%s) is not readable." +msgstr "" + +#: libraries/Config.class.php:1147 +msgid "Wrong permissions on configuration file, should not be world writable!" +msgstr "" + +#: libraries/Config.class.php:1713 +msgid "Font size" +msgstr "" + +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1275 +#: libraries/DisplayResults.class.php:2003 +#: libraries/DisplayResults.class.php:2011 libraries/TableSearch.class.php:822 +#: libraries/operations.lib.php:658 libraries/server_databases.lib.php:314 +#: libraries/server_databases.lib.php:339 libraries/structure.lib.php:860 +#: libraries/structure.lib.php:877 server_status.php:477 +msgid "Ascending" +msgstr "" + +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1287 +#: libraries/DisplayResults.class.php:1998 +#: libraries/DisplayResults.class.php:2016 libraries/TableSearch.class.php:823 +#: libraries/operations.lib.php:661 libraries/server_databases.lib.php:314 +#: libraries/server_databases.lib.php:339 libraries/structure.lib.php:865 +#: libraries/structure.lib.php:882 server_status.php:474 +msgid "Descending" +msgstr "" + +#: libraries/DBQbe.class.php:364 libraries/TableSearch.class.php:1284 +msgid "Column:" +msgstr "" + +#: libraries/DBQbe.class.php:406 +msgid "Sort:" +msgstr "" + +#: libraries/DBQbe.class.php:468 +msgid "Show:" +msgstr "" + +#: libraries/DBQbe.class.php:513 +msgid "Criteria:" +msgstr "" + +#: libraries/DBQbe.class.php:576 +msgid "Add/Delete criteria rows" +msgstr "" + +#: libraries/DBQbe.class.php:576 +msgid "Add/Delete columns" +msgstr "" + +#: libraries/DBQbe.class.php:603 libraries/DBQbe.class.php:635 +msgid "Update Query" +msgstr "" + +#: libraries/DBQbe.class.php:618 +msgid "Use Tables" +msgstr "" + +#: libraries/DBQbe.class.php:653 libraries/DBQbe.class.php:757 +msgid "Or:" +msgstr "" + +#: libraries/DBQbe.class.php:657 libraries/DBQbe.class.php:742 +msgid "And:" +msgstr "" + +#: libraries/DBQbe.class.php:661 +msgid "Ins" +msgstr "" + +#: libraries/DBQbe.class.php:664 +msgid "Del" +msgstr "" + +#: libraries/DBQbe.class.php:680 +msgid "Modify:" +msgstr "" + +#: libraries/DBQbe.class.php:737 +msgid "Ins:" +msgstr "" + +#: libraries/DBQbe.class.php:752 +msgid "Del:" +msgstr "" + +#: libraries/DBQbe.class.php:1321 +#, php-format +msgid "SQL query on database %s:" +msgstr "" + +#: libraries/DBQbe.class.php:1335 libraries/Util.class.php:1286 +msgid "Submit Query" +msgstr "" + +#: libraries/DatabaseInterface.class.php:2047 +msgid "" +"The server is not responding (or the local server's socket is not correctly " +"configured)." +msgstr "" + +#: libraries/DatabaseInterface.class.php:2052 +msgid "The server is not responding." +msgstr "" + +#: libraries/DatabaseInterface.class.php:2057 +msgid "Please check privileges of directory containing database." +msgstr "" + +#: libraries/DatabaseInterface.class.php:2067 +msgid "Details…" +msgstr "" + +#: libraries/DbSearch.class.php:98 libraries/DbSearch.class.php:398 +msgid "at least one of the words" +msgstr "" + +#: libraries/DbSearch.class.php:99 libraries/DbSearch.class.php:402 +msgid "all words" +msgstr "" + +#: libraries/DbSearch.class.php:100 libraries/DbSearch.class.php:406 +msgid "the exact phrase" +msgstr "" + +#: libraries/DbSearch.class.php:101 libraries/DbSearch.class.php:407 +msgid "as regular expression" +msgstr "" + +#: libraries/DbSearch.class.php:267 +#, php-format +msgid "Search results for \"%s\" %s:" +msgstr "" + +#: libraries/DbSearch.class.php:294 +#, php-format +msgid "Total: %s match" +msgid_plural "Total: %s matches" +msgstr[0] "" +msgstr[1] "" + +#: libraries/DbSearch.class.php:331 +#, php-format +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "" +msgstr[1] "" + +#: libraries/DbSearch.class.php:346 libraries/Menu.class.php:266 +#: libraries/Util.class.php:3253 libraries/Util.class.php:3468 +#: libraries/Util.class.php:3469 libraries/structure.lib.php:1368 +msgid "Browse" +msgstr "" + +#: libraries/DbSearch.class.php:353 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 +#: libraries/DisplayResults.class.php:5025 +#: libraries/schema/User_Schema.class.php:217 +#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:352 +#: libraries/sql_query_form.lib.php:432 pmd_general.php:458 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:541 tbl_tracking.php:561 tbl_tracking.php:623 +msgid "Delete" +msgstr "" + +#: libraries/DbSearch.class.php:382 +msgid "Search in database" +msgstr "" + +#: libraries/DbSearch.class.php:386 +msgid "Words or values to search for (wildcard: \"%\"):" +msgstr "" + +#: libraries/DbSearch.class.php:395 libraries/TableSearch.class.php:1279 +msgid "Find:" +msgstr "" + +#: libraries/DbSearch.class.php:400 libraries/DbSearch.class.php:404 +msgid "Words are separated by a space character (\" \")." +msgstr "" + +#: libraries/DbSearch.class.php:419 +msgid "Inside tables:" +msgstr "" + +#: libraries/DbSearch.class.php:445 +msgid "Inside column:" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:708 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:779 libraries/Util.class.php:2571 +#: libraries/Util.class.php:2575 +msgctxt "First page" +msgid "Begin" +msgstr "" + +#: libraries/DisplayResults.class.php:782 libraries/Util.class.php:2573 +#: libraries/Util.class.php:2576 libraries/server_bin_log.lib.php:175 +#: libraries/server_bin_log.lib.php:177 +msgctxt "Previous page" +msgid "Previous" +msgstr "" + +#: libraries/DisplayResults.class.php:839 libraries/Util.class.php:2612 +#: libraries/Util.class.php:2615 libraries/server_bin_log.lib.php:213 +#: libraries/server_bin_log.lib.php:215 +msgctxt "Next page" +msgid "Next" +msgstr "" + +#: libraries/DisplayResults.class.php:867 libraries/Util.class.php:2613 +#: libraries/Util.class.php:2616 +msgctxt "Last page" +msgid "End" +msgstr "" + +#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: tbl_chart.php:245 +msgid "Number of rows:" +msgstr "" + +#: libraries/DisplayResults.class.php:925 +msgid "Mode:" +msgstr "" + +#: libraries/DisplayResults.class.php:927 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:928 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:929 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:1233 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1574 libraries/TableSearch.class.php:764 +#: libraries/import.lib.php:1195 libraries/import.lib.php:1221 +#: libraries/plugins/export/ExportCodegen.class.php:90 +#: libraries/plugins/export/ExportCsv.class.php:51 +#: libraries/plugins/export/ExportExcel.class.php:44 +#: libraries/plugins/export/ExportHtmlword.class.php:52 +#: libraries/plugins/export/ExportJson.class.php:49 +#: libraries/plugins/export/ExportLatex.class.php:75 +#: libraries/plugins/export/ExportMediawiki.class.php:52 +#: libraries/plugins/export/ExportOds.class.php:57 +#: libraries/plugins/export/ExportOdt.class.php:66 +#: libraries/plugins/export/ExportPdf.class.php:82 +#: libraries/plugins/export/ExportPhparray.class.php:49 +#: libraries/plugins/export/ExportSql.class.php:71 +#: libraries/plugins/export/ExportTexytext.class.php:51 +#: libraries/plugins/export/ExportXml.class.php:81 +#: libraries/plugins/export/ExportYaml.class.php:50 +#: libraries/plugins/import/AbstractImportCsv.class.php:40 +#: libraries/plugins/import/ImportMediawiki.class.php:60 +#: libraries/plugins/import/ImportOds.class.php:58 +#: libraries/plugins/import/ImportShp.class.php:56 +#: libraries/plugins/import/ImportSql.class.php:50 +#: libraries/plugins/import/ImportXml.class.php:57 +#: libraries/rte/rte_routines.lib.php:970 libraries/structure.lib.php:1697 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1580 +#: libraries/DisplayResults.class.php:1686 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1690 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1595 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1596 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1608 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1613 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1618 +#: libraries/config/messages.inc.php:57 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1629 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1638 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1639 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:3359 +#: libraries/DisplayResults.class.php:3375 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:3413 +#: libraries/DisplayResults.class.php:5025 server_status.php:524 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:4480 libraries/structure.lib.php:771 +msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" +msgstr "" + +#: libraries/DisplayResults.class.php:4871 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4908 libraries/structure.lib.php:653 +#, php-format +msgid "" +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." +msgstr "" + +#: libraries/DisplayResults.class.php:4921 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4937 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4948 libraries/sql.lib.php:1554 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:5032 +#: libraries/DisplayResults.class.php:5038 libraries/mult_submits.inc.php:43 +#: libraries/server_databases.lib.php:146 +#: libraries/server_databases.lib.php:150 +#: libraries/server_privileges.lib.php:2449 +#: libraries/server_privileges.lib.php:2453 libraries/structure.lib.php:278 +#: libraries/structure.lib.php:293 libraries/structure.lib.php:295 +#: libraries/structure.lib.php:1357 libraries/structure.lib.php:1364 +msgid "With selected:" +msgstr "" + +#: libraries/DisplayResults.class.php:5036 +#: libraries/DisplayResults.class.php:5037 +#: libraries/server_databases.lib.php:148 +#: libraries/server_databases.lib.php:149 +#: libraries/server_privileges.lib.php:807 +#: libraries/server_privileges.lib.php:808 +#: libraries/server_privileges.lib.php:2451 +#: libraries/server_privileges.lib.php:2452 libraries/structure.lib.php:281 +#: libraries/structure.lib.php:282 libraries/structure.lib.php:1360 +#: libraries/structure.lib.php:1361 +msgid "Check All" +msgstr "" + +#: libraries/DisplayResults.class.php:5055 +#: libraries/DisplayResults.class.php:5325 libraries/Menu.class.php:295 +#: libraries/Menu.class.php:377 libraries/Menu.class.php:493 +#: libraries/Util.class.php:3481 libraries/Util.class.php:3482 +#: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 +#: libraries/server_privileges.lib.php:1820 +#: libraries/server_privileges.lib.php:2457 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 +msgid "Export" +msgstr "" + +#: libraries/DisplayResults.class.php:5157 view_create.php:152 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:5213 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:5249 libraries/Header.class.php:334 +#: libraries/structure.lib.php:299 libraries/structure.lib.php:362 +#: libraries/structure.lib.php:1481 +msgid "Print view" +msgstr "" + +#: libraries/DisplayResults.class.php:5267 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:5338 tbl_chart.php:151 +msgid "Display chart" +msgstr "" + +#: libraries/DisplayResults.class.php:5363 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:5578 +msgid "Link not found" +msgstr "" + +#: libraries/Error_Handler.class.php:77 +msgid "Too many error messages, some are not displayed." +msgstr "" + +#: libraries/File.class.php:239 +msgid "File was not an uploaded file." +msgstr "" + +#: libraries/File.class.php:279 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: libraries/File.class.php:282 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: libraries/File.class.php:285 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: libraries/File.class.php:288 +msgid "Missing a temporary folder." +msgstr "" + +#: libraries/File.class.php:291 +msgid "Failed to write file to disk." +msgstr "" + +#: libraries/File.class.php:294 +msgid "File upload stopped by extension." +msgstr "" + +#: libraries/File.class.php:297 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:476 +msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" +msgstr "" + +#: libraries/File.class.php:494 +msgid "Error while moving uploaded file." +msgstr "" + +#: libraries/File.class.php:502 +msgid "Cannot read (moved) upload file." +msgstr "" + +#: libraries/Footer.class.php:133 libraries/Footer.class.php:141 +#: libraries/Footer.class.php:144 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:393 +msgid "Click on the bar to scroll to top of page" +msgstr "" + +#: libraries/Header.class.php:635 +#: libraries/plugins/auth/AuthenticationCookie.class.php:170 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:531 +msgid "No index defined!" +msgstr "" + +#: libraries/Index.class.php:536 libraries/Index.class.php:549 +#: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 +#: libraries/navigation/Nodes/Node_Index_Container.class.php:26 +#: tbl_tracking.php:379 +msgid "Indexes" +msgstr "" + +#: libraries/Index.class.php:563 libraries/structure.lib.php:1387 +#: libraries/structure.lib.php:2062 libraries/structure.lib.php:2072 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 +msgid "Unique" +msgstr "" + +#: libraries/Index.class.php:564 tbl_tracking.php:386 +msgid "Packed" +msgstr "" + +#: libraries/Index.class.php:566 tbl_tracking.php:388 +msgid "Cardinality" +msgstr "" + +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:187 +#: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 +#: libraries/operations.lib.php:260 libraries/operations.lib.php:835 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 +#: libraries/structure.lib.php:1181 libraries/structure.lib.php:1705 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 +msgid "Collation" +msgstr "" + +#: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 +msgid "Comment" +msgstr "" + +#: libraries/Index.class.php:599 +msgid "The primary key has been dropped" +msgstr "" + +#: libraries/Index.class.php:608 +#, php-format +msgid "Index %s has been dropped." +msgstr "" + +#: libraries/Index.class.php:731 +#, php-format +msgid "" +"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " +"removed." +msgstr "" + +#: libraries/Menu.class.php:159 libraries/ServerStatusData.class.php:341 +#: libraries/config/messages.inc.php:510 +msgid "Server" +msgstr "" + +#: libraries/Menu.class.php:207 libraries/structure.lib.php:677 +#: libraries/structure.lib.php:707 libraries/structure.lib.php:1188 +#: libraries/tbl_info.inc.php:59 +msgid "View" +msgstr "" + +#: libraries/Menu.class.php:272 libraries/Menu.class.php:356 +#: libraries/Util.class.php:3249 libraries/Util.class.php:3256 +#: libraries/Util.class.php:3474 libraries/config/setup.forms.php:299 +#: libraries/config/setup.forms.php:336 libraries/config/setup.forms.php:362 +#: libraries/config/user_preferences.forms.php:196 +#: libraries/config/user_preferences.forms.php:233 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:778 +#: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:174 +#: tbl_tracking.php:321 +msgid "Structure" +msgstr "" + +#: libraries/Menu.class.php:276 libraries/Menu.class.php:360 +#: libraries/Menu.class.php:469 libraries/Util.class.php:3250 +#: libraries/Util.class.php:3257 libraries/config/messages.inc.php:212 +#: querywindow.php:59 +msgid "SQL" +msgstr "" + +#: libraries/Menu.class.php:279 libraries/Menu.class.php:363 +#: libraries/Util.class.php:3251 libraries/Util.class.php:3258 +#: libraries/Util.class.php:3470 libraries/Util.class.php:3471 +msgid "Search" +msgstr "" + +#: libraries/Menu.class.php:289 libraries/Util.class.php:3252 +#: libraries/Util.class.php:3472 libraries/Util.class.php:3473 +#: libraries/sql_query_form.lib.php:305 libraries/sql_query_form.lib.php:308 +msgid "Insert" +msgstr "" + +#: libraries/Menu.class.php:308 libraries/Menu.class.php:331 +#: libraries/Menu.class.php:390 libraries/Util.class.php:3259 +#: view_operations.php:87 +msgid "Operations" +msgstr "" + +#: libraries/Menu.class.php:312 libraries/Menu.class.php:424 +#: libraries/relation.lib.php:236 +msgid "Tracking" +msgstr "" + +#: libraries/Menu.class.php:321 libraries/Menu.class.php:418 +#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26 +#: libraries/plugins/export/ExportHtmlword.class.php:565 +#: libraries/plugins/export/ExportOdt.class.php:657 +#: libraries/plugins/export/ExportSql.class.php:1469 +#: libraries/plugins/export/ExportTexytext.class.php:508 +#: libraries/plugins/export/ExportXml.class.php:121 +#: libraries/rte/rte_words.lib.php:46 +msgid "Triggers" +msgstr "" + +#: libraries/Menu.class.php:367 libraries/Menu.class.php:374 +#: libraries/Menu.class.php:381 +msgid "Database seems to be empty!" +msgstr "" + +#: libraries/Menu.class.php:370 +msgid "Query" +msgstr "" + +#: libraries/Menu.class.php:398 libraries/server_privileges.lib.php:1603 +#: libraries/server_privileges.lib.php:2261 +#: libraries/server_privileges.lib.php:2828 server_privileges.php:146 +msgid "Privileges" +msgstr "" + +#: libraries/Menu.class.php:403 libraries/rte/rte_words.lib.php:34 +msgid "Routines" +msgstr "" + +#: libraries/Menu.class.php:411 +#: libraries/navigation/Nodes/Node_Event_Container.class.php:26 +#: libraries/plugins/export/ExportSql.class.php:810 +#: libraries/rte/rte_words.lib.php:58 +msgid "Events" +msgstr "" + +#: libraries/Menu.class.php:430 libraries/relation.lib.php:203 +msgid "Designer" +msgstr "" + +#: libraries/Menu.class.php:465 libraries/config/messages.inc.php:175 +#: libraries/server_common.lib.php:43 libraries/server_privileges.lib.php:2902 +msgid "Databases" +msgstr "" + +#: libraries/Menu.class.php:488 +msgid "Users" +msgstr "" + +#: libraries/Menu.class.php:510 libraries/ServerStatusData.class.php:189 +#: libraries/server_common.lib.php:31 +msgid "Binary log" +msgstr "" + +#: libraries/Menu.class.php:516 libraries/ServerStatusData.class.php:194 +#: libraries/server_common.lib.php:37 libraries/structure.lib.php:182 +#: libraries/structure.lib.php:761 +msgid "Replication" +msgstr "" + +#: libraries/Menu.class.php:521 libraries/ServerStatusData.class.php:241 +#: libraries/server_engines.lib.php:109 libraries/server_engines.lib.php:113 +msgid "Variables" +msgstr "" + +#: libraries/Menu.class.php:525 +msgid "Charsets" +msgstr "" + +#: libraries/Menu.class.php:530 libraries/server_common.lib.php:28 +#: libraries/server_plugins.lib.php:31 +msgid "Plugins" +msgstr "" + +#: libraries/Menu.class.php:534 +msgid "Engines" +msgstr "" + +#: libraries/Message.class.php:199 libraries/Util.class.php:672 +#: libraries/core.lib.php:232 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1182 tbl_chart.php:24 tbl_operations.php:186 +#: view_operations.php:58 +msgid "Error" +msgstr "" + +#: libraries/Message.class.php:254 +#, php-format +msgid "%1$d row affected." +msgid_plural "%1$d rows affected." +msgstr[0] "" +msgstr[1] "" + +#: libraries/Message.class.php:273 +#, php-format +msgid "%1$d row deleted." +msgid_plural "%1$d rows deleted." +msgstr[0] "" +msgstr[1] "" + +#: libraries/Message.class.php:292 +#, php-format +msgid "%1$d row inserted." +msgid_plural "%1$d rows inserted." +msgstr[0] "" +msgstr[1] "" + +#: libraries/PDF.class.php:126 +msgid "Error while creating PDF:" +msgstr "" + +#: libraries/RecentTable.class.php:117 +msgid "Could not save recent table" +msgstr "" + +#: libraries/RecentTable.class.php:154 +msgid "Recent tables" +msgstr "" + +#: libraries/RecentTable.class.php:166 +msgid "There are no recent tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:183 server_status.php:395 +msgid "SQL query" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:187 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:192 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:181 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:197 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:198 +#: libraries/server_bin_log.lib.php:53 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:211 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:216 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:220 +#: libraries/replication_gui.lib.php:49 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:223 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:228 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "" + +#: libraries/StorageEngine.class.php:216 +msgid "" +"There is no detailed status information available for this storage engine." +msgstr "" + +#: libraries/StorageEngine.class.php:352 libraries/structure.lib.php:200 +#, php-format +msgid "%s is the default storage engine on this MySQL server." +msgstr "" + +#: libraries/StorageEngine.class.php:355 +#, php-format +msgid "%s is available on this MySQL server." +msgstr "" + +#: libraries/StorageEngine.class.php:358 +#, php-format +msgid "%s has been disabled for this MySQL server." +msgstr "" + +#: libraries/StorageEngine.class.php:362 +#, php-format +msgid "This MySQL server does not support the %s storage engine." +msgstr "" + +#: libraries/Table.class.php:395 +msgid "unknown table status: " +msgstr "" + +#: libraries/Table.class.php:796 +#, php-format +msgid "Source database `%s` was not found!" +msgstr "" + +#: libraries/Table.class.php:804 +#, php-format +msgid "Target database `%s` was not found!" +msgstr "" + +#: libraries/Table.class.php:1237 +msgid "Invalid database:" +msgstr "" + +#: libraries/Table.class.php:1251 +msgid "Invalid table name:" +msgstr "" + +#: libraries/Table.class.php:1286 +#, php-format +msgid "Error renaming table %1$s to %2$s" +msgstr "" + +#: libraries/Table.class.php:1305 +#, php-format +msgid "Table %1$s has been renamed to %2$s." +msgstr "" + +#: libraries/Table.class.php:1451 +msgid "Could not save table UI preferences" +msgstr "" + +#: libraries/Table.class.php:1480 +#, php-format +msgid "" +"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" +"['MaxTableUiprefs'] %s)" +msgstr "" + +#: libraries/Table.class.php:1620 +#, php-format +msgid "" +"Cannot save UI property \"%s\". The changes made will not be persistent " +"after you refresh this page. Please check if the table structure has been " +"changed." +msgstr "" + +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:211 +#: libraries/insert_edit.lib.php:217 libraries/rte/rte_routines.lib.php:1582 +msgid "Function" +msgstr "" + +#: libraries/TableSearch.class.php:188 pmd_general.php:522 pmd_general.php:542 +#: pmd_general.php:664 pmd_general.php:677 pmd_general.php:740 +#: pmd_general.php:794 +msgid "Operator" +msgstr "" + +#: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1235 +#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:509 +#: libraries/rte/rte_routines.lib.php:1584 +#: libraries/server_status_variables.lib.php:220 pmd_general.php:511 +#: pmd_general.php:570 pmd_general.php:693 pmd_general.php:810 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "" + +#: libraries/TableSearch.class.php:217 libraries/TableSearch.class.php:1172 +msgid "Find and Replace" +msgstr "" + +#: libraries/TableSearch.class.php:239 libraries/insert_edit.lib.php:1352 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:771 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:790 libraries/display_indexes.lib.php:197 +#: libraries/insert_edit.lib.php:1186 libraries/server_privileges.lib.php:352 +msgid "Or" +msgstr "" + +#: libraries/TableSearch.class.php:791 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:803 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:849 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:870 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:899 libraries/TableSearch.class.php:1203 +#: libraries/sql.lib.php:367 tbl_change.php:230 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:990 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1151 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1161 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1212 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1219 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1224 +msgid "Reset zoom" +msgstr "" + +#: libraries/TableSearch.class.php:1281 +msgid "Replace with:" +msgstr "" + +#: libraries/TableSearch.class.php:1341 +msgid "Find and replace - preview" +msgstr "" + +#: libraries/TableSearch.class.php:1345 +msgid "Count" +msgstr "" + +#: libraries/TableSearch.class.php:1346 +msgid "Original string" +msgstr "" + +#: libraries/TableSearch.class.php:1347 +msgid "Replaced string" +msgstr "" + +#: libraries/TableSearch.class.php:1371 +msgid "Replace" +msgstr "" + +#: libraries/Theme.class.php:170 +#, php-format +msgid "No valid image path for theme %s found!" +msgstr "" + +#: libraries/Theme.class.php:459 +msgid "No preview available." +msgstr "" + +#: libraries/Theme.class.php:461 +msgid "take it" +msgstr "" + +#: libraries/Theme_Manager.class.php:137 +#, php-format +msgid "Default theme %s not found!" +msgstr "" + +#: libraries/Theme_Manager.class.php:194 +#, php-format +msgid "Theme %s not found!" +msgstr "" + +#: libraries/Theme_Manager.class.php:271 +#, php-format +msgid "Theme path not found for theme %s!" +msgstr "" + +#: libraries/Theme_Manager.class.php:363 +msgid "Theme:" +msgstr "" + +#: libraries/Types.class.php:296 +msgid "" +"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" +msgstr "" + +#: libraries/Types.class.php:298 +msgid "" +"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " +"65,535" +msgstr "" + +#: libraries/Types.class.php:300 +msgid "" +"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " +"0 to 16,777,215" +msgstr "" + +#: libraries/Types.class.php:302 +msgid "" +"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " +"range is 0 to 4,294,967,295" +msgstr "" + +#: libraries/Types.class.php:304 +msgid "" +"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " +"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" +msgstr "" + +#: libraries/Types.class.php:306 libraries/Types.class.php:713 +msgid "" +"A fixed-point number (M, D) - the maximum number of digits (M) is 65 " +"(default 10), the maximum number of decimals (D) is 30 (default 0)" +msgstr "" + +#: libraries/Types.class.php:308 +msgid "" +"A small floating-point number, allowable values are -3.402823466E+38 to " +"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +msgstr "" + +#: libraries/Types.class.php:310 +msgid "" +"A double-precision floating-point number, allowable values are " +"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"2.2250738585072014E-308 to 1.7976931348623157E+308" +msgstr "" + +#: libraries/Types.class.php:312 +msgid "" +"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " +"FLOAT)" +msgstr "" + +#: libraries/Types.class.php:314 +msgid "" +"A bit-field type (M), storing M of bits per value (default is 1, maximum is " +"64)" +msgstr "" + +#: libraries/Types.class.php:316 +msgid "" +"A synonym for TINYINT(1), a value of zero is considered false, nonzero " +"values are considered true" +msgstr "" + +#: libraries/Types.class.php:318 +msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" +msgstr "" + +#: libraries/Types.class.php:320 libraries/Types.class.php:723 +#, php-format +msgid "A date, supported range is %1$s to %2$s" +msgstr "" + +#: libraries/Types.class.php:322 libraries/Types.class.php:725 +#, php-format +msgid "A date and time combination, supported range is %1$s to %2$s" +msgstr "" + +#: libraries/Types.class.php:324 +msgid "" +"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " +"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" +msgstr "" + +#: libraries/Types.class.php:326 libraries/Types.class.php:729 +#, php-format +msgid "A time, range is %1$s to %2$s" +msgstr "" + +#: libraries/Types.class.php:328 +msgid "" +"A year in four-digit (4, default) or two-digit (2) format, the allowable " +"values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" +msgstr "" + +#: libraries/Types.class.php:330 +msgid "" +"A fixed-length (0-255, default 1) string that is always right-padded with " +"spaces to the specified length when stored" +msgstr "" + +#: libraries/Types.class.php:332 libraries/Types.class.php:731 +#, php-format +msgid "" +"A variable-length (%s) string, the effective maximum length is subject to " +"the maximum row size" +msgstr "" + +#: libraries/Types.class.php:334 +msgid "" +"A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " +"a one-byte prefix indicating the length of the value in bytes" +msgstr "" + +#: libraries/Types.class.php:336 libraries/Types.class.php:733 +msgid "" +"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " +"with a two-byte prefix indicating the length of the value in bytes" +msgstr "" + +#: libraries/Types.class.php:338 +msgid "" +"A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " +"stored with a three-byte prefix indicating the length of the value in bytes" +msgstr "" + +#: libraries/Types.class.php:340 +msgid "" +"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " +"characters, stored with a four-byte prefix indicating the length of the " +"value in bytes" +msgstr "" + +#: libraries/Types.class.php:342 +msgid "" +"Similar to the CHAR type, but stores binary byte strings rather than non-" +"binary character strings" +msgstr "" + +#: libraries/Types.class.php:344 +msgid "" +"Similar to the VARCHAR type, but stores binary byte strings rather than non-" +"binary character strings" +msgstr "" + +#: libraries/Types.class.php:346 +msgid "" +"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " +"one-byte prefix indicating the length of the value" +msgstr "" + +#: libraries/Types.class.php:348 +msgid "" +"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored " +"with a three-byte prefix indicating the length of the value" +msgstr "" + +#: libraries/Types.class.php:350 libraries/Types.class.php:737 +msgid "" +"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with " +"a two-byte prefix indicating the length of the value" +msgstr "" + +#: libraries/Types.class.php:352 +msgid "" +"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " +"bytes, stored with a four-byte prefix indicating the length of the value" +msgstr "" + +#: libraries/Types.class.php:354 +msgid "" +"An enumeration, chosen from the list of up to 65,535 values or the special " +"'' error value" +msgstr "" + +#: libraries/Types.class.php:356 +msgid "A single value chosen from a set of up to 64 members" +msgstr "" + +#: libraries/Types.class.php:358 +msgid "A type that can store a geometry of any type" +msgstr "" + +#: libraries/Types.class.php:360 +msgid "A point in 2-dimensional space" +msgstr "" + +#: libraries/Types.class.php:362 +msgid "A curve with linear interpolation between points" +msgstr "" + +#: libraries/Types.class.php:364 +msgid "A polygon" +msgstr "" + +#: libraries/Types.class.php:366 +msgid "A collection of points" +msgstr "" + +#: libraries/Types.class.php:368 +msgid "A collection of curves with linear interpolation between points" +msgstr "" + +#: libraries/Types.class.php:370 +msgid "A collection of polygons" +msgstr "" + +#: libraries/Types.class.php:372 +msgid "A collection of geometry objects of any type" +msgstr "" + +#: libraries/Types.class.php:625 libraries/Types.class.php:975 +msgctxt "numeric types" +msgid "Numeric" +msgstr "" + +#: libraries/Types.class.php:644 libraries/Types.class.php:978 +msgctxt "date and time types" +msgid "Date and time" +msgstr "" + +#: libraries/Types.class.php:653 libraries/Types.class.php:981 +msgctxt "string types" +msgid "String" +msgstr "" + +#: libraries/Types.class.php:674 +msgctxt "spatial types" +msgid "Spatial" +msgstr "" + +#: libraries/Types.class.php:709 +msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647" +msgstr "" + +#: libraries/Types.class.php:711 +msgid "" +"An 8-byte integer, range is -9,223,372,036,854,775,808 to " +"9,223,372,036,854,775,807" +msgstr "" + +#: libraries/Types.class.php:715 +msgid "A system's default double-precision floating-point number" +msgstr "" + +#: libraries/Types.class.php:717 +msgid "True or false" +msgstr "" + +#: libraries/Types.class.php:719 +msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE" +msgstr "" + +#: libraries/Types.class.php:721 +msgid "Stores a Universally Unique Identifier (UUID)" +msgstr "" + +#: libraries/Types.class.php:727 +msgid "" +"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' " +"UTC; TIMESTAMP(6) can store microseconds" +msgstr "" + +#: libraries/Types.class.php:735 +msgid "" +"A variable-length (0-65,535) string, uses binary collation for all " +"comparisons" +msgstr "" + +#: libraries/Types.class.php:739 +msgid "An enumeration, chosen from the list of defined values" +msgstr "" + +#: libraries/Util.class.php:237 +#, php-format +msgid "Max: %s%s" +msgstr "" + +#: libraries/Util.class.php:685 libraries/sql.lib.php:417 +msgid "SQL query:" +msgstr "" + +#: libraries/Util.class.php:729 libraries/rte/rte_events.lib.php:114 +#: libraries/rte/rte_events.lib.php:123 libraries/rte/rte_events.lib.php:140 +#: libraries/rte/rte_events.lib.php:161 libraries/rte/rte_routines.lib.php:300 +#: libraries/rte/rte_routines.lib.php:309 +#: libraries/rte/rte_routines.lib.php:328 +#: libraries/rte/rte_routines.lib.php:350 +#: libraries/rte/rte_routines.lib.php:1459 +#: libraries/rte/rte_triggers.lib.php:86 libraries/rte/rte_triggers.lib.php:95 +#: libraries/rte/rte_triggers.lib.php:112 +#: libraries/rte/rte_triggers.lib.php:133 +msgid "MySQL said: " +msgstr "" + +#: libraries/Util.class.php:1181 +msgid "Failed to connect to SQL validator!" +msgstr "" + +#: libraries/Util.class.php:1223 libraries/config/messages.inc.php:489 +msgid "Explain SQL" +msgstr "" + +#: libraries/Util.class.php:1231 +msgid "Skip Explain SQL" +msgstr "" + +#: libraries/Util.class.php:1271 +msgid "Without PHP Code" +msgstr "" + +#: libraries/Util.class.php:1274 libraries/config/messages.inc.php:491 +msgid "Create PHP Code" +msgstr "" + +#: libraries/Util.class.php:1300 libraries/config/messages.inc.php:490 +#: libraries/server_status_variables.lib.php:42 +msgid "Refresh" +msgstr "" + +#: libraries/Util.class.php:1310 +msgid "Skip Validate SQL" +msgstr "" + +#: libraries/Util.class.php:1313 libraries/config/messages.inc.php:493 +msgid "Validate SQL" +msgstr "" + +#: libraries/Util.class.php:1375 +msgid "Inline edit of this query" +msgstr "" + +#: libraries/Util.class.php:1377 +msgctxt "Inline edit query" +msgid "Inline" +msgstr "" + +#: libraries/Util.class.php:1445 libraries/sql.lib.php:445 +msgid "Profiling" +msgstr "" + +#. l10n: Short week day name +#: libraries/Util.class.php:1708 +msgctxt "Short week day name" +msgid "Sun" +msgstr "" + +#. l10n: See http://www.php.net/manual/en/function.strftime.php +#: libraries/Util.class.php:1724 +#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 +msgid "%B %d, %Y at %I:%M %p" +msgstr "" + +#: libraries/Util.class.php:2069 +#, php-format +msgid "%s days, %s hours, %s minutes and %s seconds" +msgstr "" + +#: libraries/Util.class.php:2158 +msgid "Missing parameter:" +msgstr "" + +#: libraries/Util.class.php:2685 +#, php-format +msgid "Jump to database "%s"." +msgstr "" + +#: libraries/Util.class.php:2709 +#, php-format +msgid "The %s functionality is affected by a known bug, see %s" +msgstr "" + +#: libraries/Util.class.php:2885 +msgid "Click to toggle" +msgstr "" + +#: libraries/Util.class.php:3387 libraries/sql_query_form.lib.php:474 +#: prefs_manage.php:248 +msgid "Browse your computer:" +msgstr "" + +#: libraries/Util.class.php:3412 +#, php-format +msgid "Select from the web server upload directory %s:" +msgstr "" + +#: libraries/Util.class.php:3441 libraries/insert_edit.lib.php:1183 +#: libraries/sql_query_form.lib.php:483 +msgid "The directory you set for upload work cannot be reached." +msgstr "" + +#: libraries/Util.class.php:3452 +msgid "There are no files to upload" +msgstr "" + +#: libraries/Util.class.php:3477 libraries/Util.class.php:3478 +#: libraries/structure.lib.php:305 +msgid "Empty" +msgstr "" + +#: libraries/Util.class.php:3483 libraries/Util.class.php:3484 +msgid "Execute" +msgstr "" + +#: libraries/Util.class.php:4011 +msgid "Print" +msgstr "" + +#: libraries/Util.class.php:4112 libraries/structure.lib.php:798 +#: libraries/structure.lib.php:1758 tbl_printview.php:410 +msgid "Creation" +msgstr "" + +#: libraries/Util.class.php:4118 libraries/structure.lib.php:805 +#: libraries/structure.lib.php:1766 tbl_printview.php:421 +msgid "Last update" +msgstr "" + +#: libraries/Util.class.php:4124 libraries/structure.lib.php:812 +#: libraries/structure.lib.php:1774 tbl_printview.php:432 +msgid "Last check" +msgstr "" + +#: libraries/bookmark.lib.php:82 +msgid "shared" +msgstr "" + +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:308 +#: libraries/config/setup.forms.php:344 libraries/config/setup.forms.php:367 +#: libraries/config/setup.forms.php:372 +#: libraries/config/user_preferences.forms.php:205 +#: libraries/config/user_preferences.forms.php:241 +#: libraries/config/user_preferences.forms.php:264 +#: libraries/config/user_preferences.forms.php:269 +#: libraries/server_privileges.lib.php:777 libraries/structure.lib.php:2172 +#: tbl_printview.php:299 +msgid "Data" +msgstr "" + +#: libraries/build_html_for_db.lib.php:46 libraries/engines/innodb.lib.php:171 +#: libraries/server_databases.lib.php:182 libraries/structure.lib.php:2194 +#: server_status.php:217 server_status.php:319 tbl_printview.php:331 +msgid "Total" +msgstr "" + +#: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:791 +#: libraries/structure.lib.php:2185 tbl_printview.php:315 +msgid "Overhead" +msgstr "" + +#: libraries/build_html_for_db.lib.php:94 +msgid "Jump to database" +msgstr "" + +#: libraries/build_html_for_db.lib.php:142 +msgid "Not replicated" +msgstr "" + +#: libraries/build_html_for_db.lib.php:153 +msgid "Replicated" +msgstr "" + +#: libraries/build_html_for_db.lib.php:170 +#, php-format +msgid "Check privileges for database "%s"." +msgstr "" + +#: libraries/build_html_for_db.lib.php:175 +msgid "Check Privileges" +msgstr "" + +#: libraries/common.inc.php:574 +msgid "Failed to read configuration file" +msgstr "" + +#: libraries/common.inc.php:576 +msgid "" +"This usually means there is a syntax error in it, please check any errors " +"shown below." +msgstr "" + +#: libraries/common.inc.php:583 +#, php-format +msgid "Could not load default configuration from: %1$s" +msgstr "" + +#: libraries/common.inc.php:590 +msgid "" +"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " +"configuration file!" +msgstr "" + +#: libraries/common.inc.php:623 +#, php-format +msgid "Invalid server index: %s" +msgstr "" + +#: libraries/common.inc.php:634 +#, php-format +msgid "Invalid hostname for server %1$s. Please review your configuration." +msgstr "" + +#: libraries/common.inc.php:650 +#, php-format +msgid "Server %d" +msgstr "" + +#: libraries/common.inc.php:843 +msgid "Invalid authentication method set in configuration:" +msgstr "" + +#: libraries/common.inc.php:984 +#, php-format +msgid "You should upgrade to %s %s or later." +msgstr "" + +#: libraries/common.inc.php:1075 +msgid "Error: Token mismatch" +msgstr "" + +#: libraries/common.inc.php:1119 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1126 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1135 +msgid "numeric key detected" +msgstr "" + +#: libraries/config.values.php:49 libraries/config.values.php:65 +#: libraries/config.values.php:70 +msgid "Icons" +msgstr "" + +#: libraries/config.values.php:50 libraries/config.values.php:66 +#: libraries/config.values.php:71 +msgid "Text" +msgstr "" + +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 libraries/config.values.php:72 +msgid "Both" +msgstr "" + +#: libraries/config.values.php:56 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:57 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:58 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 +msgid "Click" +msgstr "" + +#: libraries/config.values.php:76 +msgid "Double click" +msgstr "" + +#: libraries/config.values.php:77 libraries/config.values.php:108 +#: libraries/config/FormDisplay.tpl.php:227 libraries/relation.lib.php:96 +#: libraries/relation.lib.php:103 +msgid "Disabled" +msgstr "" + +#: libraries/config.values.php:106 +msgid "Open" +msgstr "" + +#: libraries/config.values.php:107 +msgid "Closed" +msgstr "" + +#: libraries/config.values.php:137 +#: libraries/plugins/export/ExportHtmlword.class.php:69 +#: libraries/plugins/export/ExportLatex.class.php:103 +#: libraries/plugins/export/ExportMediawiki.class.php:73 +#: libraries/plugins/export/ExportOdt.class.php:83 +#: libraries/plugins/export/ExportSql.class.php:197 +#: libraries/plugins/export/ExportTexytext.class.php:68 +msgid "structure" +msgstr "" + +#: libraries/config.values.php:138 +#: libraries/plugins/export/ExportHtmlword.class.php:70 +#: libraries/plugins/export/ExportLatex.class.php:104 +#: libraries/plugins/export/ExportMediawiki.class.php:74 +#: libraries/plugins/export/ExportOdt.class.php:84 +#: libraries/plugins/export/ExportSql.class.php:198 +#: libraries/plugins/export/ExportTexytext.class.php:69 +msgid "data" +msgstr "" + +#: libraries/config.values.php:139 +#: libraries/plugins/export/ExportHtmlword.class.php:71 +#: libraries/plugins/export/ExportLatex.class.php:105 +#: libraries/plugins/export/ExportMediawiki.class.php:75 +#: libraries/plugins/export/ExportOdt.class.php:85 +#: libraries/plugins/export/ExportSql.class.php:199 +#: libraries/plugins/export/ExportTexytext.class.php:70 +msgid "structure and data" +msgstr "" + +#: libraries/config.values.php:142 +msgid "Quick - display only the minimal options to configure" +msgstr "" + +#: libraries/config.values.php:143 +msgid "Custom - display all possible options to configure" +msgstr "" + +#: libraries/config.values.php:144 +msgid "Custom - like above, but without the quick/custom choice" +msgstr "" + +#: libraries/config.values.php:172 +msgid "complete inserts" +msgstr "" + +#: libraries/config.values.php:173 +msgid "extended inserts" +msgstr "" + +#: libraries/config.values.php:174 +msgid "both of the above" +msgstr "" + +#: libraries/config.values.php:175 +msgid "neither of the above" +msgstr "" + +#: libraries/config/FormDisplay.class.php:88 +#: libraries/config/Validator.class.php:529 +msgid "Not a positive number" +msgstr "" + +#: libraries/config/FormDisplay.class.php:89 +#: libraries/config/Validator.class.php:551 +msgid "Not a non-negative number" +msgstr "" + +#: libraries/config/FormDisplay.class.php:90 +#: libraries/config/Validator.class.php:507 +msgid "Not a valid port number" +msgstr "" + +#: libraries/config/FormDisplay.class.php:91 +#: libraries/config/FormDisplay.class.php:579 +#: libraries/config/Validator.class.php:569 +msgid "Incorrect value" +msgstr "" + +#: libraries/config/FormDisplay.class.php:92 +#: libraries/config/Validator.class.php:585 +#, php-format +msgid "Value must be equal or lower than %s" +msgstr "" + +#: libraries/config/FormDisplay.class.php:541 +#, php-format +msgid "Missing data for %s" +msgstr "" + +#: libraries/config/FormDisplay.class.php:757 +#: libraries/config/FormDisplay.class.php:763 +msgid "unavailable" +msgstr "" + +#: libraries/config/FormDisplay.class.php:759 +#: libraries/config/FormDisplay.class.php:765 +#, php-format +msgid "\"%s\" requires %s extension" +msgstr "" + +#: libraries/config/FormDisplay.class.php:784 +#, php-format +msgid "Compressed import will not work due to missing function %s." +msgstr "" + +#: libraries/config/FormDisplay.class.php:790 +#, php-format +msgid "Compressed export will not work due to missing function %s." +msgstr "" + +#: libraries/config/FormDisplay.class.php:800 +msgid "SQL Validator is disabled" +msgstr "" + +#: libraries/config/FormDisplay.class.php:807 +msgid "SOAP extension not found" +msgstr "" + +#: libraries/config/FormDisplay.class.php:817 +#, php-format +msgid "maximum %s" +msgstr "" + +#: libraries/config/FormDisplay.tpl.php:225 +msgid "This setting is disabled, it will not be applied to your configuration." +msgstr "" + +#: libraries/config/FormDisplay.tpl.php:313 +#, php-format +msgid "Set value: %s" +msgstr "" + +#: libraries/config/FormDisplay.tpl.php:318 +#: libraries/config/messages.inc.php:361 +msgid "Restore default value" +msgstr "" + +#: libraries/config/FormDisplay.tpl.php:332 +msgid "Allow users to customize this value" +msgstr "" + +#: libraries/config/FormDisplay.tpl.php:396 +msgid "Apply" +msgstr "" + +#: libraries/config/FormDisplay.tpl.php:398 libraries/insert_edit.lib.php:1551 +#: libraries/schema/User_Schema.class.php:558 prefs_manage.php:326 +#: prefs_manage.php:331 +msgid "Reset" +msgstr "" + +#: libraries/config/Validator.class.php:217 +msgid "Could not initialize Drizzle connection library" +msgstr "" + +#: libraries/config/Validator.class.php:226 +#: libraries/config/Validator.class.php:234 +msgid "Could not connect to Drizzle server" +msgstr "" + +#: libraries/config/Validator.class.php:245 +#: libraries/config/Validator.class.php:252 +msgid "Could not connect to MySQL server" +msgstr "" + +#: libraries/config/Validator.class.php:285 +msgid "Empty username while using config authentication method" +msgstr "" + +#: libraries/config/Validator.class.php:292 +msgid "Empty signon session name while using signon authentication method" +msgstr "" + +#: libraries/config/Validator.class.php:301 +msgid "Empty signon URL while using signon authentication method" +msgstr "" + +#: libraries/config/Validator.class.php:349 +msgid "Empty phpMyAdmin control user while using pmadb" +msgstr "" + +#: libraries/config/Validator.class.php:354 +msgid "Empty phpMyAdmin control user password while using pmadb" +msgstr "" + +#: libraries/config/Validator.class.php:438 +msgid "Incorrect value:" +msgstr "" + +#: libraries/config/Validator.class.php:446 +#, php-format +msgid "Incorrect IP address: %s" +msgstr "" + +#: libraries/config/messages.inc.php:17 +msgid "" +"If enabled user can enter any MySQL server in login form for cookie auth" +msgstr "" + +#: libraries/config/messages.inc.php:18 +msgid "Allow login to any MySQL server" +msgstr "" + +#: libraries/config/messages.inc.php:19 +msgid "Show "Drop database" link to normal users" +msgstr "" + +#: libraries/config/messages.inc.php:20 +msgid "" +"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " +"authentication" +msgstr "" + +#: libraries/config/messages.inc.php:21 +msgid "Blowfish secret" +msgstr "" + +#: libraries/config/messages.inc.php:22 +msgid "Highlight selected rows" +msgstr "" + +#: libraries/config/messages.inc.php:23 +msgid "Row marker" +msgstr "" + +#: libraries/config/messages.inc.php:24 +msgid "Highlight row pointed by the mouse cursor" +msgstr "" + +#: libraries/config/messages.inc.php:25 +msgid "Highlight pointer" +msgstr "" + +#: libraries/config/messages.inc.php:26 +msgid "" +"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " +"import and export operations" +msgstr "" + +#: libraries/config/messages.inc.php:27 +msgid "Bzip2" +msgstr "" + +#: libraries/config/messages.inc.php:28 +msgid "" +"Defines which type of editing controls should be used for CHAR and VARCHAR " +"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" +"kbd] - allows newlines in columns" +msgstr "" + +#: libraries/config/messages.inc.php:29 +msgid "CHAR columns editing" +msgstr "" + +#: libraries/config/messages.inc.php:30 +msgid "" +"Use user-friendly editor for editing SQL queries ([a@http://codemirror." +"net/]CodeMirror[/a]) with syntax highlighting and line numbers" +msgstr "" + +#: libraries/config/messages.inc.php:31 +msgid "Enable CodeMirror" +msgstr "" + +#: libraries/config/messages.inc.php:32 +msgid "" +"Defines the minimum size for input fields generated for CHAR and VARCHAR " +"columns" +msgstr "" + +#: libraries/config/messages.inc.php:33 +msgid "Minimum size for input field" +msgstr "" + +#: libraries/config/messages.inc.php:34 +msgid "" +"Defines the maximum size for input fields generated for CHAR and VARCHAR " +"columns" +msgstr "" + +#: libraries/config/messages.inc.php:35 +msgid "Maximum size for input field" +msgstr "" + +#: libraries/config/messages.inc.php:36 +msgid "Number of columns for CHAR/VARCHAR textareas" +msgstr "" + +#: libraries/config/messages.inc.php:37 +msgid "CHAR textarea columns" +msgstr "" + +#: libraries/config/messages.inc.php:38 +msgid "Number of rows for CHAR/VARCHAR textareas" +msgstr "" + +#: libraries/config/messages.inc.php:39 +msgid "CHAR textarea rows" +msgstr "" + +#: libraries/config/messages.inc.php:40 +msgid "Check config file permissions" +msgstr "" + +#: libraries/config/messages.inc.php:41 +msgid "" +"Compress gzip/bzip2 exports on the fly without the need for much memory; if " +"you encounter problems with created gzip/bzip2 files disable this feature" +msgstr "" + +#: libraries/config/messages.inc.php:42 +msgid "Compress on the fly" +msgstr "" + +#: libraries/config/messages.inc.php:43 setup/frames/config.inc.php:25 +#: setup/frames/index.inc.php:176 +msgid "Configuration file" +msgstr "" + +#: libraries/config/messages.inc.php:44 +msgid "" +"Whether a warning ("Are your really sure…") should be displayed " +"when you're about to lose data" +msgstr "" + +#: libraries/config/messages.inc.php:45 +msgid "Confirm DROP queries" +msgstr "" + +#: libraries/config/messages.inc.php:46 +msgid "Debug SQL" +msgstr "" + +#: libraries/config/messages.inc.php:47 +msgid "Default display direction" +msgstr "" + +#: libraries/config/messages.inc.php:48 +msgid "Tab that is displayed when entering a database" +msgstr "" + +#: libraries/config/messages.inc.php:49 +msgid "Default database tab" +msgstr "" + +#: libraries/config/messages.inc.php:50 +msgid "Tab that is displayed when entering a server" +msgstr "" + +#: libraries/config/messages.inc.php:51 +msgid "Default server tab" +msgstr "" + +#: libraries/config/messages.inc.php:52 +msgid "Tab that is displayed when entering a table" +msgstr "" + +#: libraries/config/messages.inc.php:53 +msgid "Default table tab" +msgstr "" + +#: libraries/config/messages.inc.php:54 +msgid "Whether the table structure actions should be hidden" +msgstr "" + +#: libraries/config/messages.inc.php:55 +msgid "Hide table structure actions" +msgstr "" + +#: libraries/config/messages.inc.php:56 +msgid "Show binary contents as HEX by default" +msgstr "" + +#: libraries/config/messages.inc.php:58 +msgid "Show server listing as a list instead of a drop down" +msgstr "" + +#: libraries/config/messages.inc.php:59 +msgid "Display servers as a list" +msgstr "" + +#: libraries/config/messages.inc.php:60 +msgid "" +"Disable the table maintenance mass operations, like optimizing or repairing " +"the selected tables of a database." +msgstr "" + +#: libraries/config/messages.inc.php:61 +msgid "Disable multi table maintenance" +msgstr "" + +#: libraries/config/messages.inc.php:62 +msgid "Edit SQL queries in popup window" +msgstr "" + +#: libraries/config/messages.inc.php:63 +msgid "Edit in window" +msgstr "" + +#: libraries/config/messages.inc.php:64 +msgid "Display errors" +msgstr "" + +#: libraries/config/messages.inc.php:65 +msgid "Gather errors" +msgstr "" + +#: libraries/config/messages.inc.php:66 +msgid "" +"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " +"limit)" +msgstr "" + +#: libraries/config/messages.inc.php:67 +msgid "Maximum execution time" +msgstr "" + +#: libraries/config/messages.inc.php:68 prefs_manage.php:305 +msgid "Save as file" +msgstr "" + +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:241 +msgid "Character set of the file" +msgstr "" + +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 +#: libraries/structure.lib.php:1686 +#: libraries/tbl_gis_visualization.lib.php:328 tbl_printview.php:350 +msgid "Format" +msgstr "" + +#: libraries/config/messages.inc.php:71 +msgid "Compression" +msgstr "" + +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 +#: libraries/plugins/export/ExportCsv.class.php:91 +#: libraries/plugins/export/ExportExcel.class.php:68 +#: libraries/plugins/export/ExportHtmlword.class.php:90 +#: libraries/plugins/export/ExportOds.class.php:75 +#: libraries/plugins/export/ExportOdt.class.php:128 +#: libraries/plugins/export/ExportTexytext.class.php:85 +msgid "Put columns names in the first row" +msgstr "" + +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:250 +#: libraries/plugins/import/ImportCsv.class.php:150 +msgid "Columns enclosed with" +msgstr "" + +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:244 +#: libraries/config/messages.inc.php:251 +#: libraries/plugins/import/ImportCsv.class.php:157 +msgid "Columns escaped with" +msgstr "" + +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 +msgid "Replace NULL with" +msgstr "" + +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 +msgid "Remove CRLF characters within columns" +msgstr "" + +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:255 +#: libraries/plugins/import/ImportCsv.class.php:135 +msgid "Columns terminated with" +msgstr "" + +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:242 +#: libraries/plugins/import/ImportCsv.class.php:164 +msgid "Lines terminated with" +msgstr "" + +#: libraries/config/messages.inc.php:80 +msgid "Excel edition" +msgstr "" + +#: libraries/config/messages.inc.php:83 +msgid "Database name template" +msgstr "" + +#: libraries/config/messages.inc.php:84 +msgid "Server name template" +msgstr "" + +#: libraries/config/messages.inc.php:85 +msgid "Table name template" +msgstr "" + +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 +#: libraries/plugins/export/ExportHtmlword.class.php:63 +#: libraries/plugins/export/ExportLatex.class.php:97 +#: libraries/plugins/export/ExportMediawiki.class.php:63 +#: libraries/plugins/export/ExportOdt.class.php:77 +#: libraries/plugins/export/ExportTexytext.class.php:62 +msgid "Dump table" +msgstr "" + +#: libraries/config/messages.inc.php:90 +#: libraries/plugins/export/ExportLatex.class.php:89 +msgid "Include table caption" +msgstr "" + +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 +msgid "Table caption" +msgstr "" + +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 +msgid "Continued table caption" +msgstr "" + +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +msgid "Label key" +msgstr "" + +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 +#: libraries/plugins/export/ExportOdt.class.php:482 +#: libraries/tbl_columns_definition_form.inc.php:169 +msgid "MIME type" +msgstr "" + +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:394 +msgid "Relations" +msgstr "" + +#: libraries/config/messages.inc.php:103 +msgid "Export method" +msgstr "" + +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 +msgid "Save on server" +msgstr "" + +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 +#: libraries/display_export.lib.php:232 libraries/display_export.lib.php:271 +msgid "Overwrite existing file(s)" +msgstr "" + +#: libraries/config/messages.inc.php:116 +msgid "Remember file name template" +msgstr "" + +#: libraries/config/messages.inc.php:117 libraries/operations.lib.php:211 +#: libraries/operations.lib.php:713 libraries/operations.lib.php:1056 +msgid "Add AUTO_INCREMENT value" +msgstr "" + +#: libraries/config/messages.inc.php:118 +msgid "Enclose table and column names with backquotes" +msgstr "" + +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:262 +#: libraries/display_export.lib.php:450 +msgid "SQL compatibility mode" +msgstr "" + +#: libraries/config/messages.inc.php:120 +#: libraries/plugins/export/ExportSql.class.php:262 +msgid "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,
this column might not be editable" +msgstr "" + +#: libraries/insert_edit.lib.php:1089 +msgid "Binary - do not edit" +msgstr "" + +#: libraries/insert_edit.lib.php:1187 libraries/sql_query_form.lib.php:486 +msgid "web server upload directory:" +msgstr "" + +#: libraries/insert_edit.lib.php:1402 +#, php-format +msgid "Continue insertion with %s rows" +msgstr "" + +#: libraries/insert_edit.lib.php:1432 +msgid "and then" +msgstr "" + +#: libraries/insert_edit.lib.php:1465 +msgid "Insert as new row" +msgstr "" + +#: libraries/insert_edit.lib.php:1468 +msgid "Insert as new row and ignore errors" +msgstr "" + +#: libraries/insert_edit.lib.php:1471 +msgid "Show insert query" +msgstr "" + +#: libraries/insert_edit.lib.php:1491 +msgid "Go back to previous page" +msgstr "" + +#: libraries/insert_edit.lib.php:1494 +msgid "Insert another new row" +msgstr "" + +#: libraries/insert_edit.lib.php:1499 +msgid "Go back to this page" +msgstr "" + +#: libraries/insert_edit.lib.php:1521 +msgid "Edit next row" +msgstr "" + +#: libraries/insert_edit.lib.php:1543 +msgid "" +"Use TAB key to move from value to value, or CTRL+arrows to move anywhere" +msgstr "" + +#: libraries/insert_edit.lib.php:1914 libraries/sql.lib.php:1544 +msgid "Showing SQL query" +msgstr "" + +#: libraries/insert_edit.lib.php:1939 libraries/sql.lib.php:1524 +#, php-format +msgid "Inserted row id: %1$d" +msgstr "" + +#. l10n: This is currently used only in Japanese locales +#: libraries/kanji-encoding.lib.php:147 +msgctxt "None encoding conversion" +msgid "None" +msgstr "" + +#. l10n: This is currently used only in Japanese locales +#: libraries/kanji-encoding.lib.php:158 +msgid "Convert to Kana" +msgstr "" + +#: libraries/mult_submits.inc.php:288 +msgid "Replace table prefix:" +msgstr "" + +#: libraries/mult_submits.inc.php:290 +msgid "Copy table with prefix:" +msgstr "" + +#: libraries/mult_submits.inc.php:295 +msgid "From" +msgstr "" + +#: libraries/mult_submits.inc.php:301 +msgid "To" +msgstr "" + +#: libraries/mult_submits.inc.php:310 libraries/mult_submits.inc.php:330 +#: libraries/sql_query_form.lib.php:424 +msgid "Submit" +msgstr "" + +#: libraries/mult_submits.inc.php:317 +msgid "Add table prefix:" +msgstr "" + +#: libraries/mult_submits.inc.php:320 +msgid "Add prefix" +msgstr "" + +#: libraries/mult_submits.inc.php:339 +msgid "Do you really want to execute the following query?" +msgstr "" + +#: libraries/mult_submits.inc.php:616 tbl_replace.php:251 +msgid "No change" +msgstr "" + +#: libraries/mysql_charsets.lib.php:34 +msgid "Charset" +msgstr "" + +#: libraries/mysql_charsets.lib.php:155 +msgid "Bulgarian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:159 libraries/mysql_charsets.lib.php:285 +msgid "Simplified Chinese" +msgstr "" + +#: libraries/mysql_charsets.lib.php:161 libraries/mysql_charsets.lib.php:305 +msgid "Traditional Chinese" +msgstr "" + +#: libraries/mysql_charsets.lib.php:165 libraries/mysql_charsets.lib.php:352 +msgid "case-insensitive" +msgstr "" + +#: libraries/mysql_charsets.lib.php:168 libraries/mysql_charsets.lib.php:354 +msgid "case-sensitive" +msgstr "" + +#: libraries/mysql_charsets.lib.php:171 +msgid "Croatian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:174 +msgid "Czech" +msgstr "" + +#: libraries/mysql_charsets.lib.php:177 +msgid "Danish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:180 +msgid "English" +msgstr "" + +#: libraries/mysql_charsets.lib.php:183 +msgid "Esperanto" +msgstr "" + +#: libraries/mysql_charsets.lib.php:186 +msgid "Estonian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:189 libraries/mysql_charsets.lib.php:192 +msgid "German" +msgstr "" + +#: libraries/mysql_charsets.lib.php:189 +msgid "dictionary" +msgstr "" + +#: libraries/mysql_charsets.lib.php:192 +msgid "phone book" +msgstr "" + +#: libraries/mysql_charsets.lib.php:195 +msgid "Hungarian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:198 +msgid "Icelandic" +msgstr "" + +#: libraries/mysql_charsets.lib.php:201 libraries/mysql_charsets.lib.php:292 +msgid "Japanese" +msgstr "" + +#: libraries/mysql_charsets.lib.php:204 +msgid "Latvian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:207 +msgid "Lithuanian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:210 libraries/mysql_charsets.lib.php:314 +msgid "Korean" +msgstr "" + +#: libraries/mysql_charsets.lib.php:213 +msgid "Persian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:216 +msgid "Polish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:219 libraries/mysql_charsets.lib.php:268 +msgid "West European" +msgstr "" + +#: libraries/mysql_charsets.lib.php:222 +msgid "Romanian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:225 +msgid "Slovak" +msgstr "" + +#: libraries/mysql_charsets.lib.php:228 +msgid "Slovenian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:231 +msgid "Spanish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:234 +msgid "Traditional Spanish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:237 libraries/mysql_charsets.lib.php:335 +msgid "Swedish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:240 libraries/mysql_charsets.lib.php:338 +msgid "Thai" +msgstr "" + +#: libraries/mysql_charsets.lib.php:243 libraries/mysql_charsets.lib.php:332 +msgid "Turkish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:246 libraries/mysql_charsets.lib.php:329 +msgid "Ukrainian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:249 libraries/mysql_charsets.lib.php:259 +msgid "Unicode" +msgstr "" + +#: libraries/mysql_charsets.lib.php:249 libraries/mysql_charsets.lib.php:259 +#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:275 +#: libraries/mysql_charsets.lib.php:297 libraries/mysql_charsets.lib.php:308 +msgid "multilingual" +msgstr "" + +#: libraries/mysql_charsets.lib.php:275 +msgid "Central European" +msgstr "" + +#: libraries/mysql_charsets.lib.php:280 +msgid "Russian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:297 +msgid "Baltic" +msgstr "" + +#: libraries/mysql_charsets.lib.php:302 +msgid "Armenian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:308 +msgid "Cyrillic" +msgstr "" + +#: libraries/mysql_charsets.lib.php:311 +msgid "Arabic" +msgstr "" + +#: libraries/mysql_charsets.lib.php:317 +msgid "Hebrew" +msgstr "" + +#: libraries/mysql_charsets.lib.php:320 +msgid "Georgian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:323 +msgid "Greek" +msgstr "" + +#: libraries/mysql_charsets.lib.php:326 +msgid "Czech-Slovak" +msgstr "" + +#: libraries/mysql_charsets.lib.php:341 libraries/mysql_charsets.lib.php:348 +#: libraries/structure.lib.php:1068 +msgid "unknown" +msgstr "" + +#: libraries/navigation/Navigation.class.php:61 +msgid "An error has occured while loading the navigation tree" +msgstr "" + +#: libraries/navigation/NavigationHeader.class.php:178 +msgid "Home" +msgstr "" + +#: libraries/navigation/NavigationHeader.class.php:191 +msgid "Log out" +msgstr "" + +#: libraries/navigation/NavigationHeader.class.php:214 +msgid "phpMyAdmin documentation" +msgstr "" + +#: libraries/navigation/NavigationHeader.class.php:238 +msgid "Reload navigation frame" +msgstr "" + +#: libraries/navigation/NavigationTree.class.php:712 +#, php-format +msgid "%s other result found" +msgid_plural "%s other results found" +msgstr[0] "" +msgstr[1] "" + +#: libraries/navigation/NavigationTree.class.php:1047 +msgid "filter databases by name" +msgstr "" + +#: libraries/navigation/NavigationTree.class.php:1048 +#: libraries/navigation/NavigationTree.class.php:1081 +msgid "Clear Fast Filter" +msgstr "" + +#: libraries/navigation/NavigationTree.class.php:1080 +msgid "filter items by name" +msgstr "" + +#. l10n: The word "Node" must not be translated here +#: libraries/navigation/NodeFactory.class.php:41 +#, php-format +msgid "Invalid class name \"%1$s\", using default of \"Node\"" +msgstr "" + +#: libraries/navigation/NodeFactory.class.php:65 +#, php-format +msgid "Could not include class \"%1$s\", file \"%2$s\" not found" +msgstr "" + +#: libraries/navigation/Nodes/Node_Column_Container.class.php:26 +#: libraries/sql_query_form.lib.php:281 +msgid "Columns" +msgstr "" + +#: libraries/navigation/Nodes/Node_Column_Container.class.php:40 +msgctxt "Create new column" +msgid "New" +msgstr "" + +#: libraries/navigation/Nodes/Node_Event_Container.class.php:37 +msgctxt "Create new event" +msgid "New" +msgstr "" + +#: libraries/navigation/Nodes/Node_Function_Container.class.php:26 +#: libraries/plugins/export/ExportSql.class.php:475 +#: libraries/plugins/export/ExportXml.class.php:107 +msgid "Functions" +msgstr "" + +#: libraries/navigation/Nodes/Node_Function_Container.class.php:37 +msgctxt "Create new function" +msgid "New" +msgstr "" + +#: libraries/navigation/Nodes/Node_Index_Container.class.php:39 +msgctxt "Create new index" +msgid "New" +msgstr "" + +#: libraries/navigation/Nodes/Node_Procedure_Container.class.php:26 +#: libraries/plugins/export/ExportSql.class.php:458 +#: libraries/plugins/export/ExportXml.class.php:111 +msgid "Procedures" +msgstr "" + +#: libraries/navigation/Nodes/Node_Procedure_Container.class.php:37 +#: libraries/rte/rte_footer.lib.php:29 +msgctxt "Create new procedure" +msgid "New" +msgstr "" + +#: libraries/navigation/Nodes/Node_Table_Container.class.php:43 +msgctxt "Create new table" +msgid "New" +msgstr "" + +#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:37 +msgctxt "Create new trigger" +msgid "New" +msgstr "" + +#: libraries/navigation/Nodes/Node_View_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:125 +msgid "Views" +msgstr "" + +#: libraries/navigation/Nodes/Node_View_Container.class.php:37 +msgctxt "Create new view" +msgid "New" +msgstr "" + +#: libraries/operations.lib.php:83 +msgid "Rename database to:" +msgstr "" + +#: libraries/operations.lib.php:115 +#, php-format +msgid "Database %s has been dropped." +msgstr "" + +#: libraries/operations.lib.php:131 +msgid "Remove database" +msgstr "" + +#: libraries/operations.lib.php:137 +msgid "Drop the database (DROP)" +msgstr "" + +#: libraries/operations.lib.php:157 libraries/operations.lib.php:1041 +#: tbl_tracking.php:507 +msgid "Structure only" +msgstr "" + +#: libraries/operations.lib.php:158 libraries/operations.lib.php:1042 +#: tbl_tracking.php:513 +msgid "Structure and data" +msgstr "" + +#: libraries/operations.lib.php:159 libraries/operations.lib.php:1043 +#: tbl_tracking.php:510 +msgid "Data only" +msgstr "" + +#: libraries/operations.lib.php:191 +msgid "Copy database to:" +msgstr "" + +#: libraries/operations.lib.php:202 +msgid "CREATE DATABASE before copying" +msgstr "" + +#: libraries/operations.lib.php:215 libraries/operations.lib.php:1064 +msgid "Add constraints" +msgstr "" + +#: libraries/operations.lib.php:223 +msgid "Switch to copied database" +msgstr "" + +#: libraries/operations.lib.php:301 +msgid "Edit or export relational schema" +msgstr "" + +#: libraries/operations.lib.php:646 +msgid "Alter table order by" +msgstr "" + +#: libraries/operations.lib.php:654 +msgid "(singly)" +msgstr "" + +#: libraries/operations.lib.php:690 +msgid "Move table to (database.table):" +msgstr "" + +#: libraries/operations.lib.php:801 +msgid "Table options" +msgstr "" + +#: libraries/operations.lib.php:805 +msgid "Rename table to" +msgstr "" + +#: libraries/operations.lib.php:813 +msgid "Table comments" +msgstr "" + +#: libraries/operations.lib.php:822 libraries/server_engines.lib.php:49 +msgid "Storage Engine" +msgstr "" + +#: libraries/operations.lib.php:1024 +msgid "Copy table to (database.table):" +msgstr "" + +#: libraries/operations.lib.php:1079 +msgid "Switch to copied table" +msgstr "" + +#: libraries/operations.lib.php:1106 +msgid "Table maintenance" +msgstr "" + +#: libraries/operations.lib.php:1144 libraries/structure.lib.php:309 +msgid "Check table" +msgstr "" + +#: libraries/operations.lib.php:1157 +msgid "Defragment table" +msgstr "" + +#: libraries/operations.lib.php:1171 libraries/structure.lib.php:317 +msgid "Analyze table" +msgstr "" + +#: libraries/operations.lib.php:1184 libraries/structure.lib.php:314 +msgid "Repair table" +msgstr "" + +#: libraries/operations.lib.php:1199 libraries/structure.lib.php:312 +#: libraries/structure.lib.php:1629 +msgid "Optimize table" +msgstr "" + +#: libraries/operations.lib.php:1211 +#, php-format +msgid "Table %s has been flushed" +msgstr "" + +#: libraries/operations.lib.php:1218 +msgid "Flush the table (FLUSH)" +msgstr "" + +#: libraries/operations.lib.php:1265 +msgid "Delete data or table" +msgstr "" + +#: libraries/operations.lib.php:1273 +msgid "Empty the table (TRUNCATE)" +msgstr "" + +#: libraries/operations.lib.php:1281 +msgid "Delete the table (DROP)" +msgstr "" + +#: libraries/operations.lib.php:1323 +msgid "Analyze" +msgstr "" + +#: libraries/operations.lib.php:1324 +msgid "Check" +msgstr "" + +#: libraries/operations.lib.php:1325 +msgid "Optimize" +msgstr "" + +#: libraries/operations.lib.php:1326 +msgid "Rebuild" +msgstr "" + +#: libraries/operations.lib.php:1327 +msgid "Repair" +msgstr "" + +#: libraries/operations.lib.php:1334 +msgid "Partition maintenance" +msgstr "" + +#: libraries/operations.lib.php:1343 +#, php-format +msgid "Partition %s" +msgstr "" + +#: libraries/operations.lib.php:1362 +msgid "Remove partitioning" +msgstr "" + +#: libraries/operations.lib.php:1388 +msgid "Check referential integrity:" +msgstr "" + +#: libraries/plugin_interface.lib.php:502 +msgid "This format has no options" +msgstr "" + +#: libraries/plugins/auth/AuthenticationConfig.class.php:73 +msgid "Cannot connect: invalid settings." +msgstr "" + +#: libraries/plugins/auth/AuthenticationConfig.class.php:86 +#: libraries/plugins/auth/AuthenticationCookie.class.php:158 +#: libraries/plugins/auth/AuthenticationHttp.class.php:70 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: libraries/plugins/auth/AuthenticationConfig.class.php:102 +#, php-format +msgid "" +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." +msgstr "" + +#: libraries/plugins/auth/AuthenticationConfig.class.php:122 +msgid "" +"phpMyAdmin tried to connect to the MySQL server, and the server rejected the " +"connection. You should check the host, username and password in your " +"configuration and make sure that they correspond to the information given by " +"the administrator of the MySQL server." +msgstr "" + +#: libraries/plugins/auth/AuthenticationConfig.class.php:142 +msgid "Retry to connect" +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:44 +msgid "Failed to use Blowfish from mcrypt!" +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:82 +#: libraries/plugins/auth/AuthenticationCookie.class.php:188 +msgid "Log in" +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:100 +msgid "Your session has expired. Please log in again." +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:196 +#: libraries/plugins/auth/AuthenticationCookie.class.php:206 +msgid "You can enter hostname/IP address and port separated by space." +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:211 +msgid "Username:" +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:223 +msgid "Server Choice:" +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:384 +msgid "Entered captcha is wrong, try again!" +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:393 +msgid "Please enter correct captcha!" +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:655 +#: libraries/plugins/auth/AuthenticationSignon.class.php:247 +msgid "" +"Login without a password is forbidden by configuration (see AllowNoPassword)" +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:662 +#: libraries/plugins/auth/AuthenticationSignon.class.php:254 +#, php-format +msgid "No activity within %s seconds; please log in again." +msgstr "" + +#: libraries/plugins/auth/AuthenticationCookie.class.php:667 +#: libraries/plugins/auth/AuthenticationCookie.class.php:669 +#: libraries/plugins/auth/AuthenticationSignon.class.php:263 +msgid "Cannot log in to the MySQL server" +msgstr "" + +#: libraries/plugins/auth/AuthenticationHttp.class.php:75 +msgid "Wrong username/password. Access denied." +msgstr "" + +#: libraries/plugins/auth/AuthenticationSignon.class.php:102 +msgid "Can not find signon authentication script:" +msgstr "" + +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 +#, php-format +msgid "File %s does not contain any key id" +msgstr "" + +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 +msgid "Hardware authentication failed!" +msgstr "" + +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 +msgid "No valid authentication key plugged" +msgstr "" + +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 +msgid "Authenticating…" +msgstr "" + +#: libraries/plugins/export/ExportCsv.class.php:65 +#: libraries/plugins/import/AbstractImportCsv.class.php:59 +msgid "Columns separated with:" +msgstr "" + +#: libraries/plugins/export/ExportCsv.class.php:69 +#: libraries/plugins/import/AbstractImportCsv.class.php:65 +msgid "Columns enclosed with:" +msgstr "" + +#: libraries/plugins/export/ExportCsv.class.php:73 +#: libraries/plugins/import/AbstractImportCsv.class.php:71 +msgid "Columns escaped with:" +msgstr "" + +#: libraries/plugins/export/ExportCsv.class.php:77 +#: libraries/plugins/import/AbstractImportCsv.class.php:77 +msgid "Lines terminated with:" +msgstr "" + +#: libraries/plugins/export/ExportCsv.class.php:81 +#: libraries/plugins/export/ExportExcel.class.php:58 +#: libraries/plugins/export/ExportHtmlword.class.php:86 +#: libraries/plugins/export/ExportLatex.class.php:181 +#: libraries/plugins/export/ExportOds.class.php:71 +#: libraries/plugins/export/ExportOdt.class.php:132 +#: libraries/plugins/export/ExportTexytext.class.php:89 +msgid "Replace NULL with:" +msgstr "" + +#: libraries/plugins/export/ExportCsv.class.php:86 +#: libraries/plugins/export/ExportExcel.class.php:63 +msgid "Remove carriage return/line feed characters within columns" +msgstr "" + +#: libraries/plugins/export/ExportExcel.class.php:79 +msgid "Excel edition:" +msgstr "" + +#: libraries/plugins/export/ExportHtmlword.class.php:81 +#: libraries/plugins/export/ExportLatex.class.php:157 +#: libraries/plugins/export/ExportOdt.class.php:123 +#: libraries/plugins/export/ExportTexytext.class.php:80 +#: libraries/plugins/export/ExportXml.class.php:133 +msgid "Data dump options" +msgstr "" + +#: libraries/plugins/export/ExportHtmlword.class.php:203 +#: libraries/plugins/export/ExportOdt.class.php:260 +#: libraries/plugins/export/ExportSql.class.php:1708 +#: libraries/plugins/export/ExportTexytext.class.php:185 +msgid "Dumping data for table" +msgstr "" + +#: libraries/plugins/export/ExportHtmlword.class.php:487 +#: libraries/plugins/export/ExportOdt.class.php:567 +#: libraries/plugins/export/ExportTexytext.class.php:438 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_triggers.lib.php:387 +msgid "Event" +msgstr "" + +#: libraries/plugins/export/ExportHtmlword.class.php:488 +#: libraries/plugins/export/ExportOdt.class.php:570 +#: libraries/plugins/export/ExportTexytext.class.php:439 +#: libraries/rte/rte_events.lib.php:513 +#: libraries/rte/rte_routines.lib.php:1031 +#: libraries/rte/rte_triggers.lib.php:401 +msgid "Definition" +msgstr "" + +#: libraries/plugins/export/ExportHtmlword.class.php:553 +#: libraries/plugins/export/ExportOdt.class.php:643 +#: libraries/plugins/export/ExportSql.class.php:1456 +#: libraries/plugins/export/ExportTexytext.class.php:498 +msgid "Table structure for table" +msgstr "" + +#: libraries/plugins/export/ExportHtmlword.class.php:572 +#: libraries/plugins/export/ExportOdt.class.php:667 +#: libraries/plugins/export/ExportSql.class.php:1484 +#: libraries/plugins/export/ExportTexytext.class.php:513 +msgid "Structure for view" +msgstr "" + +#: libraries/plugins/export/ExportHtmlword.class.php:581 +#: libraries/plugins/export/ExportOdt.class.php:679 +#: libraries/plugins/export/ExportSql.class.php:1501 +#: libraries/plugins/export/ExportTexytext.class.php:520 +msgid "Stand-in structure for view" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:43 +msgid "Content of table @TABLE@" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:44 +msgid "(continued)" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:45 +msgid "Structure of table @TABLE@" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:116 +#: libraries/plugins/export/ExportOdt.class.php:97 +#: libraries/plugins/export/ExportSql.class.php:213 +msgid "Object creation options" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:121 +#: libraries/plugins/export/ExportLatex.class.php:166 +msgid "Table caption:" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:126 +#: libraries/plugins/export/ExportLatex.class.php:171 +msgid "Table caption (continued):" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:131 +#: libraries/plugins/export/ExportLatex.class.php:176 +msgid "Label key:" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:137 +#: libraries/plugins/export/ExportOdt.class.php:103 +#: libraries/plugins/export/ExportSql.class.php:114 +msgid "Display foreign key relationships" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:142 +#: libraries/plugins/export/ExportOdt.class.php:108 +msgid "Display comments" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:147 +#: libraries/plugins/export/ExportOdt.class.php:113 +#: libraries/plugins/export/ExportSql.class.php:120 +msgid "Display MIME types" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:162 +msgid "Put columns names in the first row:" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:218 +#: libraries/plugins/export/ExportSql.class.php:601 +#: libraries/plugins/export/ExportXml.class.php:191 +#: libraries/replication_gui.lib.php:405 libraries/replication_gui.lib.php:671 +#: libraries/server_privileges.lib.php:1110 libraries/sql.lib.php:411 +msgid "Host:" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:223 +#: libraries/plugins/export/ExportSql.class.php:608 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 +msgid "Generation Time:" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:226 +#: libraries/plugins/export/ExportSql.class.php:614 +#: libraries/plugins/export/ExportXml.class.php:199 +msgid "PHP Version:" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:251 +#: libraries/plugins/export/ExportSql.class.php:760 +#: libraries/plugins/export/ExportXml.class.php:390 +#: libraries/plugins/export/PMA_ExportPdf.class.php:115 +#: libraries/sql.lib.php:412 +msgid "Database:" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:303 +#: libraries/plugins/export/ExportSql.class.php:1546 +msgid "Data:" +msgstr "" + +#: libraries/plugins/export/ExportLatex.class.php:487 +msgid "Structure:" +msgstr "" + +#: libraries/plugins/export/ExportMediawiki.class.php:84 +msgid "Export table names" +msgstr "" + +#: libraries/plugins/export/ExportMediawiki.class.php:90 +msgid "Export table headers" +msgstr "" + +#: libraries/plugins/export/ExportPdf.class.php:97 +msgid "(Generates a report containing the data of a single table)" +msgstr "" + +#: libraries/plugins/export/ExportPdf.class.php:102 +msgid "Report title:" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:90 +msgid "" +"Display comments (includes info such as export timestamp, PHP version, " +"and server version)" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:99 +msgid "Additional custom header comment (\\n splits lines):" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:106 +msgid "" +"Include a timestamp of when databases were created, last updated, and last " +"checked" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:163 +msgid "" +"Database system or older MySQL server to maximize output compatibility with:" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:184 +#: libraries/plugins/export/ExportSql.class.php:241 +#: libraries/plugins/export/ExportSql.class.php:249 +#, php-format +msgid "Add %s statement" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:220 +msgid "Add statements:" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:279 +msgid "" +"Enclose table and column names with backquotes (Protects column and table " +"names formed with special characters or keywords)" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:295 +msgid "Data creation options" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:299 +#: libraries/plugins/export/ExportSql.class.php:1652 +msgid "Truncate table before insert" +msgstr "" + +#: libraries/plugins/export/ExportSql.class.php:305 +msgid "Instead of 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
  " +"    Example: 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 statement
  " +"    Example: INSERT 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 above
      Example: INSERT 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 above
      Example: INSERT 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:
%s." +msgstr "" + +#: libraries/plugins/import/ImportOds.class.php:88 +msgid "Import percentages as proper decimals (ex. 12.00% to .12)" +msgstr "" + +#: libraries/plugins/import/ImportOds.class.php:94 +msgid "Import currencies (ex. $5.00 to 5.00)" +msgstr "" + +#: libraries/plugins/import/ImportOds.class.php:172 +#: libraries/plugins/import/ImportXml.class.php:131 +#: libraries/plugins/import/ImportXml.class.php:193 +msgid "" +"The XML file specified was either malformed or incomplete. Please correct " +"the issue and try again." +msgstr "" + +#: libraries/plugins/import/ImportOds.class.php:182 +msgid "Could not parse OpenDocument Spreadsheet!" +msgstr "" + +#: libraries/plugins/import/ImportShp.class.php:53 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/plugins/import/ImportShp.class.php:152 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/plugins/import/ImportShp.class.php:208 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/plugins/import/ImportShp.class.php:214 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/plugins/import/ImportShp.class.php:262 +msgid "The imported file does not contain any data" +msgstr "" + +#: libraries/plugins/import/ImportSql.class.php:71 +msgid "SQL compatibility mode:" +msgstr "" + +#: libraries/plugins/import/ImportSql.class.php:83 +msgid "Do not use 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), 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 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( + '